diff --git a/.agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md b/.agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md index e97fd9c3..bc1fbb49 100644 --- a/.agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md +++ b/.agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md @@ -278,18 +278,8 @@ command. full lane exists. 5. Add tests that reject unregistered scenario directories and missing done-or-handoff markers. -6. Run: - -```bash -python .agents/spark/scripts/validate_spark_lane.py -python -m unittest discover -s .agents/spark/tests -p 'test*.py' -python scripts/validate_agents_md_shape.py -python scripts/validate_agents_mesh.py -python scripts/build_agents_mesh_index.py --check -python scripts/validate_agents_mesh_index.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +6. Run the Spark-local checks and repository validation lanes routed by + `.agents/spark/AGENTS.md`. Adjust the test invocation if the final test module path cannot be imported as a dotted module because `.agents` is hidden; the center repo uses direct pytest diff --git a/.agents/spark/scenarios/diff-review/README.md b/.agents/spark/scenarios/diff-review/README.md index 8a629a2f..e7f3ae68 100644 --- a/.agents/spark/scenarios/diff-review/README.md +++ b/.agents/spark/scenarios/diff-review/README.md @@ -23,5 +23,5 @@ source authority, or owner judgment outside the diff. ## Validation -Run read-only checks when useful, such as `git diff --check` or the changed +Run read-only checks when useful, such as the diff hygiene check or the changed surface validator. diff --git a/.agents/spark/scenarios/diff-review/examples/result.example.md b/.agents/spark/scenarios/diff-review/examples/result.example.md index a1c62c8e..baa5b8e3 100644 --- a/.agents/spark/scenarios/diff-review/examples/result.example.md +++ b/.agents/spark/scenarios/diff-review/examples/result.example.md @@ -15,7 +15,7 @@ Changes made: - None. Validation run: -- `git diff --check` +- Diff hygiene check Skipped checks: - Full release gate skipped because this was review-only. diff --git a/.agents/spark/scenarios/registry-sync/examples/result.example.md b/.agents/spark/scenarios/registry-sync/examples/result.example.md index 41bb2ca4..2ee1361a 100644 --- a/.agents/spark/scenarios/registry-sync/examples/result.example.md +++ b/.agents/spark/scenarios/registry-sync/examples/result.example.md @@ -16,7 +16,7 @@ Changes made: - Added Spark lane validation command to release check. Validation run: -- `python .agents/spark/scripts/validate_spark_lane.py` +- Spark-lane validator Skipped checks: - None. diff --git a/.agents/spark/scenarios/release-prep/README.md b/.agents/spark/scenarios/release-prep/README.md index 69d96913..fdc9a85e 100644 --- a/.agents/spark/scenarios/release-prep/README.md +++ b/.agents/spark/scenarios/release-prep/README.md @@ -24,4 +24,4 @@ acceptance, multi-repo synthesis, or a slower review. ## Validation -Run `python scripts/release_check.py` when local dependencies are available. +Run the release lane when local dependencies are available. diff --git a/.agents/spark/scenarios/release-prep/examples/result.example.md b/.agents/spark/scenarios/release-prep/examples/result.example.md index 030e7f17..5cb1bc98 100644 --- a/.agents/spark/scenarios/release-prep/examples/result.example.md +++ b/.agents/spark/scenarios/release-prep/examples/result.example.md @@ -15,7 +15,7 @@ Changes made: - None. Validation run: -- `python scripts/release_check.py` +- Release lane Skipped checks: - GitHub validation not run in this example. diff --git a/.agents/spark/scenarios/technique-refinement/README.md b/.agents/spark/scenarios/technique-refinement/README.md index e2c079df..60c2eb87 100644 --- a/.agents/spark/scenarios/technique-refinement/README.md +++ b/.agents/spark/scenarios/technique-refinement/README.md @@ -27,6 +27,6 @@ mechanic or sibling repository must accept the next move. ## Validation Run the narrowest validation named by the target bundle or owner route. For a -text-only patch with no generated surface, `git diff --check` plus an honest -manual contract pass is enough. Use `python scripts/validate_repo.py` only when +text-only patch with no generated surface, the diff hygiene check plus an honest +manual contract pass is enough. Use repository validation only when repo law, touched generated surfaces, or the user asks for that broader proof. diff --git a/.agents/spark/scenarios/technique-refinement/examples/result.example.md b/.agents/spark/scenarios/technique-refinement/examples/result.example.md index 03751cc0..dd3d8b68 100644 --- a/.agents/spark/scenarios/technique-refinement/examples/result.example.md +++ b/.agents/spark/scenarios/technique-refinement/examples/result.example.md @@ -15,11 +15,11 @@ Changes made: - Tightened the adaptation note without changing technique meaning. Validation run: -- `git diff --check` +- Diff hygiene check - Manual atom-contract pass Skipped checks: -- `python scripts/validate_repo.py` deferred because no generated surfaces changed. +- Repository validation deferred because no generated surfaces changed. - Full release check deferred because this was a one-bundle text patch. Remaining risk: diff --git a/.agents/spark/scenarios/test-factory/README.md b/.agents/spark/scenarios/test-factory/README.md index dc04cb0b..c4a3da78 100644 --- a/.agents/spark/scenarios/test-factory/README.md +++ b/.agents/spark/scenarios/test-factory/README.md @@ -23,5 +23,5 @@ work before tests can be honest. ## Validation Run the targeted test command for the changed test family and the validator -named by the owning source surface. Use `python scripts/run_tests.py` only when +named by the owning source surface. Use the repository test runner only when the user, owner route, or release-prep explicitly asks for broader proof. diff --git a/.agents/spark/scenarios/test-factory/examples/result.example.md b/.agents/spark/scenarios/test-factory/examples/result.example.md index 10af2fba..a7f97fc5 100644 --- a/.agents/spark/scenarios/test-factory/examples/result.example.md +++ b/.agents/spark/scenarios/test-factory/examples/result.example.md @@ -15,7 +15,7 @@ Changes made: - Added `.agents/spark/tests/test_spark_lane.py`. Validation run: -- `python -m unittest discover -s .agents/spark/tests -p 'test*.py'` +- Spark-lane tests Skipped checks: - Full release check deferred to PR validation. diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0c3eed73..481af1be 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -28,6 +28,7 @@ /requirements-dev.txt @8Dionysus /schemas/ @8Dionysus /scripts/ @8Dionysus +/stats/ @8Dionysus /techniques/ @8Dionysus /templates/ @8Dionysus /tests/ @8Dionysus diff --git a/.github/workflows/nightly-sentinel.yml b/.github/workflows/nightly-sentinel.yml index be4f0b37..b1057683 100644 --- a/.github/workflows/nightly-sentinel.yml +++ b/.github/workflows/nightly-sentinel.yml @@ -15,6 +15,8 @@ jobs: runs-on: ubuntu-latest env: ABYSS_MACHINE_REPO_ROOT: ${{ github.workspace }}/.deps/abyss-machine + AOA_KAG_ROOT: ${{ github.workspace }}/.deps/aoa-kag + AOA_STATS_ROOT: ${{ github.workspace }}/.deps/aoa-stats steps: - name: Checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd @@ -28,6 +30,20 @@ jobs: ref: 5724ce73cae69a0cd2b43996f006dc2bba2ab711 path: .deps/abyss-machine + - name: Checkout aoa-kag index builder + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd + with: + repository: 8Dionysus/aoa-kag + ref: da9f50a581645b2173b99dbf771a63d447ec2fec + path: .deps/aoa-kag + + - name: Checkout aoa-stats protocol validator + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd + with: + repository: 8Dionysus/aoa-stats + ref: 25ebfb784f01d3b93f62994908579c4a2c5d87b1 + path: .deps/aoa-stats + - name: Setup Python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 with: diff --git a/.github/workflows/release-audit.yml b/.github/workflows/release-audit.yml index 06bd9bfe..b99ef56f 100644 --- a/.github/workflows/release-audit.yml +++ b/.github/workflows/release-audit.yml @@ -16,6 +16,7 @@ jobs: runs-on: ubuntu-latest env: ABYSS_MACHINE_REPO_ROOT: ${{ github.workspace }}/.deps/abyss-machine + AOA_STATS_ROOT: ${{ github.workspace }}/.deps/aoa-stats steps: - name: Checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd @@ -29,6 +30,13 @@ jobs: ref: 5724ce73cae69a0cd2b43996f006dc2bba2ab711 path: .deps/abyss-machine + - name: Checkout aoa-stats protocol validator + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd + with: + repository: 8Dionysus/aoa-stats + ref: 25ebfb784f01d3b93f62994908579c4a2c5d87b1 + path: .deps/aoa-stats + - name: Setup Python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 with: diff --git a/.github/workflows/repo-validation.yml b/.github/workflows/repo-validation.yml index 81f977bf..b499e24d 100644 --- a/.github/workflows/repo-validation.yml +++ b/.github/workflows/repo-validation.yml @@ -16,6 +16,7 @@ jobs: runs-on: ubuntu-latest env: AOA_KAG_ROOT: ${{ github.workspace }}/.deps/aoa-kag + AOA_STATS_ROOT: ${{ github.workspace }}/.deps/aoa-stats AOA_REPO_LOCAL_KAG_HISTORY_REPO: aoa-techniques AOA_REPO_LOCAL_KAG_HISTORY_REF: ${{ github.event.pull_request.base.sha || github.event.before || github.sha }} AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF: ${{ github.event.pull_request.base.sha || github.event.before || github.sha }} @@ -32,6 +33,13 @@ jobs: ref: da9f50a581645b2173b99dbf771a63d447ec2fec path: .deps/aoa-kag + - name: Checkout aoa-stats protocol validator + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd + with: + repository: 8Dionysus/aoa-stats + ref: 25ebfb784f01d3b93f62994908579c4a2c5d87b1 + path: .deps/aoa-stats + - name: Setup Python uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 with: diff --git a/AGENTS.md b/AGENTS.md index 4ce0b734..a90ebdca 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -24,12 +24,15 @@ This repository owns: - public-safe technique wording and topology selection, including current domain/kind truth and future family/capability/substrate/risk axes - owner-local participation in AoA cross-mechanics around reusable practice movement +- owner-local statistical questions, measurement meaning, and public reference + packets about the technique canon - root-level public-safe legacy provenance, archive, and migration receipts for repo-wide technique-canon history - generated technique catalogs, capsules, feat-card reader surfaces, and source-lift surfaces It does not own: -- skill workflow meaning, proof doctrine, routing, role contracts, memory, playbooks, KAG substrate meaning, or stats summaries +- skill workflow meaning, proof doctrine, routing, role contracts, memory, + playbooks, KAG substrate meaning, cross-owner aggregation, or stats summaries - private project operations, secrets, or infrastructure detail [DESIGN](DESIGN.md) names the repository system form. [DESIGN.AGENTS](DESIGN.AGENTS.md) @@ -58,6 +61,7 @@ for agents. 18. affected generated catalogs, capsules, feat cards, agent-mesh mirrors, or source-lift outputs 19. the nearest local `AGENTS.md` under the touched path when a branch needs more detail than this root route card +20. [Stats](stats/README.md) when owner-local measurement questions or exports move ## Route modes @@ -72,6 +76,7 @@ for agents. | `direction-change` | roadmap, corpus-scale pressure, portability posture, or future triggers change | [ROADMAP](ROADMAP.md) | | `mechanic-change` | practice movement, donor intake, audit, recurrence, checkpoint, RPG, or release-support surfaces change | [Mechanics](mechanics/README.md) -> nearest mechanic `AGENTS.md` | | `generated-parity` | generated catalogs, capsules, source-lift, or repo-doc surfaces change | source doc -> builder -> generated output -> validator/test | +| `local-stats` | owner-local technique-canon measurement meaning or reference packets change | [Stats](stats/README.md) -> owning source -> consuming mechanic | ## AGENTS stack law @@ -146,6 +151,8 @@ Update only the ones that moved; otherwise say no update was needed. schemas, builders, validators, or a stronger sibling owner. - Do not make root files, docs-root files, or top-level directories without checking [ROOT_SURFACE_LAW](docs/ROOT_SURFACE_LAW.md). +- Do not infer quality, adoption, runtime use, or promotion decisions from a + local stats packet; return to authored technique and review owners. ## Route away when diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b0fb10d..2b22d18e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ The format is intentionally simple and human-first. ### Changed +- added the root `stats/` owner port with a revision-bound promotion-readiness + pass ratio, central protocol validation, and coverage that rejects a false + numerator while preserving technique and audit authority - added the root `kag/` local provider district and wired it into root surface law, the AGENTS mesh, and generated mesh index for downstream KAG consumers - tightened the OS Abyss KAG export artifact envelope so the manifest, validator, @@ -945,10 +948,10 @@ The format is intentionally simple and human-first. ### Validation -- `python scripts/validate_repo.py` -- `python scripts/run_tests.py` -- `python scripts/release_check.py` -- `git diff --check` +- repository validation +- the repository test runner +- the release lane +- the diff hygiene check ### Notes @@ -959,9 +962,9 @@ The format is intentionally simple and human-first. - generated outputs remain derived companions; authored technique bundles, route cards, contracts, decisions, and mechanic-owned review packets remain the authority surfaces -- exact executable command lanes now live in the owning `AGENTS.md` or - [RELEASING](docs/RELEASING.md) surfaces rather than public route or reader - docs +- exact executable command lanes now live in + `config/validation_lanes.json`, with focused local commands only in the + owning `AGENTS.md`, rather than public route or reader docs - package publishing to PyPI, npm, or other registries remains out of scope for this release @@ -1002,10 +1005,10 @@ The format is intentionally simple and human-first. ### Validation -- `python scripts/release_check.py` -- `python mechanics/agon/parts/move-technique-bridge/scripts/build_agon_technique_binding_candidates.py --check` -- `python mechanics/agon/parts/move-technique-bridge/scripts/validate_agon_technique_binding_candidates.py` -- `python -m pytest -q mechanics/agon/parts/move-technique-bridge/tests/test_agon_technique_binding_candidates.py` +- the release lane +- the owning part builder +- the owning part validator +- the targeted part-local tests ### Notes @@ -1036,7 +1039,7 @@ The format is intentionally simple and human-first. ### Validation -- `python scripts/release_check.py` +- the release lane ### Notes @@ -1053,7 +1056,7 @@ The format is intentionally simple and human-first. ### Validation -- `python scripts/release_check.py` +- the release lane ### Notes @@ -1145,7 +1148,7 @@ This changelog entry uses the release-prep merge date. ### Validation -- `python scripts/release_check.py` +- the release lane ### Notes @@ -1172,7 +1175,7 @@ This changelog entry uses the release-prep merge date. - the canonical default set expanded across agent workflows, docs, evaluation, and KAG/source-lift surfaces, including `AOA-T-0004`, `AOA-T-0013` through `AOA-T-0019`, `AOA-T-0021`, `AOA-T-0023`, and `AOA-T-0034` - evidence and review posture is stronger across the corpus through broader `second-context-adaptation`, `canonical-readiness`, `external-origin`, `external-import-review`, and canonical-only `adverse-effects-review` coverage - repo routing now centers on `docs/START_HERE.md` and the bounded `pick -> inspect -> expand -> object use` operating path -- release and validation posture now centers on `python scripts/release_check.py`, with tighter generator-drift checks, repo-doc and review-surface validation, broader public-hygiene URL scanning, and cleaner worktree behavior +- release and validation posture now centers on the release lane, with tighter generator-drift checks, repo-doc and review-surface validation, broader public-hygiene URL scanning, and cleaner worktree behavior ### Included in this release @@ -1185,7 +1188,7 @@ This changelog entry uses the release-prep merge date. ### Validation -- `python scripts/release_check.py` +- the release lane - the bounded release check reruns repo-doc, catalog, capsule, section, checklist, example, evidence-note, GitHub review-template, semantic-review, and shadow-review builders before `unittest` and `validate_repo` ### Notes @@ -1227,8 +1230,8 @@ The GitHub release for `v0.1.0` was published on `2026-03-18`. Documented local validation path for this release: -- `python -m unittest discover -s tests` -- `python scripts/validate_repo.py` +- the repository test suite +- repository validation ### Notes diff --git a/DESIGN.md b/DESIGN.md index 1f7f4ec5..0d114aad 100644 --- a/DESIGN.md +++ b/DESIGN.md @@ -51,6 +51,7 @@ should I leave for another AoA owner? - practice-motion mechanics under [mechanics](mechanics/README.md) - repo-wide schemas, templates, configs, and examples - generated reader and machine companions +- an owner-local statistical measurement port for bounded corpus questions - public-safe legacy and provenance surfaces - agent-facing route cards @@ -123,6 +124,11 @@ Skills, evals, routing, KAG, memory, playbooks, roles, stats, runtime, and ToS meaning have stronger owners. This repo may route to them but should not absorb their truth. +Owner-local measurement meaning remains here when it concerns the technique +canon. Cross-owner statistical grammar, aggregation, and views remain with +`aoa-stats`, and neither side may turn a corpus ratio into technique status or +promotion authority. + ### 7. Validation before confidence Every meaningful change should have a local check, a generated-freshness check diff --git a/README.md b/README.md index 92a5b2f5..bfdee22e 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,7 @@ owning [mechanics](mechanics/README.md) package. - `root-editing`: [ROOT_SURFACE_LAW](docs/ROOT_SURFACE_LAW.md) - `agent-surface-design`: [DESIGN.AGENTS](DESIGN.AGENTS.md) - `generated-parity`: authored source -> builder -> generated output -> validator +- `local-stats`: [stats](stats/README.md) -> owning source -> consuming mechanic ## Technique Check @@ -121,6 +122,7 @@ technique bundle when the reusable practice itself is already authored. | [docs](docs/README.md) | contracts, route maps, review guides, release docs, and generated-reader interpretation | | [mechanics](mechanics/README.md) | practice movement, evidence, provenance, and mechanic-local routes | | [generated](generated/) | reproducible catalogs, capsules, source-lift, review, and mesh companions | +| [stats](stats/README.md) | owner-local corpus questions, measurement contracts, and public reference packets | | [examples](examples/README.md) | public-safe repo-wide worked examples | | [templates](templates/) | technique authoring and promotion scaffolds | | [legacy](legacy/README.md) | public-safe repo-wide raw, archive, and migration receipts | diff --git a/config/agents_mesh.json b/config/agents_mesh.json index c4541a9b..df444443 100644 --- a/config/agents_mesh.json +++ b/config/agents_mesh.json @@ -93,6 +93,7 @@ "schemas/AGENTS.md", "scripts/AGENTS.md", "scripts/validators/AGENTS.md", + "stats/AGENTS.md", "techniques/AGENTS.md", "techniques/agent-workflows/AGENTS.md", "techniques/continuity/AGENTS.md", diff --git a/config/validation_lanes.json b/config/validation_lanes.json index d76c79ed..643999e6 100644 --- a/config/validation_lanes.json +++ b/config/validation_lanes.json @@ -12,7 +12,7 @@ "posture": "blocking", "owner_surface": "docs/validation/VALIDATOR_TOPOLOGY.md", "command_sequence": "source_fast", - "purpose": "Growth-safe source/topology gate for the repo-local KAG index, AGENTS mesh, route-card shape, and fast authored technique source contracts.", + "purpose": "Growth-safe source/topology gate for the repo-local KAG index, owner-local stats port, AGENTS mesh, route-card shape, and fast authored technique source contracts.", "does_not_own": [ "generated freshness", "release stabilization", @@ -110,6 +110,10 @@ "python", "scripts/validate_repo_local_kag_index.py" ], + [ + "python", + "scripts/validate_local_stats_port.py" + ], [ "python", "scripts/validate_agents_md_shape.py" @@ -333,6 +337,10 @@ "python", "scripts/validate_public_hygiene.py" ], + [ + "python", + "scripts/validate_local_stats_port.py" + ], [ "python", "scripts/validate_agents_md_shape.py" diff --git a/docs/ROOT_SURFACE_LAW.md b/docs/ROOT_SURFACE_LAW.md index b0a97cb4..15a74dad 100644 --- a/docs/ROOT_SURFACE_LAW.md +++ b/docs/ROOT_SURFACE_LAW.md @@ -55,7 +55,7 @@ evidence trail. | Public governance and legal | [CONTRIBUTING](../CONTRIBUTING.md), [CODE_OF_CONDUCT](../CODE_OF_CONDUCT.md), [SECURITY](../SECURITY.md), [LICENSE](../LICENSE) | do not become technique doctrine catalogs | | Release history | [CHANGELOG](../CHANGELOG.md) | record release history, not future direction | | Agent lane | [AGENTS](../AGENTS.md), [.agents](../.agents/), [agents mesh config](../config/agents_mesh.json), [agents mesh mirror](../generated/agents_mesh.min.json), [AGENTS_MESH_PROTOCOL](guardrails/AGENTS_MESH_PROTOCOL.md) | route agents without replacing public docs or owner contracts | -| Tooling, provenance, and machine districts | [.github](../.github/), [config](../config/), [docs](./), [evals](../evals/), [examples](../examples/), [generated](../generated/), [kag](../kag/), [legacy](../legacy/), [mechanics](../mechanics/), [quests](../quests/), [schemas](../schemas/), [scripts](../scripts/), [templates](../templates/), [tests](../tests/), [techniques](../techniques/) | keep local route guidance where needed | +| Tooling, provenance, and machine districts | [.github](../.github/), [config](../config/), [docs](./), [evals](../evals/), [examples](../examples/), [generated](../generated/), [kag](../kag/), [legacy](../legacy/), [mechanics](../mechanics/), [quests](../quests/), [schemas](../schemas/), [scripts](../scripts/), [stats](../stats/), [templates](../templates/), [tests](../tests/), [techniques](../techniques/) | keep local route guidance where needed | | Development requirements | [.gitignore](../.gitignore), [requirements-dev.txt](../requirements-dev.txt) | stay technical and small | ## Surfaces That Should Not Live In Root @@ -103,6 +103,7 @@ compact, route it to the owner surface that can carry the detail. | Provenance | [legacy](../legacy/) is the repo-wide public-safe provenance district; active mechanic lineage stays mechanic-local. | | Mechanics artifacts | Reports, scout inputs, overlays, scripts, manifests, schemas, examples, and tests that serve one mechanic part live with that part. | | Local KAG provider | [kag](../kag/) carries the repo-local provider packet, source-return handles, and validation receipts for downstream KAG consumers. | +| Local stats port | [stats](../stats/) carries owner-defined technique-canon questions, measurement contracts, and public reference packets; cross-owner grammar and aggregation remain with `aoa-stats`. | | Root data | Empty root `data/` is retired until a concrete repo-wide data contract justifies it. | | Spark lane | The previous root Spark surface lives under [.agents/spark](../.agents/spark/) as an agent-lane packet, not a standalone public root district. | diff --git a/docs/decisions/AGENTS.md b/docs/decisions/AGENTS.md index 1e76f2ac..c8222a8e 100644 --- a/docs/decisions/AGENTS.md +++ b/docs/decisions/AGENTS.md @@ -42,13 +42,11 @@ For canonical IDs or index metadata, read `README.md`, `TEMPLATE.md`, and ## Validation -Full lane command sequences live in `config/validation_lanes.json`; decision -records may preserve command evidence, but active command authority stays in -the lane manifest and entrypoints. +Full lane command sequences live in `config/validation_lanes.json`. Decision +records preserve verification scope and outcome rather than executable command +evidence. New or revised decision records should name lane ids and the nearest owner -`AGENTS.md` checks in active verification guidance. If an old command transcript -must be preserved, label it as historical verification evidence rather than -current command law. +`AGENTS.md` checks in active verification guidance. For decision ID, metadata, and generated lookup-index parity, run: diff --git a/docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md b/docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md index ef192293..79532693 100644 --- a/docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md +++ b/docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md @@ -61,8 +61,4 @@ raw inventory for this package. Verify with: -```bash -python -m unittest tests.test_experience_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md b/docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md index 7e9dfacf..2c0fdc87 100644 --- a/docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md +++ b/docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md @@ -69,8 +69,4 @@ roadmaps remain visible to git instead of requiring force-adds for every split. Verify with: -```bash -python -m unittest tests.test_growth_cycle_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md b/docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md index 8bbc428d..dbb29b71 100644 --- a/docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md +++ b/docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md @@ -54,7 +54,4 @@ only when work cites an `ORQ-*` request or answers a downstream owner request. Verify with the normal repository validation path after the change: -```bash -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md b/docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md index 1b0abd0a..1850478d 100644 --- a/docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md +++ b/docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md @@ -58,8 +58,4 @@ raw inventory for this package. Verify with: -```bash -python -m unittest tests.test_method_growth_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md b/docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md index 44872053..360cae4a 100644 --- a/docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md +++ b/docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md @@ -82,8 +82,4 @@ Pressure, with `candidate-only` posture. Verify with: -```bash -python -m unittest tests.test_antifragility_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md b/docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md index ac13bea4..ec66f022 100644 --- a/docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md +++ b/docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md @@ -70,8 +70,4 @@ Pressure, with `candidate-only` posture. Verify with: -```bash -python -m unittest tests.test_recurrence_mechanics_topology tests.test_recurrence_manifest_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md b/docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md index 1f69c27c..814c3338 100644 --- a/docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md +++ b/docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md @@ -72,8 +72,4 @@ Center Pressure, with `candidate-only` posture. Verify with: -```bash -python -m unittest tests.test_release_support_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md b/docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md index 0e3bdc24..0024ab8e 100644 --- a/docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md +++ b/docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md @@ -83,8 +83,4 @@ Center Pressure, with `candidate-only` posture. Verify with: -```bash -python -m unittest tests.test_boundary_bridge_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md b/docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md index 0862b92a..a8cdd95a 100644 --- a/docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md +++ b/docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md @@ -80,8 +80,4 @@ Pressure, with `candidate-only` posture. Verify with: -```bash -python -m unittest tests.test_checkpoint_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md b/docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md index 1850f09b..ca8b2cc4 100644 --- a/docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md +++ b/docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md @@ -74,11 +74,4 @@ land. Expected checks: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology tests.test_agon_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md b/docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md index ee9fe8fc..74052dc0 100644 --- a/docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md +++ b/docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md @@ -67,9 +67,4 @@ placeholder receipt. Verify with: -```bash -python -m unittest tests.test_mechanics_legacy_scaffolds -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md b/docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md index 993844ee..334538ae 100644 --- a/docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md +++ b/docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md @@ -91,8 +91,4 @@ The package-card standard is covered by Verify with: -```bash -python -m unittest discover -s mechanics/tests -p 'test_mechanics_package_cards.py' -python scripts/validate_repo.py -python scripts/run_tests.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md b/docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md index 498395a3..d403650f 100644 --- a/docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md +++ b/docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md @@ -64,7 +64,4 @@ retirement. The bundle is checked through normal technique validation and generated parity: -```bash -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md b/docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md index 3b05fd93..8f147b60 100644 --- a/docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md +++ b/docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md @@ -66,7 +66,4 @@ retention checks, and obsolescence. The bundle is checked through normal technique validation and generated parity: -```bash -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md b/docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md index 2a09e621..bd13d248 100644 --- a/docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md +++ b/docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md @@ -60,7 +60,4 @@ issue proof, write memory truth, or mutate runtime behavior. The bundle is checked through normal technique validation and generated parity: -```bash -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md b/docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md index 170c6d94..27b36730 100644 --- a/docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md +++ b/docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md @@ -62,7 +62,4 @@ verification, and activation discipline. The bundle is checked through normal technique validation and generated parity: -```bash -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md b/docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md index e69b09b9..ad36dcd5 100644 --- a/docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md +++ b/docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md @@ -85,8 +85,4 @@ Pressure, with `candidate-only` posture. Verify with: -```bash -python -m unittest tests.test_questbook_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md b/docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md index 94fe521a..50551346 100644 --- a/docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md +++ b/docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md @@ -52,10 +52,5 @@ derived read models, not source authority. Verify with: -```bash -python scripts/build_catalog.py -python scripts/validate_repo.py -python -m unittest tests.test_validate_repo tests.test_questbook_mechanics_topology tests.test_growth_cycle_mechanics_topology -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md b/docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md index c0dfd340..e191cb6e 100644 --- a/docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md +++ b/docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md @@ -62,9 +62,4 @@ acceptance. Verify with: -```bash -python -m unittest tests.test_rpg_mechanics_topology tests.test_mechanics_request_receipts -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md b/docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md index cc769ce5..7a86ae22 100644 --- a/docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md +++ b/docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md @@ -67,9 +67,4 @@ than a schema migration by default. Expected checks: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md b/docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md index f8a7cf1d..80b1a51d 100644 --- a/docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md +++ b/docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md @@ -58,9 +58,4 @@ unchanged. The change is a classification correction only. Expected checks: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md b/docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md index 422f111d..485ff9c3 100644 --- a/docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md +++ b/docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md @@ -63,9 +63,4 @@ unchanged. The change is a classification correction only. Expected checks: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md b/docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md index 2973ebd3..3f7074a8 100644 --- a/docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md +++ b/docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md @@ -61,9 +61,4 @@ unchanged. The change is a classification correction only. Expected checks: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md b/docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md index 945aa82f..787da08e 100644 --- a/docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md +++ b/docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md @@ -57,9 +57,4 @@ unchanged. The change is a classification correction only. Expected checks: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md b/docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md index 8713fc7d..7a9b385a 100644 --- a/docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md +++ b/docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md @@ -66,9 +66,4 @@ any later decision promotes an axis into optional or required bundle metadata. Expected checks: -```bash -python -m unittest tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md b/docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md index 0b44855d..b979d642 100644 --- a/docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md +++ b/docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md @@ -114,9 +114,4 @@ valid movement. Verified with: -```bash -python scripts/build_github_review_template_manifest.py -python scripts/build_repo_doc_surface_manifest.py -python scripts/validate_nested_agents.py -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md b/docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md index 96bd7377..7a0ea61d 100644 --- a/docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md +++ b/docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md @@ -83,9 +83,4 @@ than a required global migration. Expected checks: -```bash -python -m unittest tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md b/docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md index cc92ed81..9e3d9143 100644 --- a/docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md +++ b/docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md @@ -97,11 +97,6 @@ role, playbook, routing, KAG, stats, or ToS owner truth. The mesh route is validated by: -```bash -python scripts/validate_agents_md_shape.py -python scripts/validate_agents_mesh.py -python scripts/build_agents_mesh_index.py --check -python scripts/validate_agents_mesh_index.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. `scripts/release_check.py` includes the same mesh checks. diff --git a/docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md b/docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md index 2a2ce6c3..cc9685e5 100644 --- a/docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md +++ b/docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md @@ -61,10 +61,4 @@ mechanic-local schema/example pairs. ## Verification -```bash -python -m unittest tests.test_experience_adoption_contracts tests.test_experience_governance_contracts tests.test_experience_release_contracts -python -m unittest tests.test_experience_mechanics_topology tests.test_method_growth_mechanics_topology tests.test_release_support_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md b/docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md index 96de4722..2f71f3ce 100644 --- a/docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md +++ b/docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md @@ -68,12 +68,4 @@ the first suspicious path: ## Verification -```bash -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_topology_scout.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_tree_projection.py -python -m unittest tests.test_publish_live_receipts -python -m unittest tests.test_distillation_mechanics_topology tests.test_recurrence_mechanics_topology tests.test_validate_repo -python scripts/validate_repo.py -python scripts/release_check.py -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md b/docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md index 26dc9c13..78bf9e05 100644 --- a/docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md +++ b/docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md @@ -54,16 +54,10 @@ pulling the tests back into root. warehouse. - Mechanic package tests are easier to find from the mechanic route cards and can move with their owners. -- `python -m unittest discover -s tests` is no longer the full repo unittest - gate. Use `python scripts/run_tests.py` for the full unittest suite. +- Root-only test discovery is no longer the full repository unittest gate. Use + the repository test runner for the full unittest suite. - `scripts/release_check.py` calls the new runner, preserving release coverage. ## Verification -```bash -python scripts/run_tests.py -python scripts/validate_semantic_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md b/docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md index 8324140c..2b3204ba 100644 --- a/docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md +++ b/docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md @@ -60,10 +60,4 @@ technique candidates, release holds, promote status, or claim recurrence law. Expected checks: -```bash -python -m unittest tests.test_recurrence_manifest_topology -python -m unittest tests.test_recurrence_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md b/docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md index ff3d88b7..efc5c58a 100644 --- a/docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md +++ b/docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md @@ -66,10 +66,4 @@ not post-hoc link aliases. Expected checks: -```bash -python -m unittest tests.test_validate_repo -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0052-root-data-retirement.md b/docs/decisions/AOA-TECH-D-0052-root-data-retirement.md index 9f6991c7..f9af6be6 100644 --- a/docs/decisions/AOA-TECH-D-0052-root-data-retirement.md +++ b/docs/decisions/AOA-TECH-D-0052-root-data-retirement.md @@ -49,9 +49,4 @@ repo-wide data contract exists and no stronger existing district fits. ## Verification -```bash -python scripts/validate_semantic_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md b/docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md index 203d5acd..797c9228 100644 --- a/docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md +++ b/docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md @@ -55,10 +55,4 @@ mechanic routes, validation law, or sibling-owner meaning. Expected checks: -```bash -find . -maxdepth 1 -type d -name Spark -print -rg -n 'Spark/|\\.agents/spark' AGENTS.md README.md ROADMAP.md CHANGELOG.md docs .agents scripts tests -python scripts/validate_repo.py -python -m unittest discover -s tests -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md b/docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md index b1e837d2..aa8fc390 100644 --- a/docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md +++ b/docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md @@ -63,15 +63,4 @@ remain the authority for technique meaning. Expected checks: -```bash -python scripts/build_kind_manifest.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_topology_scout.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_tree_projection.py -python scripts/validate_semantic_agents.py -python -m unittest tests.test_validate_repo -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md b/docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md index 89cf37fc..1f6a942e 100644 --- a/docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md +++ b/docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md @@ -56,12 +56,4 @@ contract. ## Verification -```bash -python scripts/build_kind_manifest.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_topology_scout.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_tree_projection.py -python -m unittest tests.test_distillation_mechanics_topology tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md b/docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md index 8bafb655..0f701d74 100644 --- a/docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md +++ b/docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md @@ -117,12 +117,4 @@ before renaming or widening `.agents/spark/`. This decision is validated by: -```bash -python .agents/spark/scripts/validate_spark_lane.py -python -m unittest discover -s .agents/spark/tests -p 'test*.py' -python scripts/validate_agents_md_shape.py -python scripts/validate_agents_mesh.py -python scripts/build_agents_mesh_index.py --check -python scripts/validate_agents_mesh_index.py -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md b/docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md index a5e17a2c..7beb019e 100644 --- a/docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md +++ b/docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md @@ -151,8 +151,4 @@ in the same change. Validate with: -```bash -python -m unittest tests.test_docs_surface_guardrails -python scripts/validate_repo.py -python scripts/run_tests.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md b/docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md index 545c4e64..e747b725 100644 --- a/docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md +++ b/docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md @@ -106,11 +106,4 @@ requirements that belong to the nearest `AGENTS.md`. Verify with: -```bash -python -m unittest mechanics.tests.test_mechanics_package_cards -python -m unittest tests.test_docs_surface_guardrails -python scripts/validate_agents_md_shape.py -python scripts/validate_agents_mesh.py -python scripts/validate_repo.py -python scripts/run_tests.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md b/docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md index 6dc3d4bc..7bfa44a3 100644 --- a/docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md +++ b/docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md @@ -85,11 +85,4 @@ validation route before re-enabling migration. The closure is validated by: -```bash -python scripts/validate_agents_md_shape.py -python scripts/validate_agents_mesh.py -python scripts/build_agents_mesh_index.py --check -python scripts/validate_agents_mesh_index.py -python scripts/validate_nested_agents.py -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md b/docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md index 15456b0c..dc6d99d0 100644 --- a/docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md +++ b/docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md @@ -78,13 +78,4 @@ changelog, and tests. Validate the resulting route with: -```bash -python -m unittest mechanics.distillation.tests.test_distillation_incoming_topology -python scripts/validate_agents_md_shape.py -python scripts/validate_agents_mesh.py -python scripts/build_agents_mesh_index.py --check -python scripts/validate_agents_mesh_index.py -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md b/docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md index c2047cf1..db698d08 100644 --- a/docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md +++ b/docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md @@ -80,9 +80,4 @@ update Distillation provenance, legacy index/log, changelog, and topology tests. Validate the resulting route with: -```bash -python -m unittest mechanics.distillation.tests.test_distillation_incoming_topology -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md b/docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md index 83e79174..97ce2bc7 100644 --- a/docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md +++ b/docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md @@ -84,9 +84,4 @@ old packet-local queues. Validate the resulting route with: -```bash -python -m unittest mechanics.distillation.tests.test_distillation_incoming_topology -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -git diff --check -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md b/docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md index 9a30b6ca..aead653c 100644 --- a/docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md +++ b/docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md @@ -92,10 +92,4 @@ decision instead of silently upgrading the registry fields. Use: -```bash -python scripts/build_technique_intelligence.py -python scripts/technique_intelligence.py build --check -python scripts/validate_repo.py -python scripts/run_tests.py -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md b/docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md index acb949a1..9bf3bbc5 100644 --- a/docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md +++ b/docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md @@ -46,7 +46,7 @@ Use full canonical-ID decision filenames as the active source files for Each decision record now owns an `## Index Metadata` block with original date, surface classes, technique axes, mechanic parents, guard families, and posture. Generated lookup indexes under `docs/decisions/indexes/` are derived from that -metadata and checked by `python scripts/generate_decision_indexes.py --check`. +metadata and checked by the decision-index parity check. Previous date-prefixed paths live in git and PR history only. They are not kept as a live repository lookup layer. @@ -103,11 +103,6 @@ that live compatibility files are worth the extra route surface. ## Verification -Use: +Verification route: -```bash -python scripts/generate_decision_indexes.py --check -python scripts/run_tests.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification was routed through the targeted owner checks and repository validation lanes. diff --git a/docs/decisions/TEMPLATE.md b/docs/decisions/TEMPLATE.md index 28cbc9c5..74e126ea 100644 --- a/docs/decisions/TEMPLATE.md +++ b/docs/decisions/TEMPLATE.md @@ -50,7 +50,3 @@ Name the lane ids and nearest owner `AGENTS.md` checks that validate this decision's placement or the resulting change. Do not copy full release or generated command sequences into new records; active command storage belongs in `config/validation_lanes.json`. - -If an exact command transcript is part of the record, place it under a clearly -labeled historical evidence note instead of presenting it as current command -guidance. diff --git a/docs/guardrails/CURRENT_SURFACE_INDEX.md b/docs/guardrails/CURRENT_SURFACE_INDEX.md index 921fad86..79ed5027 100644 --- a/docs/guardrails/CURRENT_SURFACE_INDEX.md +++ b/docs/guardrails/CURRENT_SURFACE_INDEX.md @@ -47,6 +47,7 @@ legacy receipt, mechanic route, or technique bundle named by the relevant file. | `mechanics//` | mechanic-owned operating surfaces, reviews, provenance, and mechanic-local legacy | | `evals/` | technique-local eval pressure, intake, suites, and reports; central proof authority remains in `aoa-evals` | | `generated/` | reproducible generated JSON and compact machine-facing companions | +| `stats/` | owner-local technique-canon questions, measurement contracts, and public reference packets; central protocol authority remains in `aoa-stats` | | `techniques/**/` | authored technique bundle truth | ## Source-Lift Guide District diff --git a/docs/source-lift/artifact-bundles/README.md b/docs/source-lift/artifact-bundles/README.md index 591dfb00..30a3cbd6 100644 --- a/docs/source-lift/artifact-bundles/README.md +++ b/docs/source-lift/artifact-bundles/README.md @@ -17,6 +17,4 @@ Current bundle: Validate with: -```bash -python scripts/validate_abyss_machine_kag_export_bundle.py -``` +Validation follows the source-lift owner card and the repository release lane. diff --git a/docs/testing/test_inventory.json b/docs/testing/test_inventory.json index 5fb6de23..66c33c65 100644 --- a/docs/testing/test_inventory.json +++ b/docs/testing/test_inventory.json @@ -85,6 +85,15 @@ "focused_target": "tests/test_github_workflow_topology.py", "failure_route": "Fix workflow lane entrypoints or PR template wording before changing CI topology." }, + { + "path": "tests/test_local_stats_port.py", + "family": "stats/local-port", + "protects": "Owner-local readiness-ratio derivation and rejection of a false numerator.", + "owner_surface": "stats/port.manifest.json", + "runtime_cost": "fast", + "focused_target": "tests/test_local_stats_port.py", + "failure_route": "Fix the owner readiness projection, local measurement contract, or revision-bound reference packet before changing the exported statistic." + }, { "path": "tests/test_nested_agents_docs.py", "family": "AGENTS/mesh", @@ -223,7 +232,7 @@ { "path": "tests/test_validation_command_authority.py", "family": "release/ci-lane", - "protects": "Validation lane manifest authority, CI gate delegation, and release entrypoint thinness.", + "protects": "Validation lane manifest authority, CI gate delegation, release entrypoint thinness, and Markdown command locality.", "owner_surface": "config/validation_lanes.json", "runtime_cost": "fast", "focused_target": "tests/test_validation_command_authority.py", diff --git a/docs/validation/COMMAND_AUTHORITY.md b/docs/validation/COMMAND_AUTHORITY.md index a3411675..e83b8dac 100644 --- a/docs/validation/COMMAND_AUTHORITY.md +++ b/docs/validation/COMMAND_AUTHORITY.md @@ -26,31 +26,22 @@ - `.github/workflows/repo-validation.yml` owns the PR and moving-main `source-fast` growth gate, with generated checks only on pushes to `main`. - `.github/workflows/release-audit.yml` owns tag/manual release checks through - `python scripts/ci_gate.py --mode release`. + the `release` lane. - `.github/workflows/nightly-sentinel.yml` owns scheduled/manual moving-main - drift checks through `python scripts/ci_gate.py --mode nightly` and latest + drift checks through the `nightly` lane and latest release reproduction on the latest `v*` tag. - `AGENTS.md` cards may name focused local checks, lane ids, and nearby owner routes. They should not copy the full release or generated command sequence. -- Active docs and decision guidance should name lane ids and nearest owner - `AGENTS.md` checks. Exact command snippets in decision records are historical - evidence unless this document or `config/validation_lanes.json` names them as - active authority. -- Decision records, changelogs, receipts, and review ledgers may preserve - command evidence. They are not active lane authority. +- Active docs and decision guidance name lane ids and nearest owner + `AGENTS.md` checks. Exact executable sequences stay in + `config/validation_lanes.json` or a focused `AGENTS.md` when a local command + is genuinely useful there. +- Decision records, changelogs, receipts, landing logs, and review ledgers + preserve verification scope or outcome, not executable command snippets. -## Lane Commands - -Use these active entrypoints: - -| Lane | Entry | -|---|---| -| `source-fast` | `python scripts/ci_gate.py --mode source-fast` | -| `generated` | `python scripts/ci_gate.py --mode generated` | -| `mechanics/part-local` | `python scripts/ci_gate.py --mode mechanics-part-local` | -| `release` | `python scripts/release_check.py` | -| `nightly` | `python scripts/ci_gate.py --mode nightly` | -| `advisory` | `python scripts/ci_gate.py --mode advisory` | +The manifest defines the `source-fast`, `generated`, `mechanics/part-local`, +`release`, `nightly`, and `advisory` routes. Workflow YAML and release tooling +invoke those routes without making this Markdown file a second command store. ## Promotion Rule diff --git a/docs/validation/SCRIPT_TOPOLOGY.md b/docs/validation/SCRIPT_TOPOLOGY.md index ed09ae8f..e292964c 100644 --- a/docs/validation/SCRIPT_TOPOLOGY.md +++ b/docs/validation/SCRIPT_TOPOLOGY.md @@ -40,6 +40,7 @@ tracked Python cache residue. | Family | Owns | Boundary | |---|---|---| | `source_validator` | authored route, AGENTS, and technique source checks | may read source meaning; must not check generated freshness | +| `source_validator_adapter` | owner-local contracts checked by a stronger sibling protocol owner | delegate without copying sibling schemas or rules into this repo | | `projection_builder` | generated/read-model writes from source | may write tracked projections; must not define source meaning | | `projection_validator_module` | generated/read-model parity checks | compares projections; does not own technique truth | | `part_local_builder` / `part_local_validator` | mechanic-owned candidate artifacts | discovered by `scripts/run_part_local_tests.py` from part homes | @@ -62,6 +63,10 @@ Implementation ownership lives under `scripts/validators/`, and [`validator_inventory.json`](validator_inventory.json) remains the narrower inventory for validator modules. +The repo-local KAG and stats adapters remain thin source-lane delegates. Local +KAG indexes and stats measurement meaning stay here; shared KAG generation and +stats protocol grammar stay with their sibling owners. + ## Non-Root Scripts Mechanic part-local builders and validators live beside the part that owns the diff --git a/docs/validation/VALIDATOR_TOPOLOGY.md b/docs/validation/VALIDATOR_TOPOLOGY.md index 30d7a33f..65367100 100644 --- a/docs/validation/VALIDATOR_TOPOLOGY.md +++ b/docs/validation/VALIDATOR_TOPOLOGY.md @@ -11,7 +11,7 @@ standalone gate. | Lane | Posture | Owns | Does not own | |---|---|---|---| -| `source-fast` | blocking growth gate | AGENTS mesh, nested route-card shape, semantic route snippets, fast authored technique source contracts | generated freshness, release freeze, runtime/export policy | +| `source-fast` | blocking growth gate | repo-local KAG parity, owner-local stats protocol, AGENTS mesh, nested route-card shape, semantic route snippets, fast authored technique source contracts | generated freshness, cross-owner statistics, release freeze, runtime/export policy | | `generated` | blocking projection gate | generated/read-model rebuild parity and drift snapshots | technique meaning, skill export/runtime contracts | | `mechanics/part-local` | blocking mechanic-owned gate | part-local candidate registries, handoff packets, builder `--check` parity, pytest homes | root release packaging, sibling runtime behavior | | `release` | blocking release gate | frozen release-prep sequence, Spark lane, mechanics/part-local lane, tests, validators, worktree stabilization | ordinary PR growth gating | @@ -21,11 +21,13 @@ standalone gate. ## GitHub CI Route `Repo Validation` runs `source-fast` for pull requests and pushes to `main`. -That gate checks route/topology plus source-owned technique contracts through -`scripts/validate_source_contracts.py`; it does not rebuild or compare -generated freshness. Generated checks run only on pushes to `main`, where the -moving growth surface can absorb projection drift checks without turning every -PR into a release freeze. +That gate checks repo-local KAG parity, the owner-local stats port, route +topology, and source-owned technique contracts. The stats adapter delegates +protocol validation to pinned `aoa-stats`; it does not copy central schemas or +aggregate sibling owners. The gate does not rebuild or compare generated +freshness. Generated checks run only on pushes to `main`, where the moving +growth surface can absorb projection drift checks without turning every PR into +a release freeze. `Release Audit` and `Nightly Sentinel` are separate workflows. Release uses the `release` mode; nightly runs the moving-main `nightly` mode and separately @@ -43,6 +45,9 @@ projections, KAG export, Technique Intelligence, questbook, and public hygiene. Authored technique bundles, docs contracts, mechanic source packets, schemas, and AGENTS cards own meaning. +The local `stats/` port owns technique-canon questions and measurement meaning. +Central protocol grammar and cross-owner aggregation remain with `aoa-stats`. + Generated catalogs, readers, capsules, KAG export, AGENTS mesh mirrors, and mechanic generated indexes are projections. Generated validators check rebuild parity and drift. They do not define what a technique means. diff --git a/docs/validation/script_inventory.json b/docs/validation/script_inventory.json index f9f51aba..01f767ae 100644 --- a/docs/validation/script_inventory.json +++ b/docs/validation/script_inventory.json @@ -820,6 +820,20 @@ "test_target": "tests/test_validation_command_authority.py", "disposition": "keep" }, + { + "path": "scripts/validate_local_stats_port.py", + "family": "source_validator_adapter", + "organ_lane": "source/topology", + "owner_surface": "stats/AGENTS.md", + "source_truth": ["stats/port.manifest.json", "stats/packets/*.json", "aoa-stats measurement and local-port contracts"], + "reads": ["owner-local stats port", "checked-out aoa-stats protocol validator"], + "writes": [], + "side_effects": "delegates validation output to the central stats protocol owner", + "validation_lane": "source_fast", + "ci_inclusion": "source_fast and release_check command sequences", + "test_target": "tests/test_local_stats_port.py", + "disposition": "keep" + }, { "path": "scripts/validate_semantic_agents.py", "family": "source_validator", diff --git a/docs/validation/validator_inventory.json b/docs/validation/validator_inventory.json index 81f26427..276b00a7 100644 --- a/docs/validation/validator_inventory.json +++ b/docs/validation/validator_inventory.json @@ -216,11 +216,15 @@ "mode": "blocking", "command_sequence": "source_fast", "entrypoint": "python scripts/ci_gate.py --mode source-fast", - "owner": "AGENTS mesh, route-card source topology, and authored technique source contracts", + "owner": "repo-local KAG parity, owner-local stats protocol, AGENTS mesh, route-card source topology, and authored technique source contracts", "inputs": [ "AGENTS.md", "config/agents_mesh.json", "nested AGENTS.md cards", + "kag/indexes/*.json", + "stats/port.manifest.json", + "stats/packets/*.json", + "pinned aoa-kag and aoa-stats contract owners", "authored technique bundles", "source-owned technique contract docs", "schemas/*.json" @@ -228,7 +232,7 @@ "outputs": [ "source/topology validation result" ], - "failure_route": "Fix the nearest AGENTS card, mesh config, semantic route snippet, authored technique bundle, schema, or source-owned contract doc." + "failure_route": "Fix the local KAG index, stats port, nearest AGENTS card, mesh config, semantic route snippet, authored technique bundle, schema, or source-owned contract doc; change shared grammar only in its stronger sibling owner." }, { "id": "generated", diff --git a/generated/agents_mesh.min.json b/generated/agents_mesh.min.json index d2882ced..63e6dceb 100644 --- a/generated/agents_mesh.min.json +++ b/generated/agents_mesh.min.json @@ -1 +1 @@ -{"authority_ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md","canonical_required_headings":["## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"cards":[{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":62,"missing_canonical_headings":[],"path":".agents/AGENTS.md","sha256":"c8cbf70144517f13109472b85242c297781b2c2d006edbb050dcc0b51799ffca","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":49,"missing_canonical_headings":[],"path":".agents/skills/AGENTS.md","sha256":"295428abcc11ea87d2a1b1e2c610e632f60076ccec7d836154888c865eb5ba90","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":85,"missing_canonical_headings":[],"path":".agents/spark/AGENTS.md","sha256":"d6b9ad231144e3099391deaac2303e6691680382215a9cfa4247a7501c41e17d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Platform sync","## Validation","## Closeout"],"line_count":82,"missing_canonical_headings":[],"path":".github/AGENTS.md","sha256":"613833c8cab13f9573c3b9756d00b3208c2ba9369e761f9f37d4658f2c3fcb48","shape_status":"canonical"},{"first_line_ok":true,"heading_count":15,"headings":["# AGENTS.md","## Applies to","## Role","## Owner lane","## Read before editing","## Route modes","## AGENTS stack law","## Memory route","## GitHub landing workflow","## Post-change route review","## Boundaries","## Route away when","## Validation","## Closeout","## Historical Reference"],"line_count":193,"missing_canonical_headings":[],"path":"AGENTS.md","sha256":"e8f950fd581a75da8a284f43a7734046153e04dae046b10eff8bb39f26e98e3c","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":57,"missing_canonical_headings":[],"path":"config/AGENTS.md","sha256":"4249336cd0715f26a08618b7667bd459a3339d9a7ab00fa0fdf6df3f62c35107","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":67,"missing_canonical_headings":[],"path":"docs/AGENTS.md","sha256":"25501b6bd53ae906a645c06229c6870e4c1a64278e329667dde12630fe62acc9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":77,"missing_canonical_headings":[],"path":"docs/decisions/AGENTS.md","sha256":"e701822f01613a64b36afc0314bfab791c3607a708ece4905f42355e0b0eabe9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":69,"missing_canonical_headings":[],"path":"docs/guardrails/AGENTS.md","sha256":"e148b1e72b725e4920425ffca74a0d7181bb016de59add14e3bc1e8dc039c827","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":52,"missing_canonical_headings":[],"path":"docs/readers/AGENTS.md","sha256":"faae2cb24ececc8cd58d00445dda7f76b084143cf961c6b27f93d7dffe681973","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":69,"missing_canonical_headings":[],"path":"docs/review/AGENTS.md","sha256":"9c5d219be6882c1e5f396fb34196aadc50c42c318e08f2ae7898950528a80351","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":74,"missing_canonical_headings":[],"path":"docs/selection/AGENTS.md","sha256":"0d19d147c5ff726a75287652ae4d05966fed4066fa000ccde86ad0804f11aee9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":69,"missing_canonical_headings":[],"path":"docs/source-lift/AGENTS.md","sha256":"27d916075be0a89265479e0568b0b7bd523eff3d6bb9a3a2b6a4e6456cf8de64","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":56,"missing_canonical_headings":[],"path":"docs/validation/AGENTS.md","sha256":"f062632c34d2d2f8f3e860861003413c0bfbd9b08cee3949270c77d89ac220a3","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":43,"missing_canonical_headings":[],"path":"evals/AGENTS.md","sha256":"d61e15d2bf526314ebc5534c1dc53d44b3e87ebed29edc54e91fa3b752ab4047","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Required Shape","## Validation","## Closeout"],"line_count":63,"missing_canonical_headings":[],"path":"examples/AGENTS.md","sha256":"b958ff62afc3dd87d67e68204dd392854b337467b586cf581eb4442a8e704ed9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":65,"missing_canonical_headings":[],"path":"generated/AGENTS.md","sha256":"bf7680fae9bf67491b1da546f7ec067b1843a087f1cb665d928012a7982448d1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Operating Card","## Read before editing","## Source Routes","## Boundaries","## Validation","## Closeout"],"line_count":69,"missing_canonical_headings":[],"path":"kag/AGENTS.md","sha256":"1eaceae85a3ebb6b8625557fe9bb98d639334c32e1fd7b6954d24cd104f8d246","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":63,"missing_canonical_headings":[],"path":"legacy/AGENTS.md","sha256":"79d928cf27868c68420fcf3873ac7f09e28e1172ae27daefa0eadd64e6a8290f","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":56,"missing_canonical_headings":[],"path":"legacy/archive/AGENTS.md","sha256":"0007f43690ef581d0a3b3b9788a795fee9d21eb1899f724e118ed13316cb2bc0","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"legacy/raw/AGENTS.md","sha256":"9d1ef2ac1bdcd6cbaa5cc3735c6b48ff5766ddb60229877eac02f29e8067ef48","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":52,"missing_canonical_headings":[],"path":"legacy/receipts/AGENTS.md","sha256":"23aa7f236f5e04ff64b46c8516bfda87f8fd1f21eca8a02c333cc3b10f4b06e0","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Owner lane","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":124,"missing_canonical_headings":[],"path":"mechanics/AGENTS.md","sha256":"fe8ce974c2a12b7400464b4e5479efea4ebd79a5cbec4dade14715a4b7979502","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":67,"missing_canonical_headings":[],"path":"mechanics/agon/AGENTS.md","sha256":"b5773a027867161b828014a87207a80bfdd4bbb7a2ffd5932a17d57cae372959","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":48,"missing_canonical_headings":[],"path":"mechanics/agon/legacy/AGENTS.md","sha256":"b74f63c3979fa86d9747ddc472b41facb0c204e5daacf1d755447703bd243c28","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/agon/parts/AGENTS.md","sha256":"3e1f494fc6b6b1bb600d038e2f1f3b9517bc9e55b08ae2ee0c731c06f3f6bd62","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"mechanics/antifragility/AGENTS.md","sha256":"04061b4607dc30e89136c0d7096df3d5921b669d0a7c2156b0240730da268510","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":47,"missing_canonical_headings":[],"path":"mechanics/antifragility/legacy/AGENTS.md","sha256":"8f470692ce965d92026d535dc35233464ef2bbb34f4eaf6fb221985ab281fdd7","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":52,"missing_canonical_headings":[],"path":"mechanics/antifragility/parts/AGENTS.md","sha256":"b636f113c3ab684d78ba983ded38b2549c178f29286b9b18afe603f470d2bf62","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":63,"missing_canonical_headings":[],"path":"mechanics/audit/AGENTS.md","sha256":"0609d9c47ee04e19f60debc4feb8ea82ad9cf2ad23dd1a981c2a4b8f83509908","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":48,"missing_canonical_headings":[],"path":"mechanics/audit/legacy/AGENTS.md","sha256":"fe0ff8e2324b19ec035b0178ee7776a0c833bc12562871e894942575f7ee07a1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/audit/parts/AGENTS.md","sha256":"1cab2e8285183b1ef06dab38b7b25b02613374bc678fe1b31054ce04ea55721b","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":58,"missing_canonical_headings":[],"path":"mechanics/boundary-bridge/AGENTS.md","sha256":"c5ee92e7f754bac6f9a8f9e3f86662b1826b8208be60d91c67d82913d8ad3c38","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/boundary-bridge/legacy/AGENTS.md","sha256":"ed08ef9392f49d113844fe8a8edfabed0625f426ea6fb3309e25330cd86e1fa1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/boundary-bridge/parts/AGENTS.md","sha256":"e3d70cc7cca40f8a1da5b05e470acba9a1475d6b320187495c88c9715c7ffd76","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":57,"missing_canonical_headings":[],"path":"mechanics/checkpoint/AGENTS.md","sha256":"ba34075a1204f4014a77cd6f757092988344fe5bb67488cb35d033898c74c957","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/checkpoint/legacy/AGENTS.md","sha256":"ed71d577e7221e7b671627e1645bcdf9fcce32f3663a5314b2553ea16c3552e0","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":52,"missing_canonical_headings":[],"path":"mechanics/checkpoint/parts/AGENTS.md","sha256":"411f2856254a7c5ee049eaf9f2ce2fccea092463fbcf05f43c62edfdb29a0a63","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":96,"missing_canonical_headings":[],"path":"mechanics/distillation/AGENTS.md","sha256":"db60b1d2146c8797035b9a8fd17a28de8ff9870900b63591f897587d9304e6ef","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":42,"missing_canonical_headings":[],"path":"mechanics/distillation/legacy/AGENTS.md","sha256":"51a47cf7bd2df06be438da1093b1cdaa01826697b5d121c7dc5c5a3ca71ee72e","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/AGENTS.md","sha256":"2f3e536e17c19abef1b5e2c58c72cdaef4486fc9224dc68409e5c314eb81d3da","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":60,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/candidate-intake/AGENTS.md","sha256":"c4fa9860f0131f71f9299b0529c5c4d8824ef3dad70972e7c0b5e22a5235a951","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":85,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/AGENTS.md","sha256":"d4fb3921061ad3eadfde25ec740483ec951d642eff4341c740efd508c672df84","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/config/AGENTS.md","sha256":"b0f7cb509bcac4c88e43fc5c9f39464e67f5bc93961ec26e2355833a84e8c85b","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/data/AGENTS.md","sha256":"13e5ad1ff983b7d1e48444728b2e4b9edfd79ac6d8303ffe3349ad9e895854a7","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":56,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/reports/AGENTS.md","sha256":"d6d2ca69c617153b88d1613fd084dfe02d6bdc0b41c292ad5ee37aadd5c25067","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":79,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md","sha256":"7639ec9dea2c9ef8c40ee1ca80125d88d9af5531be4b30bd158421d42b702775","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/scripts/AGENTS.md","sha256":"826cad57f19ddbffa09c98ed6b61e022d34b2f84167527918cfd3473e57142f0","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":64,"missing_canonical_headings":[],"path":"mechanics/experience/AGENTS.md","sha256":"8917cbc109dfed5ab3d9d01c70adac34066c4f63087a31db2c72e3a040c2e6a3","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/experience/legacy/AGENTS.md","sha256":"8ab75859f68beb79a9cde58f45d6cfb37035c812d5ed2a2575f684266332ec9d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/experience/parts/AGENTS.md","sha256":"2723a4d2ea63110aec33110e10a5b4a51748dd0873f48438f6a970bffb116bee","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/growth-cycle/AGENTS.md","sha256":"d96dc243756ee7158380b102a6db5611a5c6c41ca1ffe4215cb0d1ce6497493f","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/growth-cycle/legacy/AGENTS.md","sha256":"910066ce88e40cd0e3492aae3369e766a5ac6df9f0143041c9a4c0fa6cc6d8fc","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/growth-cycle/parts/AGENTS.md","sha256":"a95f36eea9749ba3a3ba5159e54dc1841934c72334fcab5f05cc980cc748ce6a","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":63,"missing_canonical_headings":[],"path":"mechanics/method-growth/AGENTS.md","sha256":"badf03ec874db6375e90952c60b3872418e2b7788eade63eacd1f473220cba2d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/method-growth/legacy/AGENTS.md","sha256":"ae941addba60190a162c806bb73de6b904d0c19bd5447bb5e352da1e2638da93","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":43,"missing_canonical_headings":[],"path":"mechanics/method-growth/parts/AGENTS.md","sha256":"5fc8772addecfc010b125474d92a809f94b6269b2f09a1b5d4b931523cc8e9b1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":58,"missing_canonical_headings":[],"path":"mechanics/questbook/AGENTS.md","sha256":"c3bfe7733b215efecf9ed9e9dcdef07c5bd76c4cb3bb71a82789410fdcf166c2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/questbook/legacy/AGENTS.md","sha256":"fb8e7c997ece6f2f2a66dc21674e260a1ecc5344878860d0c102546d573f8063","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"mechanics/questbook/parts/AGENTS.md","sha256":"382b37ff5d3f90b8e10e3fb43a06a11039c702e292f10ea8f296f2ef970eb2f3","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/recurrence/AGENTS.md","sha256":"f25cc64a173ed291ae99f475cd41de8ad5d1b14ed0d658442e68308cbe5b93b8","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/recurrence/legacy/AGENTS.md","sha256":"70dbddb3c9d1a0313beb756ae2fce94b1fcf9626264f44ac04c6e86892532c09","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/recurrence/parts/AGENTS.md","sha256":"f4782cac5fd9ac13f78e4229d7f9a850668eeabaf6e3263e7db4d67559734acc","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/recurrence/parts/live-observation-producers/scripts/AGENTS.md","sha256":"4b035510f7b89e6ed96e9bcecfdf7d589d6cf43faed067c441062a9dc2606240","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/release-support/AGENTS.md","sha256":"c97cd62c8b22500a968644f1a333230987586af28b7765bf91114ae0cdc95dd9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/release-support/legacy/AGENTS.md","sha256":"8ffd4265732f887de092b6abf7038c0f10eccb8ba59177d775a7719f197ff753","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/release-support/parts/AGENTS.md","sha256":"1dd7befaa1719f4cc60c4a030bea74043e606bcfd8ef16f5d8f3187f0d643cba","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Owner Lane","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":89,"missing_canonical_headings":[],"path":"mechanics/rpg/AGENTS.md","sha256":"97943993751889bebffefcace950bf563562570ff2c8cccbd81f8f1596c37cf7","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":45,"missing_canonical_headings":[],"path":"mechanics/rpg/legacy/AGENTS.md","sha256":"3cf7302ce890f54fe770f378b64afae5f55d268244044b88a2e4e01ebd19de26","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":45,"missing_canonical_headings":[],"path":"mechanics/rpg/parts/AGENTS.md","sha256":"2dd19aa74f7fc904443e2d44393a7ba0fd955d9a2e3205e202e2a06796a4c19d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/tests/AGENTS.md","sha256":"2c1dd52b65ff7c3c1c4429f5692fcb967c24e5309b1b3d149d8212c7b1215ef9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Candidate Route","## Reviewed Landing Route","## Validation","## Closeout"],"line_count":80,"missing_canonical_headings":[],"path":"memo/AGENTS.md","sha256":"d111f6695ba5ee4cf570450b6ef1f14d2d0859d7bc10d8fc6322cab419bd61e2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":48,"missing_canonical_headings":[],"path":"quests/AGENTS.md","sha256":"6f6c1e4bcde970d168ddb90ed50e3e128af83134fddc916d247e89b18bcfc0f8","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"quests/agon/AGENTS.md","sha256":"5c09ab7257f014983c06b9202bf1b23e6dfba96cd40cb386e0202e8ebfc22e33","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"quests/techniques/AGENTS.md","sha256":"e0160327badb89296df25a765c7d99854e806b3fbfdbd35451262313352a654d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":49,"missing_canonical_headings":[],"path":"schemas/AGENTS.md","sha256":"c4ad483cba61e6ebedb2d97663854a0f0770dfcb741bd68bccf217d232cb47e2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":66,"missing_canonical_headings":[],"path":"scripts/AGENTS.md","sha256":"b21852bb5884f61e19c722292fdd6883813ea385b5eb2a413e41d72db3ef65a9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":73,"missing_canonical_headings":[],"path":"scripts/validators/AGENTS.md","sha256":"7d5854a90bdf88a5fadab629e1352a6816a04c4b752702a774b3abf57b3119b1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":65,"missing_canonical_headings":[],"path":"techniques/AGENTS.md","sha256":"a76c718ad1736c20c88b31ffe3d4dd9e3e1b81e63e8a1880105b2348f4098a58","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":72,"missing_canonical_headings":[],"path":"techniques/agent-workflows/AGENTS.md","sha256":"f6797d4ff6a798518d0bd46cd16f30ff2de7aea43780638bcafa933a9e527dde","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":79,"missing_canonical_headings":[],"path":"techniques/continuity/AGENTS.md","sha256":"3c90ec66af5505b2fd251f4b193230ea5c068e073dd60b1221e4ddcf9e2f2a49","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":76,"missing_canonical_headings":[],"path":"techniques/docs/AGENTS.md","sha256":"42960c461514541d92b9fc7e87920ecc7c2c24eeb2d7136e936c712f86e36570","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":74,"missing_canonical_headings":[],"path":"techniques/evaluation/AGENTS.md","sha256":"b6697128652c78aa4e25d2bc89067bcc9dbe6afda8365ca3f788d0735c695951","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":89,"missing_canonical_headings":[],"path":"techniques/execution/AGENTS.md","sha256":"1c31be06ca0be16d944914e871e0f2ce92b106e1926e4718e62915a1fdfef53d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":89,"missing_canonical_headings":[],"path":"techniques/governance/AGENTS.md","sha256":"e39e826a270fd54576fa648a3611f1879a1f05df321aa66786caed686bb29d82","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":90,"missing_canonical_headings":[],"path":"techniques/history/AGENTS.md","sha256":"70a3851b47b3470f222463121e23fa216c76a1d3d6861e229cc8161aa03ab755","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":78,"missing_canonical_headings":[],"path":"techniques/ingest/AGENTS.md","sha256":"2c99392e7e3616d1bbae85099afe6331a2cd2aa13b2275d8e013878b65c276eb","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":104,"missing_canonical_headings":[],"path":"techniques/instruction/AGENTS.md","sha256":"d768ac55b23adb3d03382eb12bb453c8a15dfbeb628c85c6f294cf7372a70ea2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":78,"missing_canonical_headings":[],"path":"techniques/knowledge-lift/AGENTS.md","sha256":"1b71092edc7071a921ddfea2cdb8b78d604b3f9b2b0f7543c818f174dd81faaa","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":114,"missing_canonical_headings":[],"path":"techniques/proof/AGENTS.md","sha256":"7d741003ccf10cb4e145285d7296267a1f568fc26be4fc1e53a2833c98aae77f","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":81,"missing_canonical_headings":[],"path":"techniques/recovery/AGENTS.md","sha256":"ae4b08fca0a2f3c856d405577bb16fe91c924923fbac684078433bb467ee9b57","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":79,"missing_canonical_headings":[],"path":"techniques/tool-use/AGENTS.md","sha256":"868e6914ded774acddd3e15ae9aeebfadf4f200dfb411660f1adb4abb61897e2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":45,"missing_canonical_headings":[],"path":"templates/AGENTS.md","sha256":"3b96a5adc3ec746b3e319a22a4c165f4e6c352b2a348037d5434a3c7f4313c9e","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":62,"missing_canonical_headings":[],"path":"tests/AGENTS.md","sha256":"fd9b39d29f61072a219597669884cba0cb428a694b37283a8410424ce516e0f8","shape_status":"canonical"}],"config_ref":"config/agents_mesh.json","counts":{"canonical":94,"cards":94,"migration":0},"design_ref":"DESIGN.AGENTS.md","generated_ref":"generated/agents_mesh.min.json","root_agents_ref":"AGENTS.md","schema_version":"aoa_techniques_agents_mesh_index_v1","source_of_truth":"agents-md-mesh-v1","system_design_ref":"DESIGN.md"} +{"authority_ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md","canonical_required_headings":["## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"cards":[{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":62,"missing_canonical_headings":[],"path":".agents/AGENTS.md","sha256":"c8cbf70144517f13109472b85242c297781b2c2d006edbb050dcc0b51799ffca","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":49,"missing_canonical_headings":[],"path":".agents/skills/AGENTS.md","sha256":"295428abcc11ea87d2a1b1e2c610e632f60076ccec7d836154888c865eb5ba90","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":85,"missing_canonical_headings":[],"path":".agents/spark/AGENTS.md","sha256":"d6b9ad231144e3099391deaac2303e6691680382215a9cfa4247a7501c41e17d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Platform sync","## Validation","## Closeout"],"line_count":82,"missing_canonical_headings":[],"path":".github/AGENTS.md","sha256":"613833c8cab13f9573c3b9756d00b3208c2ba9369e761f9f37d4658f2c3fcb48","shape_status":"canonical"},{"first_line_ok":true,"heading_count":15,"headings":["# AGENTS.md","## Applies to","## Role","## Owner lane","## Read before editing","## Route modes","## AGENTS stack law","## Memory route","## GitHub landing workflow","## Post-change route review","## Boundaries","## Route away when","## Validation","## Closeout","## Historical Reference"],"line_count":200,"missing_canonical_headings":[],"path":"AGENTS.md","sha256":"2baf594ab9f8e7ed6efb041872cfd5a9bf9e07becc167089b6fff6d0a9e6b6a6","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":57,"missing_canonical_headings":[],"path":"config/AGENTS.md","sha256":"4249336cd0715f26a08618b7667bd459a3339d9a7ab00fa0fdf6df3f62c35107","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":67,"missing_canonical_headings":[],"path":"docs/AGENTS.md","sha256":"25501b6bd53ae906a645c06229c6870e4c1a64278e329667dde12630fe62acc9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":75,"missing_canonical_headings":[],"path":"docs/decisions/AGENTS.md","sha256":"f3cbb0acbf4daa2717006fcc0007b8e5b89f5e8d59d9bd2f06163d08c178e1aa","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":69,"missing_canonical_headings":[],"path":"docs/guardrails/AGENTS.md","sha256":"e148b1e72b725e4920425ffca74a0d7181bb016de59add14e3bc1e8dc039c827","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":52,"missing_canonical_headings":[],"path":"docs/readers/AGENTS.md","sha256":"faae2cb24ececc8cd58d00445dda7f76b084143cf961c6b27f93d7dffe681973","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":69,"missing_canonical_headings":[],"path":"docs/review/AGENTS.md","sha256":"9c5d219be6882c1e5f396fb34196aadc50c42c318e08f2ae7898950528a80351","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":74,"missing_canonical_headings":[],"path":"docs/selection/AGENTS.md","sha256":"0d19d147c5ff726a75287652ae4d05966fed4066fa000ccde86ad0804f11aee9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":69,"missing_canonical_headings":[],"path":"docs/source-lift/AGENTS.md","sha256":"27d916075be0a89265479e0568b0b7bd523eff3d6bb9a3a2b6a4e6456cf8de64","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":56,"missing_canonical_headings":[],"path":"docs/validation/AGENTS.md","sha256":"f062632c34d2d2f8f3e860861003413c0bfbd9b08cee3949270c77d89ac220a3","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":43,"missing_canonical_headings":[],"path":"evals/AGENTS.md","sha256":"d61e15d2bf526314ebc5534c1dc53d44b3e87ebed29edc54e91fa3b752ab4047","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Required Shape","## Validation","## Closeout"],"line_count":63,"missing_canonical_headings":[],"path":"examples/AGENTS.md","sha256":"b958ff62afc3dd87d67e68204dd392854b337467b586cf581eb4442a8e704ed9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":65,"missing_canonical_headings":[],"path":"generated/AGENTS.md","sha256":"bf7680fae9bf67491b1da546f7ec067b1843a087f1cb665d928012a7982448d1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Operating Card","## Read before editing","## Source Routes","## Boundaries","## Validation","## Closeout"],"line_count":69,"missing_canonical_headings":[],"path":"kag/AGENTS.md","sha256":"1eaceae85a3ebb6b8625557fe9bb98d639334c32e1fd7b6954d24cd104f8d246","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":63,"missing_canonical_headings":[],"path":"legacy/AGENTS.md","sha256":"79d928cf27868c68420fcf3873ac7f09e28e1172ae27daefa0eadd64e6a8290f","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":56,"missing_canonical_headings":[],"path":"legacy/archive/AGENTS.md","sha256":"0007f43690ef581d0a3b3b9788a795fee9d21eb1899f724e118ed13316cb2bc0","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"legacy/raw/AGENTS.md","sha256":"9d1ef2ac1bdcd6cbaa5cc3735c6b48ff5766ddb60229877eac02f29e8067ef48","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":52,"missing_canonical_headings":[],"path":"legacy/receipts/AGENTS.md","sha256":"23aa7f236f5e04ff64b46c8516bfda87f8fd1f21eca8a02c333cc3b10f4b06e0","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Owner lane","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":124,"missing_canonical_headings":[],"path":"mechanics/AGENTS.md","sha256":"fe8ce974c2a12b7400464b4e5479efea4ebd79a5cbec4dade14715a4b7979502","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":67,"missing_canonical_headings":[],"path":"mechanics/agon/AGENTS.md","sha256":"b5773a027867161b828014a87207a80bfdd4bbb7a2ffd5932a17d57cae372959","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":48,"missing_canonical_headings":[],"path":"mechanics/agon/legacy/AGENTS.md","sha256":"b74f63c3979fa86d9747ddc472b41facb0c204e5daacf1d755447703bd243c28","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/agon/parts/AGENTS.md","sha256":"3e1f494fc6b6b1bb600d038e2f1f3b9517bc9e55b08ae2ee0c731c06f3f6bd62","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"mechanics/antifragility/AGENTS.md","sha256":"04061b4607dc30e89136c0d7096df3d5921b669d0a7c2156b0240730da268510","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":47,"missing_canonical_headings":[],"path":"mechanics/antifragility/legacy/AGENTS.md","sha256":"8f470692ce965d92026d535dc35233464ef2bbb34f4eaf6fb221985ab281fdd7","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":52,"missing_canonical_headings":[],"path":"mechanics/antifragility/parts/AGENTS.md","sha256":"b636f113c3ab684d78ba983ded38b2549c178f29286b9b18afe603f470d2bf62","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":63,"missing_canonical_headings":[],"path":"mechanics/audit/AGENTS.md","sha256":"0609d9c47ee04e19f60debc4feb8ea82ad9cf2ad23dd1a981c2a4b8f83509908","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":48,"missing_canonical_headings":[],"path":"mechanics/audit/legacy/AGENTS.md","sha256":"fe0ff8e2324b19ec035b0178ee7776a0c833bc12562871e894942575f7ee07a1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/audit/parts/AGENTS.md","sha256":"1cab2e8285183b1ef06dab38b7b25b02613374bc678fe1b31054ce04ea55721b","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":58,"missing_canonical_headings":[],"path":"mechanics/boundary-bridge/AGENTS.md","sha256":"c5ee92e7f754bac6f9a8f9e3f86662b1826b8208be60d91c67d82913d8ad3c38","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/boundary-bridge/legacy/AGENTS.md","sha256":"ed08ef9392f49d113844fe8a8edfabed0625f426ea6fb3309e25330cd86e1fa1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/boundary-bridge/parts/AGENTS.md","sha256":"e3d70cc7cca40f8a1da5b05e470acba9a1475d6b320187495c88c9715c7ffd76","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":57,"missing_canonical_headings":[],"path":"mechanics/checkpoint/AGENTS.md","sha256":"ba34075a1204f4014a77cd6f757092988344fe5bb67488cb35d033898c74c957","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/checkpoint/legacy/AGENTS.md","sha256":"ed71d577e7221e7b671627e1645bcdf9fcce32f3663a5314b2553ea16c3552e0","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":52,"missing_canonical_headings":[],"path":"mechanics/checkpoint/parts/AGENTS.md","sha256":"411f2856254a7c5ee049eaf9f2ce2fccea092463fbcf05f43c62edfdb29a0a63","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":96,"missing_canonical_headings":[],"path":"mechanics/distillation/AGENTS.md","sha256":"db60b1d2146c8797035b9a8fd17a28de8ff9870900b63591f897587d9304e6ef","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":42,"missing_canonical_headings":[],"path":"mechanics/distillation/legacy/AGENTS.md","sha256":"51a47cf7bd2df06be438da1093b1cdaa01826697b5d121c7dc5c5a3ca71ee72e","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/AGENTS.md","sha256":"2f3e536e17c19abef1b5e2c58c72cdaef4486fc9224dc68409e5c314eb81d3da","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":60,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/candidate-intake/AGENTS.md","sha256":"c4fa9860f0131f71f9299b0529c5c4d8824ef3dad70972e7c0b5e22a5235a951","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":85,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/AGENTS.md","sha256":"d4fb3921061ad3eadfde25ec740483ec951d642eff4341c740efd508c672df84","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/config/AGENTS.md","sha256":"b0f7cb509bcac4c88e43fc5c9f39464e67f5bc93961ec26e2355833a84e8c85b","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/data/AGENTS.md","sha256":"13e5ad1ff983b7d1e48444728b2e4b9edfd79ac6d8303ffe3349ad9e895854a7","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":56,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/reports/AGENTS.md","sha256":"d6d2ca69c617153b88d1613fd084dfe02d6bdc0b41c292ad5ee37aadd5c25067","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":79,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md","sha256":"7639ec9dea2c9ef8c40ee1ca80125d88d9af5531be4b30bd158421d42b702775","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/distillation/parts/technique-reform-ingress/scripts/AGENTS.md","sha256":"826cad57f19ddbffa09c98ed6b61e022d34b2f84167527918cfd3473e57142f0","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":64,"missing_canonical_headings":[],"path":"mechanics/experience/AGENTS.md","sha256":"8917cbc109dfed5ab3d9d01c70adac34066c4f63087a31db2c72e3a040c2e6a3","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/experience/legacy/AGENTS.md","sha256":"8ab75859f68beb79a9cde58f45d6cfb37035c812d5ed2a2575f684266332ec9d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/experience/parts/AGENTS.md","sha256":"2723a4d2ea63110aec33110e10a5b4a51748dd0873f48438f6a970bffb116bee","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/growth-cycle/AGENTS.md","sha256":"d96dc243756ee7158380b102a6db5611a5c6c41ca1ffe4215cb0d1ce6497493f","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/growth-cycle/legacy/AGENTS.md","sha256":"910066ce88e40cd0e3492aae3369e766a5ac6df9f0143041c9a4c0fa6cc6d8fc","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/growth-cycle/parts/AGENTS.md","sha256":"a95f36eea9749ba3a3ba5159e54dc1841934c72334fcab5f05cc980cc748ce6a","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Source split","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":63,"missing_canonical_headings":[],"path":"mechanics/method-growth/AGENTS.md","sha256":"badf03ec874db6375e90952c60b3872418e2b7788eade63eacd1f473220cba2d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/method-growth/legacy/AGENTS.md","sha256":"ae941addba60190a162c806bb73de6b904d0c19bd5447bb5e352da1e2638da93","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":43,"missing_canonical_headings":[],"path":"mechanics/method-growth/parts/AGENTS.md","sha256":"5fc8772addecfc010b125474d92a809f94b6269b2f09a1b5d4b931523cc8e9b1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":58,"missing_canonical_headings":[],"path":"mechanics/questbook/AGENTS.md","sha256":"c3bfe7733b215efecf9ed9e9dcdef07c5bd76c4cb3bb71a82789410fdcf166c2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/questbook/legacy/AGENTS.md","sha256":"fb8e7c997ece6f2f2a66dc21674e260a1ecc5344878860d0c102546d573f8063","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"mechanics/questbook/parts/AGENTS.md","sha256":"382b37ff5d3f90b8e10e3fb43a06a11039c702e292f10ea8f296f2ef970eb2f3","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/recurrence/AGENTS.md","sha256":"f25cc64a173ed291ae99f475cd41de8ad5d1b14ed0d658442e68308cbe5b93b8","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/recurrence/legacy/AGENTS.md","sha256":"70dbddb3c9d1a0313beb756ae2fce94b1fcf9626264f44ac04c6e86892532c09","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/recurrence/parts/AGENTS.md","sha256":"f4782cac5fd9ac13f78e4229d7f9a850668eeabaf6e3263e7db4d67559734acc","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":53,"missing_canonical_headings":[],"path":"mechanics/recurrence/parts/live-observation-producers/scripts/AGENTS.md","sha256":"4b035510f7b89e6ed96e9bcecfdf7d589d6cf43faed067c441062a9dc2606240","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/release-support/AGENTS.md","sha256":"c97cd62c8b22500a968644f1a333230987586af28b7765bf91114ae0cdc95dd9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":46,"missing_canonical_headings":[],"path":"mechanics/release-support/legacy/AGENTS.md","sha256":"8ffd4265732f887de092b6abf7038c0f10eccb8ba59177d775a7719f197ff753","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":51,"missing_canonical_headings":[],"path":"mechanics/release-support/parts/AGENTS.md","sha256":"1dd7befaa1719f4cc60c4a030bea74043e606bcfd8ef16f5d8f3187f0d643cba","shape_status":"canonical"},{"first_line_ok":true,"heading_count":8,"headings":["# AGENTS.md","## Applies to","## Role","## Owner Lane","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":89,"missing_canonical_headings":[],"path":"mechanics/rpg/AGENTS.md","sha256":"97943993751889bebffefcace950bf563562570ff2c8cccbd81f8f1596c37cf7","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":45,"missing_canonical_headings":[],"path":"mechanics/rpg/legacy/AGENTS.md","sha256":"3cf7302ce890f54fe770f378b64afae5f55d268244044b88a2e4e01ebd19de26","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":45,"missing_canonical_headings":[],"path":"mechanics/rpg/parts/AGENTS.md","sha256":"2dd19aa74f7fc904443e2d44393a7ba0fd955d9a2e3205e202e2a06796a4c19d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":44,"missing_canonical_headings":[],"path":"mechanics/tests/AGENTS.md","sha256":"2c1dd52b65ff7c3c1c4429f5692fcb967c24e5309b1b3d149d8212c7b1215ef9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Candidate Route","## Reviewed Landing Route","## Validation","## Closeout"],"line_count":80,"missing_canonical_headings":[],"path":"memo/AGENTS.md","sha256":"d111f6695ba5ee4cf570450b6ef1f14d2d0859d7bc10d8fc6322cab419bd61e2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":48,"missing_canonical_headings":[],"path":"quests/AGENTS.md","sha256":"6f6c1e4bcde970d168ddb90ed50e3e128af83134fddc916d247e89b18bcfc0f8","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"quests/agon/AGENTS.md","sha256":"5c09ab7257f014983c06b9202bf1b23e6dfba96cd40cb386e0202e8ebfc22e33","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":54,"missing_canonical_headings":[],"path":"quests/techniques/AGENTS.md","sha256":"e0160327badb89296df25a765c7d99854e806b3fbfdbd35451262313352a654d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":49,"missing_canonical_headings":[],"path":"schemas/AGENTS.md","sha256":"c4ad483cba61e6ebedb2d97663854a0f0770dfcb741bd68bccf217d232cb47e2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":66,"missing_canonical_headings":[],"path":"scripts/AGENTS.md","sha256":"b21852bb5884f61e19c722292fdd6883813ea385b5eb2a413e41d72db3ef65a9","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":73,"missing_canonical_headings":[],"path":"scripts/validators/AGENTS.md","sha256":"7d5854a90bdf88a5fadab629e1352a6816a04c4b752702a774b3abf57b3119b1","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":47,"missing_canonical_headings":[],"path":"stats/AGENTS.md","sha256":"487c331a007d383597c96a84c5f6f615f13ef1cba3a2e6659af894290a98659e","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":65,"missing_canonical_headings":[],"path":"techniques/AGENTS.md","sha256":"a76c718ad1736c20c88b31ffe3d4dd9e3e1b81e63e8a1880105b2348f4098a58","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":72,"missing_canonical_headings":[],"path":"techniques/agent-workflows/AGENTS.md","sha256":"f6797d4ff6a798518d0bd46cd16f30ff2de7aea43780638bcafa933a9e527dde","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":79,"missing_canonical_headings":[],"path":"techniques/continuity/AGENTS.md","sha256":"3c90ec66af5505b2fd251f4b193230ea5c068e073dd60b1221e4ddcf9e2f2a49","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":76,"missing_canonical_headings":[],"path":"techniques/docs/AGENTS.md","sha256":"42960c461514541d92b9fc7e87920ecc7c2c24eeb2d7136e936c712f86e36570","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":74,"missing_canonical_headings":[],"path":"techniques/evaluation/AGENTS.md","sha256":"b6697128652c78aa4e25d2bc89067bcc9dbe6afda8365ca3f788d0735c695951","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":89,"missing_canonical_headings":[],"path":"techniques/execution/AGENTS.md","sha256":"1c31be06ca0be16d944914e871e0f2ce92b106e1926e4718e62915a1fdfef53d","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":89,"missing_canonical_headings":[],"path":"techniques/governance/AGENTS.md","sha256":"e39e826a270fd54576fa648a3611f1879a1f05df321aa66786caed686bb29d82","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":90,"missing_canonical_headings":[],"path":"techniques/history/AGENTS.md","sha256":"70a3851b47b3470f222463121e23fa216c76a1d3d6861e229cc8161aa03ab755","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":78,"missing_canonical_headings":[],"path":"techniques/ingest/AGENTS.md","sha256":"2c99392e7e3616d1bbae85099afe6331a2cd2aa13b2275d8e013878b65c276eb","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":104,"missing_canonical_headings":[],"path":"techniques/instruction/AGENTS.md","sha256":"d768ac55b23adb3d03382eb12bb453c8a15dfbeb628c85c6f294cf7372a70ea2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":78,"missing_canonical_headings":[],"path":"techniques/knowledge-lift/AGENTS.md","sha256":"1b71092edc7071a921ddfea2cdb8b78d604b3f9b2b0f7543c818f174dd81faaa","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":114,"missing_canonical_headings":[],"path":"techniques/proof/AGENTS.md","sha256":"7d741003ccf10cb4e145285d7296267a1f568fc26be4fc1e53a2833c98aae77f","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":81,"missing_canonical_headings":[],"path":"techniques/recovery/AGENTS.md","sha256":"ae4b08fca0a2f3c856d405577bb16fe91c924923fbac684078433bb467ee9b57","shape_status":"canonical"},{"first_line_ok":true,"heading_count":9,"headings":["# AGENTS.md","## Applies to","## Role","## Current Shelves","## Read before editing","## Trunk Rules","## Boundaries","## Validation","## Closeout"],"line_count":79,"missing_canonical_headings":[],"path":"techniques/tool-use/AGENTS.md","sha256":"868e6914ded774acddd3e15ae9aeebfadf4f200dfb411660f1adb4abb61897e2","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":45,"missing_canonical_headings":[],"path":"templates/AGENTS.md","sha256":"3b96a5adc3ec746b3e319a22a4c165f4e6c352b2a348037d5434a3c7f4313c9e","shape_status":"canonical"},{"first_line_ok":true,"heading_count":7,"headings":["# AGENTS.md","## Applies to","## Role","## Read before editing","## Boundaries","## Validation","## Closeout"],"line_count":62,"missing_canonical_headings":[],"path":"tests/AGENTS.md","sha256":"fd9b39d29f61072a219597669884cba0cb428a694b37283a8410424ce516e0f8","shape_status":"canonical"}],"config_ref":"config/agents_mesh.json","counts":{"canonical":95,"cards":95,"migration":0},"design_ref":"DESIGN.AGENTS.md","generated_ref":"generated/agents_mesh.min.json","root_agents_ref":"AGENTS.md","schema_version":"aoa_techniques_agents_mesh_index_v1","source_of_truth":"agents-md-mesh-v1","system_design_ref":"DESIGN.md"} diff --git a/kag/indexes/repo_anchor_index.json b/kag/indexes/repo_anchor_index.json index 34378c7c..ce50bb45 100644 --- a/kag/indexes/repo_anchor_index.json +++ b/kag/indexes/repo_anchor_index.json @@ -818,61 +818,60 @@ {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7e2d3b35a864b791fb421223","label":"[Unreleased]","locator":{"end_column":15,"end_line":7,"fragment":"unreleased","pointer":"","start_column":1,"start_line":7},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:unreleased","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3d711f496bcc5b2440f299cc","label":"Changed","locator":{"end_column":11,"end_line":9,"fragment":"changed","pointer":"","start_column":1,"start_line":9},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1908089921335844f51fa3b1","label":"[0.4.5] - 2026-05-18","locator":{"end_column":23,"end_line":62,"fragment":"045-2026-05-18","pointer":"","start_column":1,"start_line":62},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:045-2026-05-18","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ac6bc418af79e0b37eced8f3","label":"Summary","locator":{"end_column":11,"end_line":64,"fragment":"summary","pointer":"","start_column":1,"start_line":64},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f08ff5ec15eee90fb6199735","label":"Added","locator":{"end_column":9,"end_line":79,"fragment":"added","pointer":"","start_column":1,"start_line":79},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:139220a649d28a7bb985c8b8","label":"Changed","locator":{"end_column":11,"end_line":115,"fragment":"changed-1","pointer":"","start_column":1,"start_line":115},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ce58cfb8fe321e13efa2d9c","label":"CHARTER","locator":{"end_column":82,"end_line":117,"fragment":"","pointer":"","start_column":61,"start_line":117},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:117:61:1:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5194783259807dd947cc0fcf","label":"README","locator":{"end_column":59,"end_line":117,"fragment":"","pointer":"","start_column":40,"start_line":117},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:117:40:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2aae93f123122e81474aa885","label":"DESIGN","locator":{"end_column":22,"end_line":118,"fragment":"","pointer":"","start_column":3,"start_line":118},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"DESIGN.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:118:3:0:DESIGN.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8445ce862daa14dfe24f282f","label":"ROADMAP","locator":{"end_column":80,"end_line":118,"fragment":"","pointer":"","start_column":59,"start_line":118},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:118:59:2:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f580b27ceb1d3beb37e17c19","label":"DESIGN.AGENTS","locator":{"end_column":57,"end_line":118,"fragment":"","pointer":"","start_column":24,"start_line":118},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:118:24:1:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:525f7d735b3fd00b376ad91d","label":"CONTRIBUTING","locator":{"end_column":34,"end_line":119,"fragment":"","pointer":"","start_column":3,"start_line":119},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"CONTRIBUTING.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:119:3:0:CONTRIBUTING.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:97f816d239c99a1b42867915","label":"QUESTBOOK","locator":{"end_column":65,"end_line":119,"fragment":"","pointer":"","start_column":40,"start_line":119},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"QUESTBOOK.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:119:40:1:QUESTBOOK.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4eeb19f706bc4acf0fa5a58f","label":"README","locator":{"end_column":32,"end_line":142,"fragment":"","pointer":"","start_column":13,"start_line":142},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:142:13:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:39c71373cfddf902edaeaae0","label":"Included in this release","locator":{"end_column":28,"end_line":919,"fragment":"included-in-this-release","pointer":"","start_column":1,"start_line":919},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e778d113877c4d22848fbdb1","label":"TECHNIQUE_INDEX","locator":{"end_column":40,"end_line":922,"fragment":"","pointer":"","start_column":3,"start_line":922},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:included-in-this-release","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:922:3:0:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5ee7e4cc79ad96fa09516a21","label":"Validation","locator":{"end_column":14,"end_line":946,"fragment":"validation","pointer":"","start_column":1,"start_line":946},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8e4d05fa11e020328a406a34","label":"Notes","locator":{"end_column":9,"end_line":953,"fragment":"notes","pointer":"","start_column":1,"start_line":953},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:38d89abc2c052b8b708a6b15","label":"RELEASING","locator":{"end_column":33,"end_line":963,"fragment":"","pointer":"","start_column":3,"start_line":963},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:notes","target_ref":"docs/RELEASING.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:963:3:0:docs/RELEASING.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7431ce729615553f6cc4bda8","label":"[0.4.2] - 2026-04-23","locator":{"end_column":23,"end_line":968,"fragment":"042-2026-04-23","pointer":"","start_column":1,"start_line":968},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:042-2026-04-23","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1e32edd3cfff0ddce3ce1a67","label":"Summary","locator":{"end_column":11,"end_line":970,"fragment":"summary-1","pointer":"","start_column":1,"start_line":970},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2fffad0247a3e56e6f72e6e8","label":"Added","locator":{"end_column":9,"end_line":982,"fragment":"added-1","pointer":"","start_column":1,"start_line":982},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7aa33d38b6d3fcd327dcef22","label":"Changed","locator":{"end_column":11,"end_line":995,"fragment":"changed-2","pointer":"","start_column":1,"start_line":995},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3a168e7d9c5e09c0724e414c","label":"Validation","locator":{"end_column":14,"end_line":1003,"fragment":"validation-1","pointer":"","start_column":1,"start_line":1003},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4624613328cb251ba81dac35","label":"Notes","locator":{"end_column":9,"end_line":1010,"fragment":"notes-1","pointer":"","start_column":1,"start_line":1010},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6900140521e486bde4c55873","label":"[0.4.1] - 2026-04-19","locator":{"end_column":23,"end_line":1015,"fragment":"041-2026-04-19","pointer":"","start_column":1,"start_line":1015},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:041-2026-04-19","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4857e22ae29ddc5da1a44b6d","label":"Summary","locator":{"end_column":11,"end_line":1017,"fragment":"summary-2","pointer":"","start_column":1,"start_line":1017},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1c193534c5ea65a4f9ae5ba7","label":"Added","locator":{"end_column":9,"end_line":1026,"fragment":"added-2","pointer":"","start_column":1,"start_line":1026},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44d8076590f6da96c4d9f67b","label":"Changed","locator":{"end_column":11,"end_line":1031,"fragment":"changed-3","pointer":"","start_column":1,"start_line":1031},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:946aa91d3613caa4a346705f","label":"Validation","locator":{"end_column":14,"end_line":1037,"fragment":"validation-2","pointer":"","start_column":1,"start_line":1037},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ab626c5a9ab48ab30413fc82","label":"Notes","locator":{"end_column":9,"end_line":1041,"fragment":"notes-2","pointer":"","start_column":1,"start_line":1041},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2ebc6741f31cf641bc3a90c6","label":"[0.4.0] - 2026-04-10","locator":{"end_column":23,"end_line":1046,"fragment":"040-2026-04-10","pointer":"","start_column":1,"start_line":1046},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:040-2026-04-10","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1f82f141cbbda0da0d0fdeaf","label":"Summary","locator":{"end_column":11,"end_line":1048,"fragment":"summary-3","pointer":"","start_column":1,"start_line":1048},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6b0c1e1ee70f158be52afc80","label":"Validation","locator":{"end_column":14,"end_line":1054,"fragment":"validation-3","pointer":"","start_column":1,"start_line":1054},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0a557974e536e46f7c68a8b8","label":"Notes","locator":{"end_column":9,"end_line":1058,"fragment":"notes-3","pointer":"","start_column":1,"start_line":1058},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fe94506f4e0ba5e549389dbf","label":"Added","locator":{"end_column":9,"end_line":1062,"fragment":"added-3","pointer":"","start_column":1,"start_line":1062},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f829cbe0ddddc4127ecc5a4c","label":"Changed","locator":{"end_column":11,"end_line":1071,"fragment":"changed-4","pointer":"","start_column":1,"start_line":1071},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:50deb972c03fcc0332a63a8d","label":"Included in this release","locator":{"end_column":28,"end_line":1078,"fragment":"included-in-this-release-1","pointer":"","start_column":1,"start_line":1078},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1bb26559352bd5f3b415e55d","label":"[0.3.0] - 2026-04-01","locator":{"end_column":23,"end_line":1090,"fragment":"030-2026-04-01","pointer":"","start_column":1,"start_line":1090},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:030-2026-04-01","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a392fbdf0d8ae00b5f554c05","label":"Summary","locator":{"end_column":11,"end_line":1096,"fragment":"summary-4","pointer":"","start_column":1,"start_line":1096},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dccabd6ed03f90c8d15779dc","label":"Added","locator":{"end_column":9,"end_line":1102,"fragment":"added-4","pointer":"","start_column":1,"start_line":1102},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1194e3e17086feaf10f7d08b","label":"Changed","locator":{"end_column":11,"end_line":1133,"fragment":"changed-5","pointer":"","start_column":1,"start_line":1133},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-5","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ada99bf59599319698031cb","label":"Included in this release","locator":{"end_column":28,"end_line":1141,"fragment":"included-in-this-release-2","pointer":"","start_column":1,"start_line":1141},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:96088691c39fa0f5bd359d6e","label":"Validation","locator":{"end_column":14,"end_line":1146,"fragment":"validation-4","pointer":"","start_column":1,"start_line":1146},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5e47fdebb57477cfc11f4064","label":"Notes","locator":{"end_column":9,"end_line":1150,"fragment":"notes-4","pointer":"","start_column":1,"start_line":1150},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:257a5135f4b678bee6b8f4fc","label":"[0.2.0] - 2026-03-23","locator":{"end_column":23,"end_line":1154,"fragment":"020-2026-03-23","pointer":"","start_column":1,"start_line":1154},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:020-2026-03-23","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d290e2967c6e555de4adcc73","label":"Added","locator":{"end_column":9,"end_line":1160,"fragment":"added-5","pointer":"","start_column":1,"start_line":1160},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-5","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6171b741774fd30aa838df24","label":"Changed","locator":{"end_column":11,"end_line":1169,"fragment":"changed-6","pointer":"","start_column":1,"start_line":1169},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-6","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:adc9ef59bed830f6f76b1d2b","label":"Included in this release","locator":{"end_column":28,"end_line":1177,"fragment":"included-in-this-release-3","pointer":"","start_column":1,"start_line":1177},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6d7648f23fc29a6aa520ddb6","label":"TECHNIQUE_INDEX","locator":{"end_column":96,"end_line":1179,"fragment":"","pointer":"","start_column":59,"start_line":1179},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:included-in-this-release-3","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1179:59:0:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a100fe7070771e633f36e6d8","label":"Validation","locator":{"end_column":14,"end_line":1186,"fragment":"validation-5","pointer":"","start_column":1,"start_line":1186},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-5","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c881722b7597ffea260fe258","label":"Notes","locator":{"end_column":9,"end_line":1191,"fragment":"notes-5","pointer":"","start_column":1,"start_line":1191},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-5","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d6781bf8cccea27ada9077b2","label":"[0.1.0] - 2026-03-17","locator":{"end_column":23,"end_line":1197,"fragment":"010-2026-03-17","pointer":"","start_column":1,"start_line":1197},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:010-2026-03-17","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:18ed09843b494f402dfd8a02","label":"Added","locator":{"end_column":9,"end_line":1204,"fragment":"added-6","pointer":"","start_column":1,"start_line":1204},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-6","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:06136dd584b5387cd8b49efc","label":"Included in this release","locator":{"end_column":28,"end_line":1214,"fragment":"included-in-this-release-4","pointer":"","start_column":1,"start_line":1214},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e4897d880e7dc150cb33ee20","label":"Validation","locator":{"end_column":14,"end_line":1226,"fragment":"validation-6","pointer":"","start_column":1,"start_line":1226},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-6","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:27ced1754bd8042b6c9822da","label":"Notes","locator":{"end_column":9,"end_line":1233,"fragment":"notes-6","pointer":"","start_column":1,"start_line":1233},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-6","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1908089921335844f51fa3b1","label":"[0.4.5] - 2026-05-18","locator":{"end_column":23,"end_line":65,"fragment":"045-2026-05-18","pointer":"","start_column":1,"start_line":65},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:045-2026-05-18","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ac6bc418af79e0b37eced8f3","label":"Summary","locator":{"end_column":11,"end_line":67,"fragment":"summary","pointer":"","start_column":1,"start_line":67},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f08ff5ec15eee90fb6199735","label":"Added","locator":{"end_column":9,"end_line":82,"fragment":"added","pointer":"","start_column":1,"start_line":82},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:139220a649d28a7bb985c8b8","label":"Changed","locator":{"end_column":11,"end_line":118,"fragment":"changed-1","pointer":"","start_column":1,"start_line":118},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8ed0ebeb3ec737b7e4c12da8","label":"README","locator":{"end_column":59,"end_line":120,"fragment":"","pointer":"","start_column":40,"start_line":120},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:120:40:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b5823676925d61e6b64bac3f","label":"CHARTER","locator":{"end_column":82,"end_line":120,"fragment":"","pointer":"","start_column":61,"start_line":120},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:120:61:1:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:510464e803647208f9668367","label":"DESIGN.AGENTS","locator":{"end_column":57,"end_line":121,"fragment":"","pointer":"","start_column":24,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:24:1:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9e505d1a7874e960cc7ab285","label":"ROADMAP","locator":{"end_column":80,"end_line":121,"fragment":"","pointer":"","start_column":59,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:59:2:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c11533f69cb3a5b6b95ebed3","label":"DESIGN","locator":{"end_column":22,"end_line":121,"fragment":"","pointer":"","start_column":3,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"DESIGN.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:3:0:DESIGN.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4e58a4ff51f3aa66591cd33f","label":"QUESTBOOK","locator":{"end_column":65,"end_line":122,"fragment":"","pointer":"","start_column":40,"start_line":122},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"QUESTBOOK.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:122:40:1:QUESTBOOK.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6699d0586f23edda67e3e8f6","label":"CONTRIBUTING","locator":{"end_column":34,"end_line":122,"fragment":"","pointer":"","start_column":3,"start_line":122},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"CONTRIBUTING.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:122:3:0:CONTRIBUTING.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:87a5ce7700d29939103c21b1","label":"README","locator":{"end_column":32,"end_line":145,"fragment":"","pointer":"","start_column":13,"start_line":145},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:changed-1","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:145:13:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:39c71373cfddf902edaeaae0","label":"Included in this release","locator":{"end_column":28,"end_line":922,"fragment":"included-in-this-release","pointer":"","start_column":1,"start_line":922},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:434f0b7b152fdf85d9d42068","label":"TECHNIQUE_INDEX","locator":{"end_column":40,"end_line":925,"fragment":"","pointer":"","start_column":3,"start_line":925},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:included-in-this-release","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:925:3:0:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5ee7e4cc79ad96fa09516a21","label":"Validation","locator":{"end_column":14,"end_line":949,"fragment":"validation","pointer":"","start_column":1,"start_line":949},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8e4d05fa11e020328a406a34","label":"Notes","locator":{"end_column":9,"end_line":956,"fragment":"notes","pointer":"","start_column":1,"start_line":956},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7431ce729615553f6cc4bda8","label":"[0.4.2] - 2026-04-23","locator":{"end_column":23,"end_line":971,"fragment":"042-2026-04-23","pointer":"","start_column":1,"start_line":971},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:042-2026-04-23","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1e32edd3cfff0ddce3ce1a67","label":"Summary","locator":{"end_column":11,"end_line":973,"fragment":"summary-1","pointer":"","start_column":1,"start_line":973},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2fffad0247a3e56e6f72e6e8","label":"Added","locator":{"end_column":9,"end_line":985,"fragment":"added-1","pointer":"","start_column":1,"start_line":985},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7aa33d38b6d3fcd327dcef22","label":"Changed","locator":{"end_column":11,"end_line":998,"fragment":"changed-2","pointer":"","start_column":1,"start_line":998},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3a168e7d9c5e09c0724e414c","label":"Validation","locator":{"end_column":14,"end_line":1006,"fragment":"validation-1","pointer":"","start_column":1,"start_line":1006},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4624613328cb251ba81dac35","label":"Notes","locator":{"end_column":9,"end_line":1013,"fragment":"notes-1","pointer":"","start_column":1,"start_line":1013},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6900140521e486bde4c55873","label":"[0.4.1] - 2026-04-19","locator":{"end_column":23,"end_line":1018,"fragment":"041-2026-04-19","pointer":"","start_column":1,"start_line":1018},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:041-2026-04-19","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4857e22ae29ddc5da1a44b6d","label":"Summary","locator":{"end_column":11,"end_line":1020,"fragment":"summary-2","pointer":"","start_column":1,"start_line":1020},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1c193534c5ea65a4f9ae5ba7","label":"Added","locator":{"end_column":9,"end_line":1029,"fragment":"added-2","pointer":"","start_column":1,"start_line":1029},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44d8076590f6da96c4d9f67b","label":"Changed","locator":{"end_column":11,"end_line":1034,"fragment":"changed-3","pointer":"","start_column":1,"start_line":1034},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:946aa91d3613caa4a346705f","label":"Validation","locator":{"end_column":14,"end_line":1040,"fragment":"validation-2","pointer":"","start_column":1,"start_line":1040},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ab626c5a9ab48ab30413fc82","label":"Notes","locator":{"end_column":9,"end_line":1044,"fragment":"notes-2","pointer":"","start_column":1,"start_line":1044},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2ebc6741f31cf641bc3a90c6","label":"[0.4.0] - 2026-04-10","locator":{"end_column":23,"end_line":1049,"fragment":"040-2026-04-10","pointer":"","start_column":1,"start_line":1049},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:040-2026-04-10","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1f82f141cbbda0da0d0fdeaf","label":"Summary","locator":{"end_column":11,"end_line":1051,"fragment":"summary-3","pointer":"","start_column":1,"start_line":1051},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6b0c1e1ee70f158be52afc80","label":"Validation","locator":{"end_column":14,"end_line":1057,"fragment":"validation-3","pointer":"","start_column":1,"start_line":1057},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0a557974e536e46f7c68a8b8","label":"Notes","locator":{"end_column":9,"end_line":1061,"fragment":"notes-3","pointer":"","start_column":1,"start_line":1061},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fe94506f4e0ba5e549389dbf","label":"Added","locator":{"end_column":9,"end_line":1065,"fragment":"added-3","pointer":"","start_column":1,"start_line":1065},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f829cbe0ddddc4127ecc5a4c","label":"Changed","locator":{"end_column":11,"end_line":1074,"fragment":"changed-4","pointer":"","start_column":1,"start_line":1074},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:50deb972c03fcc0332a63a8d","label":"Included in this release","locator":{"end_column":28,"end_line":1081,"fragment":"included-in-this-release-1","pointer":"","start_column":1,"start_line":1081},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release-1","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1bb26559352bd5f3b415e55d","label":"[0.3.0] - 2026-04-01","locator":{"end_column":23,"end_line":1093,"fragment":"030-2026-04-01","pointer":"","start_column":1,"start_line":1093},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:030-2026-04-01","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a392fbdf0d8ae00b5f554c05","label":"Summary","locator":{"end_column":11,"end_line":1099,"fragment":"summary-4","pointer":"","start_column":1,"start_line":1099},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:summary-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dccabd6ed03f90c8d15779dc","label":"Added","locator":{"end_column":9,"end_line":1105,"fragment":"added-4","pointer":"","start_column":1,"start_line":1105},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1194e3e17086feaf10f7d08b","label":"Changed","locator":{"end_column":11,"end_line":1136,"fragment":"changed-5","pointer":"","start_column":1,"start_line":1136},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-5","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ada99bf59599319698031cb","label":"Included in this release","locator":{"end_column":28,"end_line":1144,"fragment":"included-in-this-release-2","pointer":"","start_column":1,"start_line":1144},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release-2","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:96088691c39fa0f5bd359d6e","label":"Validation","locator":{"end_column":14,"end_line":1149,"fragment":"validation-4","pointer":"","start_column":1,"start_line":1149},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5e47fdebb57477cfc11f4064","label":"Notes","locator":{"end_column":9,"end_line":1153,"fragment":"notes-4","pointer":"","start_column":1,"start_line":1153},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:257a5135f4b678bee6b8f4fc","label":"[0.2.0] - 2026-03-23","locator":{"end_column":23,"end_line":1157,"fragment":"020-2026-03-23","pointer":"","start_column":1,"start_line":1157},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:020-2026-03-23","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d290e2967c6e555de4adcc73","label":"Added","locator":{"end_column":9,"end_line":1163,"fragment":"added-5","pointer":"","start_column":1,"start_line":1163},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-5","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6171b741774fd30aa838df24","label":"Changed","locator":{"end_column":11,"end_line":1172,"fragment":"changed-6","pointer":"","start_column":1,"start_line":1172},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:changed-6","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:adc9ef59bed830f6f76b1d2b","label":"Included in this release","locator":{"end_column":28,"end_line":1180,"fragment":"included-in-this-release-3","pointer":"","start_column":1,"start_line":1180},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release-3","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:da3fc1cc9aa60c67e4a03209","label":"TECHNIQUE_INDEX","locator":{"end_column":96,"end_line":1182,"fragment":"","pointer":"","start_column":59,"start_line":1182},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:included-in-this-release-3","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1182:59:0:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a100fe7070771e633f36e6d8","label":"Validation","locator":{"end_column":14,"end_line":1189,"fragment":"validation-5","pointer":"","start_column":1,"start_line":1189},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-5","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c881722b7597ffea260fe258","label":"Notes","locator":{"end_column":9,"end_line":1194,"fragment":"notes-5","pointer":"","start_column":1,"start_line":1194},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-5","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d6781bf8cccea27ada9077b2","label":"[0.1.0] - 2026-03-17","locator":{"end_column":23,"end_line":1200,"fragment":"010-2026-03-17","pointer":"","start_column":1,"start_line":1200},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:010-2026-03-17","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:18ed09843b494f402dfd8a02","label":"Added","locator":{"end_column":9,"end_line":1207,"fragment":"added-6","pointer":"","start_column":1,"start_line":1207},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:added-6","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:06136dd584b5387cd8b49efc","label":"Included in this release","locator":{"end_column":28,"end_line":1217,"fragment":"included-in-this-release-4","pointer":"","start_column":1,"start_line":1217},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:included-in-this-release-4","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e4897d880e7dc150cb33ee20","label":"Validation","locator":{"end_column":14,"end_line":1229,"fragment":"validation-6","pointer":"","start_column":1,"start_line":1229},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-6","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:27ced1754bd8042b6c9822da","label":"Notes","locator":{"end_column":9,"end_line":1236,"fragment":"notes-6","pointer":"","start_column":1,"start_line":1236},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes-6","source_record_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:17e76e12b67da533ec38f6d8","label":"Second Context Adaptation","locator":{"end_column":27,"end_line":1,"fragment":"second-context-adaptation","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:second-context-adaptation","source_record_id":"aoa:aoa-techniques:artifact:065c9dd7b95c9b26a5bd313c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b521ba8b77b361ce0a567769","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:065c9dd7b95c9b26a5bd313c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f277f44102785196338b4e18","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:065c9dd7b95c9b26a5bd313c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -2760,8 +2759,8 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a86ed22dc4210b9922390677","label":"Read before editing","locator":{"end_column":22,"end_line":17,"fragment":"read-before-editing","pointer":"","start_column":1,"start_line":17},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:read-before-editing","source_record_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5069657c7e563915867589c1","label":"Boundaries","locator":{"end_column":13,"end_line":29,"fragment":"boundaries","pointer":"","start_column":1,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:boundaries","source_record_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bc4f65fc9943b19a3d8a8fb8","label":"Validation","locator":{"end_column":13,"end_line":43,"fragment":"validation","pointer":"","start_column":1,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0f4451868820b433528175f2","label":"`COMMAND_AUTHORITY.md`","locator":{"end_column":61,"end_line":70,"fragment":"","pointer":"","start_column":1,"start_line":70},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:validation","target_ref":"../validation/COMMAND_AUTHORITY.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:70:1:0:../validation/COMMAND_AUTHORITY.md","source_record_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:963ca82169a94d5ad2211582","label":"Closeout","locator":{"end_column":11,"end_line":73,"fragment":"closeout","pointer":"","start_column":1,"start_line":73},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:closeout","source_record_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a72b0e69a0f3f0ab26c9003f","label":"`COMMAND_AUTHORITY.md`","locator":{"end_column":61,"end_line":68,"fragment":"","pointer":"","start_column":1,"start_line":68},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:validation","target_ref":"../validation/COMMAND_AUTHORITY.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:68:1:0:../validation/COMMAND_AUTHORITY.md","source_record_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:963ca82169a94d5ad2211582","label":"Closeout","locator":{"end_column":11,"end_line":71,"fragment":"closeout","pointer":"","start_column":1,"start_line":71},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:closeout","source_record_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7e57e7ba903b8f12f6c85c62","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:1a548e9218c9b7c28e355d3e","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c4ec6c1eb8d30afdbcc4fd69","label":"AGENTS.md","locator":{"end_column":11,"end_line":1,"fragment":"agentsmd","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agentsmd","source_record_id":"aoa:aoa-techniques:artifact:1a548e9218c9b7c28e355d3e","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:67ba1da00010331ca46a9192","label":"Applies to","locator":{"end_column":13,"end_line":3,"fragment":"applies-to","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:applies-to","source_record_id":"aoa:aoa-techniques:artifact:1a548e9218c9b7c28e355d3e","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -3033,8 +3032,8 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:acc646b528bd083e5399b433","label":"`test-factory`","locator":{"end_column":18,"end_line":250,"fragment":"test-factory","pointer":"","start_column":1,"start_line":250},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:test-factory","source_record_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b3b3f7c047e635f1b7ef95a3","label":"`release-prep`","locator":{"end_column":18,"end_line":259,"fragment":"release-prep","pointer":"","start_column":1,"start_line":259},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:release-prep","source_record_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bef45af7982e9723a40c51d2","label":"Implementation Order Used","locator":{"end_column":28,"end_line":270,"fragment":"implementation-order-used","pointer":"","start_column":1,"start_line":270},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:implementation-order-used","source_record_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:96f200d1b044426f3bd8a7be","label":"Open Design Questions","locator":{"end_column":24,"end_line":298,"fragment":"open-design-questions","pointer":"","start_column":1,"start_line":298},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:open-design-questions","source_record_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b4bbc7dc84c79fbf37ff8c33","label":"Non-Negotiables For The Future Pass","locator":{"end_column":38,"end_line":312,"fragment":"non-negotiables-for-the-future-pass","pointer":"","start_column":1,"start_line":312},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:non-negotiables-for-the-future-pass","source_record_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:96f200d1b044426f3bd8a7be","label":"Open Design Questions","locator":{"end_column":24,"end_line":288,"fragment":"open-design-questions","pointer":"","start_column":1,"start_line":288},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:open-design-questions","source_record_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b4bbc7dc84c79fbf37ff8c33","label":"Non-Negotiables For The Future Pass","locator":{"end_column":38,"end_line":302,"fragment":"non-negotiables-for-the-future-pass","pointer":"","start_column":1,"start_line":302},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:non-negotiables-for-the-future-pass","source_record_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:04c1174677c114085dc68cef","label":"receipt_name","locator":{"end_column":38,"end_line":1,"fragment":"","pointer":"/receipt_name","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/receipt_name","source_record_id":"aoa:aoa-techniques:artifact:1d18474eea8ce7f0bafa5e23","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5efbdce7ff66c835981c9aea","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:1d18474eea8ce7f0bafa5e23","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:36dbd19555037994cba7b28a","label":"event_kind","locator":{"end_column":36,"end_line":2,"fragment":"","pointer":"/event_kind","start_column":1,"start_line":2},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/event_kind","source_record_id":"aoa:aoa-techniques:artifact:1d18474eea8ce7f0bafa5e23","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -3122,25 +3121,32 @@ {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cf30e9fc7947aae398710a55","label":"runs-on","locator":{"end_column":26,"end_line":16,"fragment":"","pointer":"/jobs/release_audit/runs-on","start_column":5,"start_line":16},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/runs-on","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:777443911b840f691be2e1e5","label":"env","locator":{"end_column":8,"end_line":17,"fragment":"","pointer":"/jobs/release_audit/env","start_column":5,"start_line":17},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/env","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e9eebba49d000ff76c38ac0a","label":"ABYSS_MACHINE_REPO_ROOT","locator":{"end_column":74,"end_line":18,"fragment":"","pointer":"/jobs/release_audit/env/ABYSS_MACHINE_REPO_ROOT","start_column":7,"start_line":18},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/env/ABYSS_MACHINE_REPO_ROOT","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cdb8cef8fa84bd0128a4c0ac","label":"steps","locator":{"end_column":10,"end_line":19,"fragment":"","pointer":"/jobs/release_audit/steps","start_column":5,"start_line":19},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0a73b25002ff88e7fd5a5da4","label":"name","locator":{"end_column":22,"end_line":20,"fragment":"","pointer":"/jobs/release_audit/steps/0/name","start_column":7,"start_line":20},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/0/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9bd9012eb772769339b632e6","label":"uses","locator":{"end_column":71,"end_line":21,"fragment":"","pointer":"/jobs/release_audit/steps/0/uses","start_column":9,"start_line":21},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/0/uses","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b3fdaaa813270b69217482c2","label":"with","locator":{"end_column":13,"end_line":22,"fragment":"","pointer":"/jobs/release_audit/steps/0/with","start_column":9,"start_line":22},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/0/with","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1f4dc557f38c007f27be557c","label":"fetch-depth","locator":{"end_column":24,"end_line":23,"fragment":"","pointer":"/jobs/release_audit/steps/0/with/fetch-depth","start_column":11,"start_line":23},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/0/with/fetch-depth","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e429f0e4a1392122a464d326","label":"name","locator":{"end_column":51,"end_line":25,"fragment":"","pointer":"/jobs/release_audit/steps/1/name","start_column":7,"start_line":25},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64bec25a6f978ff8a7ba01e1","label":"uses","locator":{"end_column":71,"end_line":26,"fragment":"","pointer":"/jobs/release_audit/steps/1/uses","start_column":9,"start_line":26},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/uses","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8591f51410aba2295b0a842b","label":"with","locator":{"end_column":13,"end_line":27,"fragment":"","pointer":"/jobs/release_audit/steps/1/with","start_column":9,"start_line":27},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/with","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:02f922d8ab5c139180dea690","label":"repository","locator":{"end_column":45,"end_line":28,"fragment":"","pointer":"/jobs/release_audit/steps/1/with/repository","start_column":11,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/with/repository","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c9f65420cbd454da969f895b","label":"ref","locator":{"end_column":55,"end_line":29,"fragment":"","pointer":"/jobs/release_audit/steps/1/with/ref","start_column":11,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/with/ref","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cc5c7531a2f76126ce8ac8eb","label":"path","locator":{"end_column":35,"end_line":30,"fragment":"","pointer":"/jobs/release_audit/steps/1/with/path","start_column":11,"start_line":30},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/with/path","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dd64fdeeb3bd9742c3761731","label":"name","locator":{"end_column":26,"end_line":32,"fragment":"","pointer":"/jobs/release_audit/steps/2/name","start_column":7,"start_line":32},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6dd36a1ba825c7f4afffab7f","label":"uses","locator":{"end_column":75,"end_line":33,"fragment":"","pointer":"/jobs/release_audit/steps/2/uses","start_column":9,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/uses","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9d4fecf1f83d1535f5cdc0c4","label":"with","locator":{"end_column":13,"end_line":34,"fragment":"","pointer":"/jobs/release_audit/steps/2/with","start_column":9,"start_line":34},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/with","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5c18755134b433b9c7599ad4","label":"python-version","locator":{"end_column":32,"end_line":35,"fragment":"","pointer":"/jobs/release_audit/steps/2/with/python-version","start_column":11,"start_line":35},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/with/python-version","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e5d6f13de3b22f04d9d2d76c","label":"name","locator":{"end_column":34,"end_line":37,"fragment":"","pointer":"/jobs/release_audit/steps/3/name","start_column":7,"start_line":37},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/3/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c9161f542737de2ed5ac10bc","label":"run","locator":{"end_column":58,"end_line":38,"fragment":"","pointer":"/jobs/release_audit/steps/3/run","start_column":9,"start_line":38},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/3/run","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:348358ce336db485cb6b4238","label":"name","locator":{"end_column":30,"end_line":40,"fragment":"","pointer":"/jobs/release_audit/steps/4/name","start_column":7,"start_line":40},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/4/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:685ba829f588814cb98c0c13","label":"run","locator":{"end_column":53,"end_line":41,"fragment":"","pointer":"/jobs/release_audit/steps/4/run","start_column":9,"start_line":41},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/4/run","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3f4d5f6d408bea395af40cc8","label":"AOA_STATS_ROOT","locator":{"end_column":61,"end_line":19,"fragment":"","pointer":"/jobs/release_audit/env/AOA_STATS_ROOT","start_column":7,"start_line":19},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/env/AOA_STATS_ROOT","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cdb8cef8fa84bd0128a4c0ac","label":"steps","locator":{"end_column":10,"end_line":20,"fragment":"","pointer":"/jobs/release_audit/steps","start_column":5,"start_line":20},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0a73b25002ff88e7fd5a5da4","label":"name","locator":{"end_column":22,"end_line":21,"fragment":"","pointer":"/jobs/release_audit/steps/0/name","start_column":7,"start_line":21},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/0/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9bd9012eb772769339b632e6","label":"uses","locator":{"end_column":71,"end_line":22,"fragment":"","pointer":"/jobs/release_audit/steps/0/uses","start_column":9,"start_line":22},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/0/uses","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b3fdaaa813270b69217482c2","label":"with","locator":{"end_column":13,"end_line":23,"fragment":"","pointer":"/jobs/release_audit/steps/0/with","start_column":9,"start_line":23},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/0/with","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1f4dc557f38c007f27be557c","label":"fetch-depth","locator":{"end_column":24,"end_line":24,"fragment":"","pointer":"/jobs/release_audit/steps/0/with/fetch-depth","start_column":11,"start_line":24},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/0/with/fetch-depth","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e429f0e4a1392122a464d326","label":"name","locator":{"end_column":51,"end_line":26,"fragment":"","pointer":"/jobs/release_audit/steps/1/name","start_column":7,"start_line":26},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64bec25a6f978ff8a7ba01e1","label":"uses","locator":{"end_column":71,"end_line":27,"fragment":"","pointer":"/jobs/release_audit/steps/1/uses","start_column":9,"start_line":27},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/uses","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8591f51410aba2295b0a842b","label":"with","locator":{"end_column":13,"end_line":28,"fragment":"","pointer":"/jobs/release_audit/steps/1/with","start_column":9,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/with","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:02f922d8ab5c139180dea690","label":"repository","locator":{"end_column":45,"end_line":29,"fragment":"","pointer":"/jobs/release_audit/steps/1/with/repository","start_column":11,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/with/repository","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c9f65420cbd454da969f895b","label":"ref","locator":{"end_column":55,"end_line":30,"fragment":"","pointer":"/jobs/release_audit/steps/1/with/ref","start_column":11,"start_line":30},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/with/ref","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cc5c7531a2f76126ce8ac8eb","label":"path","locator":{"end_column":35,"end_line":31,"fragment":"","pointer":"/jobs/release_audit/steps/1/with/path","start_column":11,"start_line":31},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/1/with/path","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dd64fdeeb3bd9742c3761731","label":"name","locator":{"end_column":51,"end_line":33,"fragment":"","pointer":"/jobs/release_audit/steps/2/name","start_column":7,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6dd36a1ba825c7f4afffab7f","label":"uses","locator":{"end_column":71,"end_line":34,"fragment":"","pointer":"/jobs/release_audit/steps/2/uses","start_column":9,"start_line":34},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/uses","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9d4fecf1f83d1535f5cdc0c4","label":"with","locator":{"end_column":13,"end_line":35,"fragment":"","pointer":"/jobs/release_audit/steps/2/with","start_column":9,"start_line":35},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/with","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e862be7a3ddd467e206ec32d","label":"repository","locator":{"end_column":41,"end_line":36,"fragment":"","pointer":"/jobs/release_audit/steps/2/with/repository","start_column":11,"start_line":36},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/with/repository","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eaab7a19316f68bada519083","label":"ref","locator":{"end_column":55,"end_line":37,"fragment":"","pointer":"/jobs/release_audit/steps/2/with/ref","start_column":11,"start_line":37},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/with/ref","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:36264f8fc75829f8d52db669","label":"path","locator":{"end_column":31,"end_line":38,"fragment":"","pointer":"/jobs/release_audit/steps/2/with/path","start_column":11,"start_line":38},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/2/with/path","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e5d6f13de3b22f04d9d2d76c","label":"name","locator":{"end_column":26,"end_line":40,"fragment":"","pointer":"/jobs/release_audit/steps/3/name","start_column":7,"start_line":40},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/3/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:03a4c2836ad48260ab43f052","label":"uses","locator":{"end_column":75,"end_line":41,"fragment":"","pointer":"/jobs/release_audit/steps/3/uses","start_column":9,"start_line":41},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/3/uses","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d3cf0a0508a8265744ad8ef7","label":"with","locator":{"end_column":13,"end_line":42,"fragment":"","pointer":"/jobs/release_audit/steps/3/with","start_column":9,"start_line":42},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/3/with","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fc31a705354ce27cef72ab03","label":"python-version","locator":{"end_column":32,"end_line":43,"fragment":"","pointer":"/jobs/release_audit/steps/3/with/python-version","start_column":11,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/3/with/python-version","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:348358ce336db485cb6b4238","label":"name","locator":{"end_column":34,"end_line":45,"fragment":"","pointer":"/jobs/release_audit/steps/4/name","start_column":7,"start_line":45},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/4/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:685ba829f588814cb98c0c13","label":"run","locator":{"end_column":58,"end_line":46,"fragment":"","pointer":"/jobs/release_audit/steps/4/run","start_column":9,"start_line":46},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/4/run","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7a3955e2ec29fe1408efca70","label":"name","locator":{"end_column":30,"end_line":48,"fragment":"","pointer":"/jobs/release_audit/steps/5/name","start_column":7,"start_line":48},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/5/name","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a30e9be8906093993de13509","label":"run","locator":{"end_column":53,"end_line":49,"fragment":"","pointer":"/jobs/release_audit/steps/5/run","start_column":9,"start_line":49},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/release_audit/steps/5/run","source_record_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:74dcd9c17cd4d80f0705a2b6","label":"One-Command Service Lifecycle Checklist","locator":{"end_column":41,"end_line":1,"fragment":"one-command-service-lifecycle-checklist","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:one-command-service-lifecycle-checklist","source_record_id":"aoa:aoa-techniques:artifact:1e1420f04123850475c53478","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e1bc4a1cc5470ac993c4b6d2","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:1e1420f04123850475c53478","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1c34dc0ad73cd87fbca87741","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:1e22bf2e2d9400f9a9c7e737","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -3245,12 +3251,12 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c69d82e27941e77d82184200","label":"Local Route And Entry","locator":{"end_column":24,"end_line":9,"fragment":"local-route-and-entry","pointer":"","start_column":1,"start_line":9},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:local-route-and-entry","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:92c5d32f1842dbaa5c6c45ac","label":"Technique Canon Contracts","locator":{"end_column":28,"end_line":20,"fragment":"technique-canon-contracts","pointer":"","start_column":1,"start_line":20},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique-canon-contracts","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9c1b652785534b78a93a2be4","label":"District Routes","locator":{"end_column":18,"end_line":29,"fragment":"district-routes","pointer":"","start_column":1,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:district-routes","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5fabc4ec7313bd07b2b0d2cf","label":"Source-Lift Guide District","locator":{"end_column":29,"end_line":52,"fragment":"source-lift-guide-district","pointer":"","start_column":1,"start_line":52},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:source-lift-guide-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2874247b057b5983e4dddd26","label":"Guardrail District","locator":{"end_column":21,"end_line":67,"fragment":"guardrail-district","pointer":"","start_column":1,"start_line":67},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:guardrail-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a9125b53fa5ba92215af3c38","label":"Validation District","locator":{"end_column":22,"end_line":78,"fragment":"validation-district","pointer":"","start_column":1,"start_line":78},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0f081ce5fb65b774eab70f76","label":"Review Guide District","locator":{"end_column":24,"end_line":86,"fragment":"review-guide-district","pointer":"","start_column":1,"start_line":86},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:review-guide-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e72e5119a845b3515d80afb2","label":"Selection Guide District","locator":{"end_column":27,"end_line":95,"fragment":"selection-guide-district","pointer":"","start_column":1,"start_line":95},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:selection-guide-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3c8b798f988c7d7cfafd51b1","label":"Known Follow-Ups","locator":{"end_column":19,"end_line":104,"fragment":"known-follow-ups","pointer":"","start_column":1,"start_line":104},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:known-follow-ups","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5fabc4ec7313bd07b2b0d2cf","label":"Source-Lift Guide District","locator":{"end_column":29,"end_line":53,"fragment":"source-lift-guide-district","pointer":"","start_column":1,"start_line":53},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:source-lift-guide-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2874247b057b5983e4dddd26","label":"Guardrail District","locator":{"end_column":21,"end_line":68,"fragment":"guardrail-district","pointer":"","start_column":1,"start_line":68},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:guardrail-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a9125b53fa5ba92215af3c38","label":"Validation District","locator":{"end_column":22,"end_line":79,"fragment":"validation-district","pointer":"","start_column":1,"start_line":79},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0f081ce5fb65b774eab70f76","label":"Review Guide District","locator":{"end_column":24,"end_line":87,"fragment":"review-guide-district","pointer":"","start_column":1,"start_line":87},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:review-guide-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e72e5119a845b3515d80afb2","label":"Selection Guide District","locator":{"end_column":27,"end_line":96,"fragment":"selection-guide-district","pointer":"","start_column":1,"start_line":96},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:selection-guide-district","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3c8b798f988c7d7cfafd51b1","label":"Known Follow-Ups","locator":{"end_column":19,"end_line":105,"fragment":"known-follow-ups","pointer":"","start_column":1,"start_line":105},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:known-follow-ups","source_record_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aa728c929298b1c1131c529d","label":"Adverse Effects Review","locator":{"end_column":24,"end_line":1,"fragment":"adverse-effects-review","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:adverse-effects-review","source_record_id":"aoa:aoa-techniques:artifact:1efa616703bb773f6eb47e00","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bc04e40893ffcb9d51ce614e","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:1efa616703bb773f6eb47e00","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:850d74ae0ee46b10864847f8","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:1efa616703bb773f6eb47e00","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -4906,8 +4912,8 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:445f72c70ec5afc0dbada531","label":"Release Support Landing Log","locator":{"end_column":29,"end_line":1,"fragment":"release-support-landing-log","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:release-support-landing-log","source_record_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fbd467901feb694385c7163a","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8ce1481174fefacd44438e73","label":"2026-05-14 - Contract Packet Part Homes","locator":{"end_column":42,"end_line":7,"fragment":"2026-05-14-contract-packet-part-homes","pointer":"","start_column":1,"start_line":7},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-contract-packet-part-homes","source_record_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:35b2d6ab020195a75a4afad8","label":"2026-05-02","locator":{"end_column":13,"end_line":28,"fragment":"2026-05-02","pointer":"","start_column":1,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-02","source_record_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:22caef5883e4d2a4ca2338ce","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":41,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":41},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:35b2d6ab020195a75a4afad8","label":"2026-05-02","locator":{"end_column":13,"end_line":23,"fragment":"2026-05-02","pointer":"","start_column":1,"start_line":23},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-02","source_record_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:22caef5883e4d2a4ca2338ce","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":36,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":36},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c376a05fba19efd4405cd3d3","label":"External Technique Candidates","locator":{"end_column":31,"end_line":1,"fragment":"external-technique-candidates","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:external-technique-candidates","source_record_id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:04dd85e27ef9b827838e1b6f","label":"Scope","locator":{"end_column":8,"end_line":10,"fragment":"scope","pointer":"","start_column":1,"start_line":10},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:scope","source_record_id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -7412,8 +7418,8 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8b44a65b540f209952c5de99","label":"PLAN","locator":{"end_column":8,"end_line":166,"fragment":"plan","pointer":"","start_column":1,"start_line":166},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:plan","source_record_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a3f1e941618aeeb153217ad","label":"DIFF","locator":{"end_column":8,"end_line":176,"fragment":"diff","pointer":"","start_column":1,"start_line":176},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:diff","source_record_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a8d569f2cfde9216072f5a66","label":"VERIFY","locator":{"end_column":10,"end_line":183,"fragment":"verify","pointer":"","start_column":1,"start_line":183},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:verify","source_record_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:acaf4aeb655d4a11263322f9","label":"REPORT","locator":{"end_column":10,"end_line":216,"fragment":"report","pointer":"","start_column":1,"start_line":216},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:report","source_record_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:081e370508ccbd38c9f31da9","label":"Validation","locator":{"end_column":13,"end_line":226,"fragment":"validation","pointer":"","start_column":1,"start_line":226},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:acaf4aeb655d4a11263322f9","label":"REPORT","locator":{"end_column":10,"end_line":206,"fragment":"report","pointer":"","start_column":1,"start_line":206},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:report","source_record_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:081e370508ccbd38c9f31da9","label":"Validation","locator":{"end_column":13,"end_line":216,"fragment":"validation","pointer":"","start_column":1,"start_line":216},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c180ba301f40f98b429ed0f5","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:38e6910f952d6778c302de94","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e2539430669dc098721271bb","label":"Second Context Adaptation","locator":{"end_column":27,"end_line":1,"fragment":"second-context-adaptation","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:second-context-adaptation","source_record_id":"aoa:aoa-techniques:artifact:38e6910f952d6778c302de94","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:73e01ddee9ba57dd47f7e1eb","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:38e6910f952d6778c302de94","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -7582,9 +7588,8 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7bc359acca725bd96038ceb7","label":"Future evolution","locator":{"end_column":19,"end_line":193,"fragment":"future-evolution","pointer":"","start_column":1,"start_line":193},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:future-evolution","source_record_id":"aoa:aoa-techniques:artifact:3acc92faff4e403f4a58a4a8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:16b2a8a6043ff3545c87612f","label":"Validation Command Authority","locator":{"end_column":30,"end_line":1,"fragment":"validation-command-authority","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-command-authority","source_record_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d53c0d32881c59d4455f3fe1","label":"Lane Commands","locator":{"end_column":16,"end_line":42,"fragment":"lane-commands","pointer":"","start_column":1,"start_line":42},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:lane-commands","source_record_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:94ea616f454a2d29d10cf0ab","label":"Promotion Rule","locator":{"end_column":17,"end_line":55,"fragment":"promotion-rule","pointer":"","start_column":1,"start_line":55},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:promotion-rule","source_record_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:318aef3a9c86939e88da25f5","label":"Failure Route","locator":{"end_column":16,"end_line":66,"fragment":"failure-route","pointer":"","start_column":1,"start_line":66},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:failure-route","source_record_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:94ea616f454a2d29d10cf0ab","label":"Promotion Rule","locator":{"end_column":17,"end_line":46,"fragment":"promotion-rule","pointer":"","start_column":1,"start_line":46},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:promotion-rule","source_record_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:318aef3a9c86939e88da25f5","label":"Failure Route","locator":{"end_column":16,"end_line":57,"fragment":"failure-route","pointer":"","start_column":1,"start_line":57},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:failure-route","source_record_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:42bf8b71bb8f51bb1fe034a3","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:3add46bf0227913f27703481","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:50d08371ca88944514f01267","label":"Minimal Shell-Composable Agent Invocation","locator":{"end_column":43,"end_line":1,"fragment":"minimal-shell-composable-agent-invocation","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:minimal-shell-composable-agent-invocation","source_record_id":"aoa:aoa-techniques:artifact:3add46bf0227913f27703481","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0fdddb6949d4310e142c4278","label":"notes","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/notes","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/notes","source_record_id":"aoa:aoa-techniques:artifact:3ae93e5f7a23c58f7dfb0031","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, @@ -7611,31 +7616,38 @@ {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:80cce64299cf7a16f6aa46b1","label":"runs-on","locator":{"end_column":26,"end_line":16,"fragment":"","pointer":"/jobs/growth_gate/runs-on","start_column":5,"start_line":16},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/runs-on","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9100a67eca406e3ab1ffb259","label":"env","locator":{"end_column":8,"end_line":17,"fragment":"","pointer":"/jobs/growth_gate/env","start_column":5,"start_line":17},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f7e18aa77a2030f64ad4b9f7","label":"AOA_KAG_ROOT","locator":{"end_column":57,"end_line":18,"fragment":"","pointer":"/jobs/growth_gate/env/AOA_KAG_ROOT","start_column":7,"start_line":18},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env/AOA_KAG_ROOT","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0658e8b8bc5ea14a6b67785f","label":"AOA_REPO_LOCAL_KAG_HISTORY_REPO","locator":{"end_column":53,"end_line":19,"fragment":"","pointer":"/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_HISTORY_REPO","start_column":7,"start_line":19},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_HISTORY_REPO","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ae90f1efaaaf86c428b47f0","label":"AOA_REPO_LOCAL_KAG_HISTORY_REF","locator":{"end_column":116,"end_line":20,"fragment":"","pointer":"/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_HISTORY_REF","start_column":7,"start_line":20},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_HISTORY_REF","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6db61ce2f97ca054155c2464","label":"AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF","locator":{"end_column":122,"end_line":21,"fragment":"","pointer":"/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF","start_column":7,"start_line":21},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d86bd9a9b9d02be8ddde17e0","label":"steps","locator":{"end_column":10,"end_line":22,"fragment":"","pointer":"/jobs/growth_gate/steps","start_column":5,"start_line":22},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b95fd02960032052afcce3b0","label":"name","locator":{"end_column":22,"end_line":23,"fragment":"","pointer":"/jobs/growth_gate/steps/0/name","start_column":7,"start_line":23},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/0/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d374b4d96dc05801788377b9","label":"uses","locator":{"end_column":71,"end_line":24,"fragment":"","pointer":"/jobs/growth_gate/steps/0/uses","start_column":9,"start_line":24},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/0/uses","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:07f5b7754f1c55eb4913aec4","label":"with","locator":{"end_column":13,"end_line":25,"fragment":"","pointer":"/jobs/growth_gate/steps/0/with","start_column":9,"start_line":25},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/0/with","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1fa9b14cf6206c480e9a676e","label":"fetch-depth","locator":{"end_column":24,"end_line":26,"fragment":"","pointer":"/jobs/growth_gate/steps/0/with/fetch-depth","start_column":11,"start_line":26},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/0/with/fetch-depth","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:644413f5aebf47674d9580e1","label":"name","locator":{"end_column":44,"end_line":28,"fragment":"","pointer":"/jobs/growth_gate/steps/1/name","start_column":7,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3d83391d94ae89ead39c29c6","label":"uses","locator":{"end_column":71,"end_line":29,"fragment":"","pointer":"/jobs/growth_gate/steps/1/uses","start_column":9,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/uses","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ec3695d22a3ac5421c7790dc","label":"with","locator":{"end_column":13,"end_line":30,"fragment":"","pointer":"/jobs/growth_gate/steps/1/with","start_column":9,"start_line":30},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/with","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e4e8e1238435d89cbc7f471a","label":"repository","locator":{"end_column":39,"end_line":31,"fragment":"","pointer":"/jobs/growth_gate/steps/1/with/repository","start_column":11,"start_line":31},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/with/repository","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1768334eebd64b29e682d86e","label":"ref","locator":{"end_column":55,"end_line":32,"fragment":"","pointer":"/jobs/growth_gate/steps/1/with/ref","start_column":11,"start_line":32},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/with/ref","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64e936fa812628542da594b2","label":"path","locator":{"end_column":29,"end_line":33,"fragment":"","pointer":"/jobs/growth_gate/steps/1/with/path","start_column":11,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/with/path","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6c5245f68a7c669ba1801f2f","label":"name","locator":{"end_column":26,"end_line":35,"fragment":"","pointer":"/jobs/growth_gate/steps/2/name","start_column":7,"start_line":35},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a9236ff89cdcab6d457bb67f","label":"uses","locator":{"end_column":75,"end_line":36,"fragment":"","pointer":"/jobs/growth_gate/steps/2/uses","start_column":9,"start_line":36},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/uses","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0eaaec3945d5b985579de62e","label":"with","locator":{"end_column":13,"end_line":37,"fragment":"","pointer":"/jobs/growth_gate/steps/2/with","start_column":9,"start_line":37},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/with","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6d39f4a26daa6e74ec013644","label":"python-version","locator":{"end_column":32,"end_line":38,"fragment":"","pointer":"/jobs/growth_gate/steps/2/with/python-version","start_column":11,"start_line":38},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/with/python-version","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7dac5aa86a8c3299b4101be4","label":"name","locator":{"end_column":34,"end_line":40,"fragment":"","pointer":"/jobs/growth_gate/steps/3/name","start_column":7,"start_line":40},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/3/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8bb25d7836f4f12037e161c4","label":"run","locator":{"end_column":58,"end_line":41,"fragment":"","pointer":"/jobs/growth_gate/steps/3/run","start_column":9,"start_line":41},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/3/run","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a49d9fe5e07f8e4163c7168a","label":"name","locator":{"end_column":41,"end_line":43,"fragment":"","pointer":"/jobs/growth_gate/steps/4/name","start_column":7,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/4/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bb1f34ecf394dab0399cfff2","label":"run","locator":{"end_column":57,"end_line":44,"fragment":"","pointer":"/jobs/growth_gate/steps/4/run","start_column":9,"start_line":44},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/4/run","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ef6cccecc2a6c4b0b526f88","label":"name","locator":{"end_column":44,"end_line":46,"fragment":"","pointer":"/jobs/growth_gate/steps/5/name","start_column":7,"start_line":46},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/5/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:41a87d66620b7f72ad8007bd","label":"if","locator":{"end_column":74,"end_line":47,"fragment":"","pointer":"/jobs/growth_gate/steps/5/if","start_column":9,"start_line":47},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/5/if","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0cfa92aa7d580f399a722cf0","label":"run","locator":{"end_column":55,"end_line":48,"fragment":"","pointer":"/jobs/growth_gate/steps/5/run","start_column":9,"start_line":48},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/5/run","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ead0699eb436a0320a7e20a9","label":"AOA_STATS_ROOT","locator":{"end_column":61,"end_line":19,"fragment":"","pointer":"/jobs/growth_gate/env/AOA_STATS_ROOT","start_column":7,"start_line":19},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env/AOA_STATS_ROOT","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0658e8b8bc5ea14a6b67785f","label":"AOA_REPO_LOCAL_KAG_HISTORY_REPO","locator":{"end_column":53,"end_line":20,"fragment":"","pointer":"/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_HISTORY_REPO","start_column":7,"start_line":20},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_HISTORY_REPO","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ae90f1efaaaf86c428b47f0","label":"AOA_REPO_LOCAL_KAG_HISTORY_REF","locator":{"end_column":116,"end_line":21,"fragment":"","pointer":"/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_HISTORY_REF","start_column":7,"start_line":21},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_HISTORY_REF","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6db61ce2f97ca054155c2464","label":"AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF","locator":{"end_column":122,"end_line":22,"fragment":"","pointer":"/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF","start_column":7,"start_line":22},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/env/AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d86bd9a9b9d02be8ddde17e0","label":"steps","locator":{"end_column":10,"end_line":23,"fragment":"","pointer":"/jobs/growth_gate/steps","start_column":5,"start_line":23},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b95fd02960032052afcce3b0","label":"name","locator":{"end_column":22,"end_line":24,"fragment":"","pointer":"/jobs/growth_gate/steps/0/name","start_column":7,"start_line":24},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/0/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d374b4d96dc05801788377b9","label":"uses","locator":{"end_column":71,"end_line":25,"fragment":"","pointer":"/jobs/growth_gate/steps/0/uses","start_column":9,"start_line":25},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/0/uses","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:07f5b7754f1c55eb4913aec4","label":"with","locator":{"end_column":13,"end_line":26,"fragment":"","pointer":"/jobs/growth_gate/steps/0/with","start_column":9,"start_line":26},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/0/with","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1fa9b14cf6206c480e9a676e","label":"fetch-depth","locator":{"end_column":24,"end_line":27,"fragment":"","pointer":"/jobs/growth_gate/steps/0/with/fetch-depth","start_column":11,"start_line":27},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/0/with/fetch-depth","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:644413f5aebf47674d9580e1","label":"name","locator":{"end_column":44,"end_line":29,"fragment":"","pointer":"/jobs/growth_gate/steps/1/name","start_column":7,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3d83391d94ae89ead39c29c6","label":"uses","locator":{"end_column":71,"end_line":30,"fragment":"","pointer":"/jobs/growth_gate/steps/1/uses","start_column":9,"start_line":30},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/uses","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ec3695d22a3ac5421c7790dc","label":"with","locator":{"end_column":13,"end_line":31,"fragment":"","pointer":"/jobs/growth_gate/steps/1/with","start_column":9,"start_line":31},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/with","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e4e8e1238435d89cbc7f471a","label":"repository","locator":{"end_column":39,"end_line":32,"fragment":"","pointer":"/jobs/growth_gate/steps/1/with/repository","start_column":11,"start_line":32},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/with/repository","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1768334eebd64b29e682d86e","label":"ref","locator":{"end_column":55,"end_line":33,"fragment":"","pointer":"/jobs/growth_gate/steps/1/with/ref","start_column":11,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/with/ref","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64e936fa812628542da594b2","label":"path","locator":{"end_column":29,"end_line":34,"fragment":"","pointer":"/jobs/growth_gate/steps/1/with/path","start_column":11,"start_line":34},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/1/with/path","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6c5245f68a7c669ba1801f2f","label":"name","locator":{"end_column":51,"end_line":36,"fragment":"","pointer":"/jobs/growth_gate/steps/2/name","start_column":7,"start_line":36},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a9236ff89cdcab6d457bb67f","label":"uses","locator":{"end_column":71,"end_line":37,"fragment":"","pointer":"/jobs/growth_gate/steps/2/uses","start_column":9,"start_line":37},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/uses","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0eaaec3945d5b985579de62e","label":"with","locator":{"end_column":13,"end_line":38,"fragment":"","pointer":"/jobs/growth_gate/steps/2/with","start_column":9,"start_line":38},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/with","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b4642acd82ad822e52a710fc","label":"repository","locator":{"end_column":41,"end_line":39,"fragment":"","pointer":"/jobs/growth_gate/steps/2/with/repository","start_column":11,"start_line":39},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/with/repository","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:325e790a544541fc4e793d53","label":"ref","locator":{"end_column":55,"end_line":40,"fragment":"","pointer":"/jobs/growth_gate/steps/2/with/ref","start_column":11,"start_line":40},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/with/ref","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4d17ee38de2dabfb540c8103","label":"path","locator":{"end_column":31,"end_line":41,"fragment":"","pointer":"/jobs/growth_gate/steps/2/with/path","start_column":11,"start_line":41},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/2/with/path","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7dac5aa86a8c3299b4101be4","label":"name","locator":{"end_column":26,"end_line":43,"fragment":"","pointer":"/jobs/growth_gate/steps/3/name","start_column":7,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/3/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4869a1ed61f210e60527cc24","label":"uses","locator":{"end_column":75,"end_line":44,"fragment":"","pointer":"/jobs/growth_gate/steps/3/uses","start_column":9,"start_line":44},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/3/uses","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9275946b1ee7a181cce6190b","label":"with","locator":{"end_column":13,"end_line":45,"fragment":"","pointer":"/jobs/growth_gate/steps/3/with","start_column":9,"start_line":45},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/3/with","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:500c9798062a25c13f4794d1","label":"python-version","locator":{"end_column":32,"end_line":46,"fragment":"","pointer":"/jobs/growth_gate/steps/3/with/python-version","start_column":11,"start_line":46},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/3/with/python-version","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a49d9fe5e07f8e4163c7168a","label":"name","locator":{"end_column":34,"end_line":48,"fragment":"","pointer":"/jobs/growth_gate/steps/4/name","start_column":7,"start_line":48},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/4/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bb1f34ecf394dab0399cfff2","label":"run","locator":{"end_column":58,"end_line":49,"fragment":"","pointer":"/jobs/growth_gate/steps/4/run","start_column":9,"start_line":49},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/4/run","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ef6cccecc2a6c4b0b526f88","label":"name","locator":{"end_column":41,"end_line":51,"fragment":"","pointer":"/jobs/growth_gate/steps/5/name","start_column":7,"start_line":51},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/5/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0cfa92aa7d580f399a722cf0","label":"run","locator":{"end_column":57,"end_line":52,"fragment":"","pointer":"/jobs/growth_gate/steps/5/run","start_column":9,"start_line":52},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/5/run","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:025b5e676b2289c146622414","label":"name","locator":{"end_column":44,"end_line":54,"fragment":"","pointer":"/jobs/growth_gate/steps/6/name","start_column":7,"start_line":54},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/6/name","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2124104b265b164bb3fcd52f","label":"if","locator":{"end_column":74,"end_line":55,"fragment":"","pointer":"/jobs/growth_gate/steps/6/if","start_column":9,"start_line":55},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/6/if","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ac091da91776fb03ed03abe2","label":"run","locator":{"end_column":55,"end_line":56,"fragment":"","pointer":"/jobs/growth_gate/steps/6/run","start_column":9,"start_line":56},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/growth_gate/steps/6/run","source_record_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0e52a1856d9a923ccd79db7e","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:3b7fbc648896f1e80dc4f157","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:66db369eb7a8cf76852f7dec","label":"Adverse Effects Review","locator":{"end_column":24,"end_line":1,"fragment":"adverse-effects-review","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:adverse-effects-review","source_record_id":"aoa:aoa-techniques:artifact:3b7fbc648896f1e80dc4f157","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3069af0c3a55e1325f2c4ef6","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:3b7fbc648896f1e80dc4f157","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -7873,28 +7885,28 @@ {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:396b2280cb8aa3a3b818c43a","label":"techniques","locator":{"end_column":68,"end_line":49,"fragment":"","pointer":"","start_column":43,"start_line":49},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:design-as-anatomy","target_ref":"techniques/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:49:43:0:techniques/","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:072205e71f0442b84d1a6fe7","label":"docs","locator":{"end_column":69,"end_line":50,"fragment":"","pointer":"","start_column":47,"start_line":50},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:design-as-anatomy","target_ref":"docs/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:50:47:0:docs/README.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:40ce0a389a920e6840d703da","label":"mechanics","locator":{"end_column":67,"end_line":51,"fragment":"","pointer":"","start_column":35,"start_line":51},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:design-as-anatomy","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:51:35:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:42f42c68933c01671568318b","label":"Design as Operation","locator":{"end_column":22,"end_line":60,"fragment":"design-as-operation","pointer":"","start_column":1,"start_line":60},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:design-as-operation","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:af6042f4eaff20878f98178b","label":"Design as Aim","locator":{"end_column":16,"end_line":75,"fragment":"design-as-aim","pointer":"","start_column":1,"start_line":75},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:design-as-aim","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:05f8fd8c8a732c5b1a134135","label":"Design Principles","locator":{"end_column":20,"end_line":92,"fragment":"design-principles","pointer":"","start_column":1,"start_line":92},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:design-principles","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cfe5c5fa46cdf1646f9124a9","label":"1. Atomic practice before orchestration","locator":{"end_column":43,"end_line":94,"fragment":"1-atomic-practice-before-orchestration","pointer":"","start_column":1,"start_line":94},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:1-atomic-practice-before-orchestration","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:21baaf9315759ff24a1fb280","label":"2. Source before generated","locator":{"end_column":30,"end_line":99,"fragment":"2-source-before-generated","pointer":"","start_column":1,"start_line":99},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2-source-before-generated","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:346a4f684fac4be306aa0d7b","label":"3. Standalone before hidden ecosystem dependency","locator":{"end_column":52,"end_line":104,"fragment":"3-standalone-before-hidden-ecosystem-dependency","pointer":"","start_column":1,"start_line":104},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:3-standalone-before-hidden-ecosystem-dependency","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ddd097ea919e06a08d2f92c2","label":"4. Topology before sprawl","locator":{"end_column":29,"end_line":109,"fragment":"4-topology-before-sprawl","pointer":"","start_column":1,"start_line":109},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:4-topology-before-sprawl","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4554b0950f6bbe3c93de2e77","label":"5. Mechanics before promotion pressure","locator":{"end_column":42,"end_line":115,"fragment":"5-mechanics-before-promotion-pressure","pointer":"","start_column":1,"start_line":115},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:5-mechanics-before-promotion-pressure","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1de7c4848db3638ad0a3c267","label":"6. Owner split before absorption","locator":{"end_column":36,"end_line":120,"fragment":"6-owner-split-before-absorption","pointer":"","start_column":1,"start_line":120},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:6-owner-split-before-absorption","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fd671341cbb575301c98fea8","label":"7. Validation before confidence","locator":{"end_column":35,"end_line":126,"fragment":"7-validation-before-confidence","pointer":"","start_column":1,"start_line":126},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:7-validation-before-confidence","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3a72b53befe02c24ca081dca","label":"8. Agent guidance is a route layer","locator":{"end_column":38,"end_line":131,"fragment":"8-agent-guidance-is-a-route-layer","pointer":"","start_column":1,"start_line":131},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:8-agent-guidance-is-a-route-layer","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:99aa4d9702bdcbffab8ca7fc","label":"Good Design Feels Like","locator":{"end_column":25,"end_line":137,"fragment":"good-design-feels-like","pointer":"","start_column":1,"start_line":137},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:good-design-feels-like","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:234b82773452066136224ebf","label":"Bad Design Smells Like","locator":{"end_column":25,"end_line":147,"fragment":"bad-design-smells-like","pointer":"","start_column":1,"start_line":147},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:bad-design-smells-like","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b11e19dd2f3e98572cb86a87","label":"Relationship to Other Root Surfaces","locator":{"end_column":38,"end_line":158,"fragment":"relationship-to-other-root-surfaces","pointer":"","start_column":1,"start_line":158},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:relationship-to-other-root-surfaces","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:04294d6d144ba77ac7a19d8d","label":"README","locator":{"end_column":20,"end_line":160,"fragment":"","pointer":"","start_column":1,"start_line":160},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:160:1:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e7cd062149b23813a6fa4c8b","label":"CHARTER","locator":{"end_column":54,"end_line":160,"fragment":"","pointer":"","start_column":33,"start_line":160},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:160:33:1:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:de1fa497e7de56c9bdcdb564","label":"TECHNIQUE_INDEX","locator":{"end_column":79,"end_line":161,"fragment":"","pointer":"","start_column":42,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:42:1:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f18b569dd0d6072a8b3854da","label":"START_HERE","locator":{"end_column":33,"end_line":161,"fragment":"","pointer":"","start_column":1,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"docs/START_HERE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:1:0:docs/START_HERE.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:770a2f027d0bf820b8671ade","label":"ROOT_SURFACE_LAW","locator":{"end_column":62,"end_line":162,"fragment":"","pointer":"","start_column":18,"start_line":162},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:162:18:0:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1e94de3e38c8c9d94ccfe463","label":"DESIGN.AGENTS","locator":{"end_column":80,"end_line":163,"fragment":"","pointer":"","start_column":47,"start_line":163},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:163:47:1:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f320c4cfb6cec5f3c25f4a96","label":"AGENTS","locator":{"end_column":31,"end_line":163,"fragment":"","pointer":"","start_column":12,"start_line":163},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:163:12:0:AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69aa3e300270558c66176ad8","label":"Use by Agents","locator":{"end_column":16,"end_line":167,"fragment":"use-by-agents","pointer":"","start_column":1,"start_line":167},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:use-by-agents","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:42f42c68933c01671568318b","label":"Design as Operation","locator":{"end_column":22,"end_line":61,"fragment":"design-as-operation","pointer":"","start_column":1,"start_line":61},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:design-as-operation","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:af6042f4eaff20878f98178b","label":"Design as Aim","locator":{"end_column":16,"end_line":76,"fragment":"design-as-aim","pointer":"","start_column":1,"start_line":76},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:design-as-aim","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:05f8fd8c8a732c5b1a134135","label":"Design Principles","locator":{"end_column":20,"end_line":93,"fragment":"design-principles","pointer":"","start_column":1,"start_line":93},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:design-principles","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cfe5c5fa46cdf1646f9124a9","label":"1. Atomic practice before orchestration","locator":{"end_column":43,"end_line":95,"fragment":"1-atomic-practice-before-orchestration","pointer":"","start_column":1,"start_line":95},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:1-atomic-practice-before-orchestration","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:21baaf9315759ff24a1fb280","label":"2. Source before generated","locator":{"end_column":30,"end_line":100,"fragment":"2-source-before-generated","pointer":"","start_column":1,"start_line":100},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2-source-before-generated","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:346a4f684fac4be306aa0d7b","label":"3. Standalone before hidden ecosystem dependency","locator":{"end_column":52,"end_line":105,"fragment":"3-standalone-before-hidden-ecosystem-dependency","pointer":"","start_column":1,"start_line":105},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:3-standalone-before-hidden-ecosystem-dependency","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ddd097ea919e06a08d2f92c2","label":"4. Topology before sprawl","locator":{"end_column":29,"end_line":110,"fragment":"4-topology-before-sprawl","pointer":"","start_column":1,"start_line":110},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:4-topology-before-sprawl","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4554b0950f6bbe3c93de2e77","label":"5. Mechanics before promotion pressure","locator":{"end_column":42,"end_line":116,"fragment":"5-mechanics-before-promotion-pressure","pointer":"","start_column":1,"start_line":116},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:5-mechanics-before-promotion-pressure","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1de7c4848db3638ad0a3c267","label":"6. Owner split before absorption","locator":{"end_column":36,"end_line":121,"fragment":"6-owner-split-before-absorption","pointer":"","start_column":1,"start_line":121},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:6-owner-split-before-absorption","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fd671341cbb575301c98fea8","label":"7. Validation before confidence","locator":{"end_column":35,"end_line":132,"fragment":"7-validation-before-confidence","pointer":"","start_column":1,"start_line":132},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:7-validation-before-confidence","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3a72b53befe02c24ca081dca","label":"8. Agent guidance is a route layer","locator":{"end_column":38,"end_line":137,"fragment":"8-agent-guidance-is-a-route-layer","pointer":"","start_column":1,"start_line":137},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:8-agent-guidance-is-a-route-layer","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:99aa4d9702bdcbffab8ca7fc","label":"Good Design Feels Like","locator":{"end_column":25,"end_line":143,"fragment":"good-design-feels-like","pointer":"","start_column":1,"start_line":143},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:good-design-feels-like","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:234b82773452066136224ebf","label":"Bad Design Smells Like","locator":{"end_column":25,"end_line":153,"fragment":"bad-design-smells-like","pointer":"","start_column":1,"start_line":153},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:bad-design-smells-like","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b11e19dd2f3e98572cb86a87","label":"Relationship to Other Root Surfaces","locator":{"end_column":38,"end_line":164,"fragment":"relationship-to-other-root-surfaces","pointer":"","start_column":1,"start_line":164},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:relationship-to-other-root-surfaces","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:20850560488cbe479cb087e2","label":"CHARTER","locator":{"end_column":54,"end_line":166,"fragment":"","pointer":"","start_column":33,"start_line":166},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:166:33:1:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:57785472916f4a5b84a916ed","label":"README","locator":{"end_column":20,"end_line":166,"fragment":"","pointer":"","start_column":1,"start_line":166},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:166:1:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:01f03f741f6529648c434b13","label":"TECHNIQUE_INDEX","locator":{"end_column":79,"end_line":167,"fragment":"","pointer":"","start_column":42,"start_line":167},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:167:42:1:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0b6f464f93a5511bfb72fef","label":"START_HERE","locator":{"end_column":33,"end_line":167,"fragment":"","pointer":"","start_column":1,"start_line":167},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"docs/START_HERE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:167:1:0:docs/START_HERE.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e67d65d5b38620b3b220c550","label":"ROOT_SURFACE_LAW","locator":{"end_column":62,"end_line":168,"fragment":"","pointer":"","start_column":18,"start_line":168},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:168:18:0:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:46f9691827e129647c3cffcd","label":"AGENTS","locator":{"end_column":31,"end_line":169,"fragment":"","pointer":"","start_column":12,"start_line":169},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:169:12:0:AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:820ca1f288d15bfe81958402","label":"DESIGN.AGENTS","locator":{"end_column":80,"end_line":169,"fragment":"","pointer":"","start_column":47,"start_line":169},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:relationship-to-other-root-surfaces","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:169:47:1:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69aa3e300270558c66176ad8","label":"Use by Agents","locator":{"end_column":16,"end_line":173,"fragment":"use-by-agents","pointer":"","start_column":1,"start_line":173},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:use-by-agents","source_record_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:19fce92639c916b12e203484","label":"Concrete Fragment-First Assembly","locator":{"end_column":34,"end_line":1,"fragment":"concrete-fragment-first-assembly","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:concrete-fragment-first-assembly","source_record_id":"aoa:aoa-techniques:artifact:3e44ec8be46ceb8637f989a0","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ecb1d8d5300616209ae26d5","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:3e44ec8be46ceb8637f989a0","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:538db07ebb91460243bb9368","label":"Origin Evidence","locator":{"end_column":17,"end_line":1,"fragment":"origin-evidence","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:origin-evidence","source_record_id":"aoa:aoa-techniques:artifact:3e492ae605b4398556c84fbf","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -8021,6 +8033,14 @@ {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eeb95e19c1f4cdb1dcf2e635","label":"test_questbook_legacy_scaffold_marks_empty_raw_inventory","locator":{"end_column":74,"end_line":196,"fragment":"","pointer":"","start_column":5,"start_line":171},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:path.is_file"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:provenance.split"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","target_ref":"python:sorted"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","source_record_id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d8297804f8aa877b05678c34","label":"test_questbook_stop_lines_remain_explicit","locator":{"end_column":55,"end_line":224,"fragment":"","pointer":"","start_column":5,"start_line":198},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_stop_lines_remain_explicit","target_ref":"python:direction.split"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_stop_lines_remain_explicit","target_ref":"python:roadmap.split"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_stop_lines_remain_explicit","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_stop_lines_remain_explicit","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_stop_lines_remain_explicit","target_ref":"python:self.subTest"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"QuestbookMechanicsTopologyTestCase.test_questbook_stop_lines_remain_explicit","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_questbook_stop_lines_remain_explicit","source_record_id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5c25b0e91faba427aa5b36a1","label":"test_questbook_package_does_not_move_source_surfaces","locator":{"end_column":71,"end_line":248,"fragment":"","pointer":"","start_column":5,"start_line":226},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","target_ref":"python:self.assertTrue"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","source_record_id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:34f3582e3faec4d0e41873ab","label":"AGENTS.md","locator":{"end_column":11,"end_line":1,"fragment":"agentsmd","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agentsmd","source_record_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b246ca6a987eb0646757ac4a","label":"Applies to","locator":{"end_column":13,"end_line":3,"fragment":"applies-to","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:applies-to","source_record_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0cc51cd79f07045f7019dad8","label":"Role","locator":{"end_column":7,"end_line":7,"fragment":"role","pointer":"","start_column":1,"start_line":7},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:role","source_record_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ddd1f14440b4728fa3b3e6c2","label":"Read before editing","locator":{"end_column":22,"end_line":17,"fragment":"read-before-editing","pointer":"","start_column":1,"start_line":17},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:read-before-editing","source_record_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:404ee46841f8228369b463fd","label":"Boundaries","locator":{"end_column":13,"end_line":24,"fragment":"boundaries","pointer":"","start_column":1,"start_line":24},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:boundaries","source_record_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ea9aa3597b3ba3de85971486","label":"Validation","locator":{"end_column":13,"end_line":33,"fragment":"validation","pointer":"","start_column":1,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f627f898c99a2b9689622abe","label":"Closeout","locator":{"end_column":11,"end_line":43,"fragment":"closeout","pointer":"","start_column":1,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:closeout","source_record_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7a245e3c9a226e0b03acb655","label":"Review Checklist","locator":{"end_column":18,"end_line":1,"fragment":"review-checklist","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:review-checklist","source_record_id":"aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a32eaa6335966eec7b1a1e2d","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b89ce7525bf055d0f4293d76","label":"Purpose","locator":{"end_column":10,"end_line":3,"fragment":"purpose","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:purpose","source_record_id":"aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -8252,6 +8272,26 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a4fd03a1ca20848a67db9378","label":"Release Support Legacy Distillation Log","locator":{"end_column":41,"end_line":1,"fragment":"release-support-legacy-distillation-log","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:release-support-legacy-distillation-log","source_record_id":"aoa:aoa-techniques:artifact:414b0a361e825c8fd86799e2","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d77561ec8489743f312f8675","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:414b0a361e825c8fd86799e2","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:be546cf4061af61b2f2c4ad4","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":3,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:414b0a361e825c8fd86799e2","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:07166ee02fe465cc57038d2b","label":"writer_repo","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/writer_repo","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/writer_repo","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:120a2ebfdfcc136cb7c1f01b","label":"dimensions","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/dimensions","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/dimensions","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:270834636f7d1d1cd37e5bdd","label":"schema_version","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/schema_version","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/schema_version","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:27773e82f779437eb3e4b703","label":"contract_version","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/contract_version","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/contract_version","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:31b062fccd0944d8795773d8","label":"window","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/window","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/window","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:32192067df625dc3fc5eff8f","label":"provenance","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/provenance","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/provenance","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:61d8b70e07dbaf38391331fd","label":"observation_id","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/observation_id","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/observation_id","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:687ccd136e3b4a4c1fe652fa","label":"progress","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/progress","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/progress","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7476f800a0c5ed1643409928","label":"population","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/population","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/population","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:866bfef549ab0131be3ece16","label":"contract_ref","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/contract_ref","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/contract_ref","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a7d5abbb0ce6788cb99ceee","label":"posture","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/posture","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/posture","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9aef1a297997beab330b0501","label":"cohort","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/cohort","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/cohort","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a26c281a7e3167d885cf9c92","label":"reporting_rule","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/reporting_rule","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/reporting_rule","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b1aa4ef635f691545f7f9c82","label":"observed_at","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/observed_at","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/observed_at","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3d0e466a357cd0e1452ddb1","label":"measurement_id","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/measurement_id","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/measurement_id","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cfe86d71639d00db30d035b4","label":"sample","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/sample","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/sample","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d00a9069093e0c7495fff1cc","label":"uncertainty","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/uncertainty","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/uncertainty","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d216b1060d9fb4af999bc1c8","label":"value","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/value","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/value","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e7bac89fb31eeb24a40d4239","label":"object_ref","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/object_ref","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/object_ref","source_record_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:419f9fdbb7838b8d1c209e48","label":"Thematic District Protocol","locator":{"end_column":28,"end_line":1,"fragment":"thematic-district-protocol","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:thematic-district-protocol","source_record_id":"aoa:aoa-techniques:artifact:416736a2a201444290bbfb32","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:462d705a4cb5d208fa7d9ce9","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:416736a2a201444290bbfb32","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e01f1c4adc21ca11a455aaa5","label":"Current Districts","locator":{"end_column":20,"end_line":10,"fragment":"current-districts","pointer":"","start_column":1,"start_line":10},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:current-districts","source_record_id":"aoa:aoa-techniques:artifact:416736a2a201444290bbfb32","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -8815,9 +8855,9 @@ {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7333d08c03ba0655284f67f7","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9205f83c84b10ae8316fdca9","label":"2026-05-14 - Live Receipt Publisher Part Home","locator":{"end_column":48,"end_line":7,"fragment":"2026-05-14-live-receipt-publisher-part-home","pointer":"","start_column":1,"start_line":7},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-live-receipt-publisher-part-home","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4a6682d5fd7a25d6edb6ae90","label":"mechanic-script-homes","locator":{"end_column":89,"end_line":17,"fragment":"","pointer":"","start_column":3,"start_line":17},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-live-receipt-publisher-part-home","target_ref":"../../docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:17:3:0:../../docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:25049157aee5f5ca90bcb2bf","label":"2026-05-14 - Manifest Part Home","locator":{"end_column":34,"end_line":29,"fragment":"2026-05-14-manifest-part-home","pointer":"","start_column":1,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-manifest-part-home","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:103fd077624be62830933621","label":"2026-05-02","locator":{"end_column":13,"end_line":48,"fragment":"2026-05-02","pointer":"","start_column":1,"start_line":48},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-02","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:992193386538200f57d08117","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":62,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":62},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:25049157aee5f5ca90bcb2bf","label":"2026-05-14 - Manifest Part Home","locator":{"end_column":34,"end_line":23,"fragment":"2026-05-14-manifest-part-home","pointer":"","start_column":1,"start_line":23},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-manifest-part-home","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:103fd077624be62830933621","label":"2026-05-02","locator":{"end_column":13,"end_line":37,"fragment":"2026-05-02","pointer":"","start_column":1,"start_line":37},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-02","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:992193386538200f57d08117","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":51,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":51},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c254d529781b53baefc77118","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:452004c0f4712c5664e17c3c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e6c81b2efdf945d44cf8ba69","label":"Scenario","locator":{"end_column":10,"end_line":1,"fragment":"scenario","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:scenario","source_record_id":"aoa:aoa-techniques:artifact:452004c0f4712c5664e17c3c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8206e3e2c5d08ebe5121d9b7","label":"Raw excerpt","locator":{"end_column":14,"end_line":5,"fragment":"raw-excerpt","pointer":"","start_column":1,"start_line":5},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:raw-excerpt","source_record_id":"aoa:aoa-techniques:artifact:452004c0f4712c5664e17c3c","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -8997,11 +9037,11 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a638e13e1587118430db0dcc","label":"Evidence","locator":{"end_column":11,"end_line":28,"fragment":"evidence","pointer":"","start_column":1,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:evidence","source_record_id":"aoa:aoa-techniques:artifact:496cb42254b839bc2a752978","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3d110554ab0de1d864aa1808","label":"Result","locator":{"end_column":9,"end_line":34,"fragment":"result","pointer":"","start_column":1,"start_line":34},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:result","source_record_id":"aoa:aoa-techniques:artifact:496cb42254b839bc2a752978","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2dcb946bb46f02a50eb66d0e","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ed42e4a4af854b9d470f7ba3","label":"resolve_aoa_kag_root","locator":{"end_column":6,"end_line":41,"fragment":"","pointer":"","start_column":1,"start_line":23},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:FileNotFoundError"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:all"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:candidate.resolve"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:candidates.append"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:env.get"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"resolve_aoa_kag_root","semantic_key":"python:function:resolve_aoa_kag_root","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d669446c6d49a8d74b889d78","label":"require_pinned_checkout","locator":{"end_column":24,"end_line":56,"fragment":"","pointer":"","start_column":1,"start_line":44},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:require_pinned_checkout","target_ref":"python:RuntimeError"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:require_pinned_checkout","target_ref":"python:completed.stdout.strip"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:require_pinned_checkout","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:require_pinned_checkout","target_ref":"python:subprocess.run"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"require_pinned_checkout","semantic_key":"python:function:require_pinned_checkout","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44212edc355ffcd46cba3816","label":"resolve_history_refs","locator":{"end_column":36,"end_line":78,"fragment":"","pointer":"","start_column":1,"start_line":59},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:completed.stdout.strip"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:env.get"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:env.get"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:env.get"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:subprocess.run"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"resolve_history_refs","semantic_key":"python:function:resolve_history_refs","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9d9ad59111edfff3386a64bd","label":"commands","locator":{"end_column":6,"end_line":113,"fragment":"","pointer":"","start_column":1,"start_line":81},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:commands","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:commands","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:commands","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:commands","target_ref":"python:str"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"commands","semantic_key":"python:function:commands","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:372eee0483324b90277da37e","label":"main","locator":{"end_column":17,"end_line":131,"fragment":"","pointer":"","start_column":1,"start_line":116},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:print"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:require_pinned_checkout"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:resolve_aoa_kag_root"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:resolve_history_refs"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:subprocess.run"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"main","semantic_key":"python:function:main","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ed42e4a4af854b9d470f7ba3","label":"resolve_aoa_kag_root","locator":{"end_column":6,"end_line":42,"fragment":"","pointer":"","start_column":1,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:FileNotFoundError"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:all"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:candidate.resolve"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:candidates.append"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_aoa_kag_root","target_ref":"python:env.get"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"resolve_aoa_kag_root","semantic_key":"python:function:resolve_aoa_kag_root","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d669446c6d49a8d74b889d78","label":"require_pinned_checkout","locator":{"end_column":24,"end_line":57,"fragment":"","pointer":"","start_column":1,"start_line":45},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:require_pinned_checkout","target_ref":"python:RuntimeError"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:require_pinned_checkout","target_ref":"python:completed.stdout.strip"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:require_pinned_checkout","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:require_pinned_checkout","target_ref":"python:subprocess.run"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"require_pinned_checkout","semantic_key":"python:function:require_pinned_checkout","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44212edc355ffcd46cba3816","label":"resolve_history_refs","locator":{"end_column":36,"end_line":79,"fragment":"","pointer":"","start_column":1,"start_line":60},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:completed.stdout.strip"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:env.get"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:env.get"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:env.get"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:resolve_history_refs","target_ref":"python:subprocess.run"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"resolve_history_refs","semantic_key":"python:function:resolve_history_refs","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9d9ad59111edfff3386a64bd","label":"commands","locator":{"end_column":6,"end_line":114,"fragment":"","pointer":"","start_column":1,"start_line":82},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:commands","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:commands","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:commands","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:commands","target_ref":"python:str"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"commands","semantic_key":"python:function:commands","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:372eee0483324b90277da37e","label":"main","locator":{"end_column":17,"end_line":132,"fragment":"","pointer":"","start_column":1,"start_line":117},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:print"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:require_pinned_checkout"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:resolve_aoa_kag_root"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:resolve_history_refs"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:subprocess.run"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"main","semantic_key":"python:function:main","source_record_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:36c9c39b2a38688a3f3223c7","label":"Examples District","locator":{"end_column":19,"end_line":1,"fragment":"examples-district","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:examples-district","source_record_id":"aoa:aoa-techniques:artifact:49aaa2819e35a856818ecec8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:62974c378ed3c976b7376b53","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:49aaa2819e35a856818ecec8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0d3f3bca0a2b804ab701e3f","label":"Placement","locator":{"end_column":12,"end_line":10,"fragment":"placement","pointer":"","start_column":1,"start_line":10},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:placement","source_record_id":"aoa:aoa-techniques:artifact:49aaa2819e35a856818ecec8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -9546,13 +9586,13 @@ {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a51e9e74cd1141d34c549cf","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:4ebf57b05d9ba338303c4ca5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c23ebabcd57bb7576987f3dd","label":"Decision Rationale Recording Checklist","locator":{"end_column":40,"end_line":1,"fragment":"decision-rationale-recording-checklist","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:decision-rationale-recording-checklist","source_record_id":"aoa:aoa-techniques:artifact:4ebf57b05d9ba338303c4ca5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9cc7ca4245209d9ac659a736","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7cf11b9232d16d08549207a3","label":"AgentsMeshTests","locator":{"end_column":78,"end_line":96,"fragment":"","pointer":"","start_column":1,"start_line":14},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests","semantic_key":"python:class:AgentsMeshTests","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7cf11b9232d16d08549207a3","label":"AgentsMeshTests","locator":{"end_column":78,"end_line":97,"fragment":"","pointer":"","start_column":1,"start_line":14},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests","semantic_key":"python:class:AgentsMeshTests","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f7fb2520abe1b63419d319eb","label":"run_repo_script","locator":{"end_column":10,"end_line":22,"fragment":"","pointer":"","start_column":5,"start_line":15},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.run_repo_script","target_ref":"python:subprocess.run"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.run_repo_script","semantic_key":"python:method:AgentsMeshTests.run_repo_script","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:36914d261e85dadb9e22193d","label":"test_agents_mesh_validators_pass","locator":{"end_column":40,"end_line":32,"fragment":"","pointer":"","start_column":5,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_validators_pass","target_ref":"python:script.endswith"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_validators_pass","target_ref":"python:self.run_repo_script"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_agents_mesh_validators_pass","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_validators_pass","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:78ef5e0ad2edaa530d13e6fc","label":"test_generated_mesh_records_only_canonical_cards","locator":{"end_column":97,"end_line":52,"fragment":"","pointer":"","start_column":5,"start_line":34},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","semantic_key":"python:method:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:208b996cb91e0d391b43e50c","label":"test_agents_mesh_config_names_design_sources","locator":{"end_column":54,"end_line":62,"fragment":"","pointer":"","start_column":5,"start_line":54},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:self.assertFalse"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_agents_mesh_config_names_design_sources","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_config_names_design_sources","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:549fda51be6fe6ddc2ee6ba4","label":"test_agents_mesh_validator_ignores_untracked_top_level_dirs","locator":{"end_column":78,"end_line":74,"fragment":"","pointer":"","start_column":5,"start_line":64},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","target_ref":"python:subprocess.run"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","target_ref":"python:tempfile.TemporaryDirectory"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3c903c7b25510ba7b45a8be6","label":"test_agents_mesh_ignores_dependency_checkouts","locator":{"end_column":78,"end_line":96,"fragment":"","pointer":"","start_column":5,"start_line":76},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:any"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:deps_root.iterdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:deps_root.mkdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:deps_root.rmdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:subprocess.run"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:tempfile.TemporaryDirectory"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:78ef5e0ad2edaa530d13e6fc","label":"test_generated_mesh_records_only_canonical_cards","locator":{"end_column":88,"end_line":53,"fragment":"","pointer":"","start_column":5,"start_line":34},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","semantic_key":"python:method:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:208b996cb91e0d391b43e50c","label":"test_agents_mesh_config_names_design_sources","locator":{"end_column":54,"end_line":63,"fragment":"","pointer":"","start_column":5,"start_line":55},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_config_names_design_sources","target_ref":"python:self.assertFalse"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_agents_mesh_config_names_design_sources","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_config_names_design_sources","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:549fda51be6fe6ddc2ee6ba4","label":"test_agents_mesh_validator_ignores_untracked_top_level_dirs","locator":{"end_column":78,"end_line":75,"fragment":"","pointer":"","start_column":5,"start_line":65},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","target_ref":"python:subprocess.run"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","target_ref":"python:tempfile.TemporaryDirectory"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3c903c7b25510ba7b45a8be6","label":"test_agents_mesh_ignores_dependency_checkouts","locator":{"end_column":78,"end_line":97,"fragment":"","pointer":"","start_column":5,"start_line":77},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:any"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:deps_root.iterdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:deps_root.mkdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:deps_root.rmdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:subprocess.run"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","target_ref":"python:tempfile.TemporaryDirectory"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","source_record_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4c532f6cc19841571ca8274b","label":"AGENTS.md","locator":{"end_column":11,"end_line":1,"fragment":"agentsmd","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agentsmd","source_record_id":"aoa:aoa-techniques:artifact:4ed48981ce43ce3a53fd614f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:674fe5d57e2d2f69dbb15d9b","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:4ed48981ce43ce3a53fd614f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e0265f12b4f77aad6741aa54","label":"Applies to","locator":{"end_column":13,"end_line":3,"fragment":"applies-to","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:applies-to","source_record_id":"aoa:aoa-techniques:artifact:4ed48981ce43ce3a53fd614f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -9690,8 +9730,8 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:af1fbb1eeb99aafdf7d8a315","label":"Phase 10: Long-Pass Closeout Ledger","locator":{"end_column":38,"end_line":591,"fragment":"phase-10-long-pass-closeout-ledger","pointer":"","start_column":1,"start_line":591},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:phase-10-long-pass-closeout-ledger","source_record_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:db2084488e954f8549cf527a","label":"Review Packet Index Updates","locator":{"end_column":30,"end_line":616,"fragment":"review-packet-index-updates","pointer":"","start_column":1,"start_line":616},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:review-packet-index-updates","source_record_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:250412e0c5adfb90fefeda07","label":"Validation Menu","locator":{"end_column":18,"end_line":634,"fragment":"validation-menu","pointer":"","start_column":1,"start_line":634},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation-menu","source_record_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:54d20504da7886a07f694dbf","label":"Landing Rhythm","locator":{"end_column":17,"end_line":655,"fragment":"landing-rhythm","pointer":"","start_column":1,"start_line":655},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:landing-rhythm","source_record_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b315bc06f2b70979e24ea835","label":"Live Notes","locator":{"end_column":13,"end_line":681,"fragment":"live-notes","pointer":"","start_column":1,"start_line":681},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:live-notes","source_record_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:54d20504da7886a07f694dbf","label":"Landing Rhythm","locator":{"end_column":17,"end_line":640,"fragment":"landing-rhythm","pointer":"","start_column":1,"start_line":640},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:landing-rhythm","source_record_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b315bc06f2b70979e24ea835","label":"Live Notes","locator":{"end_column":13,"end_line":666,"fragment":"live-notes","pointer":"","start_column":1,"start_line":666},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:live-notes","source_record_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9995f1644e399ee461162783","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f82a33f8ec6cdd084a144d2f","label":"Cross-Layer Technique Candidates","locator":{"end_column":34,"end_line":1,"fragment":"cross-layer-technique-candidates","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:cross-layer-technique-candidates","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:656a80020d11641d5a3349d5","label":"Scope","locator":{"end_column":8,"end_line":10,"fragment":"scope","pointer":"","start_column":1,"start_line":10},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:scope","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -9706,81 +9746,81 @@ {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7ca95e72ff22e9fa9f03ff12","label":"examples/","locator":{"end_column":50,"end_line":61,"fragment":"","pointer":"","start_column":28,"start_line":61},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:structured-registry","target_ref":"examples/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:61:28:1:examples/","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:74531b406cf940b2cc89eee6","label":"scripts/build_cross_layer_candidate_registry.py","locator":{"end_column":101,"end_line":63,"fragment":"","pointer":"","start_column":3,"start_line":63},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:structured-registry","target_ref":"scripts/build_cross_layer_candidate_registry.py"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:63:3:0:scripts/build_cross_layer_candidate_registry.py","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fd3e0d46d9a28b3bb67b5d7a","label":"scripts/validate_cross_layer_candidate_registry.py","locator":{"end_column":107,"end_line":65,"fragment":"","pointer":"","start_column":3,"start_line":65},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:structured-registry","target_ref":"scripts/validate_cross_layer_candidate_registry.py"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:65:3:0:scripts/validate_cross_layer_candidate_registry.py","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48011ad5ec102aad849607d9","label":"Already Staged Elsewhere","locator":{"end_column":27,"end_line":80,"fragment":"already-staged-elsewhere","pointer":"","start_column":1,"start_line":80},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:already-staged-elsewhere","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:270b965eaa842d463479c8e1","label":"AOA-T-0041","locator":{"end_column":147,"end_line":84,"fragment":"","pointer":"","start_column":66,"start_line":84},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:already-staged-elsewhere","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:84:66:0:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a9a6387f5b8c8679d8b446e2","label":"AOA-T-0041","locator":{"end_column":384,"end_line":84,"fragment":"","pointer":"","start_column":303,"start_line":84},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:already-staged-elsewhere","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:84:303:1:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5b63424bdf3995bb8e995dd4","label":"Landed From This Wave Map","locator":{"end_column":28,"end_line":91,"fragment":"landed-from-this-wave-map","pointer":"","start_column":1,"start_line":91},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:landed-from-this-wave-map","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:72e6ef6e70cde96b5b2a61a5","label":"AOA-T-0035","locator":{"end_column":115,"end_line":95,"fragment":"","pointer":"","start_column":34,"start_line":95},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:95:34:0:../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:99c0ca8cfe89bfb16c035a92","label":"AOA-T-0036","locator":{"end_column":128,"end_line":96,"fragment":"","pointer":"","start_column":35,"start_line":96},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:96:35:0:../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e9c427d244777d63313d460d","label":"AOA-T-0037","locator":{"end_column":113,"end_line":97,"fragment":"","pointer":"","start_column":30,"start_line":97},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:97:30:0:../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c4c2828ee475799b36a96214","label":"AOA-T-0038","locator":{"end_column":132,"end_line":98,"fragment":"","pointer":"","start_column":37,"start_line":98},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:98:37:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c60699e65fc72c798ac3174f","label":"AOA-T-0039","locator":{"end_column":153,"end_line":99,"fragment":"","pointer":"","start_column":50,"start_line":99},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:99:50:0:../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3f4ccf11c56753225d07814","label":"AOA-T-0040","locator":{"end_column":113,"end_line":100,"fragment":"","pointer":"","start_column":33,"start_line":100},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:100:33:0:../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b217d3cbfc14ff9417304ba3","label":"AOA-T-0042","locator":{"end_column":129,"end_line":101,"fragment":"","pointer":"","start_column":38,"start_line":101},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:101:38:0:../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:41221a7bcc54f29ccc141916","label":"AOA-T-0043","locator":{"end_column":137,"end_line":102,"fragment":"","pointer":"","start_column":45,"start_line":102},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:102:45:0:../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d43058497f90ce9e5cce42c","label":"AOA-T-0044","locator":{"end_column":128,"end_line":103,"fragment":"","pointer":"","start_column":39,"start_line":103},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:103:39:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3b4ca40bad07360656f6ce7","label":"AOA-T-0045","locator":{"end_column":138,"end_line":104,"fragment":"","pointer":"","start_column":44,"start_line":104},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:104:44:0:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:00a7cf38e3b6d59c23549279","label":"Future Import Here","locator":{"end_column":21,"end_line":106,"fragment":"future-import-here","pointer":"","start_column":1,"start_line":106},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:future-import-here","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:57b3d36ba8374c13aa52a962","label":"Current Wave Program","locator":{"end_column":23,"end_line":110,"fragment":"current-wave-program","pointer":"","start_column":1,"start_line":110},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:current-wave-program","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:28e6f74fb6f366807b2d5cf2","label":"External Candidate Ledger","locator":{"end_column":148,"end_line":114,"fragment":"","pointer":"","start_column":81,"start_line":114},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-wave-program","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:114:81:0:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a7fe16dcca3c1873efcdf4c9","label":"Wave A - Runtime Truth And Local Lifecycle","locator":{"end_column":46,"end_line":123,"fragment":"wave-a-runtime-truth-and-local-lifecycle","pointer":"","start_column":1,"start_line":123},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:wave-a-runtime-truth-and-local-lifecycle","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:29c7e5133a127544562f9aa3","label":"AOA-T-0035","locator":{"end_column":86,"end_line":126,"fragment":"","pointer":"","start_column":5,"start_line":126},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:126:5:0:../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a1cc1919652689eb73452e1e","label":"AOA-T-0036","locator":{"end_column":98,"end_line":127,"fragment":"","pointer":"","start_column":5,"start_line":127},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:127:5:0:../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:799c80a977ba402c91b57995","label":"AOA-T-0037","locator":{"end_column":88,"end_line":128,"fragment":"","pointer":"","start_column":5,"start_line":128},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:128:5:0:../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0fbcee0a9ca62136a22c77f7","label":"AOA-T-0038","locator":{"end_column":100,"end_line":129,"fragment":"","pointer":"","start_column":5,"start_line":129},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:129:5:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6e8ebfcae2d00084116ff3c8","label":"AOA-T-0039","locator":{"end_column":108,"end_line":130,"fragment":"","pointer":"","start_column":5,"start_line":130},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:130:5:0:../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d8551761b9bba10f7a6020c6","label":"AOA-T-0035","locator":{"end_column":127,"end_line":132,"fragment":"","pointer":"","start_column":46,"start_line":132},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:132:46:0:../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aefd08585fac8a6bc8e7c7b9","label":"AOA-T-0036","locator":{"end_column":140,"end_line":133,"fragment":"","pointer":"","start_column":47,"start_line":133},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:133:47:0:../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f19f93711f51636755ac866","label":"AOA-T-0037","locator":{"end_column":125,"end_line":134,"fragment":"","pointer":"","start_column":42,"start_line":134},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:134:42:0:../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0e5a73fdeab5eae6f302321f","label":"AOA-T-0038","locator":{"end_column":144,"end_line":135,"fragment":"","pointer":"","start_column":49,"start_line":135},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:135:49:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:da15dc9eff4324607507b371","label":"AOA-T-0039","locator":{"end_column":165,"end_line":136,"fragment":"","pointer":"","start_column":62,"start_line":136},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:136:62:0:../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aad15f350d809de24e207f73","label":"AOA-T-0038","locator":{"end_column":131,"end_line":138,"fragment":"","pointer":"","start_column":36,"start_line":138},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:138:36:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d01747f09473dfae9d6740c8","label":"External Candidate Ledger","locator":{"end_column":211,"end_line":138,"fragment":"","pointer":"","start_column":144,"start_line":138},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:138:144:1:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b9721e3bfe05cbfd48dd5fe2","label":"AOA-T-0038","locator":{"end_column":118,"end_line":141,"fragment":"","pointer":"","start_column":23,"start_line":141},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:141:23:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:72993fd501be247c97e6dbb3","label":"Wave B - Curated Input Surfaces And Capability Boundaries","locator":{"end_column":61,"end_line":144,"fragment":"wave-b-curated-input-surfaces-and-capability-boundaries","pointer":"","start_column":1,"start_line":144},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:09da77e779013fcecec28965","label":"AOA-T-0040","locator":{"end_column":85,"end_line":147,"fragment":"","pointer":"","start_column":5,"start_line":147},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:147:5:0:../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fc7235a9d3eff4ffb023ca4b","label":"AOA-T-0041","locator":{"end_column":86,"end_line":148,"fragment":"","pointer":"","start_column":5,"start_line":148},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:148:5:0:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64616d1a08fde862f9b33740","label":"AOA-T-0042","locator":{"end_column":96,"end_line":149,"fragment":"","pointer":"","start_column":5,"start_line":149},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:149:5:0:../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:17e4c770c411883141dee285","label":"AOA-T-0043","locator":{"end_column":97,"end_line":150,"fragment":"","pointer":"","start_column":5,"start_line":150},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:150:5:0:../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:75954ede6d297ad728bebdc5","label":"AOA-T-0040","locator":{"end_column":125,"end_line":152,"fragment":"","pointer":"","start_column":45,"start_line":152},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:152:45:0:../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a8b4ea0c6bde36c75f5bd928","label":"External Candidate Ledger","locator":{"end_column":203,"end_line":153,"fragment":"","pointer":"","start_column":136,"start_line":153},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:153:136:1:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:adcb76d0d6c9450984d42e75","label":"AOA-T-0041","locator":{"end_column":127,"end_line":153,"fragment":"","pointer":"","start_column":46,"start_line":153},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:153:46:0:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d750f68a7e20fc766b35aba6","label":"AOA-T-0042","locator":{"end_column":141,"end_line":154,"fragment":"","pointer":"","start_column":50,"start_line":154},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:154:50:0:../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ec19ea78312ad458ba3bd695","label":"AOA-T-0043","locator":{"end_column":149,"end_line":155,"fragment":"","pointer":"","start_column":57,"start_line":155},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:155:57:0:../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:23717d6e38f789079e2c96d6","label":"External Candidate Ledger","locator":{"end_column":107,"end_line":157,"fragment":"","pointer":"","start_column":40,"start_line":157},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:157:40:0:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b80047eb3eee515874f49bcb","label":"AOA-T-0041","locator":{"end_column":192,"end_line":157,"fragment":"","pointer":"","start_column":111,"start_line":157},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:157:111:1:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0b37591e74a2f528023f1c37","label":"AOA-T-0020","locator":{"end_column":615,"end_line":161,"fragment":"","pointer":"","start_column":531,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/evidence-note-provenance-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:531:4:../../../../techniques/docs/evidence-note-provenance-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:60dcf567baa95d6729f60dc1","label":"AOA-T-0032","locator":{"end_column":470,"end_line":161,"fragment":"","pointer":"","start_column":388,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/evaluation/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:388:3:../../../../techniques/evaluation/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7c8188e4da578a7cc3a09cea","label":"AOA-T-0027","locator":{"end_column":240,"end_line":161,"fragment":"","pointer":"","start_column":156,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/cross-agent-skill-propagation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:156:1:../../../../techniques/docs/cross-agent-skill-propagation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ad92de3847d45d069707f02c","label":"AOA-T-0013","locator":{"end_column":151,"end_line":161,"fragment":"","pointer":"","start_column":65,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/single-source-rule-distribution/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:65:0:../../../../techniques/docs/single-source-rule-distribution/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e33764dd7ad925868b9a3e39","label":"AOA-T-0021","locator":{"end_column":704,"end_line":161,"fragment":"","pointer":"","start_column":620,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/bounded-relation-lift-for-kag/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:620:5:../../../../techniques/docs/bounded-relation-lift-for-kag/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fd7a016cb5c9d78a54e50c4c","label":"AOA-T-0024","locator":{"end_column":383,"end_line":161,"fragment":"","pointer":"","start_column":294,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/upstream-mirroring-with-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:294:2:../../../../techniques/docs/upstream-mirroring-with-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6193e1fef011a31ef0434c7f","label":"AOA-T-0040","locator":{"end_column":187,"end_line":162,"fragment":"","pointer":"","start_column":107,"start_line":162},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:162:107:0:../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:65c1462e27cfb695853faa89","label":"AOA-T-0045","locator":{"end_column":756,"end_line":162,"fragment":"","pointer":"","start_column":662,"start_line":162},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:162:662:5:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:912f20a7bbf798d8fd004c68","label":"AOA-T-0043","locator":{"end_column":461,"end_line":162,"fragment":"","pointer":"","start_column":369,"start_line":162},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:162:369:3:../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d8a65e0ad68bcd7cd2373f1b","label":"AOA-T-0044","locator":{"end_column":657,"end_line":162,"fragment":"","pointer":"","start_column":568,"start_line":162},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:162:568:4:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e7a3399b4a286c2f24060510","label":"AOA-T-0041","locator":{"end_column":270,"end_line":162,"fragment":"","pointer":"","start_column":189,"start_line":162},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:162:189:1:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eb312a3c7eca89fc22452f74","label":"AOA-T-0042","locator":{"end_column":363,"end_line":162,"fragment":"","pointer":"","start_column":272,"start_line":162},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:162:272:2:../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:19d8fb3449b9e1b1ed9d7130","label":"Wave C - History As Reviewable Artifact","locator":{"end_column":43,"end_line":164,"fragment":"wave-c-history-as-reviewable-artifact","pointer":"","start_column":1,"start_line":164},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:wave-c-history-as-reviewable-artifact","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2ee12c71c04e58c94291e1c4","label":"AOA-T-0044","locator":{"end_column":94,"end_line":167,"fragment":"","pointer":"","start_column":5,"start_line":167},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:167:5:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:37da7f0ef1d98817310a63b3","label":"AOA-T-0045","locator":{"end_column":99,"end_line":168,"fragment":"","pointer":"","start_column":5,"start_line":168},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:168:5:0:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:68dfc5491338d3ec9ec57be2","label":"AOA-T-0044","locator":{"end_column":205,"end_line":169,"fragment":"","pointer":"","start_column":116,"start_line":169},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:169:116:1:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a5b34aada3477bf417215572","label":"External Candidate Ledger","locator":{"end_column":112,"end_line":169,"fragment":"","pointer":"","start_column":45,"start_line":169},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:169:45:0:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bcaec9b7b323b731e13cd182","label":"AOA-T-0026","locator":{"end_column":104,"end_line":171,"fragment":"","pointer":"","start_column":14,"start_line":171},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/session-capture-as-repo-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:171:14:0:../../../../techniques/history/session-capture-as-repo-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:758d66d804f861dc90e480d0","label":"AOA-T-0044","locator":{"end_column":92,"end_line":173,"fragment":"","pointer":"","start_column":3,"start_line":173},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:173:3:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:74c115e4a9e4f71a12b0bd61","label":"AOA-T-0045","locator":{"end_column":97,"end_line":174,"fragment":"","pointer":"","start_column":3,"start_line":174},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:174:3:0:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4d4b22b96fa1eeab46a52a0f","label":"AOA-T-0044","locator":{"end_column":140,"end_line":176,"fragment":"","pointer":"","start_column":51,"start_line":176},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:176:51:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5c357263b9f941dd3c8f1028","label":"AOA-T-0045","locator":{"end_column":150,"end_line":177,"fragment":"","pointer":"","start_column":56,"start_line":177},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:177:56:0:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3d72ded079b7532bc9b2ced","label":"AOA-T-0044","locator":{"end_column":139,"end_line":178,"fragment":"","pointer":"","start_column":50,"start_line":178},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:178:50:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c7454d56fc061e54af81f90a","label":"AOA-T-0045","locator":{"end_column":263,"end_line":178,"fragment":"","pointer":"","start_column":169,"start_line":178},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:178:169:1:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3f0c3e296c5798c5a80db407","label":"Implementation Rules For The Current Wave Program","locator":{"end_column":52,"end_line":182,"fragment":"implementation-rules-for-the-current-wave-program","pointer":"","start_column":1,"start_line":182},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:implementation-rules-for-the-current-wave-program","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9672699967771f4dc3c3948c","label":"Reopen Gate","locator":{"end_column":14,"end_line":195,"fragment":"reopen-gate","pointer":"","start_column":1,"start_line":195},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:reopen-gate","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2dcc305674f071e96041e85a","label":"External Candidate Ledger","locator":{"end_column":108,"end_line":199,"fragment":"","pointer":"","start_column":41,"start_line":199},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:reopen-gate","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:199:41:0:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:480af1d59c1ba00d43126d88","label":"Hold Because Overlap","locator":{"end_column":23,"end_line":231,"fragment":"hold-because-overlap","pointer":"","start_column":1,"start_line":231},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:hold-because-overlap","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4272c0b2446bab7ac4bdc8c3","label":"AOA-T-0021","locator":{"end_column":196,"end_line":236,"fragment":"","pointer":"","start_column":112,"start_line":236},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:hold-because-overlap","target_ref":"../../../../techniques/docs/bounded-relation-lift-for-kag/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:236:112:0:../../../../techniques/docs/bounded-relation-lift-for-kag/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e73a72e5bf5794f6f9af0179","label":"Needs Layer Incubation Before Distillation Here","locator":{"end_column":50,"end_line":238,"fragment":"needs-layer-incubation-before-distillation-here","pointer":"","start_column":1,"start_line":238},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:needs-layer-incubation-before-distillation-here","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e49d6d8b5b42e4ab224d0854","label":"Substrate Or Architecture Pattern, Not Yet A Technique","locator":{"end_column":57,"end_line":246,"fragment":"substrate-or-architecture-pattern-not-yet-a-technique","pointer":"","start_column":1,"start_line":246},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:substrate-or-architecture-pattern-not-yet-a-technique","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fbefbe1d8a1bd6681106b3a3","label":"Notes","locator":{"end_column":8,"end_line":254,"fragment":"notes","pointer":"","start_column":1,"start_line":254},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48011ad5ec102aad849607d9","label":"Already Staged Elsewhere","locator":{"end_column":27,"end_line":76,"fragment":"already-staged-elsewhere","pointer":"","start_column":1,"start_line":76},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:already-staged-elsewhere","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2ffc61eff99d129b3a6e05ac","label":"AOA-T-0041","locator":{"end_column":147,"end_line":80,"fragment":"","pointer":"","start_column":66,"start_line":80},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:already-staged-elsewhere","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:80:66:0:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:666e1c055022aa753bf1519d","label":"AOA-T-0041","locator":{"end_column":384,"end_line":80,"fragment":"","pointer":"","start_column":303,"start_line":80},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:already-staged-elsewhere","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:80:303:1:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5b63424bdf3995bb8e995dd4","label":"Landed From This Wave Map","locator":{"end_column":28,"end_line":87,"fragment":"landed-from-this-wave-map","pointer":"","start_column":1,"start_line":87},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:landed-from-this-wave-map","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a12ee4c3b4596b128f5aa176","label":"AOA-T-0035","locator":{"end_column":115,"end_line":91,"fragment":"","pointer":"","start_column":34,"start_line":91},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:91:34:0:../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:078d4351da30e6745c5b0cfa","label":"AOA-T-0036","locator":{"end_column":128,"end_line":92,"fragment":"","pointer":"","start_column":35,"start_line":92},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:92:35:0:../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6c36f305a2201e5a4dd44af7","label":"AOA-T-0037","locator":{"end_column":113,"end_line":93,"fragment":"","pointer":"","start_column":30,"start_line":93},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:93:30:0:../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44b1ed6a3d046831eaaeca13","label":"AOA-T-0038","locator":{"end_column":132,"end_line":94,"fragment":"","pointer":"","start_column":37,"start_line":94},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:94:37:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64ba594178232eb15d1ab7d2","label":"AOA-T-0039","locator":{"end_column":153,"end_line":95,"fragment":"","pointer":"","start_column":50,"start_line":95},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:95:50:0:../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ab7db8294c6e2afb0ea77fb3","label":"AOA-T-0040","locator":{"end_column":113,"end_line":96,"fragment":"","pointer":"","start_column":33,"start_line":96},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:96:33:0:../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b26ac6f6cb8ab0dcf700a404","label":"AOA-T-0042","locator":{"end_column":129,"end_line":97,"fragment":"","pointer":"","start_column":38,"start_line":97},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:97:38:0:../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a9cafbc28f5328ed73031998","label":"AOA-T-0043","locator":{"end_column":137,"end_line":98,"fragment":"","pointer":"","start_column":45,"start_line":98},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:98:45:0:../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5c5e528db882529bb7421f96","label":"AOA-T-0044","locator":{"end_column":128,"end_line":99,"fragment":"","pointer":"","start_column":39,"start_line":99},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:99:39:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d9b7d4d2b75dcd6b53e27e29","label":"AOA-T-0045","locator":{"end_column":138,"end_line":100,"fragment":"","pointer":"","start_column":44,"start_line":100},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-from-this-wave-map","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:100:44:0:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:00a7cf38e3b6d59c23549279","label":"Future Import Here","locator":{"end_column":21,"end_line":102,"fragment":"future-import-here","pointer":"","start_column":1,"start_line":102},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:future-import-here","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:57b3d36ba8374c13aa52a962","label":"Current Wave Program","locator":{"end_column":23,"end_line":106,"fragment":"current-wave-program","pointer":"","start_column":1,"start_line":106},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:current-wave-program","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a3b3d470b5c516f936a2478b","label":"External Candidate Ledger","locator":{"end_column":148,"end_line":110,"fragment":"","pointer":"","start_column":81,"start_line":110},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-wave-program","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:110:81:0:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a7fe16dcca3c1873efcdf4c9","label":"Wave A - Runtime Truth And Local Lifecycle","locator":{"end_column":46,"end_line":119,"fragment":"wave-a-runtime-truth-and-local-lifecycle","pointer":"","start_column":1,"start_line":119},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:wave-a-runtime-truth-and-local-lifecycle","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44004b87c625cdc85ca0c5e8","label":"AOA-T-0035","locator":{"end_column":86,"end_line":122,"fragment":"","pointer":"","start_column":5,"start_line":122},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:122:5:0:../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a18f55a00138b17bddb8fa19","label":"AOA-T-0036","locator":{"end_column":98,"end_line":123,"fragment":"","pointer":"","start_column":5,"start_line":123},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:123:5:0:../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:13accd1754d4e7a55ae7c7ab","label":"AOA-T-0037","locator":{"end_column":88,"end_line":124,"fragment":"","pointer":"","start_column":5,"start_line":124},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:124:5:0:../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:79f2b9e7a7480d0efc7d6181","label":"AOA-T-0038","locator":{"end_column":100,"end_line":125,"fragment":"","pointer":"","start_column":5,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:5:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bc74740e4a60b5a72412b844","label":"AOA-T-0039","locator":{"end_column":108,"end_line":126,"fragment":"","pointer":"","start_column":5,"start_line":126},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:126:5:0:../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:42c60d6feb1dae03020b7716","label":"AOA-T-0035","locator":{"end_column":127,"end_line":128,"fragment":"","pointer":"","start_column":46,"start_line":128},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:128:46:0:../../../../techniques/docs/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d850a12bc5129520064a92ef","label":"AOA-T-0036","locator":{"end_column":140,"end_line":129,"fragment":"","pointer":"","start_column":47,"start_line":129},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:129:47:0:../../../../techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:82fe109704a3d64901ac1820","label":"AOA-T-0037","locator":{"end_column":125,"end_line":130,"fragment":"","pointer":"","start_column":42,"start_line":130},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:130:42:0:../../../../techniques/evaluation/contextual-host-doctor/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f7c5b764a4b27d7e4ba3a079","label":"AOA-T-0038","locator":{"end_column":144,"end_line":131,"fragment":"","pointer":"","start_column":49,"start_line":131},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:131:49:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2bab800f163fa448b269ac20","label":"AOA-T-0039","locator":{"end_column":165,"end_line":132,"fragment":"","pointer":"","start_column":62,"start_line":132},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:132:62:0:../../../../techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:06244d0242d3f5147352c05c","label":"AOA-T-0038","locator":{"end_column":131,"end_line":134,"fragment":"","pointer":"","start_column":36,"start_line":134},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:134:36:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4027d5c27009151b99e48167","label":"External Candidate Ledger","locator":{"end_column":211,"end_line":134,"fragment":"","pointer":"","start_column":144,"start_line":134},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:134:144:1:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7c9b5a5556f32970c4de1ac9","label":"AOA-T-0038","locator":{"end_column":118,"end_line":137,"fragment":"","pointer":"","start_column":23,"start_line":137},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-runtime-truth-and-local-lifecycle","target_ref":"../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:137:23:0:../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:72993fd501be247c97e6dbb3","label":"Wave B - Curated Input Surfaces And Capability Boundaries","locator":{"end_column":61,"end_line":140,"fragment":"wave-b-curated-input-surfaces-and-capability-boundaries","pointer":"","start_column":1,"start_line":140},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b83079925470163534e765a9","label":"AOA-T-0040","locator":{"end_column":85,"end_line":143,"fragment":"","pointer":"","start_column":5,"start_line":143},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:143:5:0:../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bdf365bd42fe79bbda7445c1","label":"AOA-T-0041","locator":{"end_column":86,"end_line":144,"fragment":"","pointer":"","start_column":5,"start_line":144},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:144:5:0:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0d9de2c2039215428f87b83d","label":"AOA-T-0042","locator":{"end_column":96,"end_line":145,"fragment":"","pointer":"","start_column":5,"start_line":145},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:145:5:0:../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ba466b7dc7afd3dce7053927","label":"AOA-T-0043","locator":{"end_column":97,"end_line":146,"fragment":"","pointer":"","start_column":5,"start_line":146},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:146:5:0:../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7ea9639e4f5ef8feb531f81e","label":"AOA-T-0040","locator":{"end_column":125,"end_line":148,"fragment":"","pointer":"","start_column":45,"start_line":148},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:148:45:0:../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:04f18428dd26d1f4f2ef35f5","label":"External Candidate Ledger","locator":{"end_column":203,"end_line":149,"fragment":"","pointer":"","start_column":136,"start_line":149},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:149:136:1:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:234b70e55cc65d9b156375c8","label":"AOA-T-0041","locator":{"end_column":127,"end_line":149,"fragment":"","pointer":"","start_column":46,"start_line":149},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:149:46:0:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a8e69c0b22db2595608c299d","label":"AOA-T-0042","locator":{"end_column":141,"end_line":150,"fragment":"","pointer":"","start_column":50,"start_line":150},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:150:50:0:../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b11a85f96e6914528ff6a472","label":"AOA-T-0043","locator":{"end_column":149,"end_line":151,"fragment":"","pointer":"","start_column":57,"start_line":151},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:151:57:0:../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:328a4fc92bcd93b2f29d9476","label":"External Candidate Ledger","locator":{"end_column":107,"end_line":153,"fragment":"","pointer":"","start_column":40,"start_line":153},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:153:40:0:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8494c9152bd257b6172a3807","label":"AOA-T-0041","locator":{"end_column":192,"end_line":153,"fragment":"","pointer":"","start_column":111,"start_line":153},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:153:111:1:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:015679cd6cae2f0565fd975d","label":"AOA-T-0021","locator":{"end_column":704,"end_line":157,"fragment":"","pointer":"","start_column":620,"start_line":157},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/bounded-relation-lift-for-kag/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:157:620:5:../../../../techniques/docs/bounded-relation-lift-for-kag/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:181e746c7a62b6b4e49b5789","label":"AOA-T-0013","locator":{"end_column":151,"end_line":157,"fragment":"","pointer":"","start_column":65,"start_line":157},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/single-source-rule-distribution/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:157:65:0:../../../../techniques/docs/single-source-rule-distribution/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3f56adee67ac0298c360c48b","label":"AOA-T-0020","locator":{"end_column":615,"end_line":157,"fragment":"","pointer":"","start_column":531,"start_line":157},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/evidence-note-provenance-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:157:531:4:../../../../techniques/docs/evidence-note-provenance-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:488f30e39e457c3dd26a3f1f","label":"AOA-T-0024","locator":{"end_column":383,"end_line":157,"fragment":"","pointer":"","start_column":294,"start_line":157},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/upstream-mirroring-with-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:157:294:2:../../../../techniques/docs/upstream-mirroring-with-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:647ec545bc38a06948cc395b","label":"AOA-T-0027","locator":{"end_column":240,"end_line":157,"fragment":"","pointer":"","start_column":156,"start_line":157},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/cross-agent-skill-propagation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:157:156:1:../../../../techniques/docs/cross-agent-skill-propagation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aa024a9fb8fd7989f75a0c00","label":"AOA-T-0032","locator":{"end_column":470,"end_line":157,"fragment":"","pointer":"","start_column":388,"start_line":157},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/evaluation/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:157:388:3:../../../../techniques/evaluation/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:03d2236683f8ff8470799894","label":"AOA-T-0043","locator":{"end_column":461,"end_line":158,"fragment":"","pointer":"","start_column":369,"start_line":158},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:158:369:3:../../../../techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:38670dfd3b42ec7a61c1289e","label":"AOA-T-0041","locator":{"end_column":270,"end_line":158,"fragment":"","pointer":"","start_column":189,"start_line":158},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:158:189:1:../../../../techniques/docs/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4ba404afd7c6346a0daa2279","label":"AOA-T-0042","locator":{"end_column":363,"end_line":158,"fragment":"","pointer":"","start_column":272,"start_line":158},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:158:272:2:../../../../techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d6f5a50b32561a29934e0c3a","label":"AOA-T-0040","locator":{"end_column":187,"end_line":158,"fragment":"","pointer":"","start_column":107,"start_line":158},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:158:107:0:../../../../techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dbfb38ab6243fe01e1fc2d68","label":"AOA-T-0044","locator":{"end_column":657,"end_line":158,"fragment":"","pointer":"","start_column":568,"start_line":158},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:158:568:4:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e5aa9374cb464a8670802a94","label":"AOA-T-0045","locator":{"end_column":756,"end_line":158,"fragment":"","pointer":"","start_column":662,"start_line":158},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-b-curated-input-surfaces-and-capability-boundaries","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:158:662:5:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:19d8fb3449b9e1b1ed9d7130","label":"Wave C - History As Reviewable Artifact","locator":{"end_column":43,"end_line":160,"fragment":"wave-c-history-as-reviewable-artifact","pointer":"","start_column":1,"start_line":160},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:wave-c-history-as-reviewable-artifact","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3adf67561affbfba44b27f04","label":"AOA-T-0044","locator":{"end_column":94,"end_line":163,"fragment":"","pointer":"","start_column":5,"start_line":163},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:163:5:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7ce0058cfe5efb853abc35c0","label":"AOA-T-0045","locator":{"end_column":99,"end_line":164,"fragment":"","pointer":"","start_column":5,"start_line":164},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:164:5:0:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3ca1b16fe957a9341ca4b752","label":"AOA-T-0044","locator":{"end_column":205,"end_line":165,"fragment":"","pointer":"","start_column":116,"start_line":165},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:165:116:1:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a2ebad30bc599a29d8a0e059","label":"External Candidate Ledger","locator":{"end_column":112,"end_line":165,"fragment":"","pointer":"","start_column":45,"start_line":165},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:165:45:0:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:11e94c2d4cb06988f0d82701","label":"AOA-T-0026","locator":{"end_column":104,"end_line":167,"fragment":"","pointer":"","start_column":14,"start_line":167},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/session-capture-as-repo-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:167:14:0:../../../../techniques/history/session-capture-as-repo-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a6747ff1732e67dba3f8390","label":"AOA-T-0044","locator":{"end_column":92,"end_line":169,"fragment":"","pointer":"","start_column":3,"start_line":169},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:169:3:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:78d4f2fef690c8ab1a05fbc5","label":"AOA-T-0045","locator":{"end_column":97,"end_line":170,"fragment":"","pointer":"","start_column":3,"start_line":170},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:170:3:0:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dd6e6c58f6ae7807fcf91af5","label":"AOA-T-0044","locator":{"end_column":140,"end_line":172,"fragment":"","pointer":"","start_column":51,"start_line":172},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:172:51:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cf27ceb421b6e2423a33818a","label":"AOA-T-0045","locator":{"end_column":150,"end_line":173,"fragment":"","pointer":"","start_column":56,"start_line":173},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:173:56:0:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:263fb972049a70f6ca8a182d","label":"AOA-T-0044","locator":{"end_column":139,"end_line":174,"fragment":"","pointer":"","start_column":50,"start_line":174},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:174:50:0:../../../../techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f7fcaeb1e4c9b25612f84ce5","label":"AOA-T-0045","locator":{"end_column":263,"end_line":174,"fragment":"","pointer":"","start_column":169,"start_line":174},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-c-history-as-reviewable-artifact","target_ref":"../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:174:169:1:../../../../techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3f0c3e296c5798c5a80db407","label":"Implementation Rules For The Current Wave Program","locator":{"end_column":52,"end_line":178,"fragment":"implementation-rules-for-the-current-wave-program","pointer":"","start_column":1,"start_line":178},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:implementation-rules-for-the-current-wave-program","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9672699967771f4dc3c3948c","label":"Reopen Gate","locator":{"end_column":14,"end_line":191,"fragment":"reopen-gate","pointer":"","start_column":1,"start_line":191},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:reopen-gate","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5cc02e8be857b7be73ff9867","label":"External Candidate Ledger","locator":{"end_column":108,"end_line":195,"fragment":"","pointer":"","start_column":41,"start_line":195},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:reopen-gate","target_ref":"../external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:195:41:0:../external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:480af1d59c1ba00d43126d88","label":"Hold Because Overlap","locator":{"end_column":23,"end_line":227,"fragment":"hold-because-overlap","pointer":"","start_column":1,"start_line":227},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:hold-because-overlap","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ec769998242bd9de84e9cfde","label":"AOA-T-0021","locator":{"end_column":196,"end_line":232,"fragment":"","pointer":"","start_column":112,"start_line":232},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:hold-because-overlap","target_ref":"../../../../techniques/docs/bounded-relation-lift-for-kag/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:232:112:0:../../../../techniques/docs/bounded-relation-lift-for-kag/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e73a72e5bf5794f6f9af0179","label":"Needs Layer Incubation Before Distillation Here","locator":{"end_column":50,"end_line":234,"fragment":"needs-layer-incubation-before-distillation-here","pointer":"","start_column":1,"start_line":234},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:needs-layer-incubation-before-distillation-here","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e49d6d8b5b42e4ab224d0854","label":"Substrate Or Architecture Pattern, Not Yet A Technique","locator":{"end_column":57,"end_line":242,"fragment":"substrate-or-architecture-pattern-not-yet-a-technique","pointer":"","start_column":1,"start_line":242},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:substrate-or-architecture-pattern-not-yet-a-technique","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fbefbe1d8a1bd6681106b3a3","label":"Notes","locator":{"end_column":8,"end_line":250,"fragment":"notes","pointer":"","start_column":1,"start_line":250},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes","source_record_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bc08d8ad2ae5365d7b6d5c65","label":"AGENTS.md","locator":{"end_column":11,"end_line":1,"fragment":"agentsmd","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agentsmd","source_record_id":"aoa:aoa-techniques:artifact:512648e4243016d1b1f98145","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd5eef8faa9654c54a03aacc","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:512648e4243016d1b1f98145","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a86e6ca7423de8937d61594","label":"Applies to","locator":{"end_column":13,"end_line":3,"fragment":"applies-to","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:applies-to","source_record_id":"aoa:aoa-techniques:artifact:512648e4243016d1b1f98145","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -10434,12 +10474,12 @@ {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:010f1a833244b035a3e127f4","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76e03682acc8701c2c7eebf2","label":"Method-Growth Landing Log","locator":{"end_column":27,"end_line":1,"fragment":"method-growth-landing-log","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:method-growth-landing-log","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:95e32181ad19eaebd32e54b6","label":"2026-05-14 - Contract Packet Part Homes","locator":{"end_column":42,"end_line":6,"fragment":"2026-05-14-contract-packet-part-homes","pointer":"","start_column":1,"start_line":6},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-contract-packet-part-homes","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:94dee747383e6c546cc56e0b","label":"2026-05-01 - Active Parts Split","locator":{"end_column":34,"end_line":33,"fragment":"2026-05-01-active-parts-split","pointer":"","start_column":1,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-active-parts-split","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:06341d6df33f313b61c9ca1b","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":58,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":58},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c1c5a47d2fd8ffc17c5c634e","label":"2026-05-03 - Pattern Adoption Gate Extraction","locator":{"end_column":48,"end_line":66,"fragment":"2026-05-03-pattern-adoption-gate-extraction","pointer":"","start_column":1,"start_line":66},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-pattern-adoption-gate-extraction","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76de8a82738cf31022999257","label":"2026-05-03 - Skill Proposal Handoff Packet Extraction","locator":{"end_column":56,"end_line":76,"fragment":"2026-05-03-skill-proposal-handoff-packet-extraction","pointer":"","start_column":1,"start_line":76},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-skill-proposal-handoff-packet-extraction","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:56e905fc5348e1ab5ce3f32e","label":"2026-05-03 - Adopted Practice Retention Review Extraction","locator":{"end_column":60,"end_line":85,"fragment":"2026-05-03-adopted-practice-retention-review-extraction","pointer":"","start_column":1,"start_line":85},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-adopted-practice-retention-review-extraction","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:718178e47015223ae54fcb73","label":"2026-05-03 - Superseded Practice Obsolescence Route Extraction","locator":{"end_column":65,"end_line":94,"fragment":"2026-05-03-superseded-practice-obsolescence-route-extraction","pointer":"","start_column":1,"start_line":94},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-superseded-practice-obsolescence-route-extraction","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:94dee747383e6c546cc56e0b","label":"2026-05-01 - Active Parts Split","locator":{"end_column":34,"end_line":28,"fragment":"2026-05-01-active-parts-split","pointer":"","start_column":1,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-active-parts-split","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:06341d6df33f313b61c9ca1b","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":49,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":49},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c1c5a47d2fd8ffc17c5c634e","label":"2026-05-03 - Pattern Adoption Gate Extraction","locator":{"end_column":48,"end_line":57,"fragment":"2026-05-03-pattern-adoption-gate-extraction","pointer":"","start_column":1,"start_line":57},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-pattern-adoption-gate-extraction","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76de8a82738cf31022999257","label":"2026-05-03 - Skill Proposal Handoff Packet Extraction","locator":{"end_column":56,"end_line":67,"fragment":"2026-05-03-skill-proposal-handoff-packet-extraction","pointer":"","start_column":1,"start_line":67},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-skill-proposal-handoff-packet-extraction","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:56e905fc5348e1ab5ce3f32e","label":"2026-05-03 - Adopted Practice Retention Review Extraction","locator":{"end_column":60,"end_line":76,"fragment":"2026-05-03-adopted-practice-retention-review-extraction","pointer":"","start_column":1,"start_line":76},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-adopted-practice-retention-review-extraction","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:718178e47015223ae54fcb73","label":"2026-05-03 - Superseded Practice Obsolescence Route Extraction","locator":{"end_column":65,"end_line":85,"fragment":"2026-05-03-superseded-practice-obsolescence-route-extraction","pointer":"","start_column":1,"start_line":85},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-superseded-practice-obsolescence-route-extraction","source_record_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a868335fe827fca26dbdc02","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:58b04c791cf407b45482db5e","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ac389f601a3d529583c4cdbd","label":"Canonical Readiness","locator":{"end_column":21,"end_line":1,"fragment":"canonical-readiness","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:canonical-readiness","source_record_id":"aoa:aoa-techniques:artifact:58b04c791cf407b45482db5e","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d240cf1cd491554b214a68b2","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:58b04c791cf407b45482db5e","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -12471,6 +12511,11 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3f8d75adb854d74062a4a1d3","label":"Preservation Rule","locator":{"end_column":20,"end_line":32,"fragment":"preservation-rule","pointer":"","start_column":1,"start_line":32},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:preservation-rule","source_record_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ca697a646ab72a8bf5666cd","label":"Invariants","locator":{"end_column":13,"end_line":39,"fragment":"invariants","pointer":"","start_column":1,"start_line":39},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:invariants","source_record_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d32873ff997ae466aa94362","label":"Validation","locator":{"end_column":13,"end_line":55,"fragment":"validation","pointer":"","start_column":1,"start_line":55},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f3d56f7b081e609c1ab16636","label":"Technique-canon statistics","locator":{"end_column":28,"end_line":1,"fragment":"technique-canon-statistics","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique-canon-statistics","source_record_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:728547352852a5de472e4e16","label":"Current question","locator":{"end_column":19,"end_line":10,"fragment":"current-question","pointer":"","start_column":1,"start_line":10},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:current-question","source_record_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eb4169cf8642a126d8085de3","label":"Reference derivation","locator":{"end_column":23,"end_line":20,"fragment":"reference-derivation","pointer":"","start_column":1,"start_line":20},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:reference-derivation","source_record_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5d8cb9d137723de6e0c78abf","label":"Owner routes","locator":{"end_column":15,"end_line":33,"fragment":"owner-routes","pointer":"","start_column":1,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:owner-routes","source_record_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:73d6e655cdd42c12629bd5d4","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bafc91a766f9a395b160d4b3","label":"Canonical Readiness","locator":{"end_column":21,"end_line":1,"fragment":"canonical-readiness","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:canonical-readiness","source_record_id":"aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:afcff0fc740e818c54cd5f30","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -13589,23 +13634,25 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b1c9fbc123cb18930d735e14","label":"Follow-up route","locator":{"end_column":18,"end_line":82,"fragment":"follow-up-route","pointer":"","start_column":1,"start_line":82},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:follow-up-route","source_record_id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a182d0853862dc693bb5c93f","label":"Verification","locator":{"end_column":15,"end_line":91,"fragment":"verification","pointer":"","start_column":1,"start_line":91},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:verification","source_record_id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ff408b8be36eff08fd4a25ac","label":"command_sequence_from_manifest","locator":{"end_column":84,"end_line":23,"fragment":"","pointer":"","start_column":1,"start_line":19},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:command_sequence_from_manifest","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:command_sequence_from_manifest","target_ref":"python:tuple"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:command_sequence_from_manifest","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"command_sequence_from_manifest","semantic_key":"python:function:command_sequence_from_manifest","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e48bc5af741480068b9ee402","label":"drift_paths_from_manifest","locator":{"end_column":48,"end_line":30,"fragment":"","pointer":"","start_column":1,"start_line":26},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:drift_paths_from_manifest","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:drift_paths_from_manifest","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"drift_paths_from_manifest","semantic_key":"python:function:drift_paths_from_manifest","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1cecb79cd4cb37122d1c4d8d","label":"generated_group_ids_from_manifest","locator":{"end_column":89,"end_line":37,"fragment":"","pointer":"","start_column":1,"start_line":33},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:generated_group_ids_from_manifest","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:generated_group_ids_from_manifest","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"generated_group_ids_from_manifest","semantic_key":"python:function:generated_group_ids_from_manifest","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3b751fc43dd0c2be773639dc","label":"ValidationCommandAuthorityTests","locator":{"end_column":76,"end_line":357,"fragment":"","pointer":"","start_column":1,"start_line":40},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests","semantic_key":"python:class:ValidationCommandAuthorityTests","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b4b2783e5f20ca117d0c32bf","label":"test_validation_lanes_manifest_is_loader_authority","locator":{"end_column":10,"end_line":113,"fragment":"","pointer":"","start_column":5,"start_line":41},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:drift_paths_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:generated_group_ids_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:tuple"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:tuple"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:validation_lanes.command_sequence_for_lane"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","semantic_key":"python:method:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7c6a178eb0ca133d8a329bc1","label":"test_validation_lanes_api_resolves_lane_ids_to_command_sequences","locator":{"end_column":66,"end_line":136,"fragment":"","pointer":"","start_column":5,"start_line":115},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertRaisesRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertRaisesRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","semantic_key":"python:method:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4de09f5492279c61765c1c74","label":"test_ci_gate_executes_lane_sequences_from_loader","locator":{"end_column":47,"end_line":173,"fragment":"","pointer":"","start_column":5,"start_line":138},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_advisory"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_generated"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_mechanics_part_local"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_nightly"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_release"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_source_fast"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_command.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_command_groups.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_sequence.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_sequence.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_sequence.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:self.assertTrue"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","semantic_key":"python:method:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:099b8cbc765c8ee1d01b8fb5","label":"test_generated_lane_fails_when_projection_snapshot_changes","locator":{"end_column":48,"end_line":184,"fragment":"","pointer":"","start_column":5,"start_line":175},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:StringIO"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:ci_gate.run_generated"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:redirect_stderr"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:self.assertRaises"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","semantic_key":"python:method:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6db83055c2eb37e654886e9f","label":"test_release_check_preserves_entrypoint_without_owning_sequence","locator":{"end_column":87,"end_line":213,"fragment":"","pointer":"","start_column":5,"start_line":186},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:release_check.release_lane_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:release_check.release_lane_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:validation_lanes.command_sequence_for_lane"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","semantic_key":"python:method:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c2dfa5e02e8871fe1004e1eb","label":"test_workflow_calls_ci_lane_entrypoints_not_release_check","locator":{"end_column":63,"end_line":232,"fragment":"","pointer":"","start_column":5,"start_line":215},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","semantic_key":"python:method:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8cd66429c0ef9b43ee44ec13","label":"test_repo_local_kag_adapter_resolves_sibling_builder","locator":{"end_column":14,"end_line":261,"fragment":"","pointer":"","start_column":5,"start_line":234},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:TemporaryDirectory"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:generator.parent.mkdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:generator.touch"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:repo_root.mkdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:validate_repo_local_kag_index.commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:validate_repo_local_kag_index.resolve_aoa_kag_root"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:validator.touch"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:545acbb0891fc621ba846155","label":"test_repo_local_kag_adapter_resolves_owner_history_boundary","locator":{"end_column":66,"end_line":272,"fragment":"","pointer":"","start_column":5,"start_line":263},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","target_ref":"python:validate_repo_local_kag_index.resolve_history_refs"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eb8b7fbc7c5e368bf6717aea","label":"test_repo_local_kag_adapter_accepts_pinned_checkout","locator":{"end_column":18,"end_line":283,"fragment":"","pointer":"","start_column":5,"start_line":274},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:TemporaryDirectory"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:validate_repo_local_kag_index.require_pinned_checkout"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4c5a2c66800ae20799b6b7a4","label":"test_repo_local_kag_adapter_rejects_other_checkout","locator":{"end_column":87,"end_line":290,"fragment":"","pointer":"","start_column":5,"start_line":285},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","target_ref":"python:self.assertRaisesRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","target_ref":"python:validate_repo_local_kag_index.require_pinned_checkout"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3c98875bfc8f262a990b0df8","label":"test_active_docs_route_to_lane_ids_instead_of_full_sequences","locator":{"end_column":51,"end_line":319,"fragment":"","pointer":"","start_column":5,"start_line":292},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","target_ref":"python:self.subTest"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","semantic_key":"python:method:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:47732b2f4773971ac0e5d644","label":"test_active_decision_guidance_uses_lanes_not_command_runbooks","locator":{"end_column":52,"end_line":343,"fragment":"","pointer":"","start_column":5,"start_line":321},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.assertRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.subTest"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","semantic_key":"python:method:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3819f9b141f5aaaf6be12972","label":"test_historical_decision_records_may_preserve_command_evidence","locator":{"end_column":76,"end_line":357,"fragment":"","pointer":"","start_column":5,"start_line":345},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_historical_decision_records_may_preserve_command_evidence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_historical_decision_records_may_preserve_command_evidence","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_historical_decision_records_may_preserve_command_evidence","semantic_key":"python:method:ValidationCommandAuthorityTests.test_historical_decision_records_may_preserve_command_evidence","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f27933e5c483913496e72227","label":"markdown_command_nonowners","locator":{"end_column":32,"end_line":39,"fragment":"","pointer":"","start_column":1,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:markdown_command_nonowners","target_ref":"python:REPO_ROOT.rglob"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:markdown_command_nonowners","target_ref":"python:path.relative_to"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:markdown_command_nonowners","target_ref":"python:paths.append"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:markdown_command_nonowners","target_ref":"python:sorted"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:markdown_command_nonowners","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"markdown_command_nonowners","semantic_key":"python:function:markdown_command_nonowners","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ff408b8be36eff08fd4a25ac","label":"command_sequence_from_manifest","locator":{"end_column":84,"end_line":46,"fragment":"","pointer":"","start_column":1,"start_line":42},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:command_sequence_from_manifest","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:command_sequence_from_manifest","target_ref":"python:tuple"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:command_sequence_from_manifest","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"command_sequence_from_manifest","semantic_key":"python:function:command_sequence_from_manifest","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e48bc5af741480068b9ee402","label":"drift_paths_from_manifest","locator":{"end_column":48,"end_line":53,"fragment":"","pointer":"","start_column":1,"start_line":49},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:drift_paths_from_manifest","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:drift_paths_from_manifest","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"drift_paths_from_manifest","semantic_key":"python:function:drift_paths_from_manifest","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1cecb79cd4cb37122d1c4d8d","label":"generated_group_ids_from_manifest","locator":{"end_column":89,"end_line":60,"fragment":"","pointer":"","start_column":1,"start_line":56},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:generated_group_ids_from_manifest","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:generated_group_ids_from_manifest","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"generated_group_ids_from_manifest","semantic_key":"python:function:generated_group_ids_from_manifest","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3b751fc43dd0c2be773639dc","label":"ValidationCommandAuthorityTests","locator":{"end_column":40,"end_line":410,"fragment":"","pointer":"","start_column":1,"start_line":63},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests","semantic_key":"python:class:ValidationCommandAuthorityTests","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b4b2783e5f20ca117d0c32bf","label":"test_validation_lanes_manifest_is_loader_authority","locator":{"end_column":10,"end_line":144,"fragment":"","pointer":"","start_column":5,"start_line":64},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:drift_paths_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:generated_group_ids_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:tuple"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:tuple"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","target_ref":"python:validation_lanes.command_sequence_for_lane"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","semantic_key":"python:method:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7c6a178eb0ca133d8a329bc1","label":"test_validation_lanes_api_resolves_lane_ids_to_command_sequences","locator":{"end_column":66,"end_line":167,"fragment":"","pointer":"","start_column":5,"start_line":146},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:command_sequence_from_manifest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertRaisesRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:self.assertRaisesRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","target_ref":"python:validation_lanes.command_sequence_for_lane"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","semantic_key":"python:method:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4de09f5492279c61765c1c74","label":"test_ci_gate_executes_lane_sequences_from_loader","locator":{"end_column":47,"end_line":204,"fragment":"","pointer":"","start_column":5,"start_line":169},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_advisory"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_generated"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_mechanics_part_local"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_nightly"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_release"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:ci_gate.run_source_fast"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_command.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_command_groups.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_sequence.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_sequence.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:run_sequence.assert_called_once_with"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","target_ref":"python:self.assertTrue"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","semantic_key":"python:method:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:099b8cbc765c8ee1d01b8fb5","label":"test_generated_lane_fails_when_projection_snapshot_changes","locator":{"end_column":48,"end_line":215,"fragment":"","pointer":"","start_column":5,"start_line":206},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:StringIO"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:ci_gate.run_generated"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:redirect_stderr"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","target_ref":"python:self.assertRaises"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","semantic_key":"python:method:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6db83055c2eb37e654886e9f","label":"test_release_check_preserves_entrypoint_without_owning_sequence","locator":{"end_column":87,"end_line":244,"fragment":"","pointer":"","start_column":5,"start_line":217},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:release_check.release_lane_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:release_check.release_lane_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","target_ref":"python:validation_lanes.command_sequence_for_lane"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","semantic_key":"python:method:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c2dfa5e02e8871fe1004e1eb","label":"test_workflow_calls_ci_lane_entrypoints_not_release_check","locator":{"end_column":63,"end_line":265,"fragment":"","pointer":"","start_column":5,"start_line":246},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","target_ref":"python:self.assertNotIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","semantic_key":"python:method:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8cd66429c0ef9b43ee44ec13","label":"test_repo_local_kag_adapter_resolves_sibling_builder","locator":{"end_column":14,"end_line":294,"fragment":"","pointer":"","start_column":5,"start_line":267},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:TemporaryDirectory"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:generator.parent.mkdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:generator.touch"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:repo_root.mkdir"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:validate_repo_local_kag_index.commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:validate_repo_local_kag_index.resolve_aoa_kag_root"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","target_ref":"python:validator.touch"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:545acbb0891fc621ba846155","label":"test_repo_local_kag_adapter_resolves_owner_history_boundary","locator":{"end_column":66,"end_line":305,"fragment":"","pointer":"","start_column":5,"start_line":296},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","target_ref":"python:validate_repo_local_kag_index.resolve_history_refs"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eb8b7fbc7c5e368bf6717aea","label":"test_repo_local_kag_adapter_accepts_pinned_checkout","locator":{"end_column":18,"end_line":316,"fragment":"","pointer":"","start_column":5,"start_line":307},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:TemporaryDirectory"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","target_ref":"python:validate_repo_local_kag_index.require_pinned_checkout"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4c5a2c66800ae20799b6b7a4","label":"test_repo_local_kag_adapter_rejects_other_checkout","locator":{"end_column":87,"end_line":323,"fragment":"","pointer":"","start_column":5,"start_line":318},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","target_ref":"python:self.assertRaisesRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","target_ref":"python:validate_repo_local_kag_index.require_pinned_checkout"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3c98875bfc8f262a990b0df8","label":"test_active_docs_route_to_lane_ids_instead_of_full_sequences","locator":{"end_column":51,"end_line":352,"fragment":"","pointer":"","start_column":5,"start_line":325},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","target_ref":"python:self.subTest"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","semantic_key":"python:method:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:47732b2f4773971ac0e5d644","label":"test_active_decision_guidance_uses_lanes_not_command_runbooks","locator":{"end_column":52,"end_line":376,"fragment":"","pointer":"","start_column":5,"start_line":354},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.assertRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","target_ref":"python:self.subTest"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","semantic_key":"python:method:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d29879db1aaf94d91e7b6f4c","label":"test_markdown_nonowners_do_not_store_command_blocks","locator":{"end_column":40,"end_line":398,"fragment":"","pointer":"","start_column":5,"start_line":378},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:COMMAND_BLOCK_LINE.match"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:any"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:body.append"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:len"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:len"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:markdown_command_nonowners"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:offenders.append"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:path.read_text"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:path.relative_to"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","target_ref":"python:self.assertEqual"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","semantic_key":"python:method:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:53528eef1241b207ac20e7d9","label":"test_markdown_nonowners_do_not_store_repo_command_literals","locator":{"end_column":40,"end_line":410,"fragment":"","pointer":"","start_column":5,"start_line":400},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","target_ref":"python:REPO_COMMAND_LITERAL.search"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","target_ref":"python:enumerate"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","target_ref":"python:markdown_command_nonowners"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","target_ref":"python:offenders.append"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","target_ref":"python:path.read_text"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","target_ref":"python:path.relative_to"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","target_ref":"python:self.assertEqual"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","semantic_key":"python:method:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","source_record_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4dc4f09719874ae31f6cc82c","label":"Second Context Adaptation","locator":{"end_column":27,"end_line":1,"fragment":"second-context-adaptation","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:second-context-adaptation","source_record_id":"aoa:aoa-techniques:artifact:78644e970fe05ab94f7dc580","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9df5ea837c1aa116453a699c","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:78644e970fe05ab94f7dc580","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a5d85660bc162f20a984ea9","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:78644e970fe05ab94f7dc580","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -14014,6 +14061,13 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:798160bbc41702a9a4cbc0c7","label":"Preservation Rule","locator":{"end_column":20,"end_line":31,"fragment":"preservation-rule","pointer":"","start_column":1,"start_line":31},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:preservation-rule","source_record_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b6dcae6537c42673faf142c1","label":"Invariants","locator":{"end_column":13,"end_line":38,"fragment":"invariants","pointer":"","start_column":1,"start_line":38},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:invariants","source_record_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5fc99c04706ec7760cbbfcff","label":"Validation","locator":{"end_column":13,"end_line":56,"fragment":"validation","pointer":"","start_column":1,"start_line":56},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a34e409cad41c756827551c1","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ecec5c4dd765eb25eb8c88ff","label":"load_json","locator":{"end_column":56,"end_line":17,"fragment":"","pointer":"","start_column":1,"start_line":16},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:load_json","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:load_json","target_ref":"python:path.read_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"load_json","semantic_key":"python:function:load_json","source_record_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ec606d6cae8528fadf042a77","label":"readiness_census","locator":{"end_column":32,"end_line":23,"fragment":"","pointer":"","start_column":1,"start_line":20},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:readiness_census","target_ref":"python:len"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:readiness_census","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:readiness_census","target_ref":"python:sum"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"readiness_census","semantic_key":"python:function:readiness_census","source_record_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:695ac9b892586b0e8de631e8","label":"assert_packet_matches_owner_readiness","locator":{"end_column":6,"end_line":41,"fragment":"","pointer":"","start_column":1,"start_line":26},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:assert_packet_matches_owner_readiness","target_ref":"python:readiness_census"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"assert_packet_matches_owner_readiness","semantic_key":"python:function:assert_packet_matches_owner_readiness","source_record_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3225dff0134d5dad412afa2b","label":"LocalStatsPortTests","locator":{"end_column":64,"end_line":59,"fragment":"","pointer":"","start_column":1,"start_line":44},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"LocalStatsPortTests","semantic_key":"python:class:LocalStatsPortTests","source_record_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:356b7bef8078b296da2fc6f6","label":"test_reference_ratio_matches_current_owner_readiness_projection","locator":{"end_column":70,"end_line":46,"fragment":"","pointer":"","start_column":5,"start_line":45},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:LocalStatsPortTests.test_reference_ratio_matches_current_owner_readiness_projection","target_ref":"python:assert_packet_matches_owner_readiness"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:LocalStatsPortTests.test_reference_ratio_matches_current_owner_readiness_projection","target_ref":"python:load_json"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"LocalStatsPortTests.test_reference_ratio_matches_current_owner_readiness_projection","semantic_key":"python:method:LocalStatsPortTests.test_reference_ratio_matches_current_owner_readiness_projection","source_record_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4a6cbb4dd6625618557eac08","label":"test_false_readiness_numerator_is_rejected","locator":{"end_column":64,"end_line":59,"fragment":"","pointer":"","start_column":5,"start_line":48},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:LocalStatsPortTests.test_false_readiness_numerator_is_rejected","target_ref":"python:assert_packet_matches_owner_readiness"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:LocalStatsPortTests.test_false_readiness_numerator_is_rejected","target_ref":"python:deepcopy"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:LocalStatsPortTests.test_false_readiness_numerator_is_rejected","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:LocalStatsPortTests.test_false_readiness_numerator_is_rejected","target_ref":"python:readiness_census"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:LocalStatsPortTests.test_false_readiness_numerator_is_rejected","target_ref":"python:self.assertRaisesRegex"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"LocalStatsPortTests.test_false_readiness_numerator_is_rejected","semantic_key":"python:method:LocalStatsPortTests.test_false_readiness_numerator_is_rejected","source_record_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0b1c50b71d8fe7872cc2a50e","label":"status","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/status","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/status","source_record_id":"aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1d896485a992c9aba72be467","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1da03eb38a5606070436152d","label":"title","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/title","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/title","source_record_id":"aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, @@ -14095,8 +14149,8 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:84d38fa042187155db2016da","label":"Agon Wave IV Technique Landing","locator":{"end_column":32,"end_line":1,"fragment":"agon-wave-iv-technique-landing","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agon-wave-iv-technique-landing","source_record_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:825f338721c7cb3122765376","label":"Scope","locator":{"end_column":8,"end_line":3,"fragment":"scope","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:scope","source_record_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2a1479a84dd7c336662e537d","label":"Validation","locator":{"end_column":13,"end_line":9,"fragment":"validation","pointer":"","start_column":1,"start_line":9},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e2262d1ca9e97e2c329c39c1","label":"Exit criteria","locator":{"end_column":16,"end_line":17,"fragment":"exit-criteria","pointer":"","start_column":1,"start_line":17},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:exit-criteria","source_record_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f1a055ac11e4126077ae8a8d","label":"Later growth","locator":{"end_column":15,"end_line":26,"fragment":"later-growth","pointer":"","start_column":1,"start_line":26},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:later-growth","source_record_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e2262d1ca9e97e2c329c39c1","label":"Exit criteria","locator":{"end_column":16,"end_line":13,"fragment":"exit-criteria","pointer":"","start_column":1,"start_line":13},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:exit-criteria","source_record_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f1a055ac11e4126077ae8a8d","label":"Later growth","locator":{"end_column":15,"end_line":22,"fragment":"later-growth","pointer":"","start_column":1,"start_line":22},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:later-growth","source_record_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:07adc4941a6e2cc3e38f87d1","label":"source_owner_binding_registry","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/source_owner_binding_registry","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/source_owner_binding_registry","source_record_id":"aoa:aoa-techniques:artifact:7dbf185b45d080d6a4d1ac5b","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:195446bce52fd360da5cb855","label":"scope","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/scope","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/scope","source_record_id":"aoa:aoa-techniques:artifact:7dbf185b45d080d6a4d1ac5b","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2cc82b34f656b2ba9be07708","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:7dbf185b45d080d6a4d1ac5b","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -16443,14 +16497,14 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9568f252e146e787074efb4e","label":"Audit Landing Log","locator":{"end_column":19,"end_line":1,"fragment":"audit-landing-log","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:audit-landing-log","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fef8cb4d3585806764129a54","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9301906cd198ed2d47e49455","label":"2026-05-01 - Active parts split","locator":{"end_column":34,"end_line":5,"fragment":"2026-05-01-active-parts-split","pointer":"","start_column":1,"start_line":5},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-active-parts-split","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:861bc7f20200c91d867d41f7","label":"2026-05-03 - Root roadmap audit history preserved","locator":{"end_column":52,"end_line":32,"fragment":"2026-05-03-root-roadmap-audit-history-preserved","pointer":"","start_column":1,"start_line":32},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-root-roadmap-audit-history-preserved","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:748815d29847d26a341a7e69","label":"2026-05-03 - Wave 0 Matrix Expansion","locator":{"end_column":39,"end_line":49,"fragment":"2026-05-03-wave-0-matrix-expansion","pointer":"","start_column":1,"start_line":49},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-wave-0-matrix-expansion","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:97282600e26183bdb00bad20","label":"2026-05-03 - Agon Handoff Matrix Extension","locator":{"end_column":45,"end_line":78,"fragment":"2026-05-03-agon-handoff-matrix-extension","pointer":"","start_column":1,"start_line":78},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-agon-handoff-matrix-extension","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d0486b176c67fb697b06eb24","label":"AOA-T-0106","locator":{"end_column":113,"end_line":82,"fragment":"","pointer":"","start_column":15,"start_line":82},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-agon-handoff-matrix-extension","target_ref":"../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:82:15:0:../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c4ea0d8369f450c38d772836","label":"2026-05-03 - Agon Challenge Matrix Extension","locator":{"end_column":47,"end_line":104,"fragment":"2026-05-03-agon-challenge-matrix-extension","pointer":"","start_column":1,"start_line":104},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-agon-challenge-matrix-extension","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:561d4bd3a1c12400fdae8c27","label":"AOA-T-0107","locator":{"end_column":109,"end_line":108,"fragment":"","pointer":"","start_column":15,"start_line":108},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-agon-challenge-matrix-extension","target_ref":"../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:108:15:0:../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6187a09fd33ba6887024ca01","label":"2026-05-13 - Promotion Evidence Packs 35-41 Closeout","locator":{"end_column":55,"end_line":130,"fragment":"2026-05-13-promotion-evidence-packs-35-41-closeout","pointer":"","start_column":1,"start_line":130},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-13-promotion-evidence-packs-35-41-closeout","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0c6f4c2c90bbc13f40af65f","label":"2026-05-14 - Canonical Retro Audit Part","locator":{"end_column":42,"end_line":152,"fragment":"2026-05-14-canonical-retro-audit-part","pointer":"","start_column":1,"start_line":152},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-canonical-retro-audit-part","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:861bc7f20200c91d867d41f7","label":"2026-05-03 - Root roadmap audit history preserved","locator":{"end_column":52,"end_line":28,"fragment":"2026-05-03-root-roadmap-audit-history-preserved","pointer":"","start_column":1,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-root-roadmap-audit-history-preserved","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:748815d29847d26a341a7e69","label":"2026-05-03 - Wave 0 Matrix Expansion","locator":{"end_column":39,"end_line":45,"fragment":"2026-05-03-wave-0-matrix-expansion","pointer":"","start_column":1,"start_line":45},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-wave-0-matrix-expansion","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:97282600e26183bdb00bad20","label":"2026-05-03 - Agon Handoff Matrix Extension","locator":{"end_column":45,"end_line":69,"fragment":"2026-05-03-agon-handoff-matrix-extension","pointer":"","start_column":1,"start_line":69},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-agon-handoff-matrix-extension","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c19560cf3897eb054af7b02a","label":"AOA-T-0106","locator":{"end_column":113,"end_line":73,"fragment":"","pointer":"","start_column":15,"start_line":73},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-agon-handoff-matrix-extension","target_ref":"../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:73:15:0:../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c4ea0d8369f450c38d772836","label":"2026-05-03 - Agon Challenge Matrix Extension","locator":{"end_column":47,"end_line":90,"fragment":"2026-05-03-agon-challenge-matrix-extension","pointer":"","start_column":1,"start_line":90},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-agon-challenge-matrix-extension","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dc281d278ac074841161a5fe","label":"AOA-T-0107","locator":{"end_column":109,"end_line":94,"fragment":"","pointer":"","start_column":15,"start_line":94},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-agon-challenge-matrix-extension","target_ref":"../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:94:15:0:../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6187a09fd33ba6887024ca01","label":"2026-05-13 - Promotion Evidence Packs 35-41 Closeout","locator":{"end_column":55,"end_line":111,"fragment":"2026-05-13-promotion-evidence-packs-35-41-closeout","pointer":"","start_column":1,"start_line":111},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-13-promotion-evidence-packs-35-41-closeout","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0c6f4c2c90bbc13f40af65f","label":"2026-05-14 - Canonical Retro Audit Part","locator":{"end_column":42,"end_line":130,"fragment":"2026-05-14-canonical-retro-audit-part","pointer":"","start_column":1,"start_line":130},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-canonical-retro-audit-part","source_record_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6b9c5e47e588d6bb233211ab","label":"Canonical Readiness","locator":{"end_column":21,"end_line":1,"fragment":"canonical-readiness","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:canonical-readiness","source_record_id":"aoa:aoa-techniques:artifact:8ea56645f36dbe8b0e061eca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8d8337f0c9a0b8d937e45563","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:8ea56645f36dbe8b0e061eca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4ff65ad3edec9c90ed78d27f","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:8ea56645f36dbe8b0e061eca","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -16511,9 +16565,9 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4cc352a2923a06f77733198c","label":"Experience Landing Log","locator":{"end_column":24,"end_line":1,"fragment":"experience-landing-log","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:experience-landing-log","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:784eb112e9cd463e306d27d9","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e3543294a1e183afe0a9ed28","label":"2026-05-14 - Contract Packet Part Homes","locator":{"end_column":42,"end_line":6,"fragment":"2026-05-14-contract-packet-part-homes","pointer":"","start_column":1,"start_line":6},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-contract-packet-part-homes","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4c7ffa8aed00023b4de24ccf","label":"2026-05-01 - Active Parts Split","locator":{"end_column":34,"end_line":33,"fragment":"2026-05-01-active-parts-split","pointer":"","start_column":1,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-active-parts-split","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9edc0240d94c49fe06a10afb","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":58,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":58},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e38d0f7a0a339d13e0c9f890","label":"2026-05-03 - Technique Candidate Bridge","locator":{"end_column":42,"end_line":66,"fragment":"2026-05-03-technique-candidate-bridge","pointer":"","start_column":1,"start_line":66},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-technique-candidate-bridge","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4c7ffa8aed00023b4de24ccf","label":"2026-05-01 - Active Parts Split","locator":{"end_column":34,"end_line":28,"fragment":"2026-05-01-active-parts-split","pointer":"","start_column":1,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-active-parts-split","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9edc0240d94c49fe06a10afb","label":"2026-05-03 - Legacy Scaffold Bridge","locator":{"end_column":38,"end_line":49,"fragment":"2026-05-03-legacy-scaffold-bridge","pointer":"","start_column":1,"start_line":49},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-legacy-scaffold-bridge","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e38d0f7a0a339d13e0c9f890","label":"2026-05-03 - Technique Candidate Bridge","locator":{"end_column":42,"end_line":57,"fragment":"2026-05-03-technique-candidate-bridge","pointer":"","start_column":1,"start_line":57},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-technique-candidate-bridge","source_record_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:21f09c41a507b118733cdbb5","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:8f65fd2dded84d84cb50acb8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b96300e71404f1eb5368e9d0","label":"Adverse Effects Review","locator":{"end_column":24,"end_line":1,"fragment":"adverse-effects-review","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:adverse-effects-review","source_record_id":"aoa:aoa-techniques:artifact:8f65fd2dded84d84cb50acb8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ea42928d7329e37debf3f462","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:8f65fd2dded84d84cb50acb8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -16776,162 +16830,163 @@ {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69ec9116908bc927d920b13a","label":"Long-Gap Canon Design","locator":{"end_column":139,"end_line":7,"fragment":"","pointer":"","start_column":60,"start_line":7},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:promotion-readiness-matrix","target_ref":"../../../distillation/parts/long-gap-reentry/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:7:60:1:../../../distillation/parts/long-gap-reentry/README.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:74343b2227bb1453d2408fa0","label":"Roadmap","locator":{"end_column":55,"end_line":7,"fragment":"","pointer":"","start_column":22,"start_line":7},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:promotion-readiness-matrix","target_ref":"../../../../ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:7:22:0:../../../../ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1dedf758cc3931dee6fe4562","label":"Promotion Evidence Runbook","locator":{"end_column":114,"end_line":9,"fragment":"","pointer":"","start_column":45,"start_line":9},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:promotion-readiness-matrix","target_ref":"../promotion-evidence-runbook/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:9:45:0:../promotion-evidence-runbook/README.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b3235465bb56b4a419e0735c","label":"Current Posture","locator":{"end_column":18,"end_line":11,"fragment":"current-posture","pointer":"","start_column":1,"start_line":11},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:current-posture","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1a44f10e9ae135a135d879a9","label":"AOA-T-0032","locator":{"end_column":125,"end_line":16,"fragment":"","pointer":"","start_column":31,"start_line":16},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:16:31:0:../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d85b4c541f27f575317f338","label":"AOA-T-0048","locator":{"end_column":136,"end_line":18,"fragment":"","pointer":"","start_column":27,"start_line":18},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/semantic-review-surface-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:18:27:0:../../../../techniques/knowledge-lift/kag-source-lift/semantic-review-surface-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:95ea06fbbb267d9dfc5480f0","label":"AOA-T-0046","locator":{"end_column":128,"end_line":19,"fragment":"","pointer":"","start_column":26,"start_line":19},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/repo-doc-surface-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:19:26:0:../../../../techniques/knowledge-lift/kag-source-lift/repo-doc-surface-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:00cdcb80a9908d3515b96867","label":"AOA-T-0082","locator":{"end_column":339,"end_line":20,"fragment":"","pointer":"","start_column":236,"start_line":20},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:20:236:2:../../../../techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:08f5cdac083b846d0ddb1a72","label":"AOA-T-0081","locator":{"end_column":234,"end_line":20,"fragment":"","pointer":"","start_column":126,"start_line":20},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:20:126:1:../../../../techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f63e9e169632bb572605f927","label":"AOA-T-0083","locator":{"end_column":449,"end_line":20,"fragment":"","pointer":"","start_column":345,"start_line":20},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:20:345:3:../../../../techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fa8bf756c28866854fd7dc90","label":"AOA-T-0080","locator":{"end_column":124,"end_line":20,"fragment":"","pointer":"","start_column":26,"start_line":20},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/recovery/diagnosis-repair/session-drift-taxonomy/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:20:26:0:../../../../techniques/recovery/diagnosis-repair/session-drift-taxonomy/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2c624c523cbf57db46e7a0d7","label":"AOA-T-0078","locator":{"end_column":221,"end_line":21,"fragment":"","pointer":"","start_column":124,"start_line":21},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:21:124:1:../../../../techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5c43def1e1fb4a4198ae17bb","label":"AOA-T-0079","locator":{"end_column":319,"end_line":21,"fragment":"","pointer":"","start_column":223,"start_line":21},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/governance/decision-routing/risk-passport-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:21:223:2:../../../../techniques/governance/decision-routing/risk-passport-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c11dd489c227315bff6f7484","label":"AOA-T-0090","locator":{"end_column":435,"end_line":21,"fragment":"","pointer":"","start_column":325,"start_line":21},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/governance/promotion-boundary/nearest-wrong-target-rejection/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:21:325:3:../../../../techniques/governance/promotion-boundary/nearest-wrong-target-rejection/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d8873fa69eb3147f0180913b","label":"AOA-T-0076","locator":{"end_column":122,"end_line":21,"fragment":"","pointer":"","start_column":26,"start_line":21},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:21:26:0:../../../../techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:185da6b5d0e2960f467367b2","label":"AOA-T-0059","locator":{"end_column":1001,"end_line":24,"fragment":"","pointer":"","start_column":892,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:892:8:../../../../techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:30e9fcc674ab1201ed41cd20","label":"AOA-T-0058","locator":{"end_column":886,"end_line":24,"fragment":"","pointer":"","start_column":772,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:772:7:../../../../techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8e112c17a8baa631c07359d7","label":"AOA-T-0035","locator":{"end_column":550,"end_line":24,"fragment":"","pointer":"","start_column":442,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/instruction/instruction-surface/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:442:4:../../../../techniques/instruction/instruction-surface/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9bbad17842e682634f27be65","label":"AOA-T-0047","locator":{"end_column":770,"end_line":24,"fragment":"","pointer":"","start_column":662,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/github-review-template-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:662:6:../../../../techniques/knowledge-lift/kag-source-lift/github-review-template-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a92cc9c13e19f4defda98fe1","label":"AOA-T-0032","locator":{"end_column":440,"end_line":24,"fragment":"","pointer":"","start_column":346,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:346:3:../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c2122bc9b7c8ae6369797547","label":"AOA-T-0022","locator":{"end_column":344,"end_line":24,"fragment":"","pointer":"","start_column":234,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:234:2:../../../../techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c6aa467d9ee878ef23fe7c1d","label":"AOA-T-0005","locator":{"end_column":120,"end_line":24,"fragment":"","pointer":"","start_column":19,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:19:0:../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d9f229adcc76ac2995c8422f","label":"AOA-T-0042","locator":{"end_column":660,"end_line":24,"fragment":"","pointer":"","start_column":552,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:552:5:../../../../techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ffd557b30774100f57b26d8c","label":"AOA-T-0020","locator":{"end_column":232,"end_line":24,"fragment":"","pointer":"","start_column":122,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:122:1:../../../../techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5db011cee83bc6e3e3005aa8","label":"Manual-first questbook pilot lane","locator":{"end_column":36,"end_line":26,"fragment":"manual-first-questbook-pilot-lane","pointer":"","start_column":1,"start_line":26},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:manual-first-questbook-pilot-lane","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7c2438c1fd13c04ac4cc00f1","label":"Cross-Layer Technique Candidates","locator":{"end_column":148,"end_line":31,"fragment":"","pointer":"","start_column":46,"start_line":31},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:manual-first-questbook-pilot-lane","target_ref":"../../../distillation/parts/cross-layer-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:31:46:0:../../../distillation/parts/cross-layer-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:85a2ce55293afc6473bb17d3","label":"Wave A Pass 1 Snapshot","locator":{"end_column":25,"end_line":35,"fragment":"wave-a-pass-1-snapshot","pointer":"","start_column":1,"start_line":35},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:wave-a-pass-1-snapshot","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:553620bc24dd75189aac4f3e","label":"AOA-T-0018","locator":{"end_column":117,"end_line":38,"fragment":"","pointer":"","start_column":5,"start_line":38},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:38:5:0:../../../../techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:36a05062624f781b372e2d3c","label":"AOA-T-0013","locator":{"end_column":118,"end_line":41,"fragment":"","pointer":"","start_column":5,"start_line":41},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/instruction/instruction-surface/single-source-rule-distribution/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:41:5:0:../../../../techniques/instruction/instruction-surface/single-source-rule-distribution/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f063b9529459b4f68affa937","label":"AOA-T-0023","locator":{"end_column":113,"end_line":42,"fragment":"","pointer":"","start_column":5,"start_line":42},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/execution/agent-workflows-core/stateless-single-shot-agent/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:42:5:0:../../../../techniques/execution/agent-workflows-core/stateless-single-shot-agent/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f9e496b57132b635526bde2","label":"AOA-T-0032","locator":{"end_column":99,"end_line":43,"fragment":"","pointer":"","start_column":5,"start_line":43},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:43:5:0:../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bba197e32b6198247162c804","label":"AOA-T-0034","locator":{"end_column":114,"end_line":44,"fragment":"","pointer":"","start_column":5,"start_line":44},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/instruction/docs-boundary/public-safe-artifact-sanitization/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:44:5:0:../../../../techniques/instruction/docs-boundary/public-safe-artifact-sanitization/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ebcd0083dc16a7a2df4636e7","label":"AOA-T-0036","locator":{"end_column":116,"end_line":46,"fragment":"","pointer":"","start_column":5,"start_line":46},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/execution/runtime-truth-lifecycle/render-truth-before-startup/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:46:5:0:../../../../techniques/execution/runtime-truth-lifecycle/render-truth-before-startup/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a3f055a944724202f931eec8","label":"Readiness Lanes","locator":{"end_column":18,"end_line":57,"fragment":"readiness-lanes","pointer":"","start_column":1,"start_line":57},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:readiness-lanes","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:85f1956d9f8498178521c02c","label":"Swarm Rule","locator":{"end_column":13,"end_line":71,"fragment":"swarm-rule","pointer":"","start_column":1,"start_line":71},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:swarm-rule","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:276af305ca7b19e93562cf46","label":"AGENTS","locator":{"end_column":71,"end_line":75,"fragment":"","pointer":"","start_column":29,"start_line":75},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:swarm-rule","target_ref":"../../../../AGENTS.md#validation"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:75:29:0:../../../../AGENTS.md#validation","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4306360b5e7e5976b8512dae","label":"RELEASING","locator":{"end_column":45,"end_line":77,"fragment":"","pointer":"","start_column":3,"start_line":77},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:swarm-rule","target_ref":"../../../../docs/RELEASING.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:77:3:0:../../../../docs/RELEASING.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2c84daa6e99d7616278b35c5","label":"Pack Matrix","locator":{"end_column":14,"end_line":82,"fragment":"pack-matrix","pointer":"","start_column":1,"start_line":82},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-matrix","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cdf27ea55910139f6743db14","label":"Pack 1 - Long-Gap Donor Lanes","locator":{"end_column":33,"end_line":84,"fragment":"pack-1-long-gap-donor-lanes","pointer":"","start_column":1,"start_line":84},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-1-long-gap-donor-lanes","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1d798afc2dd2bd3cb3151048","label":"AOA-T-0005","locator":{"end_column":104,"end_line":90,"fragment":"","pointer":"","start_column":3,"start_line":90},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-1-long-gap-donor-lanes","target_ref":"../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:90:3:0:../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:84b55750fee798526e3f8700","label":"AOA-T-0004","locator":{"end_column":254,"end_line":90,"fragment":"","pointer":"","start_column":147,"start_line":90},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-1-long-gap-donor-lanes","target_ref":"../../../../techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:90:147:1:../../../../techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cf8a73580763c7c8940b0c96","label":"AOA-T-0022","locator":{"end_column":113,"end_line":91,"fragment":"","pointer":"","start_column":3,"start_line":91},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-1-long-gap-donor-lanes","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:91:3:0:../../../../techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9fafa05b5f613062f8a0c480","label":"Pack 2 - Shell-Agent Fast Path","locator":{"end_column":34,"end_line":93,"fragment":"pack-2-shell-agent-fast-path","pointer":"","start_column":1,"start_line":93},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-2-shell-agent-fast-path","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:34fb1b88d1d8d54226d9f63e","label":"AOA-T-0031","locator":{"end_column":405,"end_line":95,"fragment":"","pointer":"","start_column":291,"start_line":95},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-2-shell-agent-fast-path","target_ref":"../../../../techniques/execution/agent-workflows-core/shell-composable-agent-invocation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:95:291:1:../../../../techniques/execution/agent-workflows-core/shell-composable-agent-invocation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e0396d9a478c3afbb5e658d4","label":"AOA-T-0028","locator":{"end_column":138,"end_line":95,"fragment":"","pointer":"","start_column":23,"start_line":95},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-2-shell-agent-fast-path","target_ref":"../../../../techniques/execution/agent-workflows-core/confirmation-gated-mutating-action/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:95:23:0:../../../../techniques/execution/agent-workflows-core/confirmation-gated-mutating-action/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1931bf67f0ecb97c4b5ed228","label":"Pack 3 - Runtime Operator Stack","locator":{"end_column":35,"end_line":97,"fragment":"pack-3-runtime-operator-stack","pointer":"","start_column":1,"start_line":97},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-3-runtime-operator-stack","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:da74b729f26e841ef02065fa","label":"AOA-T-0035","locator":{"end_column":111,"end_line":103,"fragment":"","pointer":"","start_column":3,"start_line":103},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-3-runtime-operator-stack","target_ref":"../../../../techniques/instruction/instruction-surface/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:103:3:0:../../../../techniques/instruction/instruction-surface/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:63ae491cb556c420f24deb1b","label":"Pack 4 - Instruction-Surface Cluster Residual","locator":{"end_column":49,"end_line":109,"fragment":"pack-4-instruction-surface-cluster-residual","pointer":"","start_column":1,"start_line":109},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-4-instruction-surface-cluster-residual","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6028bc62152f12d1198e79bb","label":"AOA-T-0030","locator":{"end_column":373,"end_line":111,"fragment":"","pointer":"","start_column":267,"start_line":111},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-4-instruction-surface-cluster-residual","target_ref":"../../../../techniques/instruction/instruction-surface/fragmented-agent-context/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:111:267:2:../../../../techniques/instruction/instruction-surface/fragmented-agent-context/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6d33d4e710b497a34bd1a9eb","label":"AOA-T-0027","locator":{"end_column":158,"end_line":111,"fragment":"","pointer":"","start_column":47,"start_line":111},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-4-instruction-surface-cluster-residual","target_ref":"../../../../techniques/instruction/instruction-surface/cross-agent-skill-propagation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:111:47:0:../../../../techniques/instruction/instruction-surface/cross-agent-skill-propagation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a79c86f6ed54584b600e3e66","label":"AOA-T-0029","locator":{"end_column":261,"end_line":111,"fragment":"","pointer":"","start_column":160,"start_line":111},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-4-instruction-surface-cluster-residual","target_ref":"../../../../techniques/instruction/instruction-surface/nested-rule-loading/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:111:160:1:../../../../techniques/instruction/instruction-surface/nested-rule-loading/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3d9e2eb6b0b31d6761592fff","label":"AOA-T-0032","locator":{"end_column":97,"end_line":115,"fragment":"","pointer":"","start_column":3,"start_line":115},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-4-instruction-surface-cluster-residual","target_ref":"../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:115:3:0:../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d2b7b385ad8bc540393a7a1d","label":"Pack 5 - Skill Ecosystem And Curated Inputs","locator":{"end_column":47,"end_line":119,"fragment":"pack-5-skill-ecosystem-and-curated-inputs","pointer":"","start_column":1,"start_line":119},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-5-skill-ecosystem-and-curated-inputs","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0cdd959e2463b3457588fc0d","label":"AOA-T-0024","locator":{"end_column":146,"end_line":121,"fragment":"","pointer":"","start_column":30,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/instruction-surface/upstream-mirroring-with-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:30:0:../../../../techniques/instruction/instruction-surface/upstream-mirroring-with-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:31754c19badcd3bffd57caa8","label":"AOA-T-0040","locator":{"end_column":365,"end_line":121,"fragment":"","pointer":"","start_column":258,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/capability-boundary/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:258:2:../../../../techniques/instruction/capability-boundary/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8217d62910632660de27d83b","label":"AOA-T-0025","locator":{"end_column":256,"end_line":121,"fragment":"","pointer":"","start_column":148,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/capability-registry/capability-spec-versioning/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:148:1:../../../../techniques/instruction/capability-registry/capability-spec-versioning/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9b37060e6d2433947069d6ee","label":"AOA-T-0041","locator":{"end_column":471,"end_line":121,"fragment":"","pointer":"","start_column":367,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/skill-discovery/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:367:3:../../../../techniques/instruction/skill-discovery/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c424e6aefdcbf5e72defd2f7","label":"AOA-T-0043","locator":{"end_column":596,"end_line":121,"fragment":"","pointer":"","start_column":477,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/capability-boundary/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:477:4:../../../../techniques/instruction/capability-boundary/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b10012dd34b325d2787ec6bf","label":"AOA-T-0042","locator":{"end_column":111,"end_line":125,"fragment":"","pointer":"","start_column":3,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:3:0:../../../../techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:40c8c056e550b83effbc8efa","label":"Pack 6 - KAG / Source-Lift Evidence Prep","locator":{"end_column":44,"end_line":129,"fragment":"pack-6-kag-source-lift-evidence-prep","pointer":"","start_column":1,"start_line":129},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-6-kag-source-lift-evidence-prep","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5e27e5aa65f685c9e7da007a","label":"AOA-T-0020","locator":{"end_column":113,"end_line":135,"fragment":"","pointer":"","start_column":3,"start_line":135},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-6-kag-source-lift-evidence-prep","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:135:3:0:../../../../techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:709448b1c76c9b51d68d35d9","label":"AOA-T-0047","locator":{"end_column":111,"end_line":136,"fragment":"","pointer":"","start_column":3,"start_line":136},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-6-kag-source-lift-evidence-prep","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/github-review-template-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:136:3:0:../../../../techniques/knowledge-lift/kag-source-lift/github-review-template-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e6d210d36ec66839b1cecca8","label":"Pack 7 - History Artifacts","locator":{"end_column":30,"end_line":141,"fragment":"pack-7-history-artifacts","pointer":"","start_column":1,"start_line":141},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-7-history-artifacts","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a3c857c3aad3a02a45d2d3a","label":"AOA-T-0045","locator":{"end_column":131,"end_line":143,"fragment":"","pointer":"","start_column":19,"start_line":143},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-7-history-artifacts","target_ref":"../../../../techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:143:19:0:../../../../techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:08e56240df256cec0642ef10","label":"Pack 8 - Internal Docs Practice","locator":{"end_column":35,"end_line":145,"fragment":"pack-8-internal-docs-practice","pointer":"","start_column":1,"start_line":145},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-8-internal-docs-practice","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:366c9128768829b84b91807e","label":"AOA-T-0033","locator":{"end_column":123,"end_line":147,"fragment":"","pointer":"","start_column":19,"start_line":147},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-8-internal-docs-practice","target_ref":"../../../../techniques/instruction/docs-boundary/decision-rationale-recording/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:147:19:0:../../../../techniques/instruction/docs-boundary/decision-rationale-recording/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:291554ad9413ed9e42b619f7","label":"Pack 9 - Graph Work Coordination","locator":{"end_column":36,"end_line":149,"fragment":"pack-9-graph-work-coordination","pointer":"","start_column":1,"start_line":149},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-9-graph-work-coordination","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5ca2f5d7967bc39f2bd8949f","label":"AOA-T-0050","locator":{"end_column":236,"end_line":151,"fragment":"","pointer":"","start_column":129,"start_line":151},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-9-graph-work-coordination","target_ref":"../../../../techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:151:129:1:../../../../techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6a53e8980725e114219c8e4f","label":"AOA-T-0049","locator":{"end_column":124,"end_line":151,"fragment":"","pointer":"","start_column":19,"start_line":151},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-9-graph-work-coordination","target_ref":"../../../../techniques/execution/ready-work-graphs/dependency-aware-task-graph/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:151:19:0:../../../../techniques/execution/ready-work-graphs/dependency-aware-task-graph/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1d1e885025b5296b3035ef0c","label":"Pack 10 - Background Review Loop","locator":{"end_column":36,"end_line":153,"fragment":"pack-10-background-review-loop","pointer":"","start_column":1,"start_line":153},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-10-background-review-loop","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5551a05dd78c9a63c24bb762","label":"AOA-T-0052","locator":{"end_column":243,"end_line":155,"fragment":"","pointer":"","start_column":138,"start_line":155},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-10-background-review-loop","target_ref":"../../../../techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:155:138:1:../../../../techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b6182a17f4fdbcf224ce09d9","label":"AOA-T-0051","locator":{"end_column":133,"end_line":155,"fragment":"","pointer":"","start_column":20,"start_line":155},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-10-background-review-loop","target_ref":"../../../../techniques/continuity/review-compaction/commit-triggered-background-review/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:155:20:0:../../../../techniques/continuity/review-compaction/commit-triggered-background-review/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8004f09e430dbba66f95f829","label":"Pack 11 - Post-Compaction Skill Recovery","locator":{"end_column":44,"end_line":157,"fragment":"pack-11-post-compaction-skill-recovery","pointer":"","start_column":1,"start_line":157},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-11-post-compaction-skill-recovery","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:32c134a0238d1d25eea2f63b","label":"AOA-T-0054","locator":{"end_column":133,"end_line":159,"fragment":"","pointer":"","start_column":20,"start_line":159},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-11-post-compaction-skill-recovery","target_ref":"../../../../techniques/continuity/review-compaction/compaction-resilient-skill-loading/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:159:20:0:../../../../techniques/continuity/review-compaction/compaction-resilient-skill-loading/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:70396dcb47c9cd883738b8af","label":"Pack 12 - Planning Ladder","locator":{"end_column":29,"end_line":161,"fragment":"pack-12-planning-ladder","pointer":"","start_column":1,"start_line":161},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-12-planning-ladder","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0e0e0f7da8bd5279136dfc77","label":"AOA-T-0055","locator":{"end_column":130,"end_line":163,"fragment":"","pointer":"","start_column":20,"start_line":163},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-12-planning-ladder","target_ref":"../../../../techniques/execution/ready-work-graphs/requirements-design-tasks-ladder/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:163:20:0:../../../../techniques/execution/ready-work-graphs/requirements-design-tasks-ladder/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:45459a7196b858e046035552","label":"Pack 13 - Channelized Mailbox","locator":{"end_column":33,"end_line":165,"fragment":"pack-13-channelized-mailbox","pointer":"","start_column":1,"start_line":165},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-13-channelized-mailbox","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:74215e346668bf593a5c53e0","label":"AOA-T-0056","locator":{"end_column":127,"end_line":167,"fragment":"","pointer":"","start_column":20,"start_line":167},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-13-channelized-mailbox","target_ref":"../../../../techniques/continuity/handoff-continuation/channelized-agent-mailbox/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:167:20:0:../../../../techniques/continuity/handoff-continuation/channelized-agent-mailbox/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3721cdc8a1753a804ace2544","label":"Pack 14 - Structured Handoff Before Compaction","locator":{"end_column":50,"end_line":169,"fragment":"pack-14-structured-handoff-before-compaction","pointer":"","start_column":1,"start_line":169},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-14-structured-handoff-before-compaction","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6519a0f3b2ff41ba2adb779c","label":"AOA-T-0057","locator":{"end_column":138,"end_line":171,"fragment":"","pointer":"","start_column":20,"start_line":171},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-14-structured-handoff-before-compaction","target_ref":"../../../../techniques/continuity/handoff-continuation/structured-handoff-before-compaction/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:171:20:0:../../../../techniques/continuity/handoff-continuation/structured-handoff-before-compaction/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:60b05e31ce094f30828b5778","label":"Pack 15 - Receipt-Confirmed Handoff Packet","locator":{"end_column":46,"end_line":173,"fragment":"pack-15-receipt-confirmed-handoff-packet","pointer":"","start_column":1,"start_line":173},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-15-receipt-confirmed-handoff-packet","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:771931e9c8c4fe2e145490f3","label":"AOA-T-0058","locator":{"end_column":117,"end_line":179,"fragment":"","pointer":"","start_column":3,"start_line":179},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-15-receipt-confirmed-handoff-packet","target_ref":"../../../../techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:179:3:0:../../../../techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:979f53164e865a0a0d068fa2","label":"Pack 16 - Git-Verified Handoff Claims","locator":{"end_column":41,"end_line":181,"fragment":"pack-16-git-verified-handoff-claims","pointer":"","start_column":1,"start_line":181},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-16-git-verified-handoff-claims","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6c98d001069586d8553d5347","label":"AOA-T-0059","locator":{"end_column":112,"end_line":187,"fragment":"","pointer":"","start_column":3,"start_line":187},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-16-git-verified-handoff-claims","target_ref":"../../../../techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:187:3:0:../../../../techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:583f66ac5055a97a61f4cf7c","label":"Pack 17 - Session Opening Ritual Before Work","locator":{"end_column":48,"end_line":189,"fragment":"pack-17-session-opening-ritual-before-work","pointer":"","start_column":1,"start_line":189},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-17-session-opening-ritual-before-work","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:180b4aba374d9ffccdb76d9a","label":"AOA-T-0060","locator":{"end_column":136,"end_line":191,"fragment":"","pointer":"","start_column":20,"start_line":191},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-17-session-opening-ritual-before-work","target_ref":"../../../../techniques/continuity/handoff-continuation/session-opening-ritual-before-work/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:191:20:0:../../../../techniques/continuity/handoff-continuation/session-opening-ritual-before-work/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dd46bd2749aba907a1eb400d","label":"Pack 18 - Cross-Repo Resource Map Bootstrap","locator":{"end_column":47,"end_line":193,"fragment":"pack-18-cross-repo-resource-map-bootstrap","pointer":"","start_column":1,"start_line":193},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-18-cross-repo-resource-map-bootstrap","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:54e1cc2008327b5a9fe62efb","label":"AOA-T-0061","locator":{"end_column":135,"end_line":195,"fragment":"","pointer":"","start_column":20,"start_line":195},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-18-cross-repo-resource-map-bootstrap","target_ref":"../../../../techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:195:20:0:../../../../techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:03ee2d1fc6bed85a79927f0a","label":"Pack 19 - Episode-Bounded Agent Loop","locator":{"end_column":40,"end_line":197,"fragment":"pack-19-episode-bounded-agent-loop","pointer":"","start_column":1,"start_line":197},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-19-episode-bounded-agent-loop","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9354249343c881b6c3aed8d9","label":"AOA-T-0062","locator":{"end_column":128,"end_line":199,"fragment":"","pointer":"","start_column":20,"start_line":199},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-19-episode-bounded-agent-loop","target_ref":"../../../../techniques/continuity/handoff-continuation/episode-bounded-agent-loop/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:199:20:0:../../../../techniques/continuity/handoff-continuation/episode-bounded-agent-loop/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3c34c0708964818f0941da4d","label":"Pack 20 - Versioned Agent Registry Contract","locator":{"end_column":47,"end_line":201,"fragment":"pack-20-versioned-agent-registry-contract","pointer":"","start_column":1,"start_line":201},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-20-versioned-agent-registry-contract","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cafa51a0e1877f188aa6f737","label":"AOA-T-0063","locator":{"end_column":135,"end_line":203,"fragment":"","pointer":"","start_column":20,"start_line":203},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-20-versioned-agent-registry-contract","target_ref":"../../../../techniques/instruction/capability-registry/versioned-agent-registry-contract/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:203:20:0:../../../../techniques/instruction/capability-registry/versioned-agent-registry-contract/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:013f9920d905bf8ee2323e7f","label":"Pack 21 - Capability Discovery","locator":{"end_column":34,"end_line":205,"fragment":"pack-21-capability-discovery","pointer":"","start_column":1,"start_line":205},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-21-capability-discovery","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:39f8baf5267cc8b89fa46367","label":"AOA-T-0064","locator":{"end_column":122,"end_line":207,"fragment":"","pointer":"","start_column":20,"start_line":207},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-21-capability-discovery","target_ref":"../../../../techniques/instruction/capability-registry/capability-discovery/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:207:20:0:../../../../techniques/instruction/capability-registry/capability-discovery/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4e38faa7fca7157b9e5bcbee","label":"Pack 22 - MCP Gateway Proxy","locator":{"end_column":31,"end_line":209,"fragment":"pack-22-mcp-gateway-proxy","pointer":"","start_column":1,"start_line":209},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-22-mcp-gateway-proxy","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c67e7ead030abbdaebb52f8e","label":"AOA-T-0065","locator":{"end_column":109,"end_line":211,"fragment":"","pointer":"","start_column":20,"start_line":211},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-22-mcp-gateway-proxy","target_ref":"../../../../techniques/tool-use/tool-gateway/mcp-gateway-proxy/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:211:20:0:../../../../techniques/tool-use/tool-gateway/mcp-gateway-proxy/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1f54974afd736c7b1391accd","label":"Pack 23 - Transcript Replay Artifact","locator":{"end_column":40,"end_line":213,"fragment":"pack-23-transcript-replay-artifact","pointer":"","start_column":1,"start_line":213},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-23-transcript-replay-artifact","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1c96a46b044c370ada45c0e8","label":"AOA-T-0066","locator":{"end_column":122,"end_line":215,"fragment":"","pointer":"","start_column":20,"start_line":215},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-23-transcript-replay-artifact","target_ref":"../../../../techniques/history/history-artifacts/transcript-replay-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:215:20:0:../../../../techniques/history/history-artifacts/transcript-replay-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f8620043d45a80b186b65d26","label":"Pack 24 - Transcript-Linked Code Lineage","locator":{"end_column":44,"end_line":217,"fragment":"pack-24-transcript-linked-code-lineage","pointer":"","start_column":1,"start_line":217},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-24-transcript-linked-code-lineage","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4801b2241c5e9b901f25da6f","label":"AOA-T-0067","locator":{"end_column":126,"end_line":219,"fragment":"","pointer":"","start_column":20,"start_line":219},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-24-transcript-linked-code-lineage","target_ref":"../../../../techniques/history/history-artifacts/transcript-linked-code-lineage/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:219:20:0:../../../../techniques/history/history-artifacts/transcript-linked-code-lineage/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:542881f80598f5164ad25661","label":"Pack 25 - Fail-Closed Evidence Gate","locator":{"end_column":39,"end_line":221,"fragment":"pack-25-fail-closed-evidence-gate","pointer":"","start_column":1,"start_line":221},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-25-fail-closed-evidence-gate","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4b57dadaaa4471ff7f37a948","label":"AOA-T-0068","locator":{"end_column":124,"end_line":223,"fragment":"","pointer":"","start_column":20,"start_line":223},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-25-fail-closed-evidence-gate","target_ref":"../../../../techniques/governance/approval-evidence/fail-closed-evidence-gate/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:223:20:0:../../../../techniques/governance/approval-evidence/fail-closed-evidence-gate/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd7273af454bd5312c07fb56","label":"Pack 26 - Approval-Bound Durable Jobs","locator":{"end_column":41,"end_line":225,"fragment":"pack-26-approval-bound-durable-jobs","pointer":"","start_column":1,"start_line":225},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-26-approval-bound-durable-jobs","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:edbc0eef9e19c3aa3dfbdb37","label":"AOA-T-0069","locator":{"end_column":126,"end_line":227,"fragment":"","pointer":"","start_column":20,"start_line":227},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-26-approval-bound-durable-jobs","target_ref":"../../../../techniques/governance/approval-evidence/approval-bound-durable-jobs/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:227:20:0:../../../../techniques/governance/approval-evidence/approval-bound-durable-jobs/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7fd2961386d4ac9974aecf06","label":"Pack 27 - OCR Staged Handoff","locator":{"end_column":32,"end_line":229,"fragment":"pack-27-ocr-staged-handoff","pointer":"","start_column":1,"start_line":229},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-27-ocr-staged-handoff","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:23f50d1c808add60bdf301a1","label":"AOA-T-0070","locator":{"end_column":121,"end_line":231,"fragment":"","pointer":"","start_column":20,"start_line":231},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-27-ocr-staged-handoff","target_ref":"../../../../techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:231:20:0:../../../../techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:23426586a982e4843ce4cb57","label":"Pack 28 - Post-OCR Template Field Extraction","locator":{"end_column":48,"end_line":233,"fragment":"pack-28-post-ocr-template-field-extraction","pointer":"","start_column":1,"start_line":233},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-28-post-ocr-template-field-extraction","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:77b7e5c77efbc72bb3d15de0","label":"AOA-T-0071","locator":{"end_column":132,"end_line":235,"fragment":"","pointer":"","start_column":20,"start_line":235},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-28-post-ocr-template-field-extraction","target_ref":"../../../../techniques/ingest/media-ingest/template-backed-field-extraction-after-ocr/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:235:20:0:../../../../techniques/ingest/media-ingest/template-backed-field-extraction-after-ocr/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e51332f80e9edfe5b58c73a","label":"Pack 29 - Perceptual Media Dedupe","locator":{"end_column":37,"end_line":237,"fragment":"pack-29-perceptual-media-dedupe","pointer":"","start_column":1,"start_line":237},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-29-perceptual-media-dedupe","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fd3776fc203026d666074912","label":"AOA-T-0072","locator":{"end_column":135,"end_line":239,"fragment":"","pointer":"","start_column":20,"start_line":239},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-29-perceptual-media-dedupe","target_ref":"../../../../techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:239:20:0:../../../../techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:91bcddaad9bb25f7cc5cc4b5","label":"Pack 30 - Semantic Media Bucketing","locator":{"end_column":38,"end_line":241,"fragment":"pack-30-semantic-media-bucketing","pointer":"","start_column":1,"start_line":241},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-30-semantic-media-bucketing","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6f910b549c9817b9ba625ea6","label":"AOA-T-0073","locator":{"end_column":135,"end_line":243,"fragment":"","pointer":"","start_column":20,"start_line":243},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-30-semantic-media-bucketing","target_ref":"../../../../techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:243:20:0:../../../../techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d27129a0ac1849d106a2c4ba","label":"Pack 31 - Telegram Export Normalization","locator":{"end_column":43,"end_line":245,"fragment":"pack-31-telegram-export-normalization","pointer":"","start_column":1,"start_line":245},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-31-telegram-export-normalization","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ce0772477c574cfa5c034ebc","label":"AOA-T-0074","locator":{"end_column":134,"end_line":247,"fragment":"","pointer":"","start_column":20,"start_line":247},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-31-telegram-export-normalization","target_ref":"../../../../techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:247:20:0:../../../../techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76d1d9300512841acc78b489","label":"Pack 32 - Reviewed Session Harvest Spine","locator":{"end_column":44,"end_line":249,"fragment":"pack-32-reviewed-session-harvest-spine","pointer":"","start_column":1,"start_line":249},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-32-reviewed-session-harvest-spine","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:11783182be0a4a06dcdbf271","label":"AOA-T-0077","locator":{"end_column":219,"end_line":251,"fragment":"","pointer":"","start_column":121,"start_line":251},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-32-reviewed-session-harvest-spine","target_ref":"../../../../techniques/continuity/donor-harvest/harvest-packet-contract/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:251:121:1:../../../../techniques/continuity/donor-harvest/harvest-packet-contract/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4bf2e117b44672233e4442c4","label":"AOA-T-0075","locator":{"end_column":116,"end_line":251,"fragment":"","pointer":"","start_column":20,"start_line":251},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-32-reviewed-session-harvest-spine","target_ref":"../../../../techniques/continuity/donor-harvest/session-donor-harvest/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:251:20:0:../../../../techniques/continuity/donor-harvest/session-donor-harvest/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:85d036dd3982681e85e15eed","label":"Pack 33 - Owner Route Fork Discipline","locator":{"end_column":41,"end_line":253,"fragment":"pack-33-owner-route-fork-discipline","pointer":"","start_column":1,"start_line":253},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-33-owner-route-fork-discipline","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6d010d6a0027241c36576b8e","label":"AOA-T-0076","locator":{"end_column":116,"end_line":255,"fragment":"","pointer":"","start_column":20,"start_line":255},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-33-owner-route-fork-discipline","target_ref":"../../../../techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:255:20:0:../../../../techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:72daa9804c9f1ae73f085154","label":"AOA-T-0090","locator":{"end_column":429,"end_line":255,"fragment":"","pointer":"","start_column":319,"start_line":255},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-33-owner-route-fork-discipline","target_ref":"../../../../techniques/governance/promotion-boundary/nearest-wrong-target-rejection/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:255:319:3:../../../../techniques/governance/promotion-boundary/nearest-wrong-target-rejection/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:89ecdaf3fdac527816d29050","label":"AOA-T-0078","locator":{"end_column":215,"end_line":255,"fragment":"","pointer":"","start_column":118,"start_line":255},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-33-owner-route-fork-discipline","target_ref":"../../../../techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:255:118:1:../../../../techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8e1669ed7fb8ad166c69fa47","label":"AOA-T-0079","locator":{"end_column":313,"end_line":255,"fragment":"","pointer":"","start_column":217,"start_line":255},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-33-owner-route-fork-discipline","target_ref":"../../../../techniques/governance/decision-routing/risk-passport-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:255:217:2:../../../../techniques/governance/decision-routing/risk-passport-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8fb053e96ec7f60e3a2236db","label":"Pack 34 - Diagnosis And Repair Loop","locator":{"end_column":39,"end_line":257,"fragment":"pack-34-diagnosis-and-repair-loop","pointer":"","start_column":1,"start_line":257},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-34-diagnosis-and-repair-loop","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:31e6e601bbddaf1d92315d4b","label":"AOA-T-0080","locator":{"end_column":118,"end_line":259,"fragment":"","pointer":"","start_column":20,"start_line":259},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-34-diagnosis-and-repair-loop","target_ref":"../../../../techniques/recovery/diagnosis-repair/session-drift-taxonomy/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:259:20:0:../../../../techniques/recovery/diagnosis-repair/session-drift-taxonomy/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6171d7a8b1caff94be1b236d","label":"AOA-T-0081","locator":{"end_column":228,"end_line":259,"fragment":"","pointer":"","start_column":120,"start_line":259},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-34-diagnosis-and-repair-loop","target_ref":"../../../../techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:259:120:1:../../../../techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69aa8020f3e136dafbb596a8","label":"AOA-T-0082","locator":{"end_column":333,"end_line":259,"fragment":"","pointer":"","start_column":230,"start_line":259},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-34-diagnosis-and-repair-loop","target_ref":"../../../../techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:259:230:2:../../../../techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b38aa168ca193c0a239a7aa4","label":"AOA-T-0083","locator":{"end_column":443,"end_line":259,"fragment":"","pointer":"","start_column":339,"start_line":259},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-34-diagnosis-and-repair-loop","target_ref":"../../../../techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:259:339:3:../../../../techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3fc682cbce9a58f7ee0ce846","label":"Pack 35 - Progression And Quest Reflection","locator":{"end_column":46,"end_line":261,"fragment":"pack-35-progression-and-quest-reflection","pointer":"","start_column":1,"start_line":261},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-35-progression-and-quest-reflection","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2fc3e165ca4c5b78513bc7f6","label":"AOA-T-0085","locator":{"end_column":224,"end_line":263,"fragment":"","pointer":"","start_column":125,"start_line":263},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-35-progression-and-quest-reflection","target_ref":"../../../../techniques/continuity/donor-harvest/multi-axis-quest-overlay/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:263:125:1:../../../../techniques/continuity/donor-harvest/multi-axis-quest-overlay/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cdea39f1cf8b87fc74f41f4b","label":"AOA-T-0084","locator":{"end_column":120,"end_line":263,"fragment":"","pointer":"","start_column":20,"start_line":263},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-35-progression-and-quest-reflection","target_ref":"../../../../techniques/continuity/donor-harvest/progression-evidence-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:263:20:0:../../../../techniques/continuity/donor-harvest/progression-evidence-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b19095e1ae884b34cca9723d","label":"Pack 36 - Automation Opportunity Gates","locator":{"end_column":42,"end_line":265,"fragment":"pack-36-automation-opportunity-gates","pointer":"","start_column":1,"start_line":265},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-36-automation-opportunity-gates","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8e9c639cd9ca5be7a2647e52","label":"AOA-T-0086","locator":{"end_column":123,"end_line":267,"fragment":"","pointer":"","start_column":20,"start_line":267},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-36-automation-opportunity-gates","target_ref":"../../../../techniques/governance/automation-readiness/automation-fit-matrix/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:267:20:0:../../../../techniques/governance/automation-readiness/automation-fit-matrix/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c70bbf0d73d339dbbc4b1ef2","label":"AOA-T-0087","locator":{"end_column":234,"end_line":267,"fragment":"","pointer":"","start_column":125,"start_line":267},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-36-automation-opportunity-gates","target_ref":"../../../../techniques/governance/automation-readiness/human-loop-to-first-landing/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:267:125:1:../../../../techniques/governance/automation-readiness/human-loop-to-first-landing/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c994033648601050d24680cb","label":"AOA-T-0088","locator":{"end_column":348,"end_line":267,"fragment":"","pointer":"","start_column":240,"start_line":267},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-36-automation-opportunity-gates","target_ref":"../../../../techniques/governance/automation-readiness/approval-sensitivity-check/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:267:240:2:../../../../techniques/governance/automation-readiness/approval-sensitivity-check/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ce32d711909221f84f10ad4","label":"Pack 37 - Quest Promotion Verdict","locator":{"end_column":37,"end_line":269,"fragment":"pack-37-quest-promotion-verdict","pointer":"","start_column":1,"start_line":269},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-37-quest-promotion-verdict","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bce83f31c67daf8596ece049","label":"AOA-T-0089","locator":{"end_column":127,"end_line":271,"fragment":"","pointer":"","start_column":20,"start_line":271},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-37-quest-promotion-verdict","target_ref":"../../../../techniques/governance/promotion-boundary/quest-unit-promotion-review/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:271:20:0:../../../../techniques/governance/promotion-boundary/quest-unit-promotion-review/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:19fc30121fc06d6b20223aeb","label":"Pack 38 - Workspace Boundary And Proof Loop","locator":{"end_column":47,"end_line":273,"fragment":"pack-38-workspace-boundary-and-proof-loop","pointer":"","start_column":1,"start_line":273},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-38-workspace-boundary-and-proof-loop","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:08317dd66274af76f5b25c10","label":"AOA-T-0094","locator":{"end_column":486,"end_line":275,"fragment":"","pointer":"","start_column":372,"start_line":275},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/canonical-owner-with-validated-mirror/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:275:372:3:../../../../techniques/proof/owner-truth-closeout/canonical-owner-with-validated-mirror/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:14b452f61a2c32f94dfb7c62","label":"AOA-T-0093","locator":{"end_column":370,"end_line":275,"fragment":"","pointer":"","start_column":246,"start_line":275},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/instruction/capability-boundary/recommendation-truth-vs-host-actionability/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:275:246:2:../../../../techniques/instruction/capability-boundary/recommendation-truth-vs-host-actionability/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2fdc65fc7e3ab42f3d3eb68a","label":"AOA-T-0096","locator":{"end_column":739,"end_line":275,"fragment":"","pointer":"","start_column":613,"start_line":275},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/pinned-validation-matrix-before-generated-publish/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:275:613:5:../../../../techniques/proof/owner-truth-closeout/pinned-validation-matrix-before-generated-publish/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6eaea905e09fb7f9ed87a47e","label":"AOA-T-0091","locator":{"end_column":137,"end_line":275,"fragment":"","pointer":"","start_column":20,"start_line":275},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/workspace-root-ingress-and-mutation-gate/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:275:20:0:../../../../techniques/proof/owner-truth-closeout/workspace-root-ingress-and-mutation-gate/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d44157e0f127fb343d4c42d5","label":"AOA-T-0092","locator":{"end_column":244,"end_line":275,"fragment":"","pointer":"","start_column":139,"start_line":275},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/audit-to-closeout-proof-loop/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:275:139:1:../../../../techniques/proof/owner-truth-closeout/audit-to-closeout-proof-loop/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d955a2bbe573c0ffb5ed1afb","label":"AOA-T-0095","locator":{"end_column":607,"end_line":275,"fragment":"","pointer":"","start_column":488,"start_line":275},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/github-only-owner-endcap-with-reality-sync/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:275:488:4:../../../../techniques/proof/owner-truth-closeout/github-only-owner-endcap-with-reality-sync/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c61f961cf30651fc28fe3400","label":"Pack 39 - Antifragility Recovery Fresh Scaffolding","locator":{"end_column":54,"end_line":277,"fragment":"pack-39-antifragility-recovery-fresh-scaffolding","pointer":"","start_column":1,"start_line":277},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-39-antifragility-recovery-fresh-scaffolding","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:300ae04dc3f3135b6b2973bb","label":"AOA-T-0099","locator":{"end_column":365,"end_line":279,"fragment":"","pointer":"","start_column":242,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-39-antifragility-recovery-fresh-scaffolding","target_ref":"../../../../techniques/recovery/antifragility-recovery/isolated-service-stop-on-shared-substrate/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:242:2:../../../../techniques/recovery/antifragility-recovery/isolated-service-stop-on-shared-substrate/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:36f392b203d71cf350557d0e","label":"AOA-T-0097","locator":{"end_column":126,"end_line":279,"fragment":"","pointer":"","start_column":20,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-39-antifragility-recovery-fresh-scaffolding","target_ref":"../../../../techniques/recovery/antifragility-recovery/degrade-reground-recover/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:20:0:../../../../techniques/recovery/antifragility-recovery/degrade-reground-recover/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:70a72fbf811d81f782485761","label":"AOA-T-0100","locator":{"end_column":485,"end_line":279,"fragment":"","pointer":"","start_column":371,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-39-antifragility-recovery-fresh-scaffolding","target_ref":"../../../../techniques/recovery/antifragility-recovery/stress-receipt-reground-closeout/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:371:3:../../../../techniques/recovery/antifragility-recovery/stress-receipt-reground-closeout/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fb989e5c191c6d09fd887a27","label":"AOA-T-0098","locator":{"end_column":240,"end_line":279,"fragment":"","pointer":"","start_column":128,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-39-antifragility-recovery-fresh-scaffolding","target_ref":"../../../../techniques/recovery/antifragility-recovery/receipt-first-failure-analysis/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:128:1:../../../../techniques/recovery/antifragility-recovery/receipt-first-failure-analysis/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6bcddf82bd68d3bbfc603857","label":"Pack 40 - Method-Growth Extraction Family","locator":{"end_column":45,"end_line":281,"fragment":"pack-40-method-growth-extraction-family","pointer":"","start_column":1,"start_line":281},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-40-method-growth-extraction-family","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0dd7fcc9ee617df0d387b6f7","label":"AOA-T-0101","locator":{"end_column":136,"end_line":283,"fragment":"","pointer":"","start_column":20,"start_line":283},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-40-method-growth-extraction-family","target_ref":"../../../../techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:283:20:0:../../../../techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1fcaf1ec6adc77bc4c46a22b","label":"AOA-T-0103","locator":{"end_column":371,"end_line":283,"fragment":"","pointer":"","start_column":249,"start_line":283},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-40-method-growth-extraction-family","target_ref":"../../../../techniques/governance/practice-adoption-lifecycle/adopted-practice-retention-review/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:283:249:2:../../../../techniques/governance/practice-adoption-lifecycle/adopted-practice-retention-review/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:584d5df5067b449a9224d431","label":"AOA-T-0102","locator":{"end_column":247,"end_line":283,"fragment":"","pointer":"","start_column":138,"start_line":283},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-40-method-growth-extraction-family","target_ref":"../../../../techniques/governance/promotion-boundary/skill-proposal-handoff-packet/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:283:138:1:../../../../techniques/governance/promotion-boundary/skill-proposal-handoff-packet/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eac0c8ed001479ef536f88cc","label":"AOA-T-0104","locator":{"end_column":504,"end_line":283,"fragment":"","pointer":"","start_column":377,"start_line":283},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-40-method-growth-extraction-family","target_ref":"../../../../techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:283:377:3:../../../../techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:253cf6938529c806e75462f7","label":"Pack 41 - Agon Handoff Extraction Family","locator":{"end_column":44,"end_line":285,"fragment":"pack-41-agon-handoff-extraction-family","pointer":"","start_column":1,"start_line":285},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-41-agon-handoff-extraction-family","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:033fd77aaa83231f17a4f939","label":"AOA-T-0105","locator":{"end_column":123,"end_line":287,"fragment":"","pointer":"","start_column":20,"start_line":287},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-41-agon-handoff-extraction-family","target_ref":"../../../../techniques/proof/review-evidence/single-missing-evidence-request/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:287:20:0:../../../../techniques/proof/review-evidence/single-missing-evidence-request/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8460b8a4d14c0f79c0bbcee6","label":"AOA-T-0106","locator":{"end_column":229,"end_line":287,"fragment":"","pointer":"","start_column":125,"start_line":287},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-41-agon-handoff-extraction-family","target_ref":"../../../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:287:125:1:../../../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b68a6033d36949ef51cee33f","label":"AOA-T-0107","locator":{"end_column":335,"end_line":287,"fragment":"","pointer":"","start_column":235,"start_line":287},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-41-agon-handoff-extraction-family","target_ref":"../../../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:287:235:2:../../../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6bc63e5cbde854d4d81e60ce","label":"Suggested Wave Order","locator":{"end_column":23,"end_line":289,"fragment":"suggested-wave-order","pointer":"","start_column":1,"start_line":289},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:suggested-wave-order","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:14e1f350e58072642debecb3","label":"Notes","locator":{"end_column":8,"end_line":309,"fragment":"notes","pointer":"","start_column":1,"start_line":309},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e976f6334131ec24fe73159","label":"promotion-readiness pass ratio","locator":{"end_column":78,"end_line":11,"fragment":"","pointer":"","start_column":17,"start_line":11},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:promotion-readiness-matrix","target_ref":"../../../../stats/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:11:17:0:../../../../stats/README.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b3235465bb56b4a419e0735c","label":"Current Posture","locator":{"end_column":18,"end_line":15,"fragment":"current-posture","pointer":"","start_column":1,"start_line":15},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:current-posture","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:72d0bdcd201b21eadd04e04a","label":"AOA-T-0032","locator":{"end_column":125,"end_line":20,"fragment":"","pointer":"","start_column":31,"start_line":20},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:20:31:0:../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a74a297b0b9b417a60899c15","label":"AOA-T-0048","locator":{"end_column":136,"end_line":22,"fragment":"","pointer":"","start_column":27,"start_line":22},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/semantic-review-surface-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:22:27:0:../../../../techniques/knowledge-lift/kag-source-lift/semantic-review-surface-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8dcefd6706555343a9af4d14","label":"AOA-T-0046","locator":{"end_column":128,"end_line":23,"fragment":"","pointer":"","start_column":26,"start_line":23},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/repo-doc-surface-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:23:26:0:../../../../techniques/knowledge-lift/kag-source-lift/repo-doc-surface-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:135fb902b4e3055f055a90e8","label":"AOA-T-0083","locator":{"end_column":449,"end_line":24,"fragment":"","pointer":"","start_column":345,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:345:3:../../../../techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:62fff6b81d11ef55558676fa","label":"AOA-T-0081","locator":{"end_column":234,"end_line":24,"fragment":"","pointer":"","start_column":126,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:126:1:../../../../techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6e8f1221622831887f24609b","label":"AOA-T-0082","locator":{"end_column":339,"end_line":24,"fragment":"","pointer":"","start_column":236,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:236:2:../../../../techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d42156651a7b9560ff873a1c","label":"AOA-T-0080","locator":{"end_column":124,"end_line":24,"fragment":"","pointer":"","start_column":26,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/recovery/diagnosis-repair/session-drift-taxonomy/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:24:26:0:../../../../techniques/recovery/diagnosis-repair/session-drift-taxonomy/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1618fb74e581fa3b4533fb50","label":"AOA-T-0090","locator":{"end_column":435,"end_line":25,"fragment":"","pointer":"","start_column":325,"start_line":25},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/governance/promotion-boundary/nearest-wrong-target-rejection/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:25:325:3:../../../../techniques/governance/promotion-boundary/nearest-wrong-target-rejection/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2f30caf04b8767d6f0c0d049","label":"AOA-T-0079","locator":{"end_column":319,"end_line":25,"fragment":"","pointer":"","start_column":223,"start_line":25},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/governance/decision-routing/risk-passport-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:25:223:2:../../../../techniques/governance/decision-routing/risk-passport-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2fb57428d39487900685eedf","label":"AOA-T-0076","locator":{"end_column":122,"end_line":25,"fragment":"","pointer":"","start_column":26,"start_line":25},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:25:26:0:../../../../techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:94da823bdee2b7e9190972ab","label":"AOA-T-0078","locator":{"end_column":221,"end_line":25,"fragment":"","pointer":"","start_column":124,"start_line":25},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:25:124:1:../../../../techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ac36f2ce568930f9569d70b","label":"AOA-T-0022","locator":{"end_column":344,"end_line":28,"fragment":"","pointer":"","start_column":234,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:234:2:../../../../techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ec6a097ff687c2ca7ea7367","label":"AOA-T-0058","locator":{"end_column":886,"end_line":28,"fragment":"","pointer":"","start_column":772,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:772:7:../../../../techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1734118c6e2b5e0ba9d1d6b1","label":"AOA-T-0020","locator":{"end_column":232,"end_line":28,"fragment":"","pointer":"","start_column":122,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:122:1:../../../../techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4039e81d61ae336f45c3252c","label":"AOA-T-0042","locator":{"end_column":660,"end_line":28,"fragment":"","pointer":"","start_column":552,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:552:5:../../../../techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5f532cedb074e68c6972f164","label":"AOA-T-0035","locator":{"end_column":550,"end_line":28,"fragment":"","pointer":"","start_column":442,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/instruction/instruction-surface/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:442:4:../../../../techniques/instruction/instruction-surface/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64cabfe89f5f4432e57c4a38","label":"AOA-T-0005","locator":{"end_column":120,"end_line":28,"fragment":"","pointer":"","start_column":19,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:19:0:../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b5723e782d46471817430fa4","label":"AOA-T-0032","locator":{"end_column":440,"end_line":28,"fragment":"","pointer":"","start_column":346,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:346:3:../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c4cdf89869f01bb686ffc80c","label":"AOA-T-0059","locator":{"end_column":1001,"end_line":28,"fragment":"","pointer":"","start_column":892,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:892:8:../../../../techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f3f6ef4143a9c3ff47288760","label":"AOA-T-0047","locator":{"end_column":770,"end_line":28,"fragment":"","pointer":"","start_column":662,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-posture","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/github-review-template-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:28:662:6:../../../../techniques/knowledge-lift/kag-source-lift/github-review-template-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5db011cee83bc6e3e3005aa8","label":"Manual-first questbook pilot lane","locator":{"end_column":36,"end_line":30,"fragment":"manual-first-questbook-pilot-lane","pointer":"","start_column":1,"start_line":30},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:manual-first-questbook-pilot-lane","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d4ff3b139b0c5766bb392a48","label":"Cross-Layer Technique Candidates","locator":{"end_column":148,"end_line":35,"fragment":"","pointer":"","start_column":46,"start_line":35},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:manual-first-questbook-pilot-lane","target_ref":"../../../distillation/parts/cross-layer-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:35:46:0:../../../distillation/parts/cross-layer-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:85a2ce55293afc6473bb17d3","label":"Wave A Pass 1 Snapshot","locator":{"end_column":25,"end_line":39,"fragment":"wave-a-pass-1-snapshot","pointer":"","start_column":1,"start_line":39},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:wave-a-pass-1-snapshot","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ca636d9d90bf9d9adcabc723","label":"AOA-T-0018","locator":{"end_column":117,"end_line":42,"fragment":"","pointer":"","start_column":5,"start_line":42},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:42:5:0:../../../../techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a396f0a2016060a1698d3e6","label":"AOA-T-0013","locator":{"end_column":118,"end_line":45,"fragment":"","pointer":"","start_column":5,"start_line":45},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/instruction/instruction-surface/single-source-rule-distribution/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:45:5:0:../../../../techniques/instruction/instruction-surface/single-source-rule-distribution/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:17faa69909c1d9172df9957b","label":"AOA-T-0023","locator":{"end_column":113,"end_line":46,"fragment":"","pointer":"","start_column":5,"start_line":46},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/execution/agent-workflows-core/stateless-single-shot-agent/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:46:5:0:../../../../techniques/execution/agent-workflows-core/stateless-single-shot-agent/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd45d3de2726a0f63a3c06bb","label":"AOA-T-0032","locator":{"end_column":99,"end_line":47,"fragment":"","pointer":"","start_column":5,"start_line":47},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:47:5:0:../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5032127ff263a5268c0edde8","label":"AOA-T-0034","locator":{"end_column":114,"end_line":48,"fragment":"","pointer":"","start_column":5,"start_line":48},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/instruction/docs-boundary/public-safe-artifact-sanitization/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:48:5:0:../../../../techniques/instruction/docs-boundary/public-safe-artifact-sanitization/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:40f66d70ef0c4a52ab7834b3","label":"AOA-T-0036","locator":{"end_column":116,"end_line":50,"fragment":"","pointer":"","start_column":5,"start_line":50},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:wave-a-pass-1-snapshot","target_ref":"../../../../techniques/execution/runtime-truth-lifecycle/render-truth-before-startup/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:50:5:0:../../../../techniques/execution/runtime-truth-lifecycle/render-truth-before-startup/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a3f055a944724202f931eec8","label":"Readiness Lanes","locator":{"end_column":18,"end_line":61,"fragment":"readiness-lanes","pointer":"","start_column":1,"start_line":61},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:readiness-lanes","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:85f1956d9f8498178521c02c","label":"Swarm Rule","locator":{"end_column":13,"end_line":75,"fragment":"swarm-rule","pointer":"","start_column":1,"start_line":75},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:swarm-rule","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:35e9dde72cea315b7f031a02","label":"AGENTS","locator":{"end_column":71,"end_line":79,"fragment":"","pointer":"","start_column":29,"start_line":79},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:swarm-rule","target_ref":"../../../../AGENTS.md#validation"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:79:29:0:../../../../AGENTS.md#validation","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd66f2e6dbd5b17792c6e3d0","label":"RELEASING","locator":{"end_column":45,"end_line":81,"fragment":"","pointer":"","start_column":3,"start_line":81},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:swarm-rule","target_ref":"../../../../docs/RELEASING.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:81:3:0:../../../../docs/RELEASING.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2c84daa6e99d7616278b35c5","label":"Pack Matrix","locator":{"end_column":14,"end_line":86,"fragment":"pack-matrix","pointer":"","start_column":1,"start_line":86},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-matrix","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cdf27ea55910139f6743db14","label":"Pack 1 - Long-Gap Donor Lanes","locator":{"end_column":33,"end_line":88,"fragment":"pack-1-long-gap-donor-lanes","pointer":"","start_column":1,"start_line":88},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-1-long-gap-donor-lanes","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:02a17be5750afbe58e607e93","label":"AOA-T-0005","locator":{"end_column":104,"end_line":94,"fragment":"","pointer":"","start_column":3,"start_line":94},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-1-long-gap-donor-lanes","target_ref":"../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:94:3:0:../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e8af6acec4e334faa3bceb4d","label":"AOA-T-0004","locator":{"end_column":254,"end_line":94,"fragment":"","pointer":"","start_column":147,"start_line":94},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-1-long-gap-donor-lanes","target_ref":"../../../../techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:94:147:1:../../../../techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bc672f6a8e70831f536c3d31","label":"AOA-T-0022","locator":{"end_column":113,"end_line":95,"fragment":"","pointer":"","start_column":3,"start_line":95},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-1-long-gap-donor-lanes","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:95:3:0:../../../../techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9fafa05b5f613062f8a0c480","label":"Pack 2 - Shell-Agent Fast Path","locator":{"end_column":34,"end_line":97,"fragment":"pack-2-shell-agent-fast-path","pointer":"","start_column":1,"start_line":97},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-2-shell-agent-fast-path","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:37168002fee9fbe0749ef753","label":"AOA-T-0028","locator":{"end_column":138,"end_line":99,"fragment":"","pointer":"","start_column":23,"start_line":99},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-2-shell-agent-fast-path","target_ref":"../../../../techniques/execution/agent-workflows-core/confirmation-gated-mutating-action/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:99:23:0:../../../../techniques/execution/agent-workflows-core/confirmation-gated-mutating-action/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dc6ffe6c66d9c176bc343356","label":"AOA-T-0031","locator":{"end_column":405,"end_line":99,"fragment":"","pointer":"","start_column":291,"start_line":99},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-2-shell-agent-fast-path","target_ref":"../../../../techniques/execution/agent-workflows-core/shell-composable-agent-invocation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:99:291:1:../../../../techniques/execution/agent-workflows-core/shell-composable-agent-invocation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1931bf67f0ecb97c4b5ed228","label":"Pack 3 - Runtime Operator Stack","locator":{"end_column":35,"end_line":101,"fragment":"pack-3-runtime-operator-stack","pointer":"","start_column":1,"start_line":101},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-3-runtime-operator-stack","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fff03189bab2c70f68848bb3","label":"AOA-T-0035","locator":{"end_column":111,"end_line":107,"fragment":"","pointer":"","start_column":3,"start_line":107},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-3-runtime-operator-stack","target_ref":"../../../../techniques/instruction/instruction-surface/profile-preset-composition/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:107:3:0:../../../../techniques/instruction/instruction-surface/profile-preset-composition/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:63ae491cb556c420f24deb1b","label":"Pack 4 - Instruction-Surface Cluster Residual","locator":{"end_column":49,"end_line":113,"fragment":"pack-4-instruction-surface-cluster-residual","pointer":"","start_column":1,"start_line":113},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-4-instruction-surface-cluster-residual","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6cd7aa788575f0238fe0c608","label":"AOA-T-0027","locator":{"end_column":158,"end_line":115,"fragment":"","pointer":"","start_column":47,"start_line":115},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-4-instruction-surface-cluster-residual","target_ref":"../../../../techniques/instruction/instruction-surface/cross-agent-skill-propagation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:115:47:0:../../../../techniques/instruction/instruction-surface/cross-agent-skill-propagation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:77a8883ba7410e3566c324b5","label":"AOA-T-0030","locator":{"end_column":373,"end_line":115,"fragment":"","pointer":"","start_column":267,"start_line":115},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-4-instruction-surface-cluster-residual","target_ref":"../../../../techniques/instruction/instruction-surface/fragmented-agent-context/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:115:267:2:../../../../techniques/instruction/instruction-surface/fragmented-agent-context/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:efe4ac4b2940632a034c0dde","label":"AOA-T-0029","locator":{"end_column":261,"end_line":115,"fragment":"","pointer":"","start_column":160,"start_line":115},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-4-instruction-surface-cluster-residual","target_ref":"../../../../techniques/instruction/instruction-surface/nested-rule-loading/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:115:160:1:../../../../techniques/instruction/instruction-surface/nested-rule-loading/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d2d2ed018ea0e016134e5538","label":"AOA-T-0032","locator":{"end_column":97,"end_line":119,"fragment":"","pointer":"","start_column":3,"start_line":119},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-4-instruction-surface-cluster-residual","target_ref":"../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:119:3:0:../../../../techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d2b7b385ad8bc540393a7a1d","label":"Pack 5 - Skill Ecosystem And Curated Inputs","locator":{"end_column":47,"end_line":123,"fragment":"pack-5-skill-ecosystem-and-curated-inputs","pointer":"","start_column":1,"start_line":123},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-5-skill-ecosystem-and-curated-inputs","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1cb41d009d7aac1245889c6f","label":"AOA-T-0040","locator":{"end_column":365,"end_line":125,"fragment":"","pointer":"","start_column":258,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/capability-boundary/skill-vs-command-boundary/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:258:2:../../../../techniques/instruction/capability-boundary/skill-vs-command-boundary/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:20720ad0ed8f404ad96da7c0","label":"AOA-T-0025","locator":{"end_column":256,"end_line":125,"fragment":"","pointer":"","start_column":148,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/capability-registry/capability-spec-versioning/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:148:1:../../../../techniques/instruction/capability-registry/capability-spec-versioning/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:93d4b42364dac428e8f218a1","label":"AOA-T-0041","locator":{"end_column":471,"end_line":125,"fragment":"","pointer":"","start_column":367,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/skill-discovery/skill-marketplace-curation/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:367:3:../../../../techniques/instruction/skill-discovery/skill-marketplace-curation/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bb7706b287c6ed1dccb09623","label":"AOA-T-0024","locator":{"end_column":146,"end_line":125,"fragment":"","pointer":"","start_column":30,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/instruction-surface/upstream-mirroring-with-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:30:0:../../../../techniques/instruction/instruction-surface/upstream-mirroring-with-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0c880a4f53c702921107c0b","label":"AOA-T-0043","locator":{"end_column":596,"end_line":125,"fragment":"","pointer":"","start_column":477,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/capability-boundary/multi-source-primary-input-provenance/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:477:4:../../../../techniques/instruction/capability-boundary/multi-source-primary-input-provenance/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ed0ec7634690073e2ed308dc","label":"AOA-T-0042","locator":{"end_column":111,"end_line":129,"fragment":"","pointer":"","start_column":3,"start_line":129},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-5-skill-ecosystem-and-curated-inputs","target_ref":"../../../../techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:129:3:0:../../../../techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:40c8c056e550b83effbc8efa","label":"Pack 6 - KAG / Source-Lift Evidence Prep","locator":{"end_column":44,"end_line":133,"fragment":"pack-6-kag-source-lift-evidence-prep","pointer":"","start_column":1,"start_line":133},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-6-kag-source-lift-evidence-prep","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:717c2a276abf218e7cdc195c","label":"AOA-T-0020","locator":{"end_column":113,"end_line":139,"fragment":"","pointer":"","start_column":3,"start_line":139},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-6-kag-source-lift-evidence-prep","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:139:3:0:../../../../techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fbfdb4ebb0a225c68c8ec7f1","label":"AOA-T-0047","locator":{"end_column":111,"end_line":140,"fragment":"","pointer":"","start_column":3,"start_line":140},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-6-kag-source-lift-evidence-prep","target_ref":"../../../../techniques/knowledge-lift/kag-source-lift/github-review-template-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:140:3:0:../../../../techniques/knowledge-lift/kag-source-lift/github-review-template-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e6d210d36ec66839b1cecca8","label":"Pack 7 - History Artifacts","locator":{"end_column":30,"end_line":145,"fragment":"pack-7-history-artifacts","pointer":"","start_column":1,"start_line":145},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-7-history-artifacts","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c737395c2e33d9b8c4e24c47","label":"AOA-T-0045","locator":{"end_column":131,"end_line":147,"fragment":"","pointer":"","start_column":19,"start_line":147},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-7-history-artifacts","target_ref":"../../../../techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:147:19:0:../../../../techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:08e56240df256cec0642ef10","label":"Pack 8 - Internal Docs Practice","locator":{"end_column":35,"end_line":149,"fragment":"pack-8-internal-docs-practice","pointer":"","start_column":1,"start_line":149},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-8-internal-docs-practice","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cdda600e6fb2c45597539d73","label":"AOA-T-0033","locator":{"end_column":123,"end_line":151,"fragment":"","pointer":"","start_column":19,"start_line":151},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-8-internal-docs-practice","target_ref":"../../../../techniques/instruction/docs-boundary/decision-rationale-recording/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:151:19:0:../../../../techniques/instruction/docs-boundary/decision-rationale-recording/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:291554ad9413ed9e42b619f7","label":"Pack 9 - Graph Work Coordination","locator":{"end_column":36,"end_line":153,"fragment":"pack-9-graph-work-coordination","pointer":"","start_column":1,"start_line":153},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-9-graph-work-coordination","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ae801fd749877db7a0407dc4","label":"AOA-T-0050","locator":{"end_column":236,"end_line":155,"fragment":"","pointer":"","start_column":129,"start_line":155},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-9-graph-work-coordination","target_ref":"../../../../techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:155:129:1:../../../../techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fc27b86f8db2fafa4a66e003","label":"AOA-T-0049","locator":{"end_column":124,"end_line":155,"fragment":"","pointer":"","start_column":19,"start_line":155},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-9-graph-work-coordination","target_ref":"../../../../techniques/execution/ready-work-graphs/dependency-aware-task-graph/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:155:19:0:../../../../techniques/execution/ready-work-graphs/dependency-aware-task-graph/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1d1e885025b5296b3035ef0c","label":"Pack 10 - Background Review Loop","locator":{"end_column":36,"end_line":157,"fragment":"pack-10-background-review-loop","pointer":"","start_column":1,"start_line":157},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-10-background-review-loop","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:03af3072ed1deeabce1d5465","label":"AOA-T-0051","locator":{"end_column":133,"end_line":159,"fragment":"","pointer":"","start_column":20,"start_line":159},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-10-background-review-loop","target_ref":"../../../../techniques/continuity/review-compaction/commit-triggered-background-review/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:159:20:0:../../../../techniques/continuity/review-compaction/commit-triggered-background-review/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3f6f4e239ef717e22cc00347","label":"AOA-T-0052","locator":{"end_column":243,"end_line":159,"fragment":"","pointer":"","start_column":138,"start_line":159},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-10-background-review-loop","target_ref":"../../../../techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:159:138:1:../../../../techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8004f09e430dbba66f95f829","label":"Pack 11 - Post-Compaction Skill Recovery","locator":{"end_column":44,"end_line":161,"fragment":"pack-11-post-compaction-skill-recovery","pointer":"","start_column":1,"start_line":161},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-11-post-compaction-skill-recovery","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9ff2e67ca46207b6eb8c7d2b","label":"AOA-T-0054","locator":{"end_column":133,"end_line":163,"fragment":"","pointer":"","start_column":20,"start_line":163},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-11-post-compaction-skill-recovery","target_ref":"../../../../techniques/continuity/review-compaction/compaction-resilient-skill-loading/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:163:20:0:../../../../techniques/continuity/review-compaction/compaction-resilient-skill-loading/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:70396dcb47c9cd883738b8af","label":"Pack 12 - Planning Ladder","locator":{"end_column":29,"end_line":165,"fragment":"pack-12-planning-ladder","pointer":"","start_column":1,"start_line":165},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-12-planning-ladder","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3b327f7703ec1dd32b402e24","label":"AOA-T-0055","locator":{"end_column":130,"end_line":167,"fragment":"","pointer":"","start_column":20,"start_line":167},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-12-planning-ladder","target_ref":"../../../../techniques/execution/ready-work-graphs/requirements-design-tasks-ladder/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:167:20:0:../../../../techniques/execution/ready-work-graphs/requirements-design-tasks-ladder/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:45459a7196b858e046035552","label":"Pack 13 - Channelized Mailbox","locator":{"end_column":33,"end_line":169,"fragment":"pack-13-channelized-mailbox","pointer":"","start_column":1,"start_line":169},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-13-channelized-mailbox","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:daa543049d3e8aa6860e5ca4","label":"AOA-T-0056","locator":{"end_column":127,"end_line":171,"fragment":"","pointer":"","start_column":20,"start_line":171},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-13-channelized-mailbox","target_ref":"../../../../techniques/continuity/handoff-continuation/channelized-agent-mailbox/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:171:20:0:../../../../techniques/continuity/handoff-continuation/channelized-agent-mailbox/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3721cdc8a1753a804ace2544","label":"Pack 14 - Structured Handoff Before Compaction","locator":{"end_column":50,"end_line":173,"fragment":"pack-14-structured-handoff-before-compaction","pointer":"","start_column":1,"start_line":173},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-14-structured-handoff-before-compaction","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:047088e85491de714ff28114","label":"AOA-T-0057","locator":{"end_column":138,"end_line":175,"fragment":"","pointer":"","start_column":20,"start_line":175},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-14-structured-handoff-before-compaction","target_ref":"../../../../techniques/continuity/handoff-continuation/structured-handoff-before-compaction/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:175:20:0:../../../../techniques/continuity/handoff-continuation/structured-handoff-before-compaction/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:60b05e31ce094f30828b5778","label":"Pack 15 - Receipt-Confirmed Handoff Packet","locator":{"end_column":46,"end_line":177,"fragment":"pack-15-receipt-confirmed-handoff-packet","pointer":"","start_column":1,"start_line":177},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-15-receipt-confirmed-handoff-packet","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd917a52a04022a1cbb257a5","label":"AOA-T-0058","locator":{"end_column":117,"end_line":183,"fragment":"","pointer":"","start_column":3,"start_line":183},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-15-receipt-confirmed-handoff-packet","target_ref":"../../../../techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:183:3:0:../../../../techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:979f53164e865a0a0d068fa2","label":"Pack 16 - Git-Verified Handoff Claims","locator":{"end_column":41,"end_line":185,"fragment":"pack-16-git-verified-handoff-claims","pointer":"","start_column":1,"start_line":185},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-16-git-verified-handoff-claims","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c079bed0a1e68895887b9d63","label":"AOA-T-0059","locator":{"end_column":112,"end_line":191,"fragment":"","pointer":"","start_column":3,"start_line":191},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-16-git-verified-handoff-claims","target_ref":"../../../../techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:191:3:0:../../../../techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:583f66ac5055a97a61f4cf7c","label":"Pack 17 - Session Opening Ritual Before Work","locator":{"end_column":48,"end_line":193,"fragment":"pack-17-session-opening-ritual-before-work","pointer":"","start_column":1,"start_line":193},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-17-session-opening-ritual-before-work","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:80e4cd1142589bf7656f4b47","label":"AOA-T-0060","locator":{"end_column":136,"end_line":195,"fragment":"","pointer":"","start_column":20,"start_line":195},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-17-session-opening-ritual-before-work","target_ref":"../../../../techniques/continuity/handoff-continuation/session-opening-ritual-before-work/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:195:20:0:../../../../techniques/continuity/handoff-continuation/session-opening-ritual-before-work/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dd46bd2749aba907a1eb400d","label":"Pack 18 - Cross-Repo Resource Map Bootstrap","locator":{"end_column":47,"end_line":197,"fragment":"pack-18-cross-repo-resource-map-bootstrap","pointer":"","start_column":1,"start_line":197},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-18-cross-repo-resource-map-bootstrap","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:79e624d39f13d3b27a829352","label":"AOA-T-0061","locator":{"end_column":135,"end_line":199,"fragment":"","pointer":"","start_column":20,"start_line":199},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-18-cross-repo-resource-map-bootstrap","target_ref":"../../../../techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:199:20:0:../../../../techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:03ee2d1fc6bed85a79927f0a","label":"Pack 19 - Episode-Bounded Agent Loop","locator":{"end_column":40,"end_line":201,"fragment":"pack-19-episode-bounded-agent-loop","pointer":"","start_column":1,"start_line":201},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-19-episode-bounded-agent-loop","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:adbf083b823cae86e98db680","label":"AOA-T-0062","locator":{"end_column":128,"end_line":203,"fragment":"","pointer":"","start_column":20,"start_line":203},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-19-episode-bounded-agent-loop","target_ref":"../../../../techniques/continuity/handoff-continuation/episode-bounded-agent-loop/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:203:20:0:../../../../techniques/continuity/handoff-continuation/episode-bounded-agent-loop/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3c34c0708964818f0941da4d","label":"Pack 20 - Versioned Agent Registry Contract","locator":{"end_column":47,"end_line":205,"fragment":"pack-20-versioned-agent-registry-contract","pointer":"","start_column":1,"start_line":205},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-20-versioned-agent-registry-contract","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4796373cb9a812a9ae063aac","label":"AOA-T-0063","locator":{"end_column":135,"end_line":207,"fragment":"","pointer":"","start_column":20,"start_line":207},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-20-versioned-agent-registry-contract","target_ref":"../../../../techniques/instruction/capability-registry/versioned-agent-registry-contract/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:207:20:0:../../../../techniques/instruction/capability-registry/versioned-agent-registry-contract/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:013f9920d905bf8ee2323e7f","label":"Pack 21 - Capability Discovery","locator":{"end_column":34,"end_line":209,"fragment":"pack-21-capability-discovery","pointer":"","start_column":1,"start_line":209},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-21-capability-discovery","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:abc4b2012414aa58a193b946","label":"AOA-T-0064","locator":{"end_column":122,"end_line":211,"fragment":"","pointer":"","start_column":20,"start_line":211},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-21-capability-discovery","target_ref":"../../../../techniques/instruction/capability-registry/capability-discovery/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:211:20:0:../../../../techniques/instruction/capability-registry/capability-discovery/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4e38faa7fca7157b9e5bcbee","label":"Pack 22 - MCP Gateway Proxy","locator":{"end_column":31,"end_line":213,"fragment":"pack-22-mcp-gateway-proxy","pointer":"","start_column":1,"start_line":213},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-22-mcp-gateway-proxy","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76505f15d334de2a8e41ec97","label":"AOA-T-0065","locator":{"end_column":109,"end_line":215,"fragment":"","pointer":"","start_column":20,"start_line":215},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-22-mcp-gateway-proxy","target_ref":"../../../../techniques/tool-use/tool-gateway/mcp-gateway-proxy/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:215:20:0:../../../../techniques/tool-use/tool-gateway/mcp-gateway-proxy/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1f54974afd736c7b1391accd","label":"Pack 23 - Transcript Replay Artifact","locator":{"end_column":40,"end_line":217,"fragment":"pack-23-transcript-replay-artifact","pointer":"","start_column":1,"start_line":217},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-23-transcript-replay-artifact","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e7922a0968fba69cc64e9c1c","label":"AOA-T-0066","locator":{"end_column":122,"end_line":219,"fragment":"","pointer":"","start_column":20,"start_line":219},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-23-transcript-replay-artifact","target_ref":"../../../../techniques/history/history-artifacts/transcript-replay-artifact/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:219:20:0:../../../../techniques/history/history-artifacts/transcript-replay-artifact/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f8620043d45a80b186b65d26","label":"Pack 24 - Transcript-Linked Code Lineage","locator":{"end_column":44,"end_line":221,"fragment":"pack-24-transcript-linked-code-lineage","pointer":"","start_column":1,"start_line":221},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-24-transcript-linked-code-lineage","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b634d8e4da3a8ce2a772cb53","label":"AOA-T-0067","locator":{"end_column":126,"end_line":223,"fragment":"","pointer":"","start_column":20,"start_line":223},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-24-transcript-linked-code-lineage","target_ref":"../../../../techniques/history/history-artifacts/transcript-linked-code-lineage/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:223:20:0:../../../../techniques/history/history-artifacts/transcript-linked-code-lineage/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:542881f80598f5164ad25661","label":"Pack 25 - Fail-Closed Evidence Gate","locator":{"end_column":39,"end_line":225,"fragment":"pack-25-fail-closed-evidence-gate","pointer":"","start_column":1,"start_line":225},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-25-fail-closed-evidence-gate","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6ef78e7f2de53e0b977dc410","label":"AOA-T-0068","locator":{"end_column":124,"end_line":227,"fragment":"","pointer":"","start_column":20,"start_line":227},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-25-fail-closed-evidence-gate","target_ref":"../../../../techniques/governance/approval-evidence/fail-closed-evidence-gate/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:227:20:0:../../../../techniques/governance/approval-evidence/fail-closed-evidence-gate/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd7273af454bd5312c07fb56","label":"Pack 26 - Approval-Bound Durable Jobs","locator":{"end_column":41,"end_line":229,"fragment":"pack-26-approval-bound-durable-jobs","pointer":"","start_column":1,"start_line":229},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-26-approval-bound-durable-jobs","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:583291ad09189ab7b00ae846","label":"AOA-T-0069","locator":{"end_column":126,"end_line":231,"fragment":"","pointer":"","start_column":20,"start_line":231},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-26-approval-bound-durable-jobs","target_ref":"../../../../techniques/governance/approval-evidence/approval-bound-durable-jobs/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:231:20:0:../../../../techniques/governance/approval-evidence/approval-bound-durable-jobs/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7fd2961386d4ac9974aecf06","label":"Pack 27 - OCR Staged Handoff","locator":{"end_column":32,"end_line":233,"fragment":"pack-27-ocr-staged-handoff","pointer":"","start_column":1,"start_line":233},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-27-ocr-staged-handoff","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:828c9f4d8832bef171c529b3","label":"AOA-T-0070","locator":{"end_column":121,"end_line":235,"fragment":"","pointer":"","start_column":20,"start_line":235},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-27-ocr-staged-handoff","target_ref":"../../../../techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:235:20:0:../../../../techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:23426586a982e4843ce4cb57","label":"Pack 28 - Post-OCR Template Field Extraction","locator":{"end_column":48,"end_line":237,"fragment":"pack-28-post-ocr-template-field-extraction","pointer":"","start_column":1,"start_line":237},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-28-post-ocr-template-field-extraction","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f7ef39232ea0d82ec239658c","label":"AOA-T-0071","locator":{"end_column":132,"end_line":239,"fragment":"","pointer":"","start_column":20,"start_line":239},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-28-post-ocr-template-field-extraction","target_ref":"../../../../techniques/ingest/media-ingest/template-backed-field-extraction-after-ocr/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:239:20:0:../../../../techniques/ingest/media-ingest/template-backed-field-extraction-after-ocr/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e51332f80e9edfe5b58c73a","label":"Pack 29 - Perceptual Media Dedupe","locator":{"end_column":37,"end_line":241,"fragment":"pack-29-perceptual-media-dedupe","pointer":"","start_column":1,"start_line":241},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-29-perceptual-media-dedupe","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44f8844849119543e8af2514","label":"AOA-T-0072","locator":{"end_column":135,"end_line":243,"fragment":"","pointer":"","start_column":20,"start_line":243},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-29-perceptual-media-dedupe","target_ref":"../../../../techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:243:20:0:../../../../techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:91bcddaad9bb25f7cc5cc4b5","label":"Pack 30 - Semantic Media Bucketing","locator":{"end_column":38,"end_line":245,"fragment":"pack-30-semantic-media-bucketing","pointer":"","start_column":1,"start_line":245},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-30-semantic-media-bucketing","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:133db99689a690ce980cc253","label":"AOA-T-0073","locator":{"end_column":135,"end_line":247,"fragment":"","pointer":"","start_column":20,"start_line":247},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-30-semantic-media-bucketing","target_ref":"../../../../techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:247:20:0:../../../../techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d27129a0ac1849d106a2c4ba","label":"Pack 31 - Telegram Export Normalization","locator":{"end_column":43,"end_line":249,"fragment":"pack-31-telegram-export-normalization","pointer":"","start_column":1,"start_line":249},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-31-telegram-export-normalization","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fd68f28dfd3f60375ffb05ce","label":"AOA-T-0074","locator":{"end_column":134,"end_line":251,"fragment":"","pointer":"","start_column":20,"start_line":251},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-31-telegram-export-normalization","target_ref":"../../../../techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:251:20:0:../../../../techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76d1d9300512841acc78b489","label":"Pack 32 - Reviewed Session Harvest Spine","locator":{"end_column":44,"end_line":253,"fragment":"pack-32-reviewed-session-harvest-spine","pointer":"","start_column":1,"start_line":253},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-32-reviewed-session-harvest-spine","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:433f644a11a8cdc48fa5683b","label":"AOA-T-0077","locator":{"end_column":219,"end_line":255,"fragment":"","pointer":"","start_column":121,"start_line":255},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-32-reviewed-session-harvest-spine","target_ref":"../../../../techniques/continuity/donor-harvest/harvest-packet-contract/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:255:121:1:../../../../techniques/continuity/donor-harvest/harvest-packet-contract/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7ff638f3f024aa395df5b306","label":"AOA-T-0075","locator":{"end_column":116,"end_line":255,"fragment":"","pointer":"","start_column":20,"start_line":255},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-32-reviewed-session-harvest-spine","target_ref":"../../../../techniques/continuity/donor-harvest/session-donor-harvest/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:255:20:0:../../../../techniques/continuity/donor-harvest/session-donor-harvest/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:85d036dd3982681e85e15eed","label":"Pack 33 - Owner Route Fork Discipline","locator":{"end_column":41,"end_line":257,"fragment":"pack-33-owner-route-fork-discipline","pointer":"","start_column":1,"start_line":257},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-33-owner-route-fork-discipline","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:876c5c66ab9854b9b6705e2e","label":"AOA-T-0090","locator":{"end_column":429,"end_line":259,"fragment":"","pointer":"","start_column":319,"start_line":259},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-33-owner-route-fork-discipline","target_ref":"../../../../techniques/governance/promotion-boundary/nearest-wrong-target-rejection/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:259:319:3:../../../../techniques/governance/promotion-boundary/nearest-wrong-target-rejection/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aa1ec9d6c7fb3a05a6bf5be8","label":"AOA-T-0079","locator":{"end_column":313,"end_line":259,"fragment":"","pointer":"","start_column":217,"start_line":259},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-33-owner-route-fork-discipline","target_ref":"../../../../techniques/governance/decision-routing/risk-passport-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:259:217:2:../../../../techniques/governance/decision-routing/risk-passport-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aa6cad36ed8e8c969fd30ad5","label":"AOA-T-0076","locator":{"end_column":116,"end_line":259,"fragment":"","pointer":"","start_column":20,"start_line":259},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-33-owner-route-fork-discipline","target_ref":"../../../../techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:259:20:0:../../../../techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b47f6f452f60bf0fae4ab2e0","label":"AOA-T-0078","locator":{"end_column":215,"end_line":259,"fragment":"","pointer":"","start_column":118,"start_line":259},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-33-owner-route-fork-discipline","target_ref":"../../../../techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:259:118:1:../../../../techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8fb053e96ec7f60e3a2236db","label":"Pack 34 - Diagnosis And Repair Loop","locator":{"end_column":39,"end_line":261,"fragment":"pack-34-diagnosis-and-repair-loop","pointer":"","start_column":1,"start_line":261},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-34-diagnosis-and-repair-loop","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0dffd623861b6a96cb578090","label":"AOA-T-0080","locator":{"end_column":118,"end_line":263,"fragment":"","pointer":"","start_column":20,"start_line":263},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-34-diagnosis-and-repair-loop","target_ref":"../../../../techniques/recovery/diagnosis-repair/session-drift-taxonomy/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:263:20:0:../../../../techniques/recovery/diagnosis-repair/session-drift-taxonomy/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:380be89153a9dca9eda1644c","label":"AOA-T-0081","locator":{"end_column":228,"end_line":263,"fragment":"","pointer":"","start_column":120,"start_line":263},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-34-diagnosis-and-repair-loop","target_ref":"../../../../techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:263:120:1:../../../../techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d0ce6494260614012f08fffc","label":"AOA-T-0082","locator":{"end_column":333,"end_line":263,"fragment":"","pointer":"","start_column":230,"start_line":263},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-34-diagnosis-and-repair-loop","target_ref":"../../../../techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:263:230:2:../../../../techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dbfafee0c51e28668ee791d5","label":"AOA-T-0083","locator":{"end_column":443,"end_line":263,"fragment":"","pointer":"","start_column":339,"start_line":263},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-34-diagnosis-and-repair-loop","target_ref":"../../../../techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:263:339:3:../../../../techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3fc682cbce9a58f7ee0ce846","label":"Pack 35 - Progression And Quest Reflection","locator":{"end_column":46,"end_line":265,"fragment":"pack-35-progression-and-quest-reflection","pointer":"","start_column":1,"start_line":265},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-35-progression-and-quest-reflection","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3b5508f45fbd59f65af45626","label":"AOA-T-0085","locator":{"end_column":224,"end_line":267,"fragment":"","pointer":"","start_column":125,"start_line":267},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-35-progression-and-quest-reflection","target_ref":"../../../../techniques/continuity/donor-harvest/multi-axis-quest-overlay/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:267:125:1:../../../../techniques/continuity/donor-harvest/multi-axis-quest-overlay/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:907d0838657d0450aada7398","label":"AOA-T-0084","locator":{"end_column":120,"end_line":267,"fragment":"","pointer":"","start_column":20,"start_line":267},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-35-progression-and-quest-reflection","target_ref":"../../../../techniques/continuity/donor-harvest/progression-evidence-lift/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:267:20:0:../../../../techniques/continuity/donor-harvest/progression-evidence-lift/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b19095e1ae884b34cca9723d","label":"Pack 36 - Automation Opportunity Gates","locator":{"end_column":42,"end_line":269,"fragment":"pack-36-automation-opportunity-gates","pointer":"","start_column":1,"start_line":269},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-36-automation-opportunity-gates","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2ff7220341144c593dd2d4ae","label":"AOA-T-0087","locator":{"end_column":234,"end_line":271,"fragment":"","pointer":"","start_column":125,"start_line":271},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-36-automation-opportunity-gates","target_ref":"../../../../techniques/governance/automation-readiness/human-loop-to-first-landing/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:271:125:1:../../../../techniques/governance/automation-readiness/human-loop-to-first-landing/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:30f190c97537c5f2747b5b93","label":"AOA-T-0088","locator":{"end_column":348,"end_line":271,"fragment":"","pointer":"","start_column":240,"start_line":271},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-36-automation-opportunity-gates","target_ref":"../../../../techniques/governance/automation-readiness/approval-sensitivity-check/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:271:240:2:../../../../techniques/governance/automation-readiness/approval-sensitivity-check/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8d62131131465263227ad049","label":"AOA-T-0086","locator":{"end_column":123,"end_line":271,"fragment":"","pointer":"","start_column":20,"start_line":271},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-36-automation-opportunity-gates","target_ref":"../../../../techniques/governance/automation-readiness/automation-fit-matrix/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:271:20:0:../../../../techniques/governance/automation-readiness/automation-fit-matrix/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ce32d711909221f84f10ad4","label":"Pack 37 - Quest Promotion Verdict","locator":{"end_column":37,"end_line":273,"fragment":"pack-37-quest-promotion-verdict","pointer":"","start_column":1,"start_line":273},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-37-quest-promotion-verdict","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b960808c670570a7cb9c1f31","label":"AOA-T-0089","locator":{"end_column":127,"end_line":275,"fragment":"","pointer":"","start_column":20,"start_line":275},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-37-quest-promotion-verdict","target_ref":"../../../../techniques/governance/promotion-boundary/quest-unit-promotion-review/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:275:20:0:../../../../techniques/governance/promotion-boundary/quest-unit-promotion-review/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:19fc30121fc06d6b20223aeb","label":"Pack 38 - Workspace Boundary And Proof Loop","locator":{"end_column":47,"end_line":277,"fragment":"pack-38-workspace-boundary-and-proof-loop","pointer":"","start_column":1,"start_line":277},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-38-workspace-boundary-and-proof-loop","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:24c5aa4606be9382fe6786a7","label":"AOA-T-0095","locator":{"end_column":607,"end_line":279,"fragment":"","pointer":"","start_column":488,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/github-only-owner-endcap-with-reality-sync/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:488:4:../../../../techniques/proof/owner-truth-closeout/github-only-owner-endcap-with-reality-sync/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:31af998caad6c612757c53a1","label":"AOA-T-0094","locator":{"end_column":486,"end_line":279,"fragment":"","pointer":"","start_column":372,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/canonical-owner-with-validated-mirror/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:372:3:../../../../techniques/proof/owner-truth-closeout/canonical-owner-with-validated-mirror/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3a7dd5ccd157b3887c4080a2","label":"AOA-T-0096","locator":{"end_column":739,"end_line":279,"fragment":"","pointer":"","start_column":613,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/pinned-validation-matrix-before-generated-publish/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:613:5:../../../../techniques/proof/owner-truth-closeout/pinned-validation-matrix-before-generated-publish/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c1ed18644f52f3969dc7ff29","label":"AOA-T-0093","locator":{"end_column":370,"end_line":279,"fragment":"","pointer":"","start_column":246,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/instruction/capability-boundary/recommendation-truth-vs-host-actionability/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:246:2:../../../../techniques/instruction/capability-boundary/recommendation-truth-vs-host-actionability/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c56bd0a4443763cd86334320","label":"AOA-T-0092","locator":{"end_column":244,"end_line":279,"fragment":"","pointer":"","start_column":139,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/audit-to-closeout-proof-loop/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:139:1:../../../../techniques/proof/owner-truth-closeout/audit-to-closeout-proof-loop/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:db0460a88ae1e89ffd1ee1e3","label":"AOA-T-0091","locator":{"end_column":137,"end_line":279,"fragment":"","pointer":"","start_column":20,"start_line":279},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-38-workspace-boundary-and-proof-loop","target_ref":"../../../../techniques/proof/owner-truth-closeout/workspace-root-ingress-and-mutation-gate/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:279:20:0:../../../../techniques/proof/owner-truth-closeout/workspace-root-ingress-and-mutation-gate/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c61f961cf30651fc28fe3400","label":"Pack 39 - Antifragility Recovery Fresh Scaffolding","locator":{"end_column":54,"end_line":281,"fragment":"pack-39-antifragility-recovery-fresh-scaffolding","pointer":"","start_column":1,"start_line":281},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-39-antifragility-recovery-fresh-scaffolding","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4430d0649b796b0d1f3ea2f5","label":"AOA-T-0100","locator":{"end_column":485,"end_line":283,"fragment":"","pointer":"","start_column":371,"start_line":283},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-39-antifragility-recovery-fresh-scaffolding","target_ref":"../../../../techniques/recovery/antifragility-recovery/stress-receipt-reground-closeout/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:283:371:3:../../../../techniques/recovery/antifragility-recovery/stress-receipt-reground-closeout/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9a860ac54b658074d8457933","label":"AOA-T-0099","locator":{"end_column":365,"end_line":283,"fragment":"","pointer":"","start_column":242,"start_line":283},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-39-antifragility-recovery-fresh-scaffolding","target_ref":"../../../../techniques/recovery/antifragility-recovery/isolated-service-stop-on-shared-substrate/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:283:242:2:../../../../techniques/recovery/antifragility-recovery/isolated-service-stop-on-shared-substrate/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a8f5e128ed87d4c7d476c612","label":"AOA-T-0097","locator":{"end_column":126,"end_line":283,"fragment":"","pointer":"","start_column":20,"start_line":283},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-39-antifragility-recovery-fresh-scaffolding","target_ref":"../../../../techniques/recovery/antifragility-recovery/degrade-reground-recover/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:283:20:0:../../../../techniques/recovery/antifragility-recovery/degrade-reground-recover/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ad976f59e4d9e5126636f146","label":"AOA-T-0098","locator":{"end_column":240,"end_line":283,"fragment":"","pointer":"","start_column":128,"start_line":283},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-39-antifragility-recovery-fresh-scaffolding","target_ref":"../../../../techniques/recovery/antifragility-recovery/receipt-first-failure-analysis/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:283:128:1:../../../../techniques/recovery/antifragility-recovery/receipt-first-failure-analysis/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6bcddf82bd68d3bbfc603857","label":"Pack 40 - Method-Growth Extraction Family","locator":{"end_column":45,"end_line":285,"fragment":"pack-40-method-growth-extraction-family","pointer":"","start_column":1,"start_line":285},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-40-method-growth-extraction-family","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1eb8f357366a7b420ed42715","label":"AOA-T-0102","locator":{"end_column":247,"end_line":287,"fragment":"","pointer":"","start_column":138,"start_line":287},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-40-method-growth-extraction-family","target_ref":"../../../../techniques/governance/promotion-boundary/skill-proposal-handoff-packet/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:287:138:1:../../../../techniques/governance/promotion-boundary/skill-proposal-handoff-packet/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a9d37a2508f0975bd88f39a","label":"AOA-T-0104","locator":{"end_column":504,"end_line":287,"fragment":"","pointer":"","start_column":377,"start_line":287},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-40-method-growth-extraction-family","target_ref":"../../../../techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:287:377:3:../../../../techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ee31ed5d7491b3d96c2701fe","label":"AOA-T-0103","locator":{"end_column":371,"end_line":287,"fragment":"","pointer":"","start_column":249,"start_line":287},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-40-method-growth-extraction-family","target_ref":"../../../../techniques/governance/practice-adoption-lifecycle/adopted-practice-retention-review/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:287:249:2:../../../../techniques/governance/practice-adoption-lifecycle/adopted-practice-retention-review/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fd03e767686fca3b1a6636c0","label":"AOA-T-0101","locator":{"end_column":136,"end_line":287,"fragment":"","pointer":"","start_column":20,"start_line":287},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-40-method-growth-extraction-family","target_ref":"../../../../techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:287:20:0:../../../../techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:253cf6938529c806e75462f7","label":"Pack 41 - Agon Handoff Extraction Family","locator":{"end_column":44,"end_line":289,"fragment":"pack-41-agon-handoff-extraction-family","pointer":"","start_column":1,"start_line":289},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:pack-41-agon-handoff-extraction-family","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2782ab4f6a88d08ddccca5f0","label":"AOA-T-0105","locator":{"end_column":123,"end_line":291,"fragment":"","pointer":"","start_column":20,"start_line":291},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-41-agon-handoff-extraction-family","target_ref":"../../../../techniques/proof/review-evidence/single-missing-evidence-request/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:291:20:0:../../../../techniques/proof/review-evidence/single-missing-evidence-request/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7e41883ba804ba8e227a66ef","label":"AOA-T-0107","locator":{"end_column":335,"end_line":291,"fragment":"","pointer":"","start_column":235,"start_line":291},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-41-agon-handoff-extraction-family","target_ref":"../../../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:291:235:2:../../../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:86f4fe28f6d7c96647d6a4af","label":"AOA-T-0106","locator":{"end_column":229,"end_line":291,"fragment":"","pointer":"","start_column":125,"start_line":291},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:pack-41-agon-handoff-extraction-family","target_ref":"../../../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:291:125:1:../../../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6bc63e5cbde854d4d81e60ce","label":"Suggested Wave Order","locator":{"end_column":23,"end_line":293,"fragment":"suggested-wave-order","pointer":"","start_column":1,"start_line":293},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:suggested-wave-order","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:14e1f350e58072642debecb3","label":"Notes","locator":{"end_column":8,"end_line":313,"fragment":"notes","pointer":"","start_column":1,"start_line":313},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:notes","source_record_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4c7980bcdd608534212bb1a3","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6f1fa69dbaee0c266e6740fa","label":"Split Agon Mechanics Into Active Parts And Legacy Provenance","locator":{"end_column":62,"end_line":1,"fragment":"split-agon-mechanics-into-active-parts-and-legacy-provenance","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:split-agon-mechanics-into-active-parts-and-legacy-provenance","source_record_id":"aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5461b6592414595e104eeeb8","label":"Index Metadata","locator":{"end_column":17,"end_line":6,"fragment":"index-metadata","pointer":"","start_column":1,"start_line":6},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:index-metadata","source_record_id":"aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -17213,8 +17268,8 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1a53e79d17365f43baa70eed","label":"Agon Landing Log","locator":{"end_column":18,"end_line":1,"fragment":"agon-landing-log","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agon-landing-log","source_record_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ef9985bfb1d1cfab095476b7","label":"2026-05-01 - Active/legacy split","locator":{"end_column":35,"end_line":6,"fragment":"2026-05-01-activelegacy-split","pointer":"","start_column":1,"start_line":6},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-activelegacy-split","source_record_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0d8d04550d7cfd1efa21d80d","label":"2026-05-03 - Distillation candidate handoff route","locator":{"end_column":52,"end_line":33,"fragment":"2026-05-03-distillation-candidate-handoff-route","pointer":"","start_column":1,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-distillation-candidate-handoff-route","source_record_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d60ff94ae4607a08f8fcfe10","label":"Distillation Agon Candidate Handoff","locator":{"end_column":96,"end_line":38,"fragment":"","pointer":"","start_column":3,"start_line":38},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-distillation-candidate-handoff-route","target_ref":"../distillation/parts/agon-candidate-handoff/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:38:3:0:../distillation/parts/agon-candidate-handoff/README.md","source_record_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0d8d04550d7cfd1efa21d80d","label":"2026-05-03 - Distillation candidate handoff route","locator":{"end_column":52,"end_line":27,"fragment":"2026-05-03-distillation-candidate-handoff-route","pointer":"","start_column":1,"start_line":27},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-distillation-candidate-handoff-route","source_record_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ed75d6caa2d586fcced636bd","label":"Distillation Agon Candidate Handoff","locator":{"end_column":96,"end_line":32,"fragment":"","pointer":"","start_column":3,"start_line":32},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-distillation-candidate-handoff-route","target_ref":"../distillation/parts/agon-candidate-handoff/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:32:3:0:../distillation/parts/agon-candidate-handoff/README.md","source_record_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1866c9a69aac2d1b6c2a5c83","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cd4adc387d060856bdd28846","label":"ExperienceMechanicsTopologyTestCase","locator":{"end_column":72,"end_line":193,"fragment":"","pointer":"","start_column":1,"start_line":82},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ExperienceMechanicsTopologyTestCase","semantic_key":"python:class:ExperienceMechanicsTopologyTestCase","source_record_id":"aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a72493dd263424443c81591f","label":"test_experience_active_surfaces_are_discoverable","locator":{"end_column":71,"end_line":86,"fragment":"","pointer":"","start_column":5,"start_line":83},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ExperienceMechanicsTopologyTestCase.test_experience_active_surfaces_are_discoverable","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ExperienceMechanicsTopologyTestCase.test_experience_active_surfaces_are_discoverable","target_ref":"python:self.subTest"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ExperienceMechanicsTopologyTestCase.test_experience_active_surfaces_are_discoverable","semantic_key":"python:method:ExperienceMechanicsTopologyTestCase.test_experience_active_surfaces_are_discoverable","source_record_id":"aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, @@ -17790,6 +17845,17 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5459a3fa2c70e5fdb3d145a4","label":"Checks","locator":{"end_column":9,"end_line":180,"fragment":"checks","pointer":"","start_column":1,"start_line":180},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:checks","source_record_id":"aoa:aoa-techniques:artifact:98a53b8158b65b6e4c5fd342","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e4854224a231b0031da95ae1","label":"Promotion history","locator":{"end_column":20,"end_line":184,"fragment":"promotion-history","pointer":"","start_column":1,"start_line":184},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:promotion-history","source_record_id":"aoa:aoa-techniques:artifact:98a53b8158b65b6e4c5fd342","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:23044ae4b0e611d161d5819d","label":"Future evolution","locator":{"end_column":19,"end_line":191,"fragment":"future-evolution","pointer":"","start_column":1,"start_line":191},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:future-evolution","source_record_id":"aoa:aoa-techniques:artifact:98a53b8158b65b6e4c5fd342","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6ba1f32ee415a1325e00a518","label":"measurements","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/measurements","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/measurements","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7a275e80e143d7cf2b0558f5","label":"evidence_posture","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/evidence_posture","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/evidence_posture","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:91b80959a91b3887be5d8e8b","label":"schema_version","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/schema_version","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/schema_version","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:971fe13135f403fda00199e8","label":"exports","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/exports","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/exports","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d65c2ab4b31d078234ff16ea","label":"contract_version","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/contract_version","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/contract_version","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:de1cbe45e89a2c422ba362a7","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e804a12e26fe1ba305cc0a8f","label":"central_contract_refs","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/central_contract_refs","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/central_contract_refs","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:edbce5cd9f1b853a28871f5d","label":"questions","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/questions","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/questions","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f1a1c1a78e84c3ed67b8c3f6","label":"owner_repo","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/owner_repo","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/owner_repo","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f76dfb8bca1cffe893ed3582","label":"owner_boundary_ref","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/owner_boundary_ref","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/owner_boundary_ref","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fd71534d60ef2bee2b0d5293","label":"status","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/status","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/status","source_record_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:12c2162d9aa0e2c3cf6a4895","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:98d3e0d3eb0a70f3435a1db2","label":"properties","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/properties","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/properties","source_record_id":"aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a290b49823e5ca8d0a03b63c","label":"type","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/type","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/type","source_record_id":"aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, @@ -19090,62 +19156,64 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8d55611909717d7cf58773a1","label":"Applies to","locator":{"end_column":13,"end_line":5,"fragment":"applies-to","pointer":"","start_column":1,"start_line":5},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:applies-to","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9d2403830947fc71db7adf3f","label":"Role","locator":{"end_column":7,"end_line":10,"fragment":"role","pointer":"","start_column":1,"start_line":10},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:role","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:60825be619a73f4873364c71","label":"Owner lane","locator":{"end_column":13,"end_line":19,"fragment":"owner-lane","pointer":"","start_column":1,"start_line":19},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:owner-lane","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:429afc9cb5f5b53405402a20","label":"DESIGN.AGENTS","locator":{"end_column":88,"end_line":35,"fragment":"","pointer":"","start_column":55,"start_line":35},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:owner-lane","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:35:55:1:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dcb1e09085d6bce30b047bd8","label":"DESIGN","locator":{"end_column":20,"end_line":35,"fragment":"","pointer":"","start_column":1,"start_line":35},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:owner-lane","target_ref":"DESIGN.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:35:1:0:DESIGN.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:57ba33b17ca0f23393e2f76a","label":"Read before editing","locator":{"end_column":22,"end_line":39,"fragment":"read-before-editing","pointer":"","start_column":1,"start_line":39},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:read-before-editing","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cfba5cd00e9791c29b9ad0ad","label":"README","locator":{"end_column":23,"end_line":41,"fragment":"","pointer":"","start_column":4,"start_line":41},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:41:4:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:21f1eb065165f20e8e73a666","label":"CHARTER","locator":{"end_column":25,"end_line":42,"fragment":"","pointer":"","start_column":4,"start_line":42},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:42:4:0:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5e3f539ff95a717d019b0086","label":"DESIGN","locator":{"end_column":23,"end_line":43,"fragment":"","pointer":"","start_column":4,"start_line":43},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"DESIGN.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:43:4:0:DESIGN.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:43f20032a71d61032521d7d2","label":"DESIGN.AGENTS","locator":{"end_column":37,"end_line":44,"fragment":"","pointer":"","start_column":4,"start_line":44},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:44:4:0:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:39ce7a6d2ea258f7316ed21a","label":"START_HERE","locator":{"end_column":36,"end_line":45,"fragment":"","pointer":"","start_column":4,"start_line":45},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/START_HERE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:45:4:0:docs/START_HERE.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:90e2f7b71c9ed11355ea82db","label":"TECHNIQUE_ATOM_CONTRACT","locator":{"end_column":62,"end_line":46,"fragment":"","pointer":"","start_column":4,"start_line":46},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:46:4:0:docs/TECHNIQUE_ATOM_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a6240e58998c1fe7723a00bb","label":"TECHNIQUE_TOPOLOGY_CONTRACT","locator":{"end_column":70,"end_line":47,"fragment":"","pointer":"","start_column":4,"start_line":47},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:47:4:0:docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d9244e22d8742b773bce9ed5","label":"TECHNIQUE_TREE_CONTRACT","locator":{"end_column":62,"end_line":48,"fragment":"","pointer":"","start_column":4,"start_line":48},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/TECHNIQUE_TREE_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:48:4:0:docs/TECHNIQUE_TREE_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:22e6dab5715494fa06bfe317","label":"ROADMAP","locator":{"end_column":25,"end_line":49,"fragment":"","pointer":"","start_column":4,"start_line":49},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:49:4:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9d461cb002fe87e4bfa345d1","label":"ROOT_SURFACE_LAW","locator":{"end_column":49,"end_line":50,"fragment":"","pointer":"","start_column":5,"start_line":50},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:50:5:0:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c139a461010ac16e732454be","label":"AGENTS_MESH_PROTOCOL","locator":{"end_column":68,"end_line":51,"fragment":"","pointer":"","start_column":5,"start_line":51},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:51:5:0:docs/guardrails/AGENTS_MESH_PROTOCOL.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f8c5b5299ed887d6a2563fb","label":"Root Legacy","locator":{"end_column":36,"end_line":52,"fragment":"","pointer":"","start_column":5,"start_line":52},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"legacy/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:52:5:0:legacy/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e6d30d6ffdf319bfb9b229f","label":"Mechanics","locator":{"end_column":37,"end_line":53,"fragment":"","pointer":"","start_column":5,"start_line":53},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:53:5:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:951c4ae7ac2cf4c0a0c7f94c","label":"Examples","locator":{"end_column":35,"end_line":54,"fragment":"","pointer":"","start_column":5,"start_line":54},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"examples/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:54:5:0:examples/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:621b26893fc316d3234d4d39","label":"TECHNIQUE_SELECTION","locator":{"end_column":73,"end_line":55,"fragment":"","pointer":"","start_column":5,"start_line":55},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/readers/selection/TECHNIQUE_SELECTION.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:55:5:0:docs/readers/selection/TECHNIQUE_SELECTION.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d67501a76168e7f50c3b00e7","label":"TECHNIQUE_KIND_GUIDE","locator":{"end_column":67,"end_line":56,"fragment":"","pointer":"","start_column":5,"start_line":56},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/selection/TECHNIQUE_KIND_GUIDE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:56:5:0:docs/selection/TECHNIQUE_KIND_GUIDE.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:98d68e791e10c82d355751ed","label":"Route modes","locator":{"end_column":14,"end_line":62,"fragment":"route-modes","pointer":"","start_column":1,"start_line":62},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:route-modes","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1453d073bc31cae67c2400a7","label":"README","locator":{"end_column":80,"end_line":66,"fragment":"","pointer":"","start_column":61,"start_line":66},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:66:61:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9e14bbaf50341f89d645a2ae","label":"START_HERE","locator":{"end_column":141,"end_line":66,"fragment":"","pointer":"","start_column":109,"start_line":66},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/START_HERE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:66:109:2:docs/START_HERE.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a34f8bd13081729e06819b6e","label":"CHARTER","locator":{"end_column":105,"end_line":66,"fragment":"","pointer":"","start_column":84,"start_line":66},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:66:84:1:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0c525535f7eeb73a22df9ab5","label":"TECHNIQUE_TOPOLOGY_CONTRACT","locator":{"end_column":211,"end_line":67,"fragment":"","pointer":"","start_column":145,"start_line":67},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:67:145:1:docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e2c8a29bb19d3099d7934938","label":"TECHNIQUE_ATOM_CONTRACT","locator":{"end_column":141,"end_line":67,"fragment":"","pointer":"","start_column":83,"start_line":67},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:67:83:0:docs/TECHNIQUE_ATOM_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9e07ff0583aefc32fa24128d","label":"TECHNIQUE_TOPOLOGY_CONTRACT","locator":{"end_column":214,"end_line":68,"fragment":"","pointer":"","start_column":148,"start_line":68},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:68:148:1:docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a0e5850bb0600398ecd00b50","label":"TECHNIQUE_TREE_CONTRACT","locator":{"end_column":144,"end_line":68,"fragment":"","pointer":"","start_column":86,"start_line":68},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/TECHNIQUE_TREE_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:68:86:0:docs/TECHNIQUE_TREE_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:02287707dace2f07879b7452","label":"CHARTER","locator":{"end_column":110,"end_line":69,"fragment":"","pointer":"","start_column":89,"start_line":69},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:69:89:0:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:984c51e5cd174162d46a71d4","label":"ROOT_SURFACE_LAW","locator":{"end_column":158,"end_line":69,"fragment":"","pointer":"","start_column":114,"start_line":69},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:69:114:1:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:368693287819d84dc7bc4fbb","label":"AGENTS_MESH_PROTOCOL","locator":{"end_column":192,"end_line":70,"fragment":"","pointer":"","start_column":129,"start_line":70},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:70:129:1:docs/guardrails/AGENTS_MESH_PROTOCOL.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:88f16bd7cbe58e6308a9d377","label":"DESIGN.AGENTS","locator":{"end_column":125,"end_line":70,"fragment":"","pointer":"","start_column":92,"start_line":70},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:70:92:0:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c2f116da7d360f4e0d5bec9b","label":"Legacy Index","locator":{"end_column":177,"end_line":71,"fragment":"","pointer":"","start_column":146,"start_line":71},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"legacy/INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:71:146:1:legacy/INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d86c6ecb2d3504c2009f57bc","label":"Root Legacy","locator":{"end_column":142,"end_line":71,"fragment":"","pointer":"","start_column":111,"start_line":71},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"legacy/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:71:111:0:legacy/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:77b997645928268663bfc321","label":"ROADMAP","locator":{"end_column":126,"end_line":72,"fragment":"","pointer":"","start_column":105,"start_line":72},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:72:105:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e605e42c31e5bae93f3145c1","label":"Mechanics","locator":{"end_column":161,"end_line":73,"fragment":"","pointer":"","start_column":129,"start_line":73},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:73:129:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:21c1420591afbd0f024876a9","label":"AGENTS stack law","locator":{"end_column":19,"end_line":76,"fragment":"agents-stack-law","pointer":"","start_column":1,"start_line":76},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agents-stack-law","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d064c83eb43aa65273b66166","label":"Memory route","locator":{"end_column":15,"end_line":85,"fragment":"memory-route","pointer":"","start_column":1,"start_line":85},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:memory-route","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9ff75e006dc8fe2e2fca2766","label":"GitHub landing workflow","locator":{"end_column":26,"end_line":93,"fragment":"github-landing-workflow","pointer":"","start_column":1,"start_line":93},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:github-landing-workflow","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3453604a5639da0dcc6fdfbf","label":"AGENTS","locator":{"end_column":25,"end_line":95,"fragment":"","pointer":"","start_column":6,"start_line":95},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:github-landing-workflow","target_ref":"AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:95:6:0:AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:03e7707bce2abb92ee2a4130","label":".github/AGENTS","locator":{"end_column":36,"end_line":96,"fragment":"","pointer":"","start_column":1,"start_line":96},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:github-landing-workflow","target_ref":".github/AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:96:1:0:.github/AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:01a21be886b4783ee5edccf8","label":"Post-change route review","locator":{"end_column":27,"end_line":116,"fragment":"post-change-route-review","pointer":"","start_column":1,"start_line":116},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:post-change-route-review","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a14bc0d03fe3ed1ea2c454cb","label":"ROADMAP","locator":{"end_column":24,"end_line":121,"fragment":"","pointer":"","start_column":3,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:3:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d66eb2f290f94557bab7262","label":"CHANGELOG","locator":{"end_column":28,"end_line":124,"fragment":"","pointer":"","start_column":3,"start_line":124},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"CHANGELOG.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:124:3:0:CHANGELOG.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64472a616021b103fe61486a","label":"decisions","locator":{"end_column":31,"end_line":126,"fragment":"","pointer":"","start_column":3,"start_line":126},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"docs/decisions/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:126:3:0:docs/decisions/","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5fe5233cf23bb6eae2c6b43a","label":"quests","locator":{"end_column":49,"end_line":133,"fragment":"","pointer":"","start_column":32,"start_line":133},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"quests/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:133:32:1:quests/","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c10861f71ddbe10cb69886c6","label":"QUESTBOOK","locator":{"end_column":28,"end_line":133,"fragment":"","pointer":"","start_column":3,"start_line":133},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"QUESTBOOK.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:133:3:0:QUESTBOOK.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b77a0835ac722ca3820f4ee7","label":"Boundaries","locator":{"end_column":13,"end_line":137,"fragment":"boundaries","pointer":"","start_column":1,"start_line":137},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:boundaries","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e8797a499ff469c20e088276","label":"ROOT_SURFACE_LAW","locator":{"end_column":56,"end_line":148,"fragment":"","pointer":"","start_column":12,"start_line":148},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:boundaries","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:148:12:0:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1732d3994e11407bb2b9cf83","label":"Route away when","locator":{"end_column":18,"end_line":150,"fragment":"route-away-when","pointer":"","start_column":1,"start_line":150},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:route-away-when","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3db99799eb1bf48acaadfb95","label":"Validation","locator":{"end_column":13,"end_line":157,"fragment":"validation","pointer":"","start_column":1,"start_line":157},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48d8975a8c39a2e9d232d548","label":"validation_lanes","locator":{"end_column":67,"end_line":160,"fragment":"","pointer":"","start_column":19,"start_line":160},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:validation","target_ref":"config/validation_lanes.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:160:19:0:config/validation_lanes.json","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a3f9bc7a90fbb91b226d1de5","label":"Validator Topology","locator":{"end_column":78,"end_line":161,"fragment":"","pointer":"","start_column":19,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:validation","target_ref":"docs/validation/VALIDATOR_TOPOLOGY.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:161:19:0:docs/validation/VALIDATOR_TOPOLOGY.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2a090acf9434ebb24a23cb13","label":"Command Authority","locator":{"end_column":58,"end_line":171,"fragment":"","pointer":"","start_column":1,"start_line":171},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:validation","target_ref":"docs/validation/COMMAND_AUTHORITY.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:171:1:0:docs/validation/COMMAND_AUTHORITY.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69769fb08f744fb2bb4ebc1b","label":"Closeout","locator":{"end_column":11,"end_line":181,"fragment":"closeout","pointer":"","start_column":1,"start_line":181},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:closeout","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e8e7b755b3eb63c343af3929","label":"Historical Reference","locator":{"end_column":23,"end_line":188,"fragment":"historical-reference","pointer":"","start_column":1,"start_line":188},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:historical-reference","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0116b3ca01d409294f051b5f","label":"AGENTS_ROOT_REFERENCE","locator":{"end_column":68,"end_line":191,"fragment":"","pointer":"","start_column":4,"start_line":191},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:historical-reference","target_ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:191:4:0:legacy/archive/AGENTS_ROOT_REFERENCE.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:77bb3b22324d338cc2b67077","label":"DESIGN.AGENTS","locator":{"end_column":88,"end_line":38,"fragment":"","pointer":"","start_column":55,"start_line":38},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:owner-lane","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:38:55:1:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:81e3a4bba16a9b3e60fa301b","label":"DESIGN","locator":{"end_column":20,"end_line":38,"fragment":"","pointer":"","start_column":1,"start_line":38},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:owner-lane","target_ref":"DESIGN.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:38:1:0:DESIGN.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:57ba33b17ca0f23393e2f76a","label":"Read before editing","locator":{"end_column":22,"end_line":42,"fragment":"read-before-editing","pointer":"","start_column":1,"start_line":42},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:read-before-editing","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2c222e41c108df75fd5f5537","label":"README","locator":{"end_column":23,"end_line":44,"fragment":"","pointer":"","start_column":4,"start_line":44},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:44:4:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a789783fa52718b2b9276d5","label":"CHARTER","locator":{"end_column":25,"end_line":45,"fragment":"","pointer":"","start_column":4,"start_line":45},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:45:4:0:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0a913978bfc2eae8079bb703","label":"DESIGN","locator":{"end_column":23,"end_line":46,"fragment":"","pointer":"","start_column":4,"start_line":46},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"DESIGN.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:46:4:0:DESIGN.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7664d1146b8ca28a28efba31","label":"DESIGN.AGENTS","locator":{"end_column":37,"end_line":47,"fragment":"","pointer":"","start_column":4,"start_line":47},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:47:4:0:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c11be9b8831abff1a866ae75","label":"START_HERE","locator":{"end_column":36,"end_line":48,"fragment":"","pointer":"","start_column":4,"start_line":48},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/START_HERE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:48:4:0:docs/START_HERE.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:05ffacbb2ce4c4221b21488d","label":"TECHNIQUE_ATOM_CONTRACT","locator":{"end_column":62,"end_line":49,"fragment":"","pointer":"","start_column":4,"start_line":49},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:49:4:0:docs/TECHNIQUE_ATOM_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f4a7b885186c6363df5a3d51","label":"TECHNIQUE_TOPOLOGY_CONTRACT","locator":{"end_column":70,"end_line":50,"fragment":"","pointer":"","start_column":4,"start_line":50},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:50:4:0:docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aabb13ce836d312305dc5a3c","label":"TECHNIQUE_TREE_CONTRACT","locator":{"end_column":62,"end_line":51,"fragment":"","pointer":"","start_column":4,"start_line":51},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/TECHNIQUE_TREE_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:51:4:0:docs/TECHNIQUE_TREE_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f52a8319522c8a7673c3c636","label":"ROADMAP","locator":{"end_column":25,"end_line":52,"fragment":"","pointer":"","start_column":4,"start_line":52},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:52:4:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d24ccb57e832729b95500dff","label":"ROOT_SURFACE_LAW","locator":{"end_column":49,"end_line":53,"fragment":"","pointer":"","start_column":5,"start_line":53},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:53:5:0:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c13d9c01d5395371f5d5eb80","label":"AGENTS_MESH_PROTOCOL","locator":{"end_column":68,"end_line":54,"fragment":"","pointer":"","start_column":5,"start_line":54},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:54:5:0:docs/guardrails/AGENTS_MESH_PROTOCOL.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ad7f6d106be0523b2292880f","label":"Root Legacy","locator":{"end_column":36,"end_line":55,"fragment":"","pointer":"","start_column":5,"start_line":55},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"legacy/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:55:5:0:legacy/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8927db91f71dbb5bd3681c75","label":"Mechanics","locator":{"end_column":37,"end_line":56,"fragment":"","pointer":"","start_column":5,"start_line":56},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:56:5:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dd5891e3cf1de49b22cda859","label":"Examples","locator":{"end_column":35,"end_line":57,"fragment":"","pointer":"","start_column":5,"start_line":57},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"examples/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:57:5:0:examples/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a6d80cd98daa7425c0740522","label":"TECHNIQUE_SELECTION","locator":{"end_column":73,"end_line":58,"fragment":"","pointer":"","start_column":5,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/readers/selection/TECHNIQUE_SELECTION.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:5:0:docs/readers/selection/TECHNIQUE_SELECTION.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3b4a5f7d003ac279fadde58a","label":"TECHNIQUE_KIND_GUIDE","locator":{"end_column":67,"end_line":59,"fragment":"","pointer":"","start_column":5,"start_line":59},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"docs/selection/TECHNIQUE_KIND_GUIDE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:59:5:0:docs/selection/TECHNIQUE_KIND_GUIDE.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bbe416603ed692f5f79f522f","label":"Stats","locator":{"end_column":29,"end_line":64,"fragment":"","pointer":"","start_column":5,"start_line":64},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:read-before-editing","target_ref":"stats/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:64:5:0:stats/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:98d68e791e10c82d355751ed","label":"Route modes","locator":{"end_column":14,"end_line":66,"fragment":"route-modes","pointer":"","start_column":1,"start_line":66},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:route-modes","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a12810e84328c18b2797c7c","label":"START_HERE","locator":{"end_column":141,"end_line":70,"fragment":"","pointer":"","start_column":109,"start_line":70},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/START_HERE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:70:109:2:docs/START_HERE.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9fb6bb7331181925281abde0","label":"CHARTER","locator":{"end_column":105,"end_line":70,"fragment":"","pointer":"","start_column":84,"start_line":70},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:70:84:1:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d282dc7b1e5b35ee436a1b41","label":"README","locator":{"end_column":80,"end_line":70,"fragment":"","pointer":"","start_column":61,"start_line":70},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:70:61:0:README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:18f3af2b46aed514a36210e8","label":"TECHNIQUE_TOPOLOGY_CONTRACT","locator":{"end_column":211,"end_line":71,"fragment":"","pointer":"","start_column":145,"start_line":71},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:71:145:1:docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:82eca3b4c7738ab96585b303","label":"TECHNIQUE_ATOM_CONTRACT","locator":{"end_column":141,"end_line":71,"fragment":"","pointer":"","start_column":83,"start_line":71},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:71:83:0:docs/TECHNIQUE_ATOM_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:05cfb4955ba12fa10807acca","label":"TECHNIQUE_TREE_CONTRACT","locator":{"end_column":144,"end_line":72,"fragment":"","pointer":"","start_column":86,"start_line":72},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/TECHNIQUE_TREE_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:72:86:0:docs/TECHNIQUE_TREE_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9dd4cd5cc4933684969046a6","label":"TECHNIQUE_TOPOLOGY_CONTRACT","locator":{"end_column":214,"end_line":72,"fragment":"","pointer":"","start_column":148,"start_line":72},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:72:148:1:docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1dd46488097510941cb09429","label":"CHARTER","locator":{"end_column":110,"end_line":73,"fragment":"","pointer":"","start_column":89,"start_line":73},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:73:89:0:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:276d49c99f6b4dbb906b98d6","label":"ROOT_SURFACE_LAW","locator":{"end_column":158,"end_line":73,"fragment":"","pointer":"","start_column":114,"start_line":73},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:73:114:1:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:07efbd02212669b432559da3","label":"AGENTS_MESH_PROTOCOL","locator":{"end_column":192,"end_line":74,"fragment":"","pointer":"","start_column":129,"start_line":74},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:74:129:1:docs/guardrails/AGENTS_MESH_PROTOCOL.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5eba21ed39c3b90ad039a243","label":"DESIGN.AGENTS","locator":{"end_column":125,"end_line":74,"fragment":"","pointer":"","start_column":92,"start_line":74},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:74:92:0:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:42628f513030d2f6328df1e0","label":"Root Legacy","locator":{"end_column":142,"end_line":75,"fragment":"","pointer":"","start_column":111,"start_line":75},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"legacy/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:75:111:0:legacy/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:700a483c5eaf7db1d0d69595","label":"Legacy Index","locator":{"end_column":177,"end_line":75,"fragment":"","pointer":"","start_column":146,"start_line":75},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"legacy/INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:75:146:1:legacy/INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f3c688f5804ea9ee36c0289d","label":"ROADMAP","locator":{"end_column":126,"end_line":76,"fragment":"","pointer":"","start_column":105,"start_line":76},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:76:105:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:acc164ce2e7122a23f49e3b6","label":"Mechanics","locator":{"end_column":161,"end_line":77,"fragment":"","pointer":"","start_column":129,"start_line":77},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:77:129:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:da6cc923308fd3ba7d481ceb","label":"Stats","locator":{"end_column":121,"end_line":79,"fragment":"","pointer":"","start_column":97,"start_line":79},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"stats/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:79:97:0:stats/README.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:21c1420591afbd0f024876a9","label":"AGENTS stack law","locator":{"end_column":19,"end_line":81,"fragment":"agents-stack-law","pointer":"","start_column":1,"start_line":81},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agents-stack-law","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d064c83eb43aa65273b66166","label":"Memory route","locator":{"end_column":15,"end_line":90,"fragment":"memory-route","pointer":"","start_column":1,"start_line":90},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:memory-route","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9ff75e006dc8fe2e2fca2766","label":"GitHub landing workflow","locator":{"end_column":26,"end_line":98,"fragment":"github-landing-workflow","pointer":"","start_column":1,"start_line":98},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:github-landing-workflow","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fb14ced764be749f595ed32f","label":"AGENTS","locator":{"end_column":25,"end_line":100,"fragment":"","pointer":"","start_column":6,"start_line":100},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:github-landing-workflow","target_ref":"AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:100:6:0:AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f2ce60536e09ba762b2188e5","label":".github/AGENTS","locator":{"end_column":36,"end_line":101,"fragment":"","pointer":"","start_column":1,"start_line":101},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:github-landing-workflow","target_ref":".github/AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:101:1:0:.github/AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:01a21be886b4783ee5edccf8","label":"Post-change route review","locator":{"end_column":27,"end_line":121,"fragment":"post-change-route-review","pointer":"","start_column":1,"start_line":121},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:post-change-route-review","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:170d676b1f20fd7d7ce4bd17","label":"ROADMAP","locator":{"end_column":24,"end_line":126,"fragment":"","pointer":"","start_column":3,"start_line":126},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:126:3:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:799799f13327188d24707552","label":"CHANGELOG","locator":{"end_column":28,"end_line":129,"fragment":"","pointer":"","start_column":3,"start_line":129},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"CHANGELOG.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:129:3:0:CHANGELOG.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aa0dbf8d0848328ded4fe6e0","label":"decisions","locator":{"end_column":31,"end_line":131,"fragment":"","pointer":"","start_column":3,"start_line":131},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"docs/decisions/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:131:3:0:docs/decisions/","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:43cb93965c277605aaaf9ef5","label":"QUESTBOOK","locator":{"end_column":28,"end_line":138,"fragment":"","pointer":"","start_column":3,"start_line":138},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"QUESTBOOK.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:138:3:0:QUESTBOOK.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4d3f4ef66f189532e2a0baa4","label":"quests","locator":{"end_column":49,"end_line":138,"fragment":"","pointer":"","start_column":32,"start_line":138},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:post-change-route-review","target_ref":"quests/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:138:32:1:quests/","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b77a0835ac722ca3820f4ee7","label":"Boundaries","locator":{"end_column":13,"end_line":142,"fragment":"boundaries","pointer":"","start_column":1,"start_line":142},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:boundaries","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ab8ba7ab90b108d6208b07b","label":"ROOT_SURFACE_LAW","locator":{"end_column":56,"end_line":153,"fragment":"","pointer":"","start_column":12,"start_line":153},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:boundaries","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:153:12:0:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1732d3994e11407bb2b9cf83","label":"Route away when","locator":{"end_column":18,"end_line":157,"fragment":"route-away-when","pointer":"","start_column":1,"start_line":157},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:route-away-when","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3db99799eb1bf48acaadfb95","label":"Validation","locator":{"end_column":13,"end_line":164,"fragment":"validation","pointer":"","start_column":1,"start_line":164},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validation","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4167a69736987057c6a7f6f3","label":"validation_lanes","locator":{"end_column":67,"end_line":167,"fragment":"","pointer":"","start_column":19,"start_line":167},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:validation","target_ref":"config/validation_lanes.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:167:19:0:config/validation_lanes.json","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:951b3f72ac9b3e0dd7575e0e","label":"Validator Topology","locator":{"end_column":78,"end_line":168,"fragment":"","pointer":"","start_column":19,"start_line":168},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:validation","target_ref":"docs/validation/VALIDATOR_TOPOLOGY.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:168:19:0:docs/validation/VALIDATOR_TOPOLOGY.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ba2ed9f8f4c941f64fada6b9","label":"Command Authority","locator":{"end_column":58,"end_line":178,"fragment":"","pointer":"","start_column":1,"start_line":178},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:validation","target_ref":"docs/validation/COMMAND_AUTHORITY.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:178:1:0:docs/validation/COMMAND_AUTHORITY.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69769fb08f744fb2bb4ebc1b","label":"Closeout","locator":{"end_column":11,"end_line":188,"fragment":"closeout","pointer":"","start_column":1,"start_line":188},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:closeout","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e8e7b755b3eb63c343af3929","label":"Historical Reference","locator":{"end_column":23,"end_line":195,"fragment":"historical-reference","pointer":"","start_column":1,"start_line":195},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:historical-reference","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f969c864f7a49260b2cbb907","label":"AGENTS_ROOT_REFERENCE","locator":{"end_column":68,"end_line":198,"fragment":"","pointer":"","start_column":4,"start_line":198},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:historical-reference","target_ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:198:4:0:legacy/archive/AGENTS_ROOT_REFERENCE.md","source_record_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:412aea3b9ddd0557a716abad","label":"Agon Wave15 Techniques Landing","locator":{"end_column":32,"end_line":1,"fragment":"agon-wave15-techniques-landing","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:agon-wave15-techniques-landing","source_record_id":"aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:952644c92cdcb3fd86ed2a8b","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:91fbf6a2a1fd7ad75f3fdf24","label":"Growth Cycle Raw Legacy","locator":{"end_column":25,"end_line":1,"fragment":"growth-cycle-raw-legacy","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:growth-cycle-raw-legacy","source_record_id":"aoa:aoa-techniques:artifact:a5c71d3a62692c33b883e995","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -19324,12 +19392,13 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:14a771578f2e3e2199b850b4","label":"Evidence","locator":{"end_column":11,"end_line":40,"fragment":"evidence","pointer":"","start_column":1,"start_line":40},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:evidence","source_record_id":"aoa:aoa-techniques:artifact:a76c231fba7c6f26d153da5e","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a75d447bc7fff662c981a7ad","label":"Result","locator":{"end_column":9,"end_line":47,"fragment":"result","pointer":"","start_column":1,"start_line":47},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:result","source_record_id":"aoa:aoa-techniques:artifact:a76c231fba7c6f26d153da5e","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:600bf60f135562857113242d","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:27ce4954636bd65273feacf3","label":"GitHubWorkflowTopologyTests","locator":{"end_column":10,"end_line":74,"fragment":"","pointer":"","start_column":1,"start_line":14},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests","semantic_key":"python:class:GitHubWorkflowTopologyTests","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9607bc937250a32249da1f74","label":"workflow_text","locator":{"end_column":62,"end_line":16,"fragment":"","pointer":"","start_column":5,"start_line":15},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.workflow_text","semantic_key":"python:method:GitHubWorkflowTopologyTests.workflow_text","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:357329e8dd5f0b0ca30b5066","label":"test_repo_validation_is_growth_safe_and_not_release_freeze","locator":{"end_column":70,"end_line":33,"fragment":"","pointer":"","start_column":5,"start_line":18},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.workflow_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7461e2173b7a76f19342f498","label":"test_release_and_nightly_have_separate_workflows","locator":{"end_column":51,"end_line":51,"fragment":"","pointer":"","start_column":5,"start_line":35},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.workflow_text"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.workflow_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:19b71cbffd85fe02fdb76309","label":"test_workflows_use_pinned_actions","locator":{"end_column":84,"end_line":60,"fragment":"","pointer":"","start_column":5,"start_line":53},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:WORKFLOWS.glob"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:re.compile"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:re.compile"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.assertNotRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.assertNotRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:sorted"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:workflow_path.read_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e2bce5ada47f2cd1ba20c015","label":"test_pull_request_template_names_lanes_not_release_check_as_repo_validation","locator":{"end_column":10,"end_line":74,"fragment":"","pointer":"","start_column":5,"start_line":62},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","target_ref":"python:self.assertNotIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:27ce4954636bd65273feacf3","label":"GitHubWorkflowTopologyTests","locator":{"end_column":10,"end_line":98,"fragment":"","pointer":"","start_column":1,"start_line":16},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests","semantic_key":"python:class:GitHubWorkflowTopologyTests","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9607bc937250a32249da1f74","label":"workflow_text","locator":{"end_column":62,"end_line":18,"fragment":"","pointer":"","start_column":5,"start_line":17},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.workflow_text","semantic_key":"python:method:GitHubWorkflowTopologyTests.workflow_text","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:357329e8dd5f0b0ca30b5066","label":"test_repo_validation_is_growth_safe_and_not_release_freeze","locator":{"end_column":70,"end_line":35,"fragment":"","pointer":"","start_column":5,"start_line":20},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","target_ref":"python:self.workflow_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7461e2173b7a76f19342f498","label":"test_release_and_nightly_have_separate_workflows","locator":{"end_column":51,"end_line":53,"fragment":"","pointer":"","start_column":5,"start_line":37},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.workflow_text"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","target_ref":"python:self.workflow_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:19b71cbffd85fe02fdb76309","label":"test_workflows_use_pinned_actions","locator":{"end_column":84,"end_line":62,"fragment":"","pointer":"","start_column":5,"start_line":55},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:WORKFLOWS.glob"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:re.compile"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:re.compile"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.assertNotRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.assertNotRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:sorted"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","target_ref":"python:workflow_path.read_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:75a0bd324161bb9d5b6acb7a","label":"test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","locator":{"end_column":76,"end_line":84,"fragment":"","pointer":"","start_column":5,"start_line":64},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:nightly.count"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:nightly.count"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:nightly.split"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.workflow_text"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.workflow_text"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","target_ref":"python:self.workflow_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e2bce5ada47f2cd1ba20c015","label":"test_pull_request_template_names_lanes_not_release_check_as_repo_validation","locator":{"end_column":10,"end_line":98,"fragment":"","pointer":"","start_column":5,"start_line":86},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","target_ref":"python:self.assertNotIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","source_record_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4355f690d1553f94df0e20d7","label":"Canonical Readiness","locator":{"end_column":21,"end_line":1,"fragment":"canonical-readiness","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:canonical-readiness","source_record_id":"aoa:aoa-techniques:artifact:a805db5f17fa027905cc9bb1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8d7e3d38cd6bdf24a5f2fdba","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:a805db5f17fa027905cc9bb1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8021d4c5626a1db127d8f83d","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:a805db5f17fa027905cc9bb1","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -19677,10 +19746,10 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d581862676a6ae5a561ce491","label":"Inventory","locator":{"end_column":12,"end_line":12,"fragment":"inventory","pointer":"","start_column":1,"start_line":12},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:inventory","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1381939bc326056d1bb92881","label":"`script_inventory.json`","locator":{"end_column":49,"end_line":15,"fragment":"","pointer":"","start_column":1,"start_line":15},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:inventory","target_ref":"script_inventory.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:15:1:0:script_inventory.json","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:22425fad38b2ce0fced97b7f","label":"Script Families","locator":{"end_column":18,"end_line":38,"fragment":"script-families","pointer":"","start_column":1,"start_line":38},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:script-families","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fcbd69d479fb6861886aa479","label":"Root Scripts","locator":{"end_column":15,"end_line":53,"fragment":"root-scripts","pointer":"","start_column":1,"start_line":53},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:root-scripts","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3a9a2ba5e5cc9f6c49b9784f","label":"`validator_inventory.json`","locator":{"end_column":55,"end_line":62,"fragment":"","pointer":"","start_column":1,"start_line":62},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:root-scripts","target_ref":"validator_inventory.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:62:1:0:validator_inventory.json","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69376b2f6800f4602749ab05","label":"Non-Root Scripts","locator":{"end_column":19,"end_line":65,"fragment":"non-root-scripts","pointer":"","start_column":1,"start_line":65},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:non-root-scripts","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ca3090eed8535d53e98b43fd","label":"Promotion Rule","locator":{"end_column":17,"end_line":88,"fragment":"promotion-rule","pointer":"","start_column":1,"start_line":88},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:promotion-rule","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fcbd69d479fb6861886aa479","label":"Root Scripts","locator":{"end_column":15,"end_line":54,"fragment":"root-scripts","pointer":"","start_column":1,"start_line":54},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:root-scripts","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:814f473e8aedfbdcf0db36bd","label":"`validator_inventory.json`","locator":{"end_column":55,"end_line":63,"fragment":"","pointer":"","start_column":1,"start_line":63},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:root-scripts","target_ref":"validator_inventory.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:63:1:0:validator_inventory.json","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69376b2f6800f4602749ab05","label":"Non-Root Scripts","locator":{"end_column":19,"end_line":70,"fragment":"non-root-scripts","pointer":"","start_column":1,"start_line":70},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:non-root-scripts","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ca3090eed8535d53e98b43fd","label":"Promotion Rule","locator":{"end_column":17,"end_line":93,"fragment":"promotion-rule","pointer":"","start_column":1,"start_line":93},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:promotion-rule","source_record_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0523824e689a3fd4231cbf59","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:aab6fd5018245ef251fae0f3","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:071eb88bb5e858b05f24e0e5","label":"allowed","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/allowed","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/allowed","source_record_id":"aoa:aoa-techniques:artifact:aab6fd5018245ef251fae0f3","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:12872aa0fa3ee4b37f5d1678","label":"id","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/id","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/id","source_record_id":"aoa:aoa-techniques:artifact:aab6fd5018245ef251fae0f3","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, @@ -20427,46 +20496,48 @@ {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2f73911bd0452e2bed685ddd","label":"mechanics","locator":{"end_column":54,"end_line":75,"fragment":"","pointer":"","start_column":22,"start_line":75},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:75:22:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b7534e55a7033763f9e9c937","label":"ROOT_SURFACE_LAW","locator":{"end_column":63,"end_line":76,"fragment":"","pointer":"","start_column":19,"start_line":76},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"docs/ROOT_SURFACE_LAW.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:76:19:0:docs/ROOT_SURFACE_LAW.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:babf75b77b00d1f921d4d991","label":"DESIGN.AGENTS","locator":{"end_column":60,"end_line":77,"fragment":"","pointer":"","start_column":27,"start_line":77},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"DESIGN.AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:77:27:0:DESIGN.AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0965e99bbe635a5315c73b51","label":"Technique Check","locator":{"end_column":18,"end_line":80,"fragment":"technique-check","pointer":"","start_column":1,"start_line":80},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique-check","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5b285563602909efda7e4ee4","label":"TECHNIQUE_ATOM_CONTRACT","locator":{"end_column":74,"end_line":84,"fragment":"","pointer":"","start_column":16,"start_line":84},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:84:16:0:docs/TECHNIQUE_ATOM_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:52ab658af9073adfe768c681","label":"CHARTER","locator":{"end_column":37,"end_line":85,"fragment":"","pointer":"","start_column":16,"start_line":85},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:85:16:0:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f5597a3869dadeb89846f344","label":"TECHNIQUE_ATOM_CONTRACT","locator":{"end_column":61,"end_line":86,"fragment":"","pointer":"","start_column":3,"start_line":86},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:86:3:0:docs/TECHNIQUE_ATOM_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6f05a1a41b5f892f084bef20","label":"TECHNIQUE_TOPOLOGY_CONTRACT","locator":{"end_column":85,"end_line":87,"fragment":"","pointer":"","start_column":19,"start_line":87},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:87:19:0:docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8c7bc2a3c20c487d86f94716","label":"TECHNIQUE_KIND_GUIDE","locator":{"end_column":65,"end_line":88,"fragment":"","pointer":"","start_column":3,"start_line":88},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/selection/TECHNIQUE_KIND_GUIDE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:88:3:0:docs/selection/TECHNIQUE_KIND_GUIDE.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5860643211bc1d4156f3cf2e","label":"TECHNIQUE_INDEX","locator":{"end_column":40,"end_line":89,"fragment":"","pointer":"","start_column":3,"start_line":89},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:89:3:0:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2bad2d33f463d1a9ca37e2f1","label":"TECHNIQUE_TREE_CONTRACT","locator":{"end_column":74,"end_line":90,"fragment":"","pointer":"","start_column":16,"start_line":90},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/TECHNIQUE_TREE_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:90:16:0:docs/TECHNIQUE_TREE_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ec3040a63d6a8a886c25b7b7","label":"CHARTER","locator":{"end_column":53,"end_line":91,"fragment":"","pointer":"","start_column":32,"start_line":91},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:91:32:0:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fbc0fd92e0d0d1d0a2c1bd38","label":"AGENTS","locator":{"end_column":77,"end_line":91,"fragment":"","pointer":"","start_column":58,"start_line":91},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:91:58:1:AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7c5c5bb579f0af4cc9cf6bd1","label":"ROADMAP","locator":{"end_column":84,"end_line":92,"fragment":"","pointer":"","start_column":63,"start_line":92},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:92:63:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0c876d8ba7ef9be53fca4d8a","label":"CHANGELOG","locator":{"end_column":28,"end_line":93,"fragment":"","pointer":"","start_column":3,"start_line":93},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"CHANGELOG.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:93:3:0:CHANGELOG.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44f1fccf8012750381cc1d0b","label":"QUESTBOOK","locator":{"end_column":55,"end_line":93,"fragment":"","pointer":"","start_column":30,"start_line":93},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"QUESTBOOK.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:93:30:1:QUESTBOOK.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:87713b30e3435494aeb0c624","label":"Repo Doc Surfaces","locator":{"end_column":62,"end_line":95,"fragment":"","pointer":"","start_column":3,"start_line":95},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/readers/repo/REPO_DOC_SURFACES.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:95:3:0:docs/readers/repo/REPO_DOC_SURFACES.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:363340ebccf82059eb8c4571","label":"Current Contour","locator":{"end_column":18,"end_line":97,"fragment":"current-contour","pointer":"","start_column":1,"start_line":97},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:current-contour","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:72670ca22d12a164270d9ca8","label":"TECHNIQUE_INDEX","locator":{"end_column":42,"end_line":102,"fragment":"","pointer":"","start_column":5,"start_line":102},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-contour","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:102:5:0:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:acfd48f56f01e67a001f28ee","label":"technique_catalog.min.json","locator":{"end_column":67,"end_line":103,"fragment":"","pointer":"","start_column":1,"start_line":103},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-contour","target_ref":"generated/technique_catalog.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:103:1:0:generated/technique_catalog.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1a4571b6b91dcd0c7bc44e95","label":"ROADMAP","locator":{"end_column":31,"end_line":104,"fragment":"","pointer":"","start_column":10,"start_line":104},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-contour","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:104:10:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f3cc3dab534a836b55d040c1","label":"Practice Mechanics","locator":{"end_column":21,"end_line":107,"fragment":"practice-mechanics","pointer":"","start_column":1,"start_line":107},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:practice-mechanics","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:52222b2561928759c527fb53","label":"Mechanics","locator":{"end_column":33,"end_line":109,"fragment":"","pointer":"","start_column":1,"start_line":109},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:practice-mechanics","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:109:1:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:32a0fa3022807efd46f5626e","label":"Technical Districts","locator":{"end_column":22,"end_line":116,"fragment":"technical-districts","pointer":"","start_column":1,"start_line":116},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technical-districts","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aef6ac8fe365ca23aa721f39","label":"techniques","locator":{"end_column":28,"end_line":120,"fragment":"","pointer":"","start_column":3,"start_line":120},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"techniques/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:120:3:0:techniques/","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:816e0e27902aa2f2443b4991","label":"docs","locator":{"end_column":25,"end_line":121,"fragment":"","pointer":"","start_column":3,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"docs/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:3:0:docs/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e6987af2f9993f00e7e6cb65","label":"mechanics","locator":{"end_column":35,"end_line":122,"fragment":"","pointer":"","start_column":3,"start_line":122},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:122:3:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e908b145acde179053e3dc92","label":"generated","locator":{"end_column":26,"end_line":123,"fragment":"","pointer":"","start_column":3,"start_line":123},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"generated/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:123:3:0:generated/","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bdaf066457a73ab52219737e","label":"examples","locator":{"end_column":33,"end_line":124,"fragment":"","pointer":"","start_column":3,"start_line":124},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"examples/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:124:3:0:examples/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f8cabc03eb18c1ddf6743693","label":"templates","locator":{"end_column":26,"end_line":125,"fragment":"","pointer":"","start_column":3,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"templates/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:3:0:templates/","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ea71c4e07d35590e52d9b9e2","label":"legacy","locator":{"end_column":29,"end_line":126,"fragment":"","pointer":"","start_column":3,"start_line":126},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"legacy/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:126:3:0:legacy/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0a46df92f14e5a4be0187905","label":".agents","locator":{"end_column":31,"end_line":127,"fragment":"","pointer":"","start_column":3,"start_line":127},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":".agents/AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:127:3:0:.agents/AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a9b9f6abb0d04b04c400e421","label":"scripts","locator":{"end_column":22,"end_line":128,"fragment":"","pointer":"","start_column":3,"start_line":128},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"scripts/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:128:3:0:scripts/","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:af5e7b47703b93e3059968dc","label":"tests","locator":{"end_column":27,"end_line":129,"fragment":"","pointer":"","start_column":3,"start_line":129},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"tests/AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:129:3:0:tests/AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6894a9eec0184c9e8e24105d","label":"Machine Companions","locator":{"end_column":21,"end_line":134,"fragment":"machine-companions","pointer":"","start_column":1,"start_line":134},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:machine-companions","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eaee460730491f394f8b4545","label":"technique_catalog.min.json","locator":{"end_column":69,"end_line":138,"fragment":"","pointer":"","start_column":3,"start_line":138},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/technique_catalog.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:138:3:0:generated/technique_catalog.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b062072e6426239b70d329de","label":"technique_capsules.min.json","locator":{"end_column":71,"end_line":139,"fragment":"","pointer":"","start_column":3,"start_line":139},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/technique_capsules.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:139:3:0:generated/technique_capsules.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1e5284f0f8c41c2c3b4d77d6","label":"technique_intelligence_registry.min.json","locator":{"end_column":97,"end_line":140,"fragment":"","pointer":"","start_column":3,"start_line":140},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/technique_intelligence_registry.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:140:3:0:generated/technique_intelligence_registry.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:edfc47abfb4f0ee91ba13626","label":"technique_intelligence_dag.min.json","locator":{"end_column":87,"end_line":142,"fragment":"","pointer":"","start_column":3,"start_line":142},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/technique_intelligence_dag.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:142:3:0:generated/technique_intelligence_dag.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dc52d07990bf81a9ee77a3a8","label":"repo_doc_surface_manifest.min.json","locator":{"end_column":85,"end_line":144,"fragment":"","pointer":"","start_column":3,"start_line":144},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/repo_doc_surface_manifest.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:144:3:0:generated/repo_doc_surface_manifest.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5b01b35815b788bd7b0c5cc0","label":"agents_mesh.min.json","locator":{"end_column":57,"end_line":146,"fragment":"","pointer":"","start_column":3,"start_line":146},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/agents_mesh.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:146:3:0:generated/agents_mesh.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:69bafb5e3c6325609186f7c5","label":"kag_export.min.json","locator":{"end_column":55,"end_line":147,"fragment":"","pointer":"","start_column":3,"start_line":147},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/kag_export.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:147:3:0:generated/kag_export.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6165748bd18178962ed02f11","label":"Working Rule","locator":{"end_column":15,"end_line":152,"fragment":"working-rule","pointer":"","start_column":1,"start_line":152},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:working-rule","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:25c40270ddb063adb3f933e7","label":"stats","locator":{"end_column":42,"end_line":79,"fragment":"","pointer":"","start_column":18,"start_line":79},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:route-modes","target_ref":"stats/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:79:18:0:stats/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0965e99bbe635a5315c73b51","label":"Technique Check","locator":{"end_column":18,"end_line":81,"fragment":"technique-check","pointer":"","start_column":1,"start_line":81},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique-check","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:41f6403218a46514755210b7","label":"TECHNIQUE_ATOM_CONTRACT","locator":{"end_column":74,"end_line":85,"fragment":"","pointer":"","start_column":16,"start_line":85},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:85:16:0:docs/TECHNIQUE_ATOM_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:09e2736a25dd0d619a8eeb4a","label":"CHARTER","locator":{"end_column":37,"end_line":86,"fragment":"","pointer":"","start_column":16,"start_line":86},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:86:16:0:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a4e7f542822c3198dbf013db","label":"TECHNIQUE_ATOM_CONTRACT","locator":{"end_column":61,"end_line":87,"fragment":"","pointer":"","start_column":3,"start_line":87},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:87:3:0:docs/TECHNIQUE_ATOM_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6cf9efa60feab4053c0bb6f7","label":"TECHNIQUE_TOPOLOGY_CONTRACT","locator":{"end_column":85,"end_line":88,"fragment":"","pointer":"","start_column":19,"start_line":88},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:88:19:0:docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4327606fd7fb82b8d51b8763","label":"TECHNIQUE_KIND_GUIDE","locator":{"end_column":65,"end_line":89,"fragment":"","pointer":"","start_column":3,"start_line":89},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/selection/TECHNIQUE_KIND_GUIDE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:89:3:0:docs/selection/TECHNIQUE_KIND_GUIDE.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a88492e4b97256f651757809","label":"TECHNIQUE_INDEX","locator":{"end_column":40,"end_line":90,"fragment":"","pointer":"","start_column":3,"start_line":90},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:90:3:0:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f61c21a21bb476bfb1f73490","label":"TECHNIQUE_TREE_CONTRACT","locator":{"end_column":74,"end_line":91,"fragment":"","pointer":"","start_column":16,"start_line":91},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/TECHNIQUE_TREE_CONTRACT.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:91:16:0:docs/TECHNIQUE_TREE_CONTRACT.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0134dc2046ffa812e03917e9","label":"CHARTER","locator":{"end_column":53,"end_line":92,"fragment":"","pointer":"","start_column":32,"start_line":92},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"CHARTER.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:92:32:0:CHARTER.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2f2f540a11c5c11db2225536","label":"AGENTS","locator":{"end_column":77,"end_line":92,"fragment":"","pointer":"","start_column":58,"start_line":92},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:92:58:1:AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9564b6109a6143d7651d6b9e","label":"ROADMAP","locator":{"end_column":84,"end_line":93,"fragment":"","pointer":"","start_column":63,"start_line":93},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:93:63:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c01e494ea23ecc9e9e7bb58b","label":"QUESTBOOK","locator":{"end_column":55,"end_line":94,"fragment":"","pointer":"","start_column":30,"start_line":94},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"QUESTBOOK.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:94:30:1:QUESTBOOK.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cdf47ded22b9c7dfd6a7088b","label":"CHANGELOG","locator":{"end_column":28,"end_line":94,"fragment":"","pointer":"","start_column":3,"start_line":94},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"CHANGELOG.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:94:3:0:CHANGELOG.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:09de5328e38e2fc687be2def","label":"Repo Doc Surfaces","locator":{"end_column":62,"end_line":96,"fragment":"","pointer":"","start_column":3,"start_line":96},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technique-check","target_ref":"docs/readers/repo/REPO_DOC_SURFACES.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:96:3:0:docs/readers/repo/REPO_DOC_SURFACES.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:363340ebccf82059eb8c4571","label":"Current Contour","locator":{"end_column":18,"end_line":98,"fragment":"current-contour","pointer":"","start_column":1,"start_line":98},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:current-contour","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2c1502e9d9f356c29a659d5c","label":"TECHNIQUE_INDEX","locator":{"end_column":42,"end_line":103,"fragment":"","pointer":"","start_column":5,"start_line":103},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-contour","target_ref":"TECHNIQUE_INDEX.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:103:5:0:TECHNIQUE_INDEX.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fc73afe56c73c65aab1d9dc9","label":"technique_catalog.min.json","locator":{"end_column":67,"end_line":104,"fragment":"","pointer":"","start_column":1,"start_line":104},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-contour","target_ref":"generated/technique_catalog.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:104:1:0:generated/technique_catalog.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ebe3561805403d70dabd5470","label":"ROADMAP","locator":{"end_column":31,"end_line":105,"fragment":"","pointer":"","start_column":10,"start_line":105},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-contour","target_ref":"ROADMAP.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:105:10:0:ROADMAP.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f3cc3dab534a836b55d040c1","label":"Practice Mechanics","locator":{"end_column":21,"end_line":108,"fragment":"practice-mechanics","pointer":"","start_column":1,"start_line":108},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:practice-mechanics","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8690a777cce386f09bed0612","label":"Mechanics","locator":{"end_column":33,"end_line":110,"fragment":"","pointer":"","start_column":1,"start_line":110},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:practice-mechanics","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:110:1:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:32a0fa3022807efd46f5626e","label":"Technical Districts","locator":{"end_column":22,"end_line":117,"fragment":"technical-districts","pointer":"","start_column":1,"start_line":117},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technical-districts","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6265de65ac4b38cff95df2cc","label":"techniques","locator":{"end_column":28,"end_line":121,"fragment":"","pointer":"","start_column":3,"start_line":121},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"techniques/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:121:3:0:techniques/","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8edaba7a1be5803f022644ff","label":"docs","locator":{"end_column":25,"end_line":122,"fragment":"","pointer":"","start_column":3,"start_line":122},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"docs/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:122:3:0:docs/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6ec9294dd9f7d73cf657a684","label":"mechanics","locator":{"end_column":35,"end_line":123,"fragment":"","pointer":"","start_column":3,"start_line":123},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"mechanics/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:123:3:0:mechanics/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:65cda264a39f9031b948c705","label":"generated","locator":{"end_column":26,"end_line":124,"fragment":"","pointer":"","start_column":3,"start_line":124},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"generated/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:124:3:0:generated/","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9d8392ee3dd749232936af78","label":"stats","locator":{"end_column":27,"end_line":125,"fragment":"","pointer":"","start_column":3,"start_line":125},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"stats/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:125:3:0:stats/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6f67890d1b07f091205204d5","label":"examples","locator":{"end_column":33,"end_line":126,"fragment":"","pointer":"","start_column":3,"start_line":126},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"examples/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:126:3:0:examples/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2f79c0813e82040fd0cd2040","label":"templates","locator":{"end_column":26,"end_line":127,"fragment":"","pointer":"","start_column":3,"start_line":127},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"templates/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:127:3:0:templates/","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1b9cd4d185cb4fbb218e700c","label":"legacy","locator":{"end_column":29,"end_line":128,"fragment":"","pointer":"","start_column":3,"start_line":128},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"legacy/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:128:3:0:legacy/README.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8b1f92c814be09743b852e62","label":".agents","locator":{"end_column":31,"end_line":129,"fragment":"","pointer":"","start_column":3,"start_line":129},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":".agents/AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:129:3:0:.agents/AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3b87d9f57f2ed276cef25267","label":"scripts","locator":{"end_column":22,"end_line":130,"fragment":"","pointer":"","start_column":3,"start_line":130},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"scripts/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:130:3:0:scripts/","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e040584bcbe735a456849be1","label":"tests","locator":{"end_column":27,"end_line":131,"fragment":"","pointer":"","start_column":3,"start_line":131},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:technical-districts","target_ref":"tests/AGENTS.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:131:3:0:tests/AGENTS.md","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6894a9eec0184c9e8e24105d","label":"Machine Companions","locator":{"end_column":21,"end_line":136,"fragment":"machine-companions","pointer":"","start_column":1,"start_line":136},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:machine-companions","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cf9dd2842a6ff49419e86b7f","label":"technique_catalog.min.json","locator":{"end_column":69,"end_line":140,"fragment":"","pointer":"","start_column":3,"start_line":140},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/technique_catalog.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:140:3:0:generated/technique_catalog.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:57540b46ac46409d3ae48279","label":"technique_capsules.min.json","locator":{"end_column":71,"end_line":141,"fragment":"","pointer":"","start_column":3,"start_line":141},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/technique_capsules.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:141:3:0:generated/technique_capsules.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a24ce0b4eeb0de28ba5af276","label":"technique_intelligence_registry.min.json","locator":{"end_column":97,"end_line":142,"fragment":"","pointer":"","start_column":3,"start_line":142},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/technique_intelligence_registry.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:142:3:0:generated/technique_intelligence_registry.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:acf979e5a7c2a2caf6daa677","label":"technique_intelligence_dag.min.json","locator":{"end_column":87,"end_line":144,"fragment":"","pointer":"","start_column":3,"start_line":144},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/technique_intelligence_dag.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:144:3:0:generated/technique_intelligence_dag.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f3ee9fd75d637578d4a95411","label":"repo_doc_surface_manifest.min.json","locator":{"end_column":85,"end_line":146,"fragment":"","pointer":"","start_column":3,"start_line":146},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/repo_doc_surface_manifest.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:146:3:0:generated/repo_doc_surface_manifest.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8623fb84ea62b8f8f36c47de","label":"agents_mesh.min.json","locator":{"end_column":57,"end_line":148,"fragment":"","pointer":"","start_column":3,"start_line":148},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/agents_mesh.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:148:3:0:generated/agents_mesh.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48dbab4266595c97a6a38139","label":"kag_export.min.json","locator":{"end_column":55,"end_line":149,"fragment":"","pointer":"","start_column":3,"start_line":149},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:machine-companions","target_ref":"generated/kag_export.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:149:3:0:generated/kag_export.min.json","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6165748bd18178962ed02f11","label":"Working Rule","locator":{"end_column":15,"end_line":154,"fragment":"working-rule","pointer":"","start_column":1,"start_line":154},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:working-rule","source_record_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:579b6a8aa0a8a47569149b12","label":"Risk And Negative-Effect Lift Guide","locator":{"end_column":37,"end_line":1,"fragment":"risk-and-negative-effect-lift-guide","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:risk-and-negative-effect-lift-guide","source_record_id":"aoa:aoa-techniques:artifact:b35aa5eb0153d5e706f8dcd5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e2d2656ebd70ba8f987c4e0d","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:b35aa5eb0153d5e706f8dcd5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:012171b12ed60a958878a644","label":"Documentation Map","locator":{"end_column":36,"end_line":10,"fragment":"","pointer":"","start_column":3,"start_line":10},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:risk-and-negative-effect-lift-guide","target_ref":"../README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:10:3:0:../README.md","source_record_id":"aoa:aoa-techniques:artifact:b35aa5eb0153d5e706f8dcd5","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -21910,17 +21981,18 @@ {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d55c32c48a09dcd2c57fe83d","label":"agents mesh config","locator":{"end_column":112,"end_line":57,"fragment":"","pointer":"","start_column":64,"start_line":57},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../config/agents_mesh.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:57:64:2:../config/agents_mesh.json","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ef98a931125812a69c1e99bd","label":"agents mesh mirror","locator":{"end_column":169,"end_line":57,"fragment":"","pointer":"","start_column":114,"start_line":57},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../generated/agents_mesh.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:57:114:3:../generated/agents_mesh.min.json","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0fe721b513a4f5611d5b173b","label":"mechanics","locator":{"end_column":244,"end_line":58,"fragment":"","pointer":"","start_column":218,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../mechanics/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:218:8:../mechanics/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:17a3bd870afe865a6e85df8d","label":"templates","locator":{"end_column":342,"end_line":58,"fragment":"","pointer":"","start_column":316,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../templates/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:316:12:../templates/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:241dc5ee1db2bb8eeb98f504","label":"scripts","locator":{"end_column":314,"end_line":58,"fragment":"","pointer":"","start_column":292,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../scripts/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:292:11:../scripts/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3ae9c8100168ad20884efb79","label":"quests","locator":{"end_column":266,"end_line":58,"fragment":"","pointer":"","start_column":246,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../quests/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:246:9:../quests/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:612b1bd0ac93863a789a4b56","label":"tests","locator":{"end_column":362,"end_line":58,"fragment":"","pointer":"","start_column":344,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../tests/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:344:13:../tests/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:67625930d201072733a36ba0","label":"kag","locator":{"end_column":194,"end_line":58,"fragment":"","pointer":"","start_column":180,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../kag/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:180:6:../kag/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76af7ae3c8f9cade90f48659","label":"tests","locator":{"end_column":382,"end_line":58,"fragment":"","pointer":"","start_column":364,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../tests/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:364:14:../tests/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:831231e5935261aa7a4c0faf","label":"techniques","locator":{"end_column":412,"end_line":58,"fragment":"","pointer":"","start_column":384,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../techniques/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:384:15:../techniques/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:84fc09919b0ae8734512569f","label":"stats","locator":{"end_column":334,"end_line":58,"fragment":"","pointer":"","start_column":316,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../stats/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:316:12:../stats/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:904acb79d30571a91bb6194e","label":"legacy","locator":{"end_column":216,"end_line":58,"fragment":"","pointer":"","start_column":196,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../legacy/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:196:7:../legacy/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:92a949ee44c507b15dbdbee4","label":"docs","locator":{"end_column":104,"end_line":58,"fragment":"","pointer":"","start_column":94,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"./"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:94:2:./","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b34e4fad974e195396b48489","label":"schemas","locator":{"end_column":290,"end_line":58,"fragment":"","pointer":"","start_column":268,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../schemas/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:268:10:../schemas/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b3cf6b6389cc6a937319067a","label":"generated","locator":{"end_column":178,"end_line":58,"fragment":"","pointer":"","start_column":152,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../generated/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:152:5:../generated/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:baa9766d2a2d2bebe9a09493","label":"evals","locator":{"end_column":124,"end_line":58,"fragment":"","pointer":"","start_column":106,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../evals/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:106:3:../evals/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bdc299196392f1c3f774ffa6","label":"techniques","locator":{"end_column":392,"end_line":58,"fragment":"","pointer":"","start_column":364,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../techniques/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:364:14:../techniques/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ce135d40b989c431647c3f3d","label":"templates","locator":{"end_column":362,"end_line":58,"fragment":"","pointer":"","start_column":336,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../templates/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:336:13:../templates/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:db53e43a87f95f3e98b98e5c","label":"config","locator":{"end_column":92,"end_line":58,"fragment":"","pointer":"","start_column":72,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../config/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:72:1:../config/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ee297922fb597a5ec0dc5b7c","label":".github","locator":{"end_column":70,"end_line":58,"fragment":"","pointer":"","start_column":48,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../.github/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:48:0:../.github/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fe9fcc499118ef6e45b6f85c","label":"examples","locator":{"end_column":150,"end_line":58,"fragment":"","pointer":"","start_column":126,"start_line":58},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:allowed-root-surfaces","target_ref":"../examples/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:58:126:4:../examples/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -21957,8 +22029,9 @@ {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dbe967f8589dc5ce7c1f5f20","label":"source-lift","locator":{"end_column":118,"end_line":102,"fragment":"","pointer":"","start_column":91,"start_line":102},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-root-decisions","target_ref":"source-lift/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:102:91:3:source-lift/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1eac3345098695c314af0a58","label":"legacy","locator":{"end_column":36,"end_line":103,"fragment":"","pointer":"","start_column":16,"start_line":103},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-root-decisions","target_ref":"../legacy/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:103:16:0:../legacy/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:783773ffbe33f110fedc60d0","label":"kag","locator":{"end_column":38,"end_line":105,"fragment":"","pointer":"","start_column":24,"start_line":105},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-root-decisions","target_ref":"../kag/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:105:24:0:../kag/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1debad952be2ddc7874c7ef9","label":".agents/spark","locator":{"end_column":94,"end_line":107,"fragment":"","pointer":"","start_column":60,"start_line":107},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-root-decisions","target_ref":"../.agents/spark/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:107:60:0:../.agents/spark/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:442d981c55608bfb4e09e70a","label":"Final Rule","locator":{"end_column":13,"end_line":109,"fragment":"final-rule","pointer":"","start_column":1,"start_line":109},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:final-rule","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ac726e083b55ca4a46468482","label":"stats","locator":{"end_column":40,"end_line":106,"fragment":"","pointer":"","start_column":22,"start_line":106},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-root-decisions","target_ref":"../stats/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:106:22:0:../stats/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bea4c8f071288056b69c3fb5","label":".agents/spark","locator":{"end_column":94,"end_line":108,"fragment":"","pointer":"","start_column":60,"start_line":108},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:current-root-decisions","target_ref":"../.agents/spark/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:108:60:0:../.agents/spark/","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:442d981c55608bfb4e09e70a","label":"Final Rule","locator":{"end_column":13,"end_line":110,"fragment":"final-rule","pointer":"","start_column":1,"start_line":110},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:final-rule","source_record_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b08d56465b2d9ededaf44c73","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c5c7ce05d1aed17f67b11aa6","label":"Release Support Direction","locator":{"end_column":27,"end_line":1,"fragment":"release-support-direction","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:release-support-direction","source_record_id":"aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:43b8ce1079845f0ab3eeb6c0","label":"Source-of-truth Split","locator":{"end_column":24,"end_line":9,"fragment":"source-of-truth-split","pointer":"","start_column":1,"start_line":9},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:source-of-truth-split","source_record_id":"aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -27900,54 +27973,68 @@ {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:adb69ef4f65daa6dca15511e","label":"runs-on","locator":{"end_column":26,"end_line":15,"fragment":"","pointer":"/jobs/moving_main/runs-on","start_column":5,"start_line":15},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/runs-on","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:06ca8e56e65b881f01d94a98","label":"env","locator":{"end_column":8,"end_line":16,"fragment":"","pointer":"/jobs/moving_main/env","start_column":5,"start_line":16},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/env","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1cf6b2215df3bdefa0745efa","label":"ABYSS_MACHINE_REPO_ROOT","locator":{"end_column":74,"end_line":17,"fragment":"","pointer":"/jobs/moving_main/env/ABYSS_MACHINE_REPO_ROOT","start_column":7,"start_line":17},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/env/ABYSS_MACHINE_REPO_ROOT","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:913c93d2be93f827f58b6a14","label":"steps","locator":{"end_column":10,"end_line":18,"fragment":"","pointer":"/jobs/moving_main/steps","start_column":5,"start_line":18},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:54e887804df7225cca65fee7","label":"name","locator":{"end_column":22,"end_line":19,"fragment":"","pointer":"/jobs/moving_main/steps/0/name","start_column":7,"start_line":19},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/0/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1a437568a4a56b670f472e50","label":"uses","locator":{"end_column":71,"end_line":20,"fragment":"","pointer":"/jobs/moving_main/steps/0/uses","start_column":9,"start_line":20},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/0/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1180b56ffb0932881feece85","label":"with","locator":{"end_column":13,"end_line":21,"fragment":"","pointer":"/jobs/moving_main/steps/0/with","start_column":9,"start_line":21},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/0/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4753c9c9d629b0f5ee5794f8","label":"fetch-depth","locator":{"end_column":24,"end_line":22,"fragment":"","pointer":"/jobs/moving_main/steps/0/with/fetch-depth","start_column":11,"start_line":22},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/0/with/fetch-depth","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:84de840119aea38afa33c240","label":"name","locator":{"end_column":51,"end_line":24,"fragment":"","pointer":"/jobs/moving_main/steps/1/name","start_column":7,"start_line":24},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f8d95dbfed9058f4156bd89f","label":"uses","locator":{"end_column":71,"end_line":25,"fragment":"","pointer":"/jobs/moving_main/steps/1/uses","start_column":9,"start_line":25},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ab6ae2df53355de6f0b505f","label":"with","locator":{"end_column":13,"end_line":26,"fragment":"","pointer":"/jobs/moving_main/steps/1/with","start_column":9,"start_line":26},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ef692c33611aea3a11cb3512","label":"repository","locator":{"end_column":45,"end_line":27,"fragment":"","pointer":"/jobs/moving_main/steps/1/with/repository","start_column":11,"start_line":27},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/with/repository","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a039fb5a2d533f94d7e6a6c","label":"ref","locator":{"end_column":55,"end_line":28,"fragment":"","pointer":"/jobs/moving_main/steps/1/with/ref","start_column":11,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/with/ref","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a66e85216d8ed13959b8fec5","label":"path","locator":{"end_column":35,"end_line":29,"fragment":"","pointer":"/jobs/moving_main/steps/1/with/path","start_column":11,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/with/path","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6585f228453b81345ea83da5","label":"name","locator":{"end_column":26,"end_line":31,"fragment":"","pointer":"/jobs/moving_main/steps/2/name","start_column":7,"start_line":31},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d70e4b605debf6b00e18c9ea","label":"uses","locator":{"end_column":75,"end_line":32,"fragment":"","pointer":"/jobs/moving_main/steps/2/uses","start_column":9,"start_line":32},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:61da916313d93fadac8e4f92","label":"with","locator":{"end_column":13,"end_line":33,"fragment":"","pointer":"/jobs/moving_main/steps/2/with","start_column":9,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3639a870d65dc1429cd2bf75","label":"python-version","locator":{"end_column":32,"end_line":34,"fragment":"","pointer":"/jobs/moving_main/steps/2/with/python-version","start_column":11,"start_line":34},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/with/python-version","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f764e76e8123d176da55c26","label":"name","locator":{"end_column":34,"end_line":36,"fragment":"","pointer":"/jobs/moving_main/steps/3/name","start_column":7,"start_line":36},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/3/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:319c6a545a7caf4c8cff5350","label":"run","locator":{"end_column":58,"end_line":37,"fragment":"","pointer":"/jobs/moving_main/steps/3/run","start_column":9,"start_line":37},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/3/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:94b1b623128ce35129a2d31e","label":"name","locator":{"end_column":30,"end_line":39,"fragment":"","pointer":"/jobs/moving_main/steps/4/name","start_column":7,"start_line":39},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/4/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4c7b799b4e86f439d84b16ca","label":"run","locator":{"end_column":53,"end_line":40,"fragment":"","pointer":"/jobs/moving_main/steps/4/run","start_column":9,"start_line":40},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/4/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ed9f2314b0a8bf4d5d15d424","label":"latest_release_repro","locator":{"end_column":23,"end_line":42,"fragment":"","pointer":"/jobs/latest_release_repro","start_column":3,"start_line":42},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:831b23a5fa18a7b4ed3fba13","label":"name","locator":{"end_column":30,"end_line":43,"fragment":"","pointer":"/jobs/latest_release_repro/name","start_column":5,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ba157239c804984f7caf375f","label":"runs-on","locator":{"end_column":26,"end_line":44,"fragment":"","pointer":"/jobs/latest_release_repro/runs-on","start_column":5,"start_line":44},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/runs-on","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4124b9e448bae91d4d890ee5","label":"env","locator":{"end_column":8,"end_line":45,"fragment":"","pointer":"/jobs/latest_release_repro/env","start_column":5,"start_line":45},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/env","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9c0925c0bbc01959eb05cdc1","label":"ABYSS_MACHINE_REPO_ROOT","locator":{"end_column":74,"end_line":46,"fragment":"","pointer":"/jobs/latest_release_repro/env/ABYSS_MACHINE_REPO_ROOT","start_column":7,"start_line":46},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/env/ABYSS_MACHINE_REPO_ROOT","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:11055e49f240914802afedd5","label":"steps","locator":{"end_column":10,"end_line":47,"fragment":"","pointer":"/jobs/latest_release_repro/steps","start_column":5,"start_line":47},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6185c715b75844014cd9a896","label":"name","locator":{"end_column":41,"end_line":48,"fragment":"","pointer":"/jobs/latest_release_repro/steps/0/name","start_column":7,"start_line":48},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/0/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a4389a32e6533284c9ead032","label":"uses","locator":{"end_column":71,"end_line":49,"fragment":"","pointer":"/jobs/latest_release_repro/steps/0/uses","start_column":9,"start_line":49},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/0/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:78c3d1bc2af74d703c96e099","label":"with","locator":{"end_column":13,"end_line":50,"fragment":"","pointer":"/jobs/latest_release_repro/steps/0/with","start_column":9,"start_line":50},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/0/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8f56ea4faf672bce02491c16","label":"fetch-depth","locator":{"end_column":24,"end_line":51,"fragment":"","pointer":"/jobs/latest_release_repro/steps/0/with/fetch-depth","start_column":11,"start_line":51},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/0/with/fetch-depth","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d32d654dff0370c49b3a9dad","label":"name","locator":{"end_column":40,"end_line":53,"fragment":"","pointer":"/jobs/latest_release_repro/steps/1/name","start_column":7,"start_line":53},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/1/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:980ab57c8e27d0782df4059c","label":"id","locator":{"end_column":18,"end_line":54,"fragment":"","pointer":"/jobs/latest_release_repro/steps/1/id","start_column":9,"start_line":54},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/1/id","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bef4de9c13bf4482026a6788","label":"run","locator":{"end_column":14,"end_line":55,"fragment":"","pointer":"/jobs/latest_release_repro/steps/1/run","start_column":9,"start_line":55},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/1/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d4fc34ef47ad23d71ae0cdfb","label":"name","locator":{"end_column":41,"end_line":64,"fragment":"","pointer":"/jobs/latest_release_repro/steps/2/name","start_column":7,"start_line":64},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/2/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c515133888816b43f0190314","label":"run","locator":{"end_column":68,"end_line":65,"fragment":"","pointer":"/jobs/latest_release_repro/steps/2/run","start_column":9,"start_line":65},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/2/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cce660c4ec385002fc099456","label":"name","locator":{"end_column":51,"end_line":67,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/name","start_column":7,"start_line":67},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3bf2200a5e41325c7ec5a7a","label":"uses","locator":{"end_column":71,"end_line":68,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/uses","start_column":9,"start_line":68},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:189e1d0ba2afd264fd9b8936","label":"with","locator":{"end_column":13,"end_line":69,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/with","start_column":9,"start_line":69},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dd5259b8f5fd7ebee71fc7a3","label":"repository","locator":{"end_column":45,"end_line":70,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/with/repository","start_column":11,"start_line":70},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/with/repository","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d30239c3cbf27b22d253dfb5","label":"ref","locator":{"end_column":55,"end_line":71,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/with/ref","start_column":11,"start_line":71},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/with/ref","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ebe5926e7198f66cb199524","label":"path","locator":{"end_column":35,"end_line":72,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/with/path","start_column":11,"start_line":72},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/with/path","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48646d5d0300bfc4f6e7e8af","label":"name","locator":{"end_column":26,"end_line":74,"fragment":"","pointer":"/jobs/latest_release_repro/steps/4/name","start_column":7,"start_line":74},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/4/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a00caf7e260579ce7699c783","label":"uses","locator":{"end_column":75,"end_line":75,"fragment":"","pointer":"/jobs/latest_release_repro/steps/4/uses","start_column":9,"start_line":75},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/4/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b9943cba8d1812c471729e99","label":"with","locator":{"end_column":13,"end_line":76,"fragment":"","pointer":"/jobs/latest_release_repro/steps/4/with","start_column":9,"start_line":76},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/4/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1f1112b553171e74bb357b10","label":"python-version","locator":{"end_column":32,"end_line":77,"fragment":"","pointer":"/jobs/latest_release_repro/steps/4/with/python-version","start_column":11,"start_line":77},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/4/with/python-version","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9ea39d35a48901cec5252cd6","label":"name","locator":{"end_column":42,"end_line":79,"fragment":"","pointer":"/jobs/latest_release_repro/steps/5/name","start_column":7,"start_line":79},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/5/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dbc066ad3f0a6d91b643722e","label":"run","locator":{"end_column":58,"end_line":80,"fragment":"","pointer":"/jobs/latest_release_repro/steps/5/run","start_column":9,"start_line":80},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/5/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:56dcc82c1336b2fa0dec7b10","label":"name","locator":{"end_column":43,"end_line":82,"fragment":"","pointer":"/jobs/latest_release_repro/steps/6/name","start_column":7,"start_line":82},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/6/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fbfc40189c0ed75e024627a4","label":"run","locator":{"end_column":44,"end_line":83,"fragment":"","pointer":"/jobs/latest_release_repro/steps/6/run","start_column":9,"start_line":83},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/6/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:db66b6b40971959344d59a65","label":"AOA_KAG_ROOT","locator":{"end_column":57,"end_line":18,"fragment":"","pointer":"/jobs/moving_main/env/AOA_KAG_ROOT","start_column":7,"start_line":18},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/env/AOA_KAG_ROOT","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:939fca9927bc90b8d46f26a8","label":"AOA_STATS_ROOT","locator":{"end_column":61,"end_line":19,"fragment":"","pointer":"/jobs/moving_main/env/AOA_STATS_ROOT","start_column":7,"start_line":19},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/env/AOA_STATS_ROOT","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:913c93d2be93f827f58b6a14","label":"steps","locator":{"end_column":10,"end_line":20,"fragment":"","pointer":"/jobs/moving_main/steps","start_column":5,"start_line":20},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:54e887804df7225cca65fee7","label":"name","locator":{"end_column":22,"end_line":21,"fragment":"","pointer":"/jobs/moving_main/steps/0/name","start_column":7,"start_line":21},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/0/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1a437568a4a56b670f472e50","label":"uses","locator":{"end_column":71,"end_line":22,"fragment":"","pointer":"/jobs/moving_main/steps/0/uses","start_column":9,"start_line":22},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/0/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1180b56ffb0932881feece85","label":"with","locator":{"end_column":13,"end_line":23,"fragment":"","pointer":"/jobs/moving_main/steps/0/with","start_column":9,"start_line":23},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/0/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4753c9c9d629b0f5ee5794f8","label":"fetch-depth","locator":{"end_column":24,"end_line":24,"fragment":"","pointer":"/jobs/moving_main/steps/0/with/fetch-depth","start_column":11,"start_line":24},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/0/with/fetch-depth","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:84de840119aea38afa33c240","label":"name","locator":{"end_column":51,"end_line":26,"fragment":"","pointer":"/jobs/moving_main/steps/1/name","start_column":7,"start_line":26},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f8d95dbfed9058f4156bd89f","label":"uses","locator":{"end_column":71,"end_line":27,"fragment":"","pointer":"/jobs/moving_main/steps/1/uses","start_column":9,"start_line":27},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ab6ae2df53355de6f0b505f","label":"with","locator":{"end_column":13,"end_line":28,"fragment":"","pointer":"/jobs/moving_main/steps/1/with","start_column":9,"start_line":28},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ef692c33611aea3a11cb3512","label":"repository","locator":{"end_column":45,"end_line":29,"fragment":"","pointer":"/jobs/moving_main/steps/1/with/repository","start_column":11,"start_line":29},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/with/repository","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a039fb5a2d533f94d7e6a6c","label":"ref","locator":{"end_column":55,"end_line":30,"fragment":"","pointer":"/jobs/moving_main/steps/1/with/ref","start_column":11,"start_line":30},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/with/ref","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a66e85216d8ed13959b8fec5","label":"path","locator":{"end_column":35,"end_line":31,"fragment":"","pointer":"/jobs/moving_main/steps/1/with/path","start_column":11,"start_line":31},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/1/with/path","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6585f228453b81345ea83da5","label":"name","locator":{"end_column":44,"end_line":33,"fragment":"","pointer":"/jobs/moving_main/steps/2/name","start_column":7,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d70e4b605debf6b00e18c9ea","label":"uses","locator":{"end_column":71,"end_line":34,"fragment":"","pointer":"/jobs/moving_main/steps/2/uses","start_column":9,"start_line":34},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:61da916313d93fadac8e4f92","label":"with","locator":{"end_column":13,"end_line":35,"fragment":"","pointer":"/jobs/moving_main/steps/2/with","start_column":9,"start_line":35},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9ea54e1cf89890489e352200","label":"repository","locator":{"end_column":39,"end_line":36,"fragment":"","pointer":"/jobs/moving_main/steps/2/with/repository","start_column":11,"start_line":36},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/with/repository","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:880b3043890acd223918dd04","label":"ref","locator":{"end_column":55,"end_line":37,"fragment":"","pointer":"/jobs/moving_main/steps/2/with/ref","start_column":11,"start_line":37},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/with/ref","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7cd589a9ab2db9676f1e08f2","label":"path","locator":{"end_column":29,"end_line":38,"fragment":"","pointer":"/jobs/moving_main/steps/2/with/path","start_column":11,"start_line":38},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/2/with/path","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f764e76e8123d176da55c26","label":"name","locator":{"end_column":51,"end_line":40,"fragment":"","pointer":"/jobs/moving_main/steps/3/name","start_column":7,"start_line":40},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/3/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:589126c32cb4e5c4899c2dda","label":"uses","locator":{"end_column":71,"end_line":41,"fragment":"","pointer":"/jobs/moving_main/steps/3/uses","start_column":9,"start_line":41},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/3/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1913877818a647432700cefa","label":"with","locator":{"end_column":13,"end_line":42,"fragment":"","pointer":"/jobs/moving_main/steps/3/with","start_column":9,"start_line":42},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/3/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c33456df12d402a81e54c9e0","label":"repository","locator":{"end_column":41,"end_line":43,"fragment":"","pointer":"/jobs/moving_main/steps/3/with/repository","start_column":11,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/3/with/repository","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f0cfc9b4f1849ae5e01fa6cc","label":"ref","locator":{"end_column":55,"end_line":44,"fragment":"","pointer":"/jobs/moving_main/steps/3/with/ref","start_column":11,"start_line":44},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/3/with/ref","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:57427c739c3a7ffd44f8b3c8","label":"path","locator":{"end_column":31,"end_line":45,"fragment":"","pointer":"/jobs/moving_main/steps/3/with/path","start_column":11,"start_line":45},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/3/with/path","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:94b1b623128ce35129a2d31e","label":"name","locator":{"end_column":26,"end_line":47,"fragment":"","pointer":"/jobs/moving_main/steps/4/name","start_column":7,"start_line":47},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/4/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8708bb59ff1f97a2cc9d09aa","label":"uses","locator":{"end_column":75,"end_line":48,"fragment":"","pointer":"/jobs/moving_main/steps/4/uses","start_column":9,"start_line":48},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/4/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:de1bae758f64d5912a2e6132","label":"with","locator":{"end_column":13,"end_line":49,"fragment":"","pointer":"/jobs/moving_main/steps/4/with","start_column":9,"start_line":49},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/4/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7c5adfaefc850a29593020e0","label":"python-version","locator":{"end_column":32,"end_line":50,"fragment":"","pointer":"/jobs/moving_main/steps/4/with/python-version","start_column":11,"start_line":50},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/4/with/python-version","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:99c6ef837938b5fa83256986","label":"name","locator":{"end_column":34,"end_line":52,"fragment":"","pointer":"/jobs/moving_main/steps/5/name","start_column":7,"start_line":52},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/5/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6dfc75452287ae905d1ccf90","label":"run","locator":{"end_column":58,"end_line":53,"fragment":"","pointer":"/jobs/moving_main/steps/5/run","start_column":9,"start_line":53},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/5/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c88738d11523223c594998f8","label":"name","locator":{"end_column":30,"end_line":55,"fragment":"","pointer":"/jobs/moving_main/steps/6/name","start_column":7,"start_line":55},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/6/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5f3079664c41856c72c16105","label":"run","locator":{"end_column":53,"end_line":56,"fragment":"","pointer":"/jobs/moving_main/steps/6/run","start_column":9,"start_line":56},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/moving_main/steps/6/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ed9f2314b0a8bf4d5d15d424","label":"latest_release_repro","locator":{"end_column":23,"end_line":58,"fragment":"","pointer":"/jobs/latest_release_repro","start_column":3,"start_line":58},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:831b23a5fa18a7b4ed3fba13","label":"name","locator":{"end_column":30,"end_line":59,"fragment":"","pointer":"/jobs/latest_release_repro/name","start_column":5,"start_line":59},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ba157239c804984f7caf375f","label":"runs-on","locator":{"end_column":26,"end_line":60,"fragment":"","pointer":"/jobs/latest_release_repro/runs-on","start_column":5,"start_line":60},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/runs-on","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4124b9e448bae91d4d890ee5","label":"env","locator":{"end_column":8,"end_line":61,"fragment":"","pointer":"/jobs/latest_release_repro/env","start_column":5,"start_line":61},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/env","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9c0925c0bbc01959eb05cdc1","label":"ABYSS_MACHINE_REPO_ROOT","locator":{"end_column":74,"end_line":62,"fragment":"","pointer":"/jobs/latest_release_repro/env/ABYSS_MACHINE_REPO_ROOT","start_column":7,"start_line":62},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/env/ABYSS_MACHINE_REPO_ROOT","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:11055e49f240914802afedd5","label":"steps","locator":{"end_column":10,"end_line":63,"fragment":"","pointer":"/jobs/latest_release_repro/steps","start_column":5,"start_line":63},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6185c715b75844014cd9a896","label":"name","locator":{"end_column":41,"end_line":64,"fragment":"","pointer":"/jobs/latest_release_repro/steps/0/name","start_column":7,"start_line":64},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/0/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a4389a32e6533284c9ead032","label":"uses","locator":{"end_column":71,"end_line":65,"fragment":"","pointer":"/jobs/latest_release_repro/steps/0/uses","start_column":9,"start_line":65},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/0/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:78c3d1bc2af74d703c96e099","label":"with","locator":{"end_column":13,"end_line":66,"fragment":"","pointer":"/jobs/latest_release_repro/steps/0/with","start_column":9,"start_line":66},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/0/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8f56ea4faf672bce02491c16","label":"fetch-depth","locator":{"end_column":24,"end_line":67,"fragment":"","pointer":"/jobs/latest_release_repro/steps/0/with/fetch-depth","start_column":11,"start_line":67},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/0/with/fetch-depth","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d32d654dff0370c49b3a9dad","label":"name","locator":{"end_column":40,"end_line":69,"fragment":"","pointer":"/jobs/latest_release_repro/steps/1/name","start_column":7,"start_line":69},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/1/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:980ab57c8e27d0782df4059c","label":"id","locator":{"end_column":18,"end_line":70,"fragment":"","pointer":"/jobs/latest_release_repro/steps/1/id","start_column":9,"start_line":70},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/1/id","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bef4de9c13bf4482026a6788","label":"run","locator":{"end_column":14,"end_line":71,"fragment":"","pointer":"/jobs/latest_release_repro/steps/1/run","start_column":9,"start_line":71},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/1/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d4fc34ef47ad23d71ae0cdfb","label":"name","locator":{"end_column":41,"end_line":80,"fragment":"","pointer":"/jobs/latest_release_repro/steps/2/name","start_column":7,"start_line":80},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/2/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c515133888816b43f0190314","label":"run","locator":{"end_column":68,"end_line":81,"fragment":"","pointer":"/jobs/latest_release_repro/steps/2/run","start_column":9,"start_line":81},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/2/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cce660c4ec385002fc099456","label":"name","locator":{"end_column":51,"end_line":83,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/name","start_column":7,"start_line":83},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3bf2200a5e41325c7ec5a7a","label":"uses","locator":{"end_column":71,"end_line":84,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/uses","start_column":9,"start_line":84},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:189e1d0ba2afd264fd9b8936","label":"with","locator":{"end_column":13,"end_line":85,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/with","start_column":9,"start_line":85},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dd5259b8f5fd7ebee71fc7a3","label":"repository","locator":{"end_column":45,"end_line":86,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/with/repository","start_column":11,"start_line":86},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/with/repository","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d30239c3cbf27b22d253dfb5","label":"ref","locator":{"end_column":55,"end_line":87,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/with/ref","start_column":11,"start_line":87},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/with/ref","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ebe5926e7198f66cb199524","label":"path","locator":{"end_column":35,"end_line":88,"fragment":"","pointer":"/jobs/latest_release_repro/steps/3/with/path","start_column":11,"start_line":88},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/3/with/path","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48646d5d0300bfc4f6e7e8af","label":"name","locator":{"end_column":26,"end_line":90,"fragment":"","pointer":"/jobs/latest_release_repro/steps/4/name","start_column":7,"start_line":90},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/4/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a00caf7e260579ce7699c783","label":"uses","locator":{"end_column":75,"end_line":91,"fragment":"","pointer":"/jobs/latest_release_repro/steps/4/uses","start_column":9,"start_line":91},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/4/uses","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b9943cba8d1812c471729e99","label":"with","locator":{"end_column":13,"end_line":92,"fragment":"","pointer":"/jobs/latest_release_repro/steps/4/with","start_column":9,"start_line":92},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/4/with","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1f1112b553171e74bb357b10","label":"python-version","locator":{"end_column":32,"end_line":93,"fragment":"","pointer":"/jobs/latest_release_repro/steps/4/with/python-version","start_column":11,"start_line":93},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/4/with/python-version","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9ea39d35a48901cec5252cd6","label":"name","locator":{"end_column":42,"end_line":95,"fragment":"","pointer":"/jobs/latest_release_repro/steps/5/name","start_column":7,"start_line":95},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/5/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dbc066ad3f0a6d91b643722e","label":"run","locator":{"end_column":58,"end_line":96,"fragment":"","pointer":"/jobs/latest_release_repro/steps/5/run","start_column":9,"start_line":96},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/5/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:56dcc82c1336b2fa0dec7b10","label":"name","locator":{"end_column":43,"end_line":98,"fragment":"","pointer":"/jobs/latest_release_repro/steps/6/name","start_column":7,"start_line":98},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/6/name","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"yaml_path","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fbfc40189c0ed75e024627a4","label":"run","locator":{"end_column":44,"end_line":99,"fragment":"","pointer":"/jobs/latest_release_repro/steps/6/run","start_column":9,"start_line":99},"outbound_refs":[],"parser_ref":"aoa-yaml-path@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"yaml:/jobs/latest_release_repro/steps/6/run","source_record_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:44565e5b3c3dfeec9177ffe2","label":"Stats Event Envelope","locator":{"end_column":22,"end_line":1,"fragment":"stats-event-envelope","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:stats-event-envelope","source_record_id":"aoa:aoa-techniques:artifact:e1abb90e5533e52f000412fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:79196c966016f369c330aea3","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:e1abb90e5533e52f000412fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7567f9abdbbe4cf0675af244","label":"Required fields","locator":{"end_column":18,"end_line":12,"fragment":"required-fields","pointer":"","start_column":1,"start_line":12},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:required-fields","source_record_id":"aoa:aoa-techniques:artifact:e1abb90e5533e52f000412fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -28035,233 +28122,233 @@ {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6a7148a0423c94b13cdf1dd5","label":"Candidate Intake","locator":{"end_column":55,"end_line":14,"fragment":"","pointer":"","start_column":3,"start_line":14},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-18-incoming-packet-evidence-only-closeout","target_ref":"parts/candidate-intake/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:14:3:0:parts/candidate-intake/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ba026eddc6e62a94292bf2fb","label":"incoming evidence-only closeout","locator":{"end_column":109,"end_line":27,"fragment":"","pointer":"","start_column":3,"start_line":27},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-18-incoming-packet-evidence-only-closeout","target_ref":"../../docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:27:3:0:../../docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3193711804e0b4f4b34b501b","label":"closed incoming packets Distillation legacy","locator":{"end_column":133,"end_line":29,"fragment":"","pointer":"","start_column":3,"start_line":29},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-18-incoming-packet-evidence-only-closeout","target_ref":"../../docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:29:3:0:../../docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6bb5c9609cf2dde3dc584e79","label":"2026-05-14 - Technique reform scout script homes","locator":{"end_column":51,"end_line":48,"fragment":"2026-05-14-technique-reform-scout-script-homes","pointer":"","start_column":1,"start_line":48},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-technique-reform-scout-script-homes","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3a67c6483578e38cc581c89","label":"technique reform scripts","locator":{"end_column":70,"end_line":54,"fragment":"","pointer":"","start_column":3,"start_line":54},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-scout-script-homes","target_ref":"parts/technique-reform-ingress/scripts/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:54:3:0:parts/technique-reform-ingress/scripts/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:594de98971c6f09753834c3e","label":"mechanic-script-homes","locator":{"end_column":89,"end_line":61,"fragment":"","pointer":"","start_column":3,"start_line":61},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-scout-script-homes","target_ref":"../../docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:61:3:0:../../docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5d7b0ab430725ef2ea314bd1","label":"2026-05-14 - Technique reform scout input homes","locator":{"end_column":50,"end_line":81,"fragment":"2026-05-14-technique-reform-scout-input-homes","pointer":"","start_column":1,"start_line":81},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-technique-reform-scout-input-homes","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ed6ff035baf3556775b7edb","label":"technique reform config","locator":{"end_column":73,"end_line":86,"fragment":"","pointer":"","start_column":8,"start_line":86},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-scout-input-homes","target_ref":"parts/technique-reform-ingress/config/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:86:8:0:parts/technique-reform-ingress/config/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f0222c896ac8d982f64ae47","label":"technique reform data","locator":{"end_column":64,"end_line":88,"fragment":"","pointer":"","start_column":3,"start_line":88},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-scout-input-homes","target_ref":"parts/technique-reform-ingress/data/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:88:3:0:parts/technique-reform-ingress/data/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:253b03285625f8281be0f8e1","label":"2026-05-14 - Technique reform reports mechanics home","locator":{"end_column":55,"end_line":114,"fragment":"2026-05-14-technique-reform-reports-mechanics-home","pointer":"","start_column":1,"start_line":114},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-technique-reform-reports-mechanics-home","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:db4ed2315a24377494b7975b","label":"technique reform reports","locator":{"end_column":70,"end_line":119,"fragment":"","pointer":"","start_column":3,"start_line":119},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-reports-mechanics-home","target_ref":"parts/technique-reform-ingress/reports/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:119:3:0:parts/technique-reform-ingress/reports/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1d0e09e0cf1db005f509d1e4","label":"technique-reform-report-home","locator":{"end_column":103,"end_line":127,"fragment":"","pointer":"","start_column":3,"start_line":127},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-reports-mechanics-home","target_ref":"../../docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:127:3:0:../../docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d5e3ea793295a7570eacf64a","label":"2026-05-14 - Review packet mechanics home","locator":{"end_column":44,"end_line":151,"fragment":"2026-05-14-review-packet-mechanics-home","pointer":"","start_column":1,"start_line":151},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-review-packet-mechanics-home","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1e765f5e2eab6d3a1c25db26","label":"semantic review packets","locator":{"end_column":78,"end_line":156,"fragment":"","pointer":"","start_column":3,"start_line":156},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-review-packet-mechanics-home","target_ref":"parts/technique-reform-ingress/reviews/semantic/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:156:3:0:parts/technique-reform-ingress/reviews/semantic/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48d6a97b7e31159dd05b4a9f","label":"shadow review packets","locator":{"end_column":74,"end_line":158,"fragment":"","pointer":"","start_column":3,"start_line":158},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-review-packet-mechanics-home","target_ref":"parts/technique-reform-ingress/reviews/shadow/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:158:3:0:parts/technique-reform-ingress/reviews/shadow/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:43010d6108b5e248e207d2a0","label":"review-packet-mechanics-home","locator":{"end_column":103,"end_line":166,"fragment":"","pointer":"","start_column":3,"start_line":166},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-review-packet-mechanics-home","target_ref":"../../docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:166:3:0:../../docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:97e07b6b6488a993fd506bd9","label":"2026-05-06 - Roadmap contour cleanup","locator":{"end_column":39,"end_line":185,"fragment":"2026-05-06-roadmap-contour-cleanup","pointer":"","start_column":1,"start_line":185},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-06-roadmap-contour-cleanup","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d9cca39d42538b5715cd64fa","label":"Technique Reform Ingress reviews","locator":{"end_column":78,"end_line":192,"fragment":"","pointer":"","start_column":3,"start_line":192},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-06-roadmap-contour-cleanup","target_ref":"parts/technique-reform-ingress/reviews/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:192:3:0:parts/technique-reform-ingress/reviews/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f5b871f473ae4579ef72263d","label":"final tree migration ledger","locator":{"end_column":103,"end_line":194,"fragment":"","pointer":"","start_column":3,"start_line":194},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-06-roadmap-contour-cleanup","target_ref":"parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:194:3:0:parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7e49760fcb9b2c9a0e68eea0","label":"2026-05-05 - Final tree migration ledger","locator":{"end_column":43,"end_line":205,"fragment":"2026-05-05-final-tree-migration-ledger","pointer":"","start_column":1,"start_line":205},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-final-tree-migration-ledger","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:78816f94cbff2a14771d9967","label":"final-tree-migration-ledger","locator":{"end_column":103,"end_line":210,"fragment":"","pointer":"","start_column":3,"start_line":210},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-final-tree-migration-ledger","target_ref":"parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:210:3:0:parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d88fb68804246a08365fb588","label":"2026-05-05 - Tree route-card consolidation","locator":{"end_column":45,"end_line":234,"fragment":"2026-05-05-tree-route-card-consolidation","pointer":"","start_column":1,"start_line":234},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-tree-route-card-consolidation","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e4324749fb95dc63a1a79175","label":"2026-05-05 - Whole-tree closeout review","locator":{"end_column":42,"end_line":267,"fragment":"2026-05-05-whole-tree-closeout-review","pointer":"","start_column":1,"start_line":267},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-whole-tree-closeout-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:83d6503626aacfe80035413c","label":"whole-tree-closeout-review","locator":{"end_column":101,"end_line":272,"fragment":"","pointer":"","start_column":3,"start_line":272},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-whole-tree-closeout-review","target_ref":"parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:272:3:0:parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8f88468eb20919a4154ee0bb","label":"2026-05-05 - Landed tool-gateway pilot review","locator":{"end_column":48,"end_line":299,"fragment":"2026-05-05-landed-tool-gateway-pilot-review","pointer":"","start_column":1,"start_line":299},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-tool-gateway-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0757fa80eaad9392dacd6cde","label":"landed-tool-gateway-pilot-review","locator":{"end_column":113,"end_line":304,"fragment":"","pointer":"","start_column":3,"start_line":304},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-tool-gateway-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:304:3:0:parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f39f93b9a3c4de0e959ef823","label":"2026-05-05 - Tool-gateway tree pilot migration","locator":{"end_column":49,"end_line":328,"fragment":"2026-05-05-tool-gateway-tree-pilot-migration","pointer":"","start_column":1,"start_line":328},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-tool-gateway-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0e91310b8b9d5a89127ea771","label":"2026-05-05-tool-gateway-tree-pilot","locator":{"end_column":100,"end_line":335,"fragment":"","pointer":"","start_column":3,"start_line":335},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-tool-gateway-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:335:3:0:../../legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2b8d1e8dddcfa0700f266d9e","label":"2026-05-05 - Tool-gateway direct-read singleton review","locator":{"end_column":57,"end_line":359,"fragment":"2026-05-05-tool-gateway-direct-read-singleton-review","pointer":"","start_column":1,"start_line":359},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-tool-gateway-direct-read-singleton-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:aff08912402b6dfdbd8ca8dd","label":"tool-gateway-direct-read-singleton-review","locator":{"end_column":131,"end_line":364,"fragment":"","pointer":"","start_column":3,"start_line":364},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-tool-gateway-direct-read-singleton-review","target_ref":"parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:364:3:0:parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:968cf98f110d4b8dc2fb3274","label":"2026-05-05 - Landed practice-adoption-lifecycle pilot review","locator":{"end_column":63,"end_line":392,"fragment":"2026-05-05-landed-practice-adoption-lifecycle-pilot-review","pointer":"","start_column":1,"start_line":392},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-practice-adoption-lifecycle-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:39f0378e09bca7e59cc77ba7","label":"landed-practice-adoption-lifecycle-pilot-review","locator":{"end_column":143,"end_line":397,"fragment":"","pointer":"","start_column":3,"start_line":397},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-practice-adoption-lifecycle-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:397:3:0:parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:381adfed227f6c5942c4d579","label":"2026-05-05 - Practice-adoption-lifecycle tree pilot migration","locator":{"end_column":64,"end_line":422,"fragment":"2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","pointer":"","start_column":1,"start_line":422},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:40db078dcb0c0da32a983f1e","label":"2026-05-05-practice-adoption-lifecycle-tree-pilot","locator":{"end_column":130,"end_line":430,"fragment":"","pointer":"","start_column":3,"start_line":430},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:430:3:0:../../legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ffab739d35e6ba58e2075c1c","label":"2026-05-05 - Practice-adoption-lifecycle direct-read migration review","locator":{"end_column":72,"end_line":454,"fragment":"2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","pointer":"","start_column":1,"start_line":454},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8e82e4d9a122b9f00b3e5b35","label":"practice-adoption-lifecycle-direct-read-migration-review","locator":{"end_column":161,"end_line":459,"fragment":"","pointer":"","start_column":3,"start_line":459},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:459:3:0:parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d3c06010bfc4c554e9ba1c37","label":"2026-05-05 - Landed promotion-boundary pilot review","locator":{"end_column":54,"end_line":491,"fragment":"2026-05-05-landed-promotion-boundary-pilot-review","pointer":"","start_column":1,"start_line":491},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-promotion-boundary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:771c39ae44069d2e67558637","label":"landed-promotion-boundary-pilot-review","locator":{"end_column":125,"end_line":496,"fragment":"","pointer":"","start_column":3,"start_line":496},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-promotion-boundary-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:496:3:0:parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4b1a0c7f5ffbfd7eea447299","label":"2026-05-05 - Promotion-boundary tree pilot migration","locator":{"end_column":55,"end_line":519,"fragment":"2026-05-05-promotion-boundary-tree-pilot-migration","pointer":"","start_column":1,"start_line":519},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-promotion-boundary-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e93a7eec122ea242d270f333","label":"2026-05-05-promotion-boundary-tree-pilot","locator":{"end_column":112,"end_line":527,"fragment":"","pointer":"","start_column":3,"start_line":527},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-promotion-boundary-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:527:3:0:../../legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:45125a6d0ed26857fe947aed","label":"2026-05-05 - Promotion-boundary direct-read migration review","locator":{"end_column":63,"end_line":552,"fragment":"2026-05-05-promotion-boundary-direct-read-migration-review","pointer":"","start_column":1,"start_line":552},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-promotion-boundary-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:957cafa59466c35d66a80430","label":"promotion-boundary-direct-read-migration-review","locator":{"end_column":143,"end_line":557,"fragment":"","pointer":"","start_column":3,"start_line":557},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-promotion-boundary-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:557:3:0:parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c45e9531004ce607b75bbd83","label":"2026-05-05 - Landed automation-readiness pilot review","locator":{"end_column":56,"end_line":587,"fragment":"2026-05-05-landed-automation-readiness-pilot-review","pointer":"","start_column":1,"start_line":587},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-automation-readiness-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a70cc2e5acf11eb3c232ef68","label":"landed-automation-readiness-pilot-review","locator":{"end_column":129,"end_line":592,"fragment":"","pointer":"","start_column":3,"start_line":592},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-automation-readiness-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:592:3:0:parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:de399ea8f551d8c74dd731bf","label":"2026-05-05 - Automation-readiness tree pilot migration","locator":{"end_column":57,"end_line":615,"fragment":"2026-05-05-automation-readiness-tree-pilot-migration","pointer":"","start_column":1,"start_line":615},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-automation-readiness-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a1a3dea101c240674aba1a1d","label":"2026-05-05-automation-readiness-tree-pilot","locator":{"end_column":116,"end_line":623,"fragment":"","pointer":"","start_column":3,"start_line":623},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-automation-readiness-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:623:3:0:../../legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0504a93319a5388eecfd35c","label":"2026-05-05 - Automation-readiness direct-read migration review","locator":{"end_column":65,"end_line":648,"fragment":"2026-05-05-automation-readiness-direct-read-migration-review","pointer":"","start_column":1,"start_line":648},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-automation-readiness-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bb07a2ae8c83b9e8bcbb2db2","label":"automation-readiness-direct-read-migration-review","locator":{"end_column":147,"end_line":653,"fragment":"","pointer":"","start_column":3,"start_line":653},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-automation-readiness-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:653:3:0:parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1c577648083d1781f2ac9a5a","label":"2026-05-05 - Automation-governance split expansion closeout","locator":{"end_column":62,"end_line":684,"fragment":"2026-05-05-automation-governance-split-expansion-closeout","pointer":"","start_column":1,"start_line":684},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-automation-governance-split-expansion-closeout","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7ef6623ec319d504551ed175","label":"automation-governance-split-expansion-closeout","locator":{"end_column":141,"end_line":689,"fragment":"","pointer":"","start_column":3,"start_line":689},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-automation-governance-split-expansion-closeout","target_ref":"parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:689:3:0:parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:284bd195ab23d695cf046214","label":"2026-05-05 - Automation-governance direct-read split review","locator":{"end_column":62,"end_line":718,"fragment":"2026-05-05-automation-governance-direct-read-split-review","pointer":"","start_column":1,"start_line":718},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-automation-governance-direct-read-split-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6dd007311b000183e3bc8a47","label":"automation-governance-direct-read-split-review","locator":{"end_column":141,"end_line":723,"fragment":"","pointer":"","start_column":3,"start_line":723},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-automation-governance-direct-read-split-review","target_ref":"parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:723:3:0:parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9817c4fd67d14120eefb1104","label":"2026-05-05 - Landed owner-truth-closeout pilot review","locator":{"end_column":56,"end_line":755,"fragment":"2026-05-05-landed-owner-truth-closeout-pilot-review","pointer":"","start_column":1,"start_line":755},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-owner-truth-closeout-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e1ead3aaf166eb4553e38628","label":"landed-owner-truth-closeout-pilot-review","locator":{"end_column":129,"end_line":760,"fragment":"","pointer":"","start_column":3,"start_line":760},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-owner-truth-closeout-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:760:3:0:parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9dcae1f456a38d2e8c43d930","label":"2026-05-05 - Owner-truth-closeout tree pilot migration","locator":{"end_column":57,"end_line":791,"fragment":"2026-05-05-owner-truth-closeout-tree-pilot-migration","pointer":"","start_column":1,"start_line":791},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-owner-truth-closeout-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:37ec2f50fc9d0f10351df875","label":"2026-05-05-owner-truth-closeout-tree-pilot","locator":{"end_column":116,"end_line":804,"fragment":"","pointer":"","start_column":3,"start_line":804},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-owner-truth-closeout-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:804:3:0:../../legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dc299e7daf0d5a4968cd4158","label":"2026-05-05 - Owner-truth-closeout direct-read migration review","locator":{"end_column":65,"end_line":830,"fragment":"2026-05-05-owner-truth-closeout-direct-read-migration-review","pointer":"","start_column":1,"start_line":830},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-owner-truth-closeout-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9322b41b89e03ec868c0ba98","label":"owner-truth-closeout-direct-read-migration-review","locator":{"end_column":147,"end_line":835,"fragment":"","pointer":"","start_column":3,"start_line":835},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-owner-truth-closeout-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:835:3:0:parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e7a01f2c70da18484885fa40","label":"2026-05-05 - Landed runtime-truth-lifecycle pilot review","locator":{"end_column":59,"end_line":868,"fragment":"2026-05-05-landed-runtime-truth-lifecycle-pilot-review","pointer":"","start_column":1,"start_line":868},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-runtime-truth-lifecycle-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f9401b99e1455d16e8d6ba54","label":"landed-runtime-truth-lifecycle-pilot-review","locator":{"end_column":135,"end_line":873,"fragment":"","pointer":"","start_column":3,"start_line":873},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-runtime-truth-lifecycle-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:873:3:0:parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:34eb09a46fcb4b6744c98fe7","label":"2026-05-05 - Runtime-truth-lifecycle tree pilot migration","locator":{"end_column":60,"end_line":900,"fragment":"2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","pointer":"","start_column":1,"start_line":900},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b6d9b77c690cef4d4b9ea74c","label":"2026-05-05-runtime-truth-lifecycle-tree-pilot","locator":{"end_column":122,"end_line":911,"fragment":"","pointer":"","start_column":3,"start_line":911},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:911:3:0:../../legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c6f7737b1a13bdc4969d0d41","label":"2026-05-05 - Runtime-truth-lifecycle direct-read migration review","locator":{"end_column":68,"end_line":935,"fragment":"2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","pointer":"","start_column":1,"start_line":935},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48af115e5618233e6d5c5464","label":"runtime-truth-lifecycle-direct-read-migration-review","locator":{"end_column":153,"end_line":940,"fragment":"","pointer":"","start_column":3,"start_line":940},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:940:3:0:parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:913696f70ee3614a4b085738","label":"2026-05-05 - Landed review-evidence pilot review","locator":{"end_column":51,"end_line":971,"fragment":"2026-05-05-landed-review-evidence-pilot-review","pointer":"","start_column":1,"start_line":971},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-review-evidence-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:103ee52f1a8abdadbd55e7ef","label":"landed-review-evidence-pilot-review","locator":{"end_column":119,"end_line":976,"fragment":"","pointer":"","start_column":3,"start_line":976},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-review-evidence-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:976:3:0:parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:331161a87e9d7671baa6d566","label":"2026-05-05 - Review-evidence tree pilot migration","locator":{"end_column":52,"end_line":1003,"fragment":"2026-05-05-review-evidence-tree-pilot-migration","pointer":"","start_column":1,"start_line":1003},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-review-evidence-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:72ef0f5d7019f62964f888ff","label":"2026-05-05-review-evidence-tree-pilot","locator":{"end_column":106,"end_line":1014,"fragment":"","pointer":"","start_column":3,"start_line":1014},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-review-evidence-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-review-evidence-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1014:3:0:../../legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d12f98e1f5a909b244323b03","label":"2026-05-05 - Review-evidence direct-read migration review","locator":{"end_column":60,"end_line":1037,"fragment":"2026-05-05-review-evidence-direct-read-migration-review","pointer":"","start_column":1,"start_line":1037},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-review-evidence-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a063d619ddc555e2645a8d33","label":"review-evidence-direct-read-migration-review","locator":{"end_column":137,"end_line":1042,"fragment":"","pointer":"","start_column":3,"start_line":1042},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-review-evidence-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1042:3:0:parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b9ad3bdb8a8867bcc1011871","label":"2026-05-05 - Landed approval-evidence pilot review","locator":{"end_column":53,"end_line":1070,"fragment":"2026-05-05-landed-approval-evidence-pilot-review","pointer":"","start_column":1,"start_line":1070},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-approval-evidence-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4f018bbac47746f51fbefd77","label":"landed-approval-evidence-pilot-review","locator":{"end_column":123,"end_line":1075,"fragment":"","pointer":"","start_column":3,"start_line":1075},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-approval-evidence-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1075:3:0:parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:87d652e6f849b48a8a645769","label":"2026-05-05 - Approval-evidence tree pilot migration","locator":{"end_column":54,"end_line":1101,"fragment":"2026-05-05-approval-evidence-tree-pilot-migration","pointer":"","start_column":1,"start_line":1101},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-approval-evidence-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:791631e8446de34510324b33","label":"2026-05-05-approval-evidence-tree-pilot","locator":{"end_column":110,"end_line":1112,"fragment":"","pointer":"","start_column":3,"start_line":1112},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-approval-evidence-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1112:3:0:../../legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d9f7d2c9e588114de5b15880","label":"2026-05-05 - Approval-evidence direct-read migration review","locator":{"end_column":62,"end_line":1135,"fragment":"2026-05-05-approval-evidence-direct-read-migration-review","pointer":"","start_column":1,"start_line":1135},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-approval-evidence-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bc08165373bfb51a1c5ddcca","label":"approval-evidence-direct-read-migration-review","locator":{"end_column":141,"end_line":1140,"fragment":"","pointer":"","start_column":3,"start_line":1140},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-approval-evidence-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1140:3:0:parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:99d470dacf409dbce1c41b36","label":"2026-05-05 - Landed decision-routing pilot review","locator":{"end_column":52,"end_line":1166,"fragment":"2026-05-05-landed-decision-routing-pilot-review","pointer":"","start_column":1,"start_line":1166},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-decision-routing-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0b4996d84a8e51517d948e80","label":"landed-decision-routing-pilot-review","locator":{"end_column":121,"end_line":1171,"fragment":"","pointer":"","start_column":3,"start_line":1171},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-decision-routing-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1171:3:0:parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:43ec1f220c792281b651922b","label":"2026-05-05 - Decision-routing tree pilot migration","locator":{"end_column":53,"end_line":1198,"fragment":"2026-05-05-decision-routing-tree-pilot-migration","pointer":"","start_column":1,"start_line":1198},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-decision-routing-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1dc55c602c212acb108c414a","label":"2026-05-05 - Decision-routing direct-read migration review","locator":{"end_column":61,"end_line":1232,"fragment":"2026-05-05-decision-routing-direct-read-migration-review","pointer":"","start_column":1,"start_line":1232},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-decision-routing-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a99ec60eb0eea9042ed252bb","label":"decision-routing-direct-read-migration-review","locator":{"end_column":139,"end_line":1237,"fragment":"","pointer":"","start_column":3,"start_line":1237},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-decision-routing-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1237:3:0:parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:38dca11678d9ef7ba8a2d4a5","label":"2026-05-05 - Landed donor-harvest pilot review","locator":{"end_column":49,"end_line":1265,"fragment":"2026-05-05-landed-donor-harvest-pilot-review","pointer":"","start_column":1,"start_line":1265},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-donor-harvest-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:84f340fb483bf2db58999fc6","label":"landed-donor-harvest-pilot-review","locator":{"end_column":115,"end_line":1270,"fragment":"","pointer":"","start_column":3,"start_line":1270},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-donor-harvest-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1270:3:0:parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f29ea3da715eb627078ec08","label":"2026-05-05 - Donor-harvest tree pilot migration","locator":{"end_column":50,"end_line":1298,"fragment":"2026-05-05-donor-harvest-tree-pilot-migration","pointer":"","start_column":1,"start_line":1298},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-donor-harvest-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:90b879d19a28ec93da849bf5","label":"2026-05-05 - Donor-harvest direct-read migration review","locator":{"end_column":58,"end_line":1330,"fragment":"2026-05-05-donor-harvest-direct-read-migration-review","pointer":"","start_column":1,"start_line":1330},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-donor-harvest-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2a51e5dec608e32c0fd03ea0","label":"donor-harvest-direct-read-migration-review","locator":{"end_column":133,"end_line":1335,"fragment":"","pointer":"","start_column":3,"start_line":1335},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-donor-harvest-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1335:3:0:parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b84016e3ea057a2929d35a97","label":"2026-05-05 - Landed agent-workflows-core pilot review","locator":{"end_column":56,"end_line":1363,"fragment":"2026-05-05-landed-agent-workflows-core-pilot-review","pointer":"","start_column":1,"start_line":1363},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-agent-workflows-core-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7b206913cdd14d12e7248ba5","label":"landed-agent-workflows-core-pilot-review","locator":{"end_column":129,"end_line":1368,"fragment":"","pointer":"","start_column":3,"start_line":1368},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-agent-workflows-core-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1368:3:0:parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:49b99bc821b905f242aa7f58","label":"2026-05-05 - Agent-workflows-core tree pilot migration","locator":{"end_column":57,"end_line":1396,"fragment":"2026-05-05-agent-workflows-core-tree-pilot-migration","pointer":"","start_column":1,"start_line":1396},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-agent-workflows-core-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:41ae72fd66a60691cbc429a7","label":"2026-05-05 - Agent-workflows-core direct-read migration review","locator":{"end_column":65,"end_line":1429,"fragment":"2026-05-05-agent-workflows-core-direct-read-migration-review","pointer":"","start_column":1,"start_line":1429},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-agent-workflows-core-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1b6a27a0e825e14c6ebee688","label":"agent-workflows-core-direct-read-migration-review","locator":{"end_column":147,"end_line":1434,"fragment":"","pointer":"","start_column":3,"start_line":1434},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-agent-workflows-core-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1434:3:0:parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c59326c82b9702826f6012b0","label":"2026-05-05 - Landed intent-chain pilot review","locator":{"end_column":48,"end_line":1461,"fragment":"2026-05-05-landed-intent-chain-pilot-review","pointer":"","start_column":1,"start_line":1461},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-intent-chain-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:41ec7be966489452ef5533bc","label":"landed-intent-chain-pilot-review","locator":{"end_column":113,"end_line":1466,"fragment":"","pointer":"","start_column":3,"start_line":1466},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-intent-chain-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1466:3:0:parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e11d9785afbebf273904d45","label":"2026-05-05 - Intent-chain tree pilot migration","locator":{"end_column":49,"end_line":1492,"fragment":"2026-05-05-intent-chain-tree-pilot-migration","pointer":"","start_column":1,"start_line":1492},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-intent-chain-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1898ebb753bef4a315b5daf0","label":"2026-05-05 - Intent-chain direct-read migration review","locator":{"end_column":57,"end_line":1524,"fragment":"2026-05-05-intent-chain-direct-read-migration-review","pointer":"","start_column":1,"start_line":1524},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-intent-chain-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:870048846b65b97f0634c2db","label":"intent-chain-direct-read-migration-review","locator":{"end_column":131,"end_line":1529,"fragment":"","pointer":"","start_column":3,"start_line":1529},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-intent-chain-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1529:3:0:parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2751a0407bee8e3f618e396e","label":"2026-05-05 - Landed ready-work-graphs pilot review","locator":{"end_column":53,"end_line":1554,"fragment":"2026-05-05-landed-ready-work-graphs-pilot-review","pointer":"","start_column":1,"start_line":1554},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-ready-work-graphs-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bea2937e011b57dab26e3599","label":"landed-ready-work-graphs-pilot-review","locator":{"end_column":123,"end_line":1559,"fragment":"","pointer":"","start_column":3,"start_line":1559},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-ready-work-graphs-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1559:3:0:parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d96389decdb346b2666062f9","label":"2026-05-05 - Ready-work-graphs tree pilot migration","locator":{"end_column":54,"end_line":1585,"fragment":"2026-05-05-ready-work-graphs-tree-pilot-migration","pointer":"","start_column":1,"start_line":1585},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-ready-work-graphs-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bac9bea0a80a1a8b1501aac2","label":"2026-05-05 - Ready-work-graphs direct-read migration review","locator":{"end_column":62,"end_line":1617,"fragment":"2026-05-05-ready-work-graphs-direct-read-migration-review","pointer":"","start_column":1,"start_line":1617},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-ready-work-graphs-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2209bd8591c82d444a88280e","label":"ready-work-graphs-direct-read-migration-review","locator":{"end_column":141,"end_line":1622,"fragment":"","pointer":"","start_column":3,"start_line":1622},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-ready-work-graphs-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1622:3:0:parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:09f749eb8340de0552565280","label":"2026-05-05 - Landed antifragility-recovery pilot review","locator":{"end_column":58,"end_line":1645,"fragment":"2026-05-05-landed-antifragility-recovery-pilot-review","pointer":"","start_column":1,"start_line":1645},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-antifragility-recovery-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d99967e0fc05fe7bd60f3c3","label":"landed-antifragility-recovery-pilot-review","locator":{"end_column":133,"end_line":1650,"fragment":"","pointer":"","start_column":3,"start_line":1650},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-antifragility-recovery-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1650:3:0:parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ba4a2036b4431026c79d7bb7","label":"2026-05-05 - Antifragility-recovery tree pilot migration","locator":{"end_column":59,"end_line":1675,"fragment":"2026-05-05-antifragility-recovery-tree-pilot-migration","pointer":"","start_column":1,"start_line":1675},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-antifragility-recovery-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dfa1518b40d09d2589cb0671","label":"2026-05-05 - Antifragility-recovery direct-read migration review","locator":{"end_column":67,"end_line":1710,"fragment":"2026-05-05-antifragility-recovery-direct-read-migration-review","pointer":"","start_column":1,"start_line":1710},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-antifragility-recovery-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3eeb6d4d138f0a0bffda5abe","label":"antifragility-recovery-direct-read-migration-review","locator":{"end_column":151,"end_line":1715,"fragment":"","pointer":"","start_column":3,"start_line":1715},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-antifragility-recovery-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1715:3:0:parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b048265ff5fe8a14c23f104f","label":"2026-05-05 - Landed history-artifacts pilot review","locator":{"end_column":53,"end_line":1742,"fragment":"2026-05-05-landed-history-artifacts-pilot-review","pointer":"","start_column":1,"start_line":1742},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-history-artifacts-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:59b3c7f2d4d48994af1f8f8f","label":"landed-history-artifacts-pilot-review","locator":{"end_column":123,"end_line":1747,"fragment":"","pointer":"","start_column":3,"start_line":1747},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-history-artifacts-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1747:3:0:parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:77023c8319f82cc607b73deb","label":"2026-05-05 - History-artifacts tree pilot migration","locator":{"end_column":54,"end_line":1772,"fragment":"2026-05-05-history-artifacts-tree-pilot-migration","pointer":"","start_column":1,"start_line":1772},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-history-artifacts-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9da2d035d92c4a6eaf0eba76","label":"2026-05-05 - History-artifacts direct-read migration review","locator":{"end_column":62,"end_line":1808,"fragment":"2026-05-05-history-artifacts-direct-read-migration-review","pointer":"","start_column":1,"start_line":1808},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-history-artifacts-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f8664b4d51670364944ffd87","label":"history-artifacts-direct-read-migration-review","locator":{"end_column":141,"end_line":1813,"fragment":"","pointer":"","start_column":3,"start_line":1813},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-history-artifacts-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1813:3:0:parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:057ff7e8c26d1097d532deba","label":"2026-05-05 - Landed published-summary pilot review","locator":{"end_column":53,"end_line":1837,"fragment":"2026-05-05-landed-published-summary-pilot-review","pointer":"","start_column":1,"start_line":1837},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-published-summary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64f0774c9e59fbb71902788a","label":"landed-published-summary-pilot-review","locator":{"end_column":123,"end_line":1842,"fragment":"","pointer":"","start_column":3,"start_line":1842},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-published-summary-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1842:3:0:parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ab46a6cef3a975fdcf569547","label":"2026-05-05 - Published-summary tree pilot migration","locator":{"end_column":54,"end_line":1866,"fragment":"2026-05-05-published-summary-tree-pilot-migration","pointer":"","start_column":1,"start_line":1866},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-published-summary-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:10664d536eb41be0986f8fda","label":"2026-05-05 - Published-summary direct-read migration review","locator":{"end_column":62,"end_line":1902,"fragment":"2026-05-05-published-summary-direct-read-migration-review","pointer":"","start_column":1,"start_line":1902},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-published-summary-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:83a99ae0c196b4f94d216a8c","label":"published-summary-direct-read-migration-review","locator":{"end_column":141,"end_line":1907,"fragment":"","pointer":"","start_column":3,"start_line":1907},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-published-summary-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1907:3:0:parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:718265400cf90bdd1c1d31f2","label":"2026-05-05 - Landed evaluation-chain pilot review","locator":{"end_column":52,"end_line":1937,"fragment":"2026-05-05-landed-evaluation-chain-pilot-review","pointer":"","start_column":1,"start_line":1937},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-evaluation-chain-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d572d850d84116f7b270c816","label":"landed-evaluation-chain-pilot-review","locator":{"end_column":121,"end_line":1942,"fragment":"","pointer":"","start_column":3,"start_line":1942},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-evaluation-chain-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1942:3:0:parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c7c10b39cd8215b54b018bab","label":"2026-05-05 - Evaluation-chain tree pilot migration","locator":{"end_column":53,"end_line":1967,"fragment":"2026-05-05-evaluation-chain-tree-pilot-migration","pointer":"","start_column":1,"start_line":1967},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-evaluation-chain-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6c53cf85148ba42b66316602","label":"2026-05-05 - Evaluation-chain direct-read migration review","locator":{"end_column":61,"end_line":2002,"fragment":"2026-05-05-evaluation-chain-direct-read-migration-review","pointer":"","start_column":1,"start_line":2002},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-evaluation-chain-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:02ca7816517dcc01fef68ba4","label":"evaluation-chain-direct-read-migration-review","locator":{"end_column":139,"end_line":2007,"fragment":"","pointer":"","start_column":3,"start_line":2007},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-evaluation-chain-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2007:3:0:parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bea6289f42a07cb7cc7e1664","label":"2026-05-05 - Landed skill-support pilot review","locator":{"end_column":49,"end_line":2035,"fragment":"2026-05-05-landed-skill-support-pilot-review","pointer":"","start_column":1,"start_line":2035},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-skill-support-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:91dbf47a649356c5b11518c3","label":"landed-skill-support-pilot-review","locator":{"end_column":115,"end_line":2040,"fragment":"","pointer":"","start_column":3,"start_line":2040},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-skill-support-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2040:3:0:parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e11c1be6de38ffea1fb42fa2","label":"2026-05-05 - Skill-support tree pilot migration","locator":{"end_column":50,"end_line":2064,"fragment":"2026-05-05-skill-support-tree-pilot-migration","pointer":"","start_column":1,"start_line":2064},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-skill-support-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0aae3ef3864d985987eb0a52","label":"2026-05-05 - Skill-support direct-read migration review","locator":{"end_column":58,"end_line":2098,"fragment":"2026-05-05-skill-support-direct-read-migration-review","pointer":"","start_column":1,"start_line":2098},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-skill-support-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a3c2f6b0f8f1d0235b6295b5","label":"skill-support-direct-read-migration-review","locator":{"end_column":133,"end_line":2103,"fragment":"","pointer":"","start_column":3,"start_line":2103},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-skill-support-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2103:3:0:parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:046ff90180f0d838bc826635","label":"2026-05-05 - Landed skill-discovery pilot review","locator":{"end_column":51,"end_line":2131,"fragment":"2026-05-05-landed-skill-discovery-pilot-review","pointer":"","start_column":1,"start_line":2131},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-skill-discovery-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:79c21381113716684739b486","label":"landed-skill-discovery-pilot-review","locator":{"end_column":119,"end_line":2136,"fragment":"","pointer":"","start_column":3,"start_line":2136},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-skill-discovery-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2136:3:0:parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:14c570fe2f20ecb6fbb1bbf7","label":"2026-05-05 - Skill-discovery tree pilot migration","locator":{"end_column":52,"end_line":2160,"fragment":"2026-05-05-skill-discovery-tree-pilot-migration","pointer":"","start_column":1,"start_line":2160},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-skill-discovery-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d2e3cac3d40f6ac63b86ac33","label":"2026-05-05 - Skill-discovery direct-read migration review","locator":{"end_column":60,"end_line":2193,"fragment":"2026-05-05-skill-discovery-direct-read-migration-review","pointer":"","start_column":1,"start_line":2193},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-skill-discovery-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9461d240066550daf7314889","label":"skill-discovery-direct-read-migration-review","locator":{"end_column":137,"end_line":2198,"fragment":"","pointer":"","start_column":3,"start_line":2198},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-skill-discovery-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2198:3:0:parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:53f77f155569baec028109d2","label":"2026-05-05 - Landed capability-boundary pilot review","locator":{"end_column":55,"end_line":2227,"fragment":"2026-05-05-landed-capability-boundary-pilot-review","pointer":"","start_column":1,"start_line":2227},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-capability-boundary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:73b55f1f1ad04cd50cf92cb4","label":"landed-capability-boundary-pilot-review","locator":{"end_column":127,"end_line":2232,"fragment":"","pointer":"","start_column":3,"start_line":2232},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-capability-boundary-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2232:3:0:parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:051b02ed8b1bdf8ac9ea21b9","label":"2026-05-04 - Capability-boundary tree pilot migration","locator":{"end_column":56,"end_line":2259,"fragment":"2026-05-04-capability-boundary-tree-pilot-migration","pointer":"","start_column":1,"start_line":2259},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-capability-boundary-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a65e2f6b2fe662a248e48f48","label":"2026-05-04 - Capability-boundary direct-read migration review","locator":{"end_column":64,"end_line":2293,"fragment":"2026-05-04-capability-boundary-direct-read-migration-review","pointer":"","start_column":1,"start_line":2293},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-capability-boundary-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:860280c9a6c31d1c5e1df062","label":"capability-boundary-direct-read-migration-review","locator":{"end_column":145,"end_line":2298,"fragment":"","pointer":"","start_column":3,"start_line":2298},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-capability-boundary-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2298:3:0:parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:27a27691628634473a284706","label":"2026-05-04 - Landed capability-registry pilot review","locator":{"end_column":55,"end_line":2326,"fragment":"2026-05-04-landed-capability-registry-pilot-review","pointer":"","start_column":1,"start_line":2326},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-capability-registry-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e35d15c08dc53f6fa1b36d21","label":"landed-capability-registry-pilot-review","locator":{"end_column":127,"end_line":2331,"fragment":"","pointer":"","start_column":3,"start_line":2331},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-capability-registry-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2331:3:0:parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c35904d807fbb36da4bff99c","label":"2026-05-04 - Capability-registry tree pilot migration","locator":{"end_column":56,"end_line":2358,"fragment":"2026-05-04-capability-registry-tree-pilot-migration","pointer":"","start_column":1,"start_line":2358},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-capability-registry-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5fded54032d0570734e963d5","label":"2026-05-04 - Capability-registry direct-read migration review","locator":{"end_column":64,"end_line":2398,"fragment":"2026-05-04-capability-registry-direct-read-migration-review","pointer":"","start_column":1,"start_line":2398},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-capability-registry-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f7c86538e0ed4bb7ac1ab4ff","label":"capability-registry-direct-read-migration-review","locator":{"end_column":145,"end_line":2403,"fragment":"","pointer":"","start_column":3,"start_line":2403},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-capability-registry-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2403:3:0:parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ea15d53e06482ae44996b8d","label":"2026-05-04 - Landed docs-boundary pilot review","locator":{"end_column":49,"end_line":2429,"fragment":"2026-05-04-landed-docs-boundary-pilot-review","pointer":"","start_column":1,"start_line":2429},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-docs-boundary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:105a3685aae4c469219f8a52","label":"landed-docs-boundary-pilot-review","locator":{"end_column":115,"end_line":2434,"fragment":"","pointer":"","start_column":3,"start_line":2434},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-docs-boundary-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2434:3:0:parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:abdebde8c941fbbdcbc9cb23","label":"2026-05-04 - Docs-boundary tree pilot migration","locator":{"end_column":50,"end_line":2461,"fragment":"2026-05-04-docs-boundary-tree-pilot-migration","pointer":"","start_column":1,"start_line":2461},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-docs-boundary-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:768a537503d19171b217e678","label":"2026-05-04 - Docs-boundary direct-read migration review","locator":{"end_column":58,"end_line":2502,"fragment":"2026-05-04-docs-boundary-direct-read-migration-review","pointer":"","start_column":1,"start_line":2502},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-docs-boundary-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e975d416ca576f78fdacda7","label":"docs-boundary-direct-read-migration-review","locator":{"end_column":133,"end_line":2507,"fragment":"","pointer":"","start_column":3,"start_line":2507},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-docs-boundary-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2507:3:0:parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a38dcec829878a0e92bb2f4","label":"2026-05-04 - Landed kag-source-lift pilot review","locator":{"end_column":51,"end_line":2534,"fragment":"2026-05-04-landed-kag-source-lift-pilot-review","pointer":"","start_column":1,"start_line":2534},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-kag-source-lift-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e1373761c4570862ae11d0b","label":"landed-kag-source-lift-pilot-review","locator":{"end_column":119,"end_line":2539,"fragment":"","pointer":"","start_column":3,"start_line":2539},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-kag-source-lift-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2539:3:0:parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5e55e38b2241bfbf0198a377","label":"2026-05-04 - Kag-source-lift tree pilot migration","locator":{"end_column":52,"end_line":2566,"fragment":"2026-05-04-kag-source-lift-tree-pilot-migration","pointer":"","start_column":1,"start_line":2566},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-kag-source-lift-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f64478221190864eea4b6e9","label":"2026-05-04 - Kag-source-lift direct-read migration review","locator":{"end_column":60,"end_line":2607,"fragment":"2026-05-04-kag-source-lift-direct-read-migration-review","pointer":"","start_column":1,"start_line":2607},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-kag-source-lift-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e02f7d1b32d5fdc9f08142ac","label":"kag-source-lift-direct-read-migration-review","locator":{"end_column":137,"end_line":2612,"fragment":"","pointer":"","start_column":3,"start_line":2612},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-kag-source-lift-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2612:3:0:parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76d0dfe81f027a37d297bcb7","label":"2026-05-04 - Landed instruction-surface pilot review","locator":{"end_column":55,"end_line":2639,"fragment":"2026-05-04-landed-instruction-surface-pilot-review","pointer":"","start_column":1,"start_line":2639},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-instruction-surface-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2c612307a8f59d5fd5a7ef34","label":"landed-instruction-surface-pilot-review","locator":{"end_column":127,"end_line":2644,"fragment":"","pointer":"","start_column":3,"start_line":2644},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-instruction-surface-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2644:3:0:parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ac7bc8347f585b8b4f4ca061","label":"2026-05-04 - Instruction-surface tree pilot migration","locator":{"end_column":56,"end_line":2670,"fragment":"2026-05-04-instruction-surface-tree-pilot-migration","pointer":"","start_column":1,"start_line":2670},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-instruction-surface-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ee91cf0af15958c5fae50aec","label":"2026-05-04 - Instruction-surface direct-read migration review","locator":{"end_column":64,"end_line":2707,"fragment":"2026-05-04-instruction-surface-direct-read-migration-review","pointer":"","start_column":1,"start_line":2707},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-instruction-surface-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7409febee80b7f64bfe54fe0","label":"instruction-surface-direct-read-migration-review","locator":{"end_column":145,"end_line":2712,"fragment":"","pointer":"","start_column":3,"start_line":2712},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-instruction-surface-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2712:3:0:parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5aa45f47b64d7ad2f9f08dbc","label":"2026-05-04 - Landed diagnosis-repair pilot review","locator":{"end_column":52,"end_line":2737,"fragment":"2026-05-04-landed-diagnosis-repair-pilot-review","pointer":"","start_column":1,"start_line":2737},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-diagnosis-repair-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3bb9d117a48b2b9184645745","label":"landed-diagnosis-repair-pilot-review","locator":{"end_column":121,"end_line":2742,"fragment":"","pointer":"","start_column":3,"start_line":2742},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-diagnosis-repair-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2742:3:0:parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:46c1fb83bacac038ba500e4f","label":"2026-05-04 - Diagnosis-repair tree pilot migration","locator":{"end_column":53,"end_line":2766,"fragment":"2026-05-04-diagnosis-repair-tree-pilot-migration","pointer":"","start_column":1,"start_line":2766},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-diagnosis-repair-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2f5dadc7cb9b064eaeaa2ba9","label":"2026-05-04 - Diagnosis-repair direct-read migration review","locator":{"end_column":61,"end_line":2802,"fragment":"2026-05-04-diagnosis-repair-direct-read-migration-review","pointer":"","start_column":1,"start_line":2802},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-diagnosis-repair-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:19a019593175af0acf51adb1","label":"diagnosis-repair-direct-read-migration-review","locator":{"end_column":139,"end_line":2807,"fragment":"","pointer":"","start_column":3,"start_line":2807},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-diagnosis-repair-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2807:3:0:parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76fe904136ec55f58fd47ff1","label":"2026-05-04 - Landed media-ingest pilot review","locator":{"end_column":48,"end_line":2831,"fragment":"2026-05-04-landed-media-ingest-pilot-review","pointer":"","start_column":1,"start_line":2831},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-media-ingest-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ed4e862eb4bc5c0669a201c0","label":"landed-media-ingest-pilot-review","locator":{"end_column":113,"end_line":2836,"fragment":"","pointer":"","start_column":3,"start_line":2836},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-media-ingest-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2836:3:0:parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:146d437cd613bd3eb53a4080","label":"2026-05-04 - Media-ingest tree pilot migration","locator":{"end_column":49,"end_line":2859,"fragment":"2026-05-04-media-ingest-tree-pilot-migration","pointer":"","start_column":1,"start_line":2859},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-media-ingest-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6647425054979f808a370245","label":"2026-05-04 - Media-ingest direct-read migration review","locator":{"end_column":57,"end_line":2894,"fragment":"2026-05-04-media-ingest-direct-read-migration-review","pointer":"","start_column":1,"start_line":2894},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-media-ingest-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6e3545baee2e886ac2f6e9d0","label":"media-ingest-direct-read-migration-review","locator":{"end_column":131,"end_line":2899,"fragment":"","pointer":"","start_column":3,"start_line":2899},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-media-ingest-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2899:3:0:parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8933a28512991957a4490caf","label":"2026-05-04 - Landed handoff-continuation pilot review","locator":{"end_column":56,"end_line":2922,"fragment":"2026-05-04-landed-handoff-continuation-pilot-review","pointer":"","start_column":1,"start_line":2922},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-handoff-continuation-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3ce2352a20d161cc70d091b5","label":"landed-handoff-continuation-pilot-review","locator":{"end_column":129,"end_line":2927,"fragment":"","pointer":"","start_column":3,"start_line":2927},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-handoff-continuation-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2927:3:0:parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a89db87998622fad15d6f4a7","label":"2026-05-04 - Handoff-continuation tree pilot migration","locator":{"end_column":57,"end_line":2950,"fragment":"2026-05-04-handoff-continuation-tree-pilot-migration","pointer":"","start_column":1,"start_line":2950},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-handoff-continuation-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6f5fbc6fa4383888d643da53","label":"2026-05-04 - Handoff-continuation direct-read migration review","locator":{"end_column":65,"end_line":2983,"fragment":"2026-05-04-handoff-continuation-direct-read-migration-review","pointer":"","start_column":1,"start_line":2983},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-handoff-continuation-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0c92be94bcb3db63f7d6e3e8","label":"handoff-continuation-direct-read-migration-review","locator":{"end_column":147,"end_line":2988,"fragment":"","pointer":"","start_column":3,"start_line":2988},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-handoff-continuation-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2988:3:0:parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e88232cbe82d3a2bcc2d501d","label":"2026-05-04 - Landed review-compaction pilot review","locator":{"end_column":53,"end_line":3010,"fragment":"2026-05-04-landed-review-compaction-pilot-review","pointer":"","start_column":1,"start_line":3010},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-review-compaction-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b714f4e8bf2f7dce419331e5","label":"landed-review-compaction-pilot-review","locator":{"end_column":123,"end_line":3015,"fragment":"","pointer":"","start_column":3,"start_line":3015},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-review-compaction-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3015:3:0:parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:45b3fd6cf4fe4bbe4f85c260","label":"2026-05-04 - Review-compaction tree pilot migration","locator":{"end_column":54,"end_line":3036,"fragment":"2026-05-04-review-compaction-tree-pilot-migration","pointer":"","start_column":1,"start_line":3036},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-review-compaction-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:792135dbd944cfb97e192f0b","label":"2026-05-04 - Review-compaction direct-read migration review","locator":{"end_column":62,"end_line":3067,"fragment":"2026-05-04-review-compaction-direct-read-migration-review","pointer":"","start_column":1,"start_line":3067},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-review-compaction-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e37c71a6b8fffdd9c6183264","label":"review-compaction-direct-read-migration-review","locator":{"end_column":141,"end_line":3072,"fragment":"","pointer":"","start_column":3,"start_line":3072},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-review-compaction-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3072:3:0:parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ced989c831cc1cd299698795","label":"2026-05-04 - Tree projection and first review pack","locator":{"end_column":53,"end_line":3094,"fragment":"2026-05-04-tree-projection-and-first-review-pack","pointer":"","start_column":1,"start_line":3094},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-tree-projection-and-first-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f9d14d1c54b5820ec0ca8945","label":"technique_tree_projection","locator":{"end_column":99,"end_line":3099,"fragment":"","pointer":"","start_column":3,"start_line":3099},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-tree-projection-and-first-review-pack","target_ref":"parts/technique-reform-ingress/reports/technique_tree_projection.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3099:3:0:parts/technique-reform-ingress/reports/technique_tree_projection.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:705deb39bd35fc7154244031","label":"first-tree-projection-review-pack","locator":{"end_column":115,"end_line":3104,"fragment":"","pointer":"","start_column":3,"start_line":3104},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-tree-projection-and-first-review-pack","target_ref":"parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3104:3:0:parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:455607dc92bef639932c35f9","label":"2026-05-04 - Family shelf review pack","locator":{"end_column":40,"end_line":3125,"fragment":"2026-05-04-family-shelf-review-pack","pointer":"","start_column":1,"start_line":3125},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-family-shelf-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8dca12fe6b66f1df5b551e53","label":"first-family-shelf-review-pack","locator":{"end_column":109,"end_line":3130,"fragment":"","pointer":"","start_column":3,"start_line":3130},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-family-shelf-review-pack","target_ref":"parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3130:3:0:parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8c7de2f7c1f23f868e92f93c","label":"2026-05-04 - Post-0054 kind-audit hold review","locator":{"end_column":48,"end_line":3155,"fragment":"2026-05-04-post-0054-kind-audit-hold-review","pointer":"","start_column":1,"start_line":3155},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-post-0054-kind-audit-hold-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2335eba13ea95ce0fc11b9d8","label":"post-0054-kind-audit-hold-review","locator":{"end_column":113,"end_line":3160,"fragment":"","pointer":"","start_column":3,"start_line":3160},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-post-0054-kind-audit-hold-review","target_ref":"parts/technique-reform-ingress/reviews/post-0054-kind-audit-hold-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3160:3:0:parts/technique-reform-ingress/reviews/post-0054-kind-audit-hold-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a82b2ae88d2755103ae75fa4","label":"2026-05-04 - AOA-T-0054 kind remap","locator":{"end_column":37,"end_line":3183,"fragment":"2026-05-04-aoa-t-0054-kind-remap","pointer":"","start_column":1,"start_line":3183},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-aoa-t-0054-kind-remap","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:63c7941471fe7504cfa6bfaa","label":"compaction-resilient-skill-loading","locator":{"end_column":134,"end_line":3188,"fragment":"","pointer":"","start_column":3,"start_line":3188},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-aoa-t-0054-kind-remap","target_ref":"../../techniques/continuity/review-compaction/compaction-resilient-skill-loading/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3188:3:0:../../techniques/continuity/review-compaction/compaction-resilient-skill-loading/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4be917bae577c8a92009d8fb","label":"2026-05-04 - Second kind ambiguity review pack","locator":{"end_column":49,"end_line":3212,"fragment":"2026-05-04-second-kind-ambiguity-review-pack","pointer":"","start_column":1,"start_line":3212},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-second-kind-ambiguity-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:21303fdd190dc5b61e3ae7a3","label":"second-kind-ambiguity-review-pack","locator":{"end_column":115,"end_line":3217,"fragment":"","pointer":"","start_column":3,"start_line":3217},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-second-kind-ambiguity-review-pack","target_ref":"parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3217:3:0:parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a4244c28d7c86404e4cf752d","label":"2026-05-04 - AOA-T-0052 kind remap","locator":{"end_column":37,"end_line":3239,"fragment":"2026-05-04-aoa-t-0052-kind-remap","pointer":"","start_column":1,"start_line":3239},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-aoa-t-0052-kind-remap","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:584ac7a5c29c9f6fc6499066","label":"review-findings-compaction","locator":{"end_column":118,"end_line":3244,"fragment":"","pointer":"","start_column":3,"start_line":3244},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-aoa-t-0052-kind-remap","target_ref":"../../techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3244:3:0:../../techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48b9014c1fe6e3691484fecf","label":"2026-05-04 - AOA-T-0005 kind remap","locator":{"end_column":37,"end_line":3268,"fragment":"2026-05-04-aoa-t-0005-kind-remap","pointer":"","start_column":1,"start_line":3268},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-aoa-t-0005-kind-remap","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ae1e8528e29c839abea1b095","label":"new-intent-rollout-checklist","locator":{"end_column":116,"end_line":3273,"fragment":"","pointer":"","start_column":3,"start_line":3273},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-aoa-t-0005-kind-remap","target_ref":"../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3273:3:0:../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a66cd8a50a8e6316a21d580","label":"2026-05-04 - AOA-T-0085 kind remap","locator":{"end_column":37,"end_line":3297,"fragment":"2026-05-04-aoa-t-0085-kind-remap","pointer":"","start_column":1,"start_line":3297},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-aoa-t-0085-kind-remap","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:65f8e2f051c31ae52c6a965b","label":"multi-axis-quest-overlay","locator":{"end_column":110,"end_line":3302,"fragment":"","pointer":"","start_column":3,"start_line":3302},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-aoa-t-0085-kind-remap","target_ref":"../../techniques/continuity/donor-harvest/multi-axis-quest-overlay/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3302:3:0:../../techniques/continuity/donor-harvest/multi-axis-quest-overlay/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd5e48d03dfcf0b73f8c06ab","label":"2026-05-04 - Technique topology scout review pack","locator":{"end_column":52,"end_line":3326,"fragment":"2026-05-04-technique-topology-scout-review-pack","pointer":"","start_column":1,"start_line":3326},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-technique-topology-scout-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e9d6ed3351681a31ae140923","label":"first-topology-scout-review-pack","locator":{"end_column":113,"end_line":3331,"fragment":"","pointer":"","start_column":3,"start_line":3331},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-technique-topology-scout-review-pack","target_ref":"parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3331:3:0:parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c41a8d858399b8600ec7ca2a","label":"2026-05-04 - Kind ambiguity direct-read review pack","locator":{"end_column":54,"end_line":3358,"fragment":"2026-05-04-kind-ambiguity-direct-read-review-pack","pointer":"","start_column":1,"start_line":3358},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-kind-ambiguity-direct-read-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f2d085f48b83ae94b78ddb23","label":"first-kind-ambiguity-review-pack","locator":{"end_column":113,"end_line":3363,"fragment":"","pointer":"","start_column":3,"start_line":3363},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-kind-ambiguity-direct-read-review-pack","target_ref":"parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3363:3:0:parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d417f992b7257fea8d0af65","label":"2026-05-01 - Active parts split","locator":{"end_column":34,"end_line":3388,"fragment":"2026-05-01-active-parts-split","pointer":"","start_column":1,"start_line":3388},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-active-parts-split","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:915430aeb34e6b45c684baba","label":"2026-05-01 - External candidate ledger source-status pass","locator":{"end_column":60,"end_line":3413,"fragment":"2026-05-01-external-candidate-ledger-source-status-pass","pointer":"","start_column":1,"start_line":3413},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-external-candidate-ledger-source-status-pass","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6cc0e3070813c22e25897562","label":"legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","locator":{"end_column":127,"end_line":3418,"fragment":"","pointer":"","start_column":3,"start_line":3418},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-external-candidate-ledger-source-status-pass","target_ref":"legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3418:3:0:legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:db220eb33a6870dcd32a8577","label":"2026-05-01 - External candidate ledger compaction","locator":{"end_column":52,"end_line":3430,"fragment":"2026-05-01-external-candidate-ledger-compaction","pointer":"","start_column":1,"start_line":3430},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-external-candidate-ledger-compaction","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e9a94090e08e3eafb98aa089","label":"2026-05-01 - External candidate registry","locator":{"end_column":43,"end_line":3449,"fragment":"2026-05-01-external-candidate-registry","pointer":"","start_column":1,"start_line":3449},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-external-candidate-registry","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3cc7136e0d00fed57aabb219","label":"parts/external-candidate-ledger","locator":{"end_column":79,"end_line":3455,"fragment":"","pointer":"","start_column":3,"start_line":3455},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-external-candidate-registry","target_ref":"parts/external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3455:3:0:parts/external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1b1e9ea57df159b2e188f570","label":"2026-05-01 - Cross-layer candidate registry","locator":{"end_column":46,"end_line":3479,"fragment":"2026-05-01-cross-layer-candidate-registry","pointer":"","start_column":1,"start_line":3479},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-cross-layer-candidate-registry","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ad967ec21c70d871f9211d99","label":"parts/cross-layer-candidate-ledger","locator":{"end_column":85,"end_line":3485,"fragment":"","pointer":"","start_column":3,"start_line":3485},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-candidate-registry","target_ref":"parts/cross-layer-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3485:3:0:parts/cross-layer-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fe9b752df04c0ca8ace38790","label":"2026-05-01 - Cross-layer recurrence observation repoint","locator":{"end_column":58,"end_line":3513,"fragment":"2026-05-01-cross-layer-recurrence-observation-repoint","pointer":"","start_column":1,"start_line":3513},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-cross-layer-recurrence-observation-repoint","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:68750c7ca265c5c0e3604a37","label":"parts/cross-layer-candidate-ledger","locator":{"end_column":85,"end_line":3518,"fragment":"","pointer":"","start_column":3,"start_line":3518},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-recurrence-observation-repoint","target_ref":"parts/cross-layer-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3518:3:0:parts/cross-layer-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e065b5aa823bfb66cd10270f","label":"cross-layer registry index","locator":{"end_column":117,"end_line":3520,"fragment":"","pointer":"","start_column":3,"start_line":3520},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-recurrence-observation-repoint","target_ref":"parts/cross-layer-candidate-ledger/generated/cross_layer_candidate_registry.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3520:3:0:parts/cross-layer-candidate-ledger/generated/cross_layer_candidate_registry.min.json","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:faf7d1980dcf3bc58ec264ff","label":"2026-05-01 - Distillation gate alignment","locator":{"end_column":43,"end_line":3540,"fragment":"2026-05-01-distillation-gate-alignment","pointer":"","start_column":1,"start_line":3540},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-distillation-gate-alignment","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:01cf60704ed3ffc7cd1df51f","label":"2026-05-01 - Cross-layer candidate ledger compaction","locator":{"end_column":55,"end_line":3567,"fragment":"2026-05-01-cross-layer-candidate-ledger-compaction","pointer":"","start_column":1,"start_line":3567},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-cross-layer-candidate-ledger-compaction","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd6b983b0eabfa5e383c3533","label":"legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","locator":{"end_column":133,"end_line":3572,"fragment":"","pointer":"","start_column":3,"start_line":3572},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-candidate-ledger-compaction","target_ref":"legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3572:3:0:legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d9b7dd4ccdf4e69caf204605","label":"parts/cross-layer-candidate-ledger","locator":{"end_column":95,"end_line":3573,"fragment":"","pointer":"","start_column":13,"start_line":3573},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-candidate-ledger-compaction","target_ref":"parts/cross-layer-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3573:13:0:parts/cross-layer-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dae1948119eea3ed802fe747","label":"2026-05-03 - Agon candidate handoff lanes","locator":{"end_column":44,"end_line":3595,"fragment":"2026-05-03-agon-candidate-handoff-lanes","pointer":"","start_column":1,"start_line":3595},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-agon-candidate-handoff-lanes","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4192505078a2a0c370de414d","label":"parts/agon-candidate-handoff","locator":{"end_column":79,"end_line":3599,"fragment":"","pointer":"","start_column":9,"start_line":3599},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-agon-candidate-handoff-lanes","target_ref":"parts/agon-candidate-handoff/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3599:9:0:parts/agon-candidate-handoff/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2957a7dbcd3591295f005110","label":"2026-05-03 - Request evidence gate card","locator":{"end_column":42,"end_line":3626,"fragment":"2026-05-03-request-evidence-gate-card","pointer":"","start_column":1,"start_line":3626},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-gate-card","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:adf2600dea7fdd187d1c4e36","label":"2026-05-03 - Request evidence gate example","locator":{"end_column":45,"end_line":3655,"fragment":"2026-05-03-request-evidence-gate-example","pointer":"","start_column":1,"start_line":3655},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-gate-example","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e227793b4c07f34e3be584f1","label":"2026-05-03 - Request evidence gate checklist and evidence note","locator":{"end_column":65,"end_line":3684,"fragment":"2026-05-03-request-evidence-gate-checklist-and-evidence-note","pointer":"","start_column":1,"start_line":3684},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-gate-checklist-and-evidence-note","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:017e58cada32b8d9fa1cc30c","label":"2026-05-03 - Request evidence bundle-readiness review","locator":{"end_column":56,"end_line":3713,"fragment":"2026-05-03-request-evidence-bundle-readiness-review","pointer":"","start_column":1,"start_line":3713},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-bundle-readiness-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fe0cbee66fce9b90cbf6bda1","label":"2026-05-03 - Request evidence technique bundle","locator":{"end_column":49,"end_line":3746,"fragment":"2026-05-03-request-evidence-technique-bundle","pointer":"","start_column":1,"start_line":3746},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-technique-bundle","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:258579d464b6af5d487cea4f","label":"single-missing-evidence-request","locator":{"end_column":121,"end_line":3751,"fragment":"","pointer":"","start_column":3,"start_line":3751},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-request-evidence-technique-bundle","target_ref":"../../techniques/proof/review-evidence/single-missing-evidence-request/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3751:3:0:../../techniques/proof/review-evidence/single-missing-evidence-request/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:98eeb8e40888ff0053ec2dfc","label":"2026-05-03 - Offer evidence reference gate packet","locator":{"end_column":52,"end_line":3777,"fragment":"2026-05-03-offer-evidence-reference-gate-packet","pointer":"","start_column":1,"start_line":3777},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-offer-evidence-reference-gate-packet","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:877328a77383497d579f563e","label":"2026-05-03 - Challenge claim gate packet","locator":{"end_column":43,"end_line":3808,"fragment":"2026-05-03-challenge-claim-gate-packet","pointer":"","start_column":1,"start_line":3808},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-challenge-claim-gate-packet","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eb26b54c817207f9993cc2ea","label":"2026-05-03 - Technique reform ingress packet","locator":{"end_column":47,"end_line":3839,"fragment":"2026-05-03-technique-reform-ingress-packet","pointer":"","start_column":1,"start_line":3839},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-technique-reform-ingress-packet","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:30af56d1b88ead42056c3530","label":"Technique Reform Ingress Packet","locator":{"end_column":109,"end_line":3850,"fragment":"","pointer":"","start_column":3,"start_line":3850},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-technique-reform-ingress-packet","target_ref":"../../docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3850:3:0:../../docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a6275de1cd05905c655bef85","label":"2026-05-03 - Agon first-narrowing frontier review","locator":{"end_column":52,"end_line":3869,"fragment":"2026-05-03-agon-first-narrowing-frontier-review","pointer":"","start_column":1,"start_line":3869},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-agon-first-narrowing-frontier-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0d8905afc63019c4d5545bd9","label":"2026-05-03 - Challenge claim technique bundle","locator":{"end_column":48,"end_line":3902,"fragment":"2026-05-03-challenge-claim-technique-bundle","pointer":"","start_column":1,"start_line":3902},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-challenge-claim-technique-bundle","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4123ae8a14e72f6f05f0d090","label":"single-locus-claim-challenge","locator":{"end_column":115,"end_line":3907,"fragment":"","pointer":"","start_column":3,"start_line":3907},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-challenge-claim-technique-bundle","target_ref":"../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3907:3:0:../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:281ba205a8cc6d79b26ff29a","label":"2026-05-03 - Offer evidence reference technique bundle","locator":{"end_column":57,"end_line":3936,"fragment":"2026-05-03-offer-evidence-reference-technique-bundle","pointer":"","start_column":1,"start_line":3936},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-offer-evidence-reference-technique-bundle","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bc72ced022c3e592ef8c7196","label":"single-scoped-evidence-reference","locator":{"end_column":123,"end_line":3941,"fragment":"","pointer":"","start_column":3,"start_line":3941},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-offer-evidence-reference-technique-bundle","target_ref":"../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3941:3:0:../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:baf53c016f450ebf32c62968","label":"2026-05-03 - Offer evidence reference bundle-readiness review","locator":{"end_column":64,"end_line":3969,"fragment":"2026-05-03-offer-evidence-reference-bundle-readiness-review","pointer":"","start_column":1,"start_line":3969},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-offer-evidence-reference-bundle-readiness-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6bb5c9609cf2dde3dc584e79","label":"2026-05-14 - Technique reform scout script homes","locator":{"end_column":51,"end_line":43,"fragment":"2026-05-14-technique-reform-scout-script-homes","pointer":"","start_column":1,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-technique-reform-scout-script-homes","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e39e6b1208f4bacbb8e25fd5","label":"technique reform scripts","locator":{"end_column":70,"end_line":49,"fragment":"","pointer":"","start_column":3,"start_line":49},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-scout-script-homes","target_ref":"parts/technique-reform-ingress/scripts/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:49:3:0:parts/technique-reform-ingress/scripts/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d028918879a108805d6ca9c7","label":"mechanic-script-homes","locator":{"end_column":89,"end_line":56,"fragment":"","pointer":"","start_column":3,"start_line":56},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-scout-script-homes","target_ref":"../../docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:56:3:0:../../docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5d7b0ab430725ef2ea314bd1","label":"2026-05-14 - Technique reform scout input homes","locator":{"end_column":50,"end_line":69,"fragment":"2026-05-14-technique-reform-scout-input-homes","pointer":"","start_column":1,"start_line":69},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-technique-reform-scout-input-homes","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4acede7e07b5bec9fa962576","label":"technique reform config","locator":{"end_column":73,"end_line":74,"fragment":"","pointer":"","start_column":8,"start_line":74},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-scout-input-homes","target_ref":"parts/technique-reform-ingress/config/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:74:8:0:parts/technique-reform-ingress/config/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:af20a61fedce1fd46b19e913","label":"technique reform data","locator":{"end_column":64,"end_line":76,"fragment":"","pointer":"","start_column":3,"start_line":76},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-scout-input-homes","target_ref":"parts/technique-reform-ingress/data/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:76:3:0:parts/technique-reform-ingress/data/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:253b03285625f8281be0f8e1","label":"2026-05-14 - Technique reform reports mechanics home","locator":{"end_column":55,"end_line":93,"fragment":"2026-05-14-technique-reform-reports-mechanics-home","pointer":"","start_column":1,"start_line":93},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-technique-reform-reports-mechanics-home","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ba4409ea91d678e6a849e7de","label":"technique reform reports","locator":{"end_column":70,"end_line":98,"fragment":"","pointer":"","start_column":3,"start_line":98},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-reports-mechanics-home","target_ref":"parts/technique-reform-ingress/reports/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:98:3:0:parts/technique-reform-ingress/reports/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:52c1b9478e06924d7a1b08c7","label":"technique-reform-report-home","locator":{"end_column":103,"end_line":106,"fragment":"","pointer":"","start_column":3,"start_line":106},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-technique-reform-reports-mechanics-home","target_ref":"../../docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:106:3:0:../../docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d5e3ea793295a7570eacf64a","label":"2026-05-14 - Review packet mechanics home","locator":{"end_column":44,"end_line":119,"fragment":"2026-05-14-review-packet-mechanics-home","pointer":"","start_column":1,"start_line":119},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-14-review-packet-mechanics-home","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:83d8e984d7303e4e92602d63","label":"semantic review packets","locator":{"end_column":78,"end_line":124,"fragment":"","pointer":"","start_column":3,"start_line":124},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-review-packet-mechanics-home","target_ref":"parts/technique-reform-ingress/reviews/semantic/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:124:3:0:parts/technique-reform-ingress/reviews/semantic/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:460e968d2a33ee7689604635","label":"shadow review packets","locator":{"end_column":74,"end_line":126,"fragment":"","pointer":"","start_column":3,"start_line":126},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-review-packet-mechanics-home","target_ref":"parts/technique-reform-ingress/reviews/shadow/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:126:3:0:parts/technique-reform-ingress/reviews/shadow/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5e775f613b4cfb60cf22e60e","label":"review-packet-mechanics-home","locator":{"end_column":103,"end_line":134,"fragment":"","pointer":"","start_column":3,"start_line":134},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-14-review-packet-mechanics-home","target_ref":"../../docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:134:3:0:../../docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:97e07b6b6488a993fd506bd9","label":"2026-05-06 - Roadmap contour cleanup","locator":{"end_column":39,"end_line":147,"fragment":"2026-05-06-roadmap-contour-cleanup","pointer":"","start_column":1,"start_line":147},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-06-roadmap-contour-cleanup","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:acaf0a04dd01329a33dfcba9","label":"Technique Reform Ingress reviews","locator":{"end_column":78,"end_line":154,"fragment":"","pointer":"","start_column":3,"start_line":154},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-06-roadmap-contour-cleanup","target_ref":"parts/technique-reform-ingress/reviews/"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:154:3:0:parts/technique-reform-ingress/reviews/","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:86936dc1c676899a716a6047","label":"final tree migration ledger","locator":{"end_column":103,"end_line":156,"fragment":"","pointer":"","start_column":3,"start_line":156},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-06-roadmap-contour-cleanup","target_ref":"parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:156:3:0:parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7e49760fcb9b2c9a0e68eea0","label":"2026-05-05 - Final tree migration ledger","locator":{"end_column":43,"end_line":167,"fragment":"2026-05-05-final-tree-migration-ledger","pointer":"","start_column":1,"start_line":167},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-final-tree-migration-ledger","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bc3c0a78b24d38ab8f4184bc","label":"final-tree-migration-ledger","locator":{"end_column":103,"end_line":172,"fragment":"","pointer":"","start_column":3,"start_line":172},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-final-tree-migration-ledger","target_ref":"parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:172:3:0:parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d88fb68804246a08365fb588","label":"2026-05-05 - Tree route-card consolidation","locator":{"end_column":45,"end_line":192,"fragment":"2026-05-05-tree-route-card-consolidation","pointer":"","start_column":1,"start_line":192},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-tree-route-card-consolidation","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e4324749fb95dc63a1a79175","label":"2026-05-05 - Whole-tree closeout review","locator":{"end_column":42,"end_line":220,"fragment":"2026-05-05-whole-tree-closeout-review","pointer":"","start_column":1,"start_line":220},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-whole-tree-closeout-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:07a301082cb6d15a65df0663","label":"whole-tree-closeout-review","locator":{"end_column":101,"end_line":225,"fragment":"","pointer":"","start_column":3,"start_line":225},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-whole-tree-closeout-review","target_ref":"parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:225:3:0:parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8f88468eb20919a4154ee0bb","label":"2026-05-05 - Landed tool-gateway pilot review","locator":{"end_column":48,"end_line":248,"fragment":"2026-05-05-landed-tool-gateway-pilot-review","pointer":"","start_column":1,"start_line":248},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-tool-gateway-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9ed2cbaeee0eb006df6ff146","label":"landed-tool-gateway-pilot-review","locator":{"end_column":113,"end_line":253,"fragment":"","pointer":"","start_column":3,"start_line":253},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-tool-gateway-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:253:3:0:parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f39f93b9a3c4de0e959ef823","label":"2026-05-05 - Tool-gateway tree pilot migration","locator":{"end_column":49,"end_line":273,"fragment":"2026-05-05-tool-gateway-tree-pilot-migration","pointer":"","start_column":1,"start_line":273},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-tool-gateway-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eaa4e82bc0d8a09fc29b9fba","label":"2026-05-05-tool-gateway-tree-pilot","locator":{"end_column":100,"end_line":280,"fragment":"","pointer":"","start_column":3,"start_line":280},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-tool-gateway-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:280:3:0:../../legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2b8d1e8dddcfa0700f266d9e","label":"2026-05-05 - Tool-gateway direct-read singleton review","locator":{"end_column":57,"end_line":299,"fragment":"2026-05-05-tool-gateway-direct-read-singleton-review","pointer":"","start_column":1,"start_line":299},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-tool-gateway-direct-read-singleton-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e7f462bb8e3631c2d3ef3100","label":"tool-gateway-direct-read-singleton-review","locator":{"end_column":131,"end_line":304,"fragment":"","pointer":"","start_column":3,"start_line":304},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-tool-gateway-direct-read-singleton-review","target_ref":"parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:304:3:0:parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:968cf98f110d4b8dc2fb3274","label":"2026-05-05 - Landed practice-adoption-lifecycle pilot review","locator":{"end_column":63,"end_line":328,"fragment":"2026-05-05-landed-practice-adoption-lifecycle-pilot-review","pointer":"","start_column":1,"start_line":328},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-practice-adoption-lifecycle-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d20485268c14b2b67f4cfca4","label":"landed-practice-adoption-lifecycle-pilot-review","locator":{"end_column":143,"end_line":333,"fragment":"","pointer":"","start_column":3,"start_line":333},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-practice-adoption-lifecycle-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:333:3:0:parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:381adfed227f6c5942c4d579","label":"2026-05-05 - Practice-adoption-lifecycle tree pilot migration","locator":{"end_column":64,"end_line":354,"fragment":"2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","pointer":"","start_column":1,"start_line":354},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c2ca986d5315255c57b168ae","label":"2026-05-05-practice-adoption-lifecycle-tree-pilot","locator":{"end_column":130,"end_line":362,"fragment":"","pointer":"","start_column":3,"start_line":362},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:362:3:0:../../legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ffab739d35e6ba58e2075c1c","label":"2026-05-05 - Practice-adoption-lifecycle direct-read migration review","locator":{"end_column":72,"end_line":381,"fragment":"2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","pointer":"","start_column":1,"start_line":381},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4d71d78104e4846e533124bb","label":"practice-adoption-lifecycle-direct-read-migration-review","locator":{"end_column":161,"end_line":386,"fragment":"","pointer":"","start_column":3,"start_line":386},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:386:3:0:parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d3c06010bfc4c554e9ba1c37","label":"2026-05-05 - Landed promotion-boundary pilot review","locator":{"end_column":54,"end_line":414,"fragment":"2026-05-05-landed-promotion-boundary-pilot-review","pointer":"","start_column":1,"start_line":414},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-promotion-boundary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f0b0718379581571b72222cf","label":"landed-promotion-boundary-pilot-review","locator":{"end_column":125,"end_line":419,"fragment":"","pointer":"","start_column":3,"start_line":419},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-promotion-boundary-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:419:3:0:parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4b1a0c7f5ffbfd7eea447299","label":"2026-05-05 - Promotion-boundary tree pilot migration","locator":{"end_column":55,"end_line":439,"fragment":"2026-05-05-promotion-boundary-tree-pilot-migration","pointer":"","start_column":1,"start_line":439},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-promotion-boundary-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b1300972d9bbc0f78a70e4c8","label":"2026-05-05-promotion-boundary-tree-pilot","locator":{"end_column":112,"end_line":447,"fragment":"","pointer":"","start_column":3,"start_line":447},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-promotion-boundary-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:447:3:0:../../legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:45125a6d0ed26857fe947aed","label":"2026-05-05 - Promotion-boundary direct-read migration review","locator":{"end_column":63,"end_line":467,"fragment":"2026-05-05-promotion-boundary-direct-read-migration-review","pointer":"","start_column":1,"start_line":467},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-promotion-boundary-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:417d2e142cdee8e45a24324a","label":"promotion-boundary-direct-read-migration-review","locator":{"end_column":143,"end_line":472,"fragment":"","pointer":"","start_column":3,"start_line":472},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-promotion-boundary-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:472:3:0:parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c45e9531004ce607b75bbd83","label":"2026-05-05 - Landed automation-readiness pilot review","locator":{"end_column":56,"end_line":498,"fragment":"2026-05-05-landed-automation-readiness-pilot-review","pointer":"","start_column":1,"start_line":498},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-automation-readiness-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8b92ae12dc65f799750c97a2","label":"landed-automation-readiness-pilot-review","locator":{"end_column":129,"end_line":503,"fragment":"","pointer":"","start_column":3,"start_line":503},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-automation-readiness-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:503:3:0:parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:de399ea8f551d8c74dd731bf","label":"2026-05-05 - Automation-readiness tree pilot migration","locator":{"end_column":57,"end_line":522,"fragment":"2026-05-05-automation-readiness-tree-pilot-migration","pointer":"","start_column":1,"start_line":522},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-automation-readiness-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c42c9bace462e3b98157fc7f","label":"2026-05-05-automation-readiness-tree-pilot","locator":{"end_column":116,"end_line":530,"fragment":"","pointer":"","start_column":3,"start_line":530},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-automation-readiness-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:530:3:0:../../legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0504a93319a5388eecfd35c","label":"2026-05-05 - Automation-readiness direct-read migration review","locator":{"end_column":65,"end_line":550,"fragment":"2026-05-05-automation-readiness-direct-read-migration-review","pointer":"","start_column":1,"start_line":550},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-automation-readiness-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7f3944959c519390c07718bc","label":"automation-readiness-direct-read-migration-review","locator":{"end_column":147,"end_line":555,"fragment":"","pointer":"","start_column":3,"start_line":555},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-automation-readiness-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:555:3:0:parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1c577648083d1781f2ac9a5a","label":"2026-05-05 - Automation-governance split expansion closeout","locator":{"end_column":62,"end_line":582,"fragment":"2026-05-05-automation-governance-split-expansion-closeout","pointer":"","start_column":1,"start_line":582},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-automation-governance-split-expansion-closeout","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:671ff7e1d1820156e8a18b2d","label":"automation-governance-split-expansion-closeout","locator":{"end_column":141,"end_line":587,"fragment":"","pointer":"","start_column":3,"start_line":587},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-automation-governance-split-expansion-closeout","target_ref":"parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:587:3:0:parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:284bd195ab23d695cf046214","label":"2026-05-05 - Automation-governance direct-read split review","locator":{"end_column":62,"end_line":612,"fragment":"2026-05-05-automation-governance-direct-read-split-review","pointer":"","start_column":1,"start_line":612},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-automation-governance-direct-read-split-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a445d083bb36106611a563fd","label":"automation-governance-direct-read-split-review","locator":{"end_column":141,"end_line":617,"fragment":"","pointer":"","start_column":3,"start_line":617},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-automation-governance-direct-read-split-review","target_ref":"parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:617:3:0:parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9817c4fd67d14120eefb1104","label":"2026-05-05 - Landed owner-truth-closeout pilot review","locator":{"end_column":56,"end_line":645,"fragment":"2026-05-05-landed-owner-truth-closeout-pilot-review","pointer":"","start_column":1,"start_line":645},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-owner-truth-closeout-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fa101ba4e31f2b5d93803632","label":"landed-owner-truth-closeout-pilot-review","locator":{"end_column":129,"end_line":650,"fragment":"","pointer":"","start_column":3,"start_line":650},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-owner-truth-closeout-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:650:3:0:parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9dcae1f456a38d2e8c43d930","label":"2026-05-05 - Owner-truth-closeout tree pilot migration","locator":{"end_column":57,"end_line":677,"fragment":"2026-05-05-owner-truth-closeout-tree-pilot-migration","pointer":"","start_column":1,"start_line":677},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-owner-truth-closeout-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e42a1b9969a7e6f42109b420","label":"2026-05-05-owner-truth-closeout-tree-pilot","locator":{"end_column":116,"end_line":690,"fragment":"","pointer":"","start_column":3,"start_line":690},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-owner-truth-closeout-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:690:3:0:../../legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dc299e7daf0d5a4968cd4158","label":"2026-05-05 - Owner-truth-closeout direct-read migration review","locator":{"end_column":65,"end_line":711,"fragment":"2026-05-05-owner-truth-closeout-direct-read-migration-review","pointer":"","start_column":1,"start_line":711},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-owner-truth-closeout-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:29e2b2af7c66309c0aaf6d46","label":"owner-truth-closeout-direct-read-migration-review","locator":{"end_column":147,"end_line":716,"fragment":"","pointer":"","start_column":3,"start_line":716},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-owner-truth-closeout-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:716:3:0:parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e7a01f2c70da18484885fa40","label":"2026-05-05 - Landed runtime-truth-lifecycle pilot review","locator":{"end_column":59,"end_line":746,"fragment":"2026-05-05-landed-runtime-truth-lifecycle-pilot-review","pointer":"","start_column":1,"start_line":746},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-runtime-truth-lifecycle-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:71ff6fa695af0ec8d31eb5ab","label":"landed-runtime-truth-lifecycle-pilot-review","locator":{"end_column":135,"end_line":751,"fragment":"","pointer":"","start_column":3,"start_line":751},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-runtime-truth-lifecycle-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:751:3:0:parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:34eb09a46fcb4b6744c98fe7","label":"2026-05-05 - Runtime-truth-lifecycle tree pilot migration","locator":{"end_column":60,"end_line":775,"fragment":"2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","pointer":"","start_column":1,"start_line":775},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8376bef360303cf7abdee77c","label":"2026-05-05-runtime-truth-lifecycle-tree-pilot","locator":{"end_column":122,"end_line":786,"fragment":"","pointer":"","start_column":3,"start_line":786},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:786:3:0:../../legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c6f7737b1a13bdc4969d0d41","label":"2026-05-05 - Runtime-truth-lifecycle direct-read migration review","locator":{"end_column":68,"end_line":805,"fragment":"2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","pointer":"","start_column":1,"start_line":805},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0c6f94b25d41a6d0fe4cbfcc","label":"runtime-truth-lifecycle-direct-read-migration-review","locator":{"end_column":153,"end_line":810,"fragment":"","pointer":"","start_column":3,"start_line":810},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:810:3:0:parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:913696f70ee3614a4b085738","label":"2026-05-05 - Landed review-evidence pilot review","locator":{"end_column":51,"end_line":838,"fragment":"2026-05-05-landed-review-evidence-pilot-review","pointer":"","start_column":1,"start_line":838},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-review-evidence-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d5438e18d94e968bee696555","label":"landed-review-evidence-pilot-review","locator":{"end_column":119,"end_line":843,"fragment":"","pointer":"","start_column":3,"start_line":843},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-review-evidence-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:843:3:0:parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:331161a87e9d7671baa6d566","label":"2026-05-05 - Review-evidence tree pilot migration","locator":{"end_column":52,"end_line":867,"fragment":"2026-05-05-review-evidence-tree-pilot-migration","pointer":"","start_column":1,"start_line":867},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-review-evidence-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0198ea081dfa1c0df2278c8a","label":"2026-05-05-review-evidence-tree-pilot","locator":{"end_column":106,"end_line":878,"fragment":"","pointer":"","start_column":3,"start_line":878},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-review-evidence-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-review-evidence-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:878:3:0:../../legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d12f98e1f5a909b244323b03","label":"2026-05-05 - Review-evidence direct-read migration review","locator":{"end_column":60,"end_line":896,"fragment":"2026-05-05-review-evidence-direct-read-migration-review","pointer":"","start_column":1,"start_line":896},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-review-evidence-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:764806d39de0e8f66af2209d","label":"review-evidence-direct-read-migration-review","locator":{"end_column":137,"end_line":901,"fragment":"","pointer":"","start_column":3,"start_line":901},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-review-evidence-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:901:3:0:parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b9ad3bdb8a8867bcc1011871","label":"2026-05-05 - Landed approval-evidence pilot review","locator":{"end_column":53,"end_line":926,"fragment":"2026-05-05-landed-approval-evidence-pilot-review","pointer":"","start_column":1,"start_line":926},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-approval-evidence-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9924c427f23ebef50a05aaa7","label":"landed-approval-evidence-pilot-review","locator":{"end_column":123,"end_line":931,"fragment":"","pointer":"","start_column":3,"start_line":931},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-approval-evidence-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:931:3:0:parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:87d652e6f849b48a8a645769","label":"2026-05-05 - Approval-evidence tree pilot migration","locator":{"end_column":54,"end_line":954,"fragment":"2026-05-05-approval-evidence-tree-pilot-migration","pointer":"","start_column":1,"start_line":954},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-approval-evidence-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9afcb62c7cc32a930516f927","label":"2026-05-05-approval-evidence-tree-pilot","locator":{"end_column":110,"end_line":965,"fragment":"","pointer":"","start_column":3,"start_line":965},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-approval-evidence-tree-pilot-migration","target_ref":"../../legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:965:3:0:../../legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d9f7d2c9e588114de5b15880","label":"2026-05-05 - Approval-evidence direct-read migration review","locator":{"end_column":62,"end_line":983,"fragment":"2026-05-05-approval-evidence-direct-read-migration-review","pointer":"","start_column":1,"start_line":983},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-approval-evidence-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dc178b036775ec42d1a9ecbc","label":"approval-evidence-direct-read-migration-review","locator":{"end_column":141,"end_line":988,"fragment":"","pointer":"","start_column":3,"start_line":988},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-approval-evidence-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:988:3:0:parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:99d470dacf409dbce1c41b36","label":"2026-05-05 - Landed decision-routing pilot review","locator":{"end_column":52,"end_line":1011,"fragment":"2026-05-05-landed-decision-routing-pilot-review","pointer":"","start_column":1,"start_line":1011},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-decision-routing-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:66204a61279a852a934d951a","label":"landed-decision-routing-pilot-review","locator":{"end_column":121,"end_line":1016,"fragment":"","pointer":"","start_column":3,"start_line":1016},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-decision-routing-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1016:3:0:parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:43ec1f220c792281b651922b","label":"2026-05-05 - Decision-routing tree pilot migration","locator":{"end_column":53,"end_line":1040,"fragment":"2026-05-05-decision-routing-tree-pilot-migration","pointer":"","start_column":1,"start_line":1040},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-decision-routing-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1dc55c602c212acb108c414a","label":"2026-05-05 - Decision-routing direct-read migration review","locator":{"end_column":61,"end_line":1071,"fragment":"2026-05-05-decision-routing-direct-read-migration-review","pointer":"","start_column":1,"start_line":1071},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-decision-routing-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5498b8ae70a001e301ca94dc","label":"decision-routing-direct-read-migration-review","locator":{"end_column":139,"end_line":1076,"fragment":"","pointer":"","start_column":3,"start_line":1076},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-decision-routing-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1076:3:0:parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:38dca11678d9ef7ba8a2d4a5","label":"2026-05-05 - Landed donor-harvest pilot review","locator":{"end_column":49,"end_line":1101,"fragment":"2026-05-05-landed-donor-harvest-pilot-review","pointer":"","start_column":1,"start_line":1101},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-donor-harvest-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:77d528d7b6027206b8462f54","label":"landed-donor-harvest-pilot-review","locator":{"end_column":115,"end_line":1106,"fragment":"","pointer":"","start_column":3,"start_line":1106},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-donor-harvest-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1106:3:0:parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f29ea3da715eb627078ec08","label":"2026-05-05 - Donor-harvest tree pilot migration","locator":{"end_column":50,"end_line":1131,"fragment":"2026-05-05-donor-harvest-tree-pilot-migration","pointer":"","start_column":1,"start_line":1131},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-donor-harvest-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:90b879d19a28ec93da849bf5","label":"2026-05-05 - Donor-harvest direct-read migration review","locator":{"end_column":58,"end_line":1160,"fragment":"2026-05-05-donor-harvest-direct-read-migration-review","pointer":"","start_column":1,"start_line":1160},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-donor-harvest-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:227147ab56b609184abc1ce0","label":"donor-harvest-direct-read-migration-review","locator":{"end_column":133,"end_line":1165,"fragment":"","pointer":"","start_column":3,"start_line":1165},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-donor-harvest-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1165:3:0:parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b84016e3ea057a2929d35a97","label":"2026-05-05 - Landed agent-workflows-core pilot review","locator":{"end_column":56,"end_line":1190,"fragment":"2026-05-05-landed-agent-workflows-core-pilot-review","pointer":"","start_column":1,"start_line":1190},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-agent-workflows-core-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ef2110d305d2c475a1ce963","label":"landed-agent-workflows-core-pilot-review","locator":{"end_column":129,"end_line":1195,"fragment":"","pointer":"","start_column":3,"start_line":1195},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-agent-workflows-core-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1195:3:0:parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:49b99bc821b905f242aa7f58","label":"2026-05-05 - Agent-workflows-core tree pilot migration","locator":{"end_column":57,"end_line":1220,"fragment":"2026-05-05-agent-workflows-core-tree-pilot-migration","pointer":"","start_column":1,"start_line":1220},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-agent-workflows-core-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:41ae72fd66a60691cbc429a7","label":"2026-05-05 - Agent-workflows-core direct-read migration review","locator":{"end_column":65,"end_line":1250,"fragment":"2026-05-05-agent-workflows-core-direct-read-migration-review","pointer":"","start_column":1,"start_line":1250},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-agent-workflows-core-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f8ad67b904dc4e94a7c9332c","label":"agent-workflows-core-direct-read-migration-review","locator":{"end_column":147,"end_line":1255,"fragment":"","pointer":"","start_column":3,"start_line":1255},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-agent-workflows-core-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1255:3:0:parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c59326c82b9702826f6012b0","label":"2026-05-05 - Landed intent-chain pilot review","locator":{"end_column":48,"end_line":1279,"fragment":"2026-05-05-landed-intent-chain-pilot-review","pointer":"","start_column":1,"start_line":1279},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-intent-chain-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ed69e88e359d4e1b1aa2f38c","label":"landed-intent-chain-pilot-review","locator":{"end_column":113,"end_line":1284,"fragment":"","pointer":"","start_column":3,"start_line":1284},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-intent-chain-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1284:3:0:parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e11d9785afbebf273904d45","label":"2026-05-05 - Intent-chain tree pilot migration","locator":{"end_column":49,"end_line":1307,"fragment":"2026-05-05-intent-chain-tree-pilot-migration","pointer":"","start_column":1,"start_line":1307},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-intent-chain-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1898ebb753bef4a315b5daf0","label":"2026-05-05 - Intent-chain direct-read migration review","locator":{"end_column":57,"end_line":1336,"fragment":"2026-05-05-intent-chain-direct-read-migration-review","pointer":"","start_column":1,"start_line":1336},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-intent-chain-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e4bed9a501fb996ee59db092","label":"intent-chain-direct-read-migration-review","locator":{"end_column":131,"end_line":1341,"fragment":"","pointer":"","start_column":3,"start_line":1341},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-intent-chain-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1341:3:0:parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2751a0407bee8e3f618e396e","label":"2026-05-05 - Landed ready-work-graphs pilot review","locator":{"end_column":53,"end_line":1363,"fragment":"2026-05-05-landed-ready-work-graphs-pilot-review","pointer":"","start_column":1,"start_line":1363},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-ready-work-graphs-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:75d4551de46f0fc25a494959","label":"landed-ready-work-graphs-pilot-review","locator":{"end_column":123,"end_line":1368,"fragment":"","pointer":"","start_column":3,"start_line":1368},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-ready-work-graphs-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1368:3:0:parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d96389decdb346b2666062f9","label":"2026-05-05 - Ready-work-graphs tree pilot migration","locator":{"end_column":54,"end_line":1391,"fragment":"2026-05-05-ready-work-graphs-tree-pilot-migration","pointer":"","start_column":1,"start_line":1391},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-ready-work-graphs-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bac9bea0a80a1a8b1501aac2","label":"2026-05-05 - Ready-work-graphs direct-read migration review","locator":{"end_column":62,"end_line":1420,"fragment":"2026-05-05-ready-work-graphs-direct-read-migration-review","pointer":"","start_column":1,"start_line":1420},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-ready-work-graphs-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f1c18ee690e12a8c0ff2e255","label":"ready-work-graphs-direct-read-migration-review","locator":{"end_column":141,"end_line":1425,"fragment":"","pointer":"","start_column":3,"start_line":1425},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-ready-work-graphs-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1425:3:0:parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:09f749eb8340de0552565280","label":"2026-05-05 - Landed antifragility-recovery pilot review","locator":{"end_column":58,"end_line":1445,"fragment":"2026-05-05-landed-antifragility-recovery-pilot-review","pointer":"","start_column":1,"start_line":1445},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-antifragility-recovery-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:22b1fa5293e7e5a0daece889","label":"landed-antifragility-recovery-pilot-review","locator":{"end_column":133,"end_line":1450,"fragment":"","pointer":"","start_column":3,"start_line":1450},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-antifragility-recovery-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1450:3:0:parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ba4a2036b4431026c79d7bb7","label":"2026-05-05 - Antifragility-recovery tree pilot migration","locator":{"end_column":59,"end_line":1472,"fragment":"2026-05-05-antifragility-recovery-tree-pilot-migration","pointer":"","start_column":1,"start_line":1472},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-antifragility-recovery-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dfa1518b40d09d2589cb0671","label":"2026-05-05 - Antifragility-recovery direct-read migration review","locator":{"end_column":67,"end_line":1504,"fragment":"2026-05-05-antifragility-recovery-direct-read-migration-review","pointer":"","start_column":1,"start_line":1504},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-antifragility-recovery-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:87cd3a45f667eb9216b2e5af","label":"antifragility-recovery-direct-read-migration-review","locator":{"end_column":151,"end_line":1509,"fragment":"","pointer":"","start_column":3,"start_line":1509},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-antifragility-recovery-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1509:3:0:parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b048265ff5fe8a14c23f104f","label":"2026-05-05 - Landed history-artifacts pilot review","locator":{"end_column":53,"end_line":1533,"fragment":"2026-05-05-landed-history-artifacts-pilot-review","pointer":"","start_column":1,"start_line":1533},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-history-artifacts-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fe7d0bc99d0a463fd4daec42","label":"landed-history-artifacts-pilot-review","locator":{"end_column":123,"end_line":1538,"fragment":"","pointer":"","start_column":3,"start_line":1538},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-history-artifacts-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1538:3:0:parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:77023c8319f82cc607b73deb","label":"2026-05-05 - History-artifacts tree pilot migration","locator":{"end_column":54,"end_line":1560,"fragment":"2026-05-05-history-artifacts-tree-pilot-migration","pointer":"","start_column":1,"start_line":1560},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-history-artifacts-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9da2d035d92c4a6eaf0eba76","label":"2026-05-05 - History-artifacts direct-read migration review","locator":{"end_column":62,"end_line":1592,"fragment":"2026-05-05-history-artifacts-direct-read-migration-review","pointer":"","start_column":1,"start_line":1592},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-history-artifacts-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:92270d5b9b1683dac8a79240","label":"history-artifacts-direct-read-migration-review","locator":{"end_column":141,"end_line":1597,"fragment":"","pointer":"","start_column":3,"start_line":1597},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-history-artifacts-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1597:3:0:parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:057ff7e8c26d1097d532deba","label":"2026-05-05 - Landed published-summary pilot review","locator":{"end_column":53,"end_line":1618,"fragment":"2026-05-05-landed-published-summary-pilot-review","pointer":"","start_column":1,"start_line":1618},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-published-summary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fec6431bfe93531c31e0f260","label":"landed-published-summary-pilot-review","locator":{"end_column":123,"end_line":1623,"fragment":"","pointer":"","start_column":3,"start_line":1623},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-published-summary-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1623:3:0:parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ab46a6cef3a975fdcf569547","label":"2026-05-05 - Published-summary tree pilot migration","locator":{"end_column":54,"end_line":1644,"fragment":"2026-05-05-published-summary-tree-pilot-migration","pointer":"","start_column":1,"start_line":1644},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-published-summary-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:10664d536eb41be0986f8fda","label":"2026-05-05 - Published-summary direct-read migration review","locator":{"end_column":62,"end_line":1677,"fragment":"2026-05-05-published-summary-direct-read-migration-review","pointer":"","start_column":1,"start_line":1677},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-published-summary-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d21d29f06aa1c8bf8118f896","label":"published-summary-direct-read-migration-review","locator":{"end_column":141,"end_line":1682,"fragment":"","pointer":"","start_column":3,"start_line":1682},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-published-summary-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1682:3:0:parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:718265400cf90bdd1c1d31f2","label":"2026-05-05 - Landed evaluation-chain pilot review","locator":{"end_column":52,"end_line":1708,"fragment":"2026-05-05-landed-evaluation-chain-pilot-review","pointer":"","start_column":1,"start_line":1708},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-evaluation-chain-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2719940f8250c2b846f8896f","label":"landed-evaluation-chain-pilot-review","locator":{"end_column":121,"end_line":1713,"fragment":"","pointer":"","start_column":3,"start_line":1713},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-evaluation-chain-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1713:3:0:parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c7c10b39cd8215b54b018bab","label":"2026-05-05 - Evaluation-chain tree pilot migration","locator":{"end_column":53,"end_line":1735,"fragment":"2026-05-05-evaluation-chain-tree-pilot-migration","pointer":"","start_column":1,"start_line":1735},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-evaluation-chain-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6c53cf85148ba42b66316602","label":"2026-05-05 - Evaluation-chain direct-read migration review","locator":{"end_column":61,"end_line":1767,"fragment":"2026-05-05-evaluation-chain-direct-read-migration-review","pointer":"","start_column":1,"start_line":1767},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-evaluation-chain-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2e7375ceddfbd6dc7d911f86","label":"evaluation-chain-direct-read-migration-review","locator":{"end_column":139,"end_line":1772,"fragment":"","pointer":"","start_column":3,"start_line":1772},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-evaluation-chain-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1772:3:0:parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bea6289f42a07cb7cc7e1664","label":"2026-05-05 - Landed skill-support pilot review","locator":{"end_column":49,"end_line":1796,"fragment":"2026-05-05-landed-skill-support-pilot-review","pointer":"","start_column":1,"start_line":1796},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-skill-support-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:efd376b8453cf7ba4402d464","label":"landed-skill-support-pilot-review","locator":{"end_column":115,"end_line":1801,"fragment":"","pointer":"","start_column":3,"start_line":1801},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-skill-support-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1801:3:0:parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e11c1be6de38ffea1fb42fa2","label":"2026-05-05 - Skill-support tree pilot migration","locator":{"end_column":50,"end_line":1822,"fragment":"2026-05-05-skill-support-tree-pilot-migration","pointer":"","start_column":1,"start_line":1822},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-skill-support-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0aae3ef3864d985987eb0a52","label":"2026-05-05 - Skill-support direct-read migration review","locator":{"end_column":58,"end_line":1853,"fragment":"2026-05-05-skill-support-direct-read-migration-review","pointer":"","start_column":1,"start_line":1853},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-skill-support-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a01ac1d1b54e5d4242f181a5","label":"skill-support-direct-read-migration-review","locator":{"end_column":133,"end_line":1858,"fragment":"","pointer":"","start_column":3,"start_line":1858},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-skill-support-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1858:3:0:parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:046ff90180f0d838bc826635","label":"2026-05-05 - Landed skill-discovery pilot review","locator":{"end_column":51,"end_line":1882,"fragment":"2026-05-05-landed-skill-discovery-pilot-review","pointer":"","start_column":1,"start_line":1882},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-skill-discovery-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0ca06453c283d4219213619e","label":"landed-skill-discovery-pilot-review","locator":{"end_column":119,"end_line":1887,"fragment":"","pointer":"","start_column":3,"start_line":1887},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-skill-discovery-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1887:3:0:parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:14c570fe2f20ecb6fbb1bbf7","label":"2026-05-05 - Skill-discovery tree pilot migration","locator":{"end_column":52,"end_line":1908,"fragment":"2026-05-05-skill-discovery-tree-pilot-migration","pointer":"","start_column":1,"start_line":1908},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-skill-discovery-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d2e3cac3d40f6ac63b86ac33","label":"2026-05-05 - Skill-discovery direct-read migration review","locator":{"end_column":60,"end_line":1938,"fragment":"2026-05-05-skill-discovery-direct-read-migration-review","pointer":"","start_column":1,"start_line":1938},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-skill-discovery-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d76b5356d36b95beb7cbcdc6","label":"skill-discovery-direct-read-migration-review","locator":{"end_column":137,"end_line":1943,"fragment":"","pointer":"","start_column":3,"start_line":1943},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-skill-discovery-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1943:3:0:parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:53f77f155569baec028109d2","label":"2026-05-05 - Landed capability-boundary pilot review","locator":{"end_column":55,"end_line":1968,"fragment":"2026-05-05-landed-capability-boundary-pilot-review","pointer":"","start_column":1,"start_line":1968},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-05-landed-capability-boundary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dec2208eefa53cc61d2d4878","label":"landed-capability-boundary-pilot-review","locator":{"end_column":127,"end_line":1973,"fragment":"","pointer":"","start_column":3,"start_line":1973},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-05-landed-capability-boundary-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:1973:3:0:parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:051b02ed8b1bdf8ac9ea21b9","label":"2026-05-04 - Capability-boundary tree pilot migration","locator":{"end_column":56,"end_line":1997,"fragment":"2026-05-04-capability-boundary-tree-pilot-migration","pointer":"","start_column":1,"start_line":1997},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-capability-boundary-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a65e2f6b2fe662a248e48f48","label":"2026-05-04 - Capability-boundary direct-read migration review","locator":{"end_column":64,"end_line":2028,"fragment":"2026-05-04-capability-boundary-direct-read-migration-review","pointer":"","start_column":1,"start_line":2028},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-capability-boundary-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:94ad009cdda6c8747a8b5dd1","label":"capability-boundary-direct-read-migration-review","locator":{"end_column":145,"end_line":2033,"fragment":"","pointer":"","start_column":3,"start_line":2033},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-capability-boundary-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2033:3:0:parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:27a27691628634473a284706","label":"2026-05-04 - Landed capability-registry pilot review","locator":{"end_column":55,"end_line":2057,"fragment":"2026-05-04-landed-capability-registry-pilot-review","pointer":"","start_column":1,"start_line":2057},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-capability-registry-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b2cc9da5f7d2ae6036304343","label":"landed-capability-registry-pilot-review","locator":{"end_column":127,"end_line":2062,"fragment":"","pointer":"","start_column":3,"start_line":2062},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-capability-registry-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2062:3:0:parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c35904d807fbb36da4bff99c","label":"2026-05-04 - Capability-registry tree pilot migration","locator":{"end_column":56,"end_line":2085,"fragment":"2026-05-04-capability-registry-tree-pilot-migration","pointer":"","start_column":1,"start_line":2085},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-capability-registry-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5fded54032d0570734e963d5","label":"2026-05-04 - Capability-registry direct-read migration review","locator":{"end_column":64,"end_line":2117,"fragment":"2026-05-04-capability-registry-direct-read-migration-review","pointer":"","start_column":1,"start_line":2117},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-capability-registry-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2bdd8f4376cb8ade8ef86cca","label":"capability-registry-direct-read-migration-review","locator":{"end_column":145,"end_line":2122,"fragment":"","pointer":"","start_column":3,"start_line":2122},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-capability-registry-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2122:3:0:parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1ea15d53e06482ae44996b8d","label":"2026-05-04 - Landed docs-boundary pilot review","locator":{"end_column":49,"end_line":2144,"fragment":"2026-05-04-landed-docs-boundary-pilot-review","pointer":"","start_column":1,"start_line":2144},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-docs-boundary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4def5a75bc54f621d834faaf","label":"landed-docs-boundary-pilot-review","locator":{"end_column":115,"end_line":2149,"fragment":"","pointer":"","start_column":3,"start_line":2149},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-docs-boundary-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2149:3:0:parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:abdebde8c941fbbdcbc9cb23","label":"2026-05-04 - Docs-boundary tree pilot migration","locator":{"end_column":50,"end_line":2172,"fragment":"2026-05-04-docs-boundary-tree-pilot-migration","pointer":"","start_column":1,"start_line":2172},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-docs-boundary-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:768a537503d19171b217e678","label":"2026-05-04 - Docs-boundary direct-read migration review","locator":{"end_column":58,"end_line":2205,"fragment":"2026-05-04-docs-boundary-direct-read-migration-review","pointer":"","start_column":1,"start_line":2205},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-docs-boundary-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6b6fe0c3c82d4bd7cf107149","label":"docs-boundary-direct-read-migration-review","locator":{"end_column":133,"end_line":2210,"fragment":"","pointer":"","start_column":3,"start_line":2210},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-docs-boundary-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2210:3:0:parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8a38dcec829878a0e92bb2f4","label":"2026-05-04 - Landed kag-source-lift pilot review","locator":{"end_column":51,"end_line":2233,"fragment":"2026-05-04-landed-kag-source-lift-pilot-review","pointer":"","start_column":1,"start_line":2233},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-kag-source-lift-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:493cb30095b3da5545aeda13","label":"landed-kag-source-lift-pilot-review","locator":{"end_column":119,"end_line":2238,"fragment":"","pointer":"","start_column":3,"start_line":2238},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-kag-source-lift-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2238:3:0:parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5e55e38b2241bfbf0198a377","label":"2026-05-04 - Kag-source-lift tree pilot migration","locator":{"end_column":52,"end_line":2261,"fragment":"2026-05-04-kag-source-lift-tree-pilot-migration","pointer":"","start_column":1,"start_line":2261},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-kag-source-lift-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9f64478221190864eea4b6e9","label":"2026-05-04 - Kag-source-lift direct-read migration review","locator":{"end_column":60,"end_line":2294,"fragment":"2026-05-04-kag-source-lift-direct-read-migration-review","pointer":"","start_column":1,"start_line":2294},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-kag-source-lift-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6d047f2611f15f65f6fbff75","label":"kag-source-lift-direct-read-migration-review","locator":{"end_column":137,"end_line":2299,"fragment":"","pointer":"","start_column":3,"start_line":2299},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-kag-source-lift-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2299:3:0:parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76d0dfe81f027a37d297bcb7","label":"2026-05-04 - Landed instruction-surface pilot review","locator":{"end_column":55,"end_line":2322,"fragment":"2026-05-04-landed-instruction-surface-pilot-review","pointer":"","start_column":1,"start_line":2322},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-instruction-surface-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:13c0dc2bc2ec3110fc9e1dbc","label":"landed-instruction-surface-pilot-review","locator":{"end_column":127,"end_line":2327,"fragment":"","pointer":"","start_column":3,"start_line":2327},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-instruction-surface-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2327:3:0:parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ac7bc8347f585b8b4f4ca061","label":"2026-05-04 - Instruction-surface tree pilot migration","locator":{"end_column":56,"end_line":2349,"fragment":"2026-05-04-instruction-surface-tree-pilot-migration","pointer":"","start_column":1,"start_line":2349},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-instruction-surface-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ee91cf0af15958c5fae50aec","label":"2026-05-04 - Instruction-surface direct-read migration review","locator":{"end_column":64,"end_line":2378,"fragment":"2026-05-04-instruction-surface-direct-read-migration-review","pointer":"","start_column":1,"start_line":2378},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-instruction-surface-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4cc7dfb9b4135df21e189e0e","label":"instruction-surface-direct-read-migration-review","locator":{"end_column":145,"end_line":2383,"fragment":"","pointer":"","start_column":3,"start_line":2383},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-instruction-surface-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2383:3:0:parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5aa45f47b64d7ad2f9f08dbc","label":"2026-05-04 - Landed diagnosis-repair pilot review","locator":{"end_column":52,"end_line":2404,"fragment":"2026-05-04-landed-diagnosis-repair-pilot-review","pointer":"","start_column":1,"start_line":2404},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-diagnosis-repair-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2be136cf1bb5679104359584","label":"landed-diagnosis-repair-pilot-review","locator":{"end_column":121,"end_line":2409,"fragment":"","pointer":"","start_column":3,"start_line":2409},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-diagnosis-repair-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2409:3:0:parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:46c1fb83bacac038ba500e4f","label":"2026-05-04 - Diagnosis-repair tree pilot migration","locator":{"end_column":53,"end_line":2429,"fragment":"2026-05-04-diagnosis-repair-tree-pilot-migration","pointer":"","start_column":1,"start_line":2429},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-diagnosis-repair-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2f5dadc7cb9b064eaeaa2ba9","label":"2026-05-04 - Diagnosis-repair direct-read migration review","locator":{"end_column":61,"end_line":2458,"fragment":"2026-05-04-diagnosis-repair-direct-read-migration-review","pointer":"","start_column":1,"start_line":2458},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-diagnosis-repair-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3d76aaa0122c4f043db6196b","label":"diagnosis-repair-direct-read-migration-review","locator":{"end_column":139,"end_line":2463,"fragment":"","pointer":"","start_column":3,"start_line":2463},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-diagnosis-repair-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2463:3:0:parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:76fe904136ec55f58fd47ff1","label":"2026-05-04 - Landed media-ingest pilot review","locator":{"end_column":48,"end_line":2483,"fragment":"2026-05-04-landed-media-ingest-pilot-review","pointer":"","start_column":1,"start_line":2483},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-media-ingest-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:46bc3a6d35bf5cc222c15d3c","label":"landed-media-ingest-pilot-review","locator":{"end_column":113,"end_line":2488,"fragment":"","pointer":"","start_column":3,"start_line":2488},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-media-ingest-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2488:3:0:parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:146d437cd613bd3eb53a4080","label":"2026-05-04 - Media-ingest tree pilot migration","locator":{"end_column":49,"end_line":2507,"fragment":"2026-05-04-media-ingest-tree-pilot-migration","pointer":"","start_column":1,"start_line":2507},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-media-ingest-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6647425054979f808a370245","label":"2026-05-04 - Media-ingest direct-read migration review","locator":{"end_column":57,"end_line":2534,"fragment":"2026-05-04-media-ingest-direct-read-migration-review","pointer":"","start_column":1,"start_line":2534},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-media-ingest-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a39a13a71305a669c48e9116","label":"media-ingest-direct-read-migration-review","locator":{"end_column":131,"end_line":2539,"fragment":"","pointer":"","start_column":3,"start_line":2539},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-media-ingest-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2539:3:0:parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8933a28512991957a4490caf","label":"2026-05-04 - Landed handoff-continuation pilot review","locator":{"end_column":56,"end_line":2558,"fragment":"2026-05-04-landed-handoff-continuation-pilot-review","pointer":"","start_column":1,"start_line":2558},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-handoff-continuation-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a80cf95c3a619487d088883c","label":"landed-handoff-continuation-pilot-review","locator":{"end_column":129,"end_line":2563,"fragment":"","pointer":"","start_column":3,"start_line":2563},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-handoff-continuation-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2563:3:0:parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a89db87998622fad15d6f4a7","label":"2026-05-04 - Handoff-continuation tree pilot migration","locator":{"end_column":57,"end_line":2582,"fragment":"2026-05-04-handoff-continuation-tree-pilot-migration","pointer":"","start_column":1,"start_line":2582},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-handoff-continuation-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:6f5fbc6fa4383888d643da53","label":"2026-05-04 - Handoff-continuation direct-read migration review","locator":{"end_column":65,"end_line":2609,"fragment":"2026-05-04-handoff-continuation-direct-read-migration-review","pointer":"","start_column":1,"start_line":2609},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-handoff-continuation-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:de8fe397bdd3f3c76676878b","label":"handoff-continuation-direct-read-migration-review","locator":{"end_column":147,"end_line":2614,"fragment":"","pointer":"","start_column":3,"start_line":2614},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-handoff-continuation-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2614:3:0:parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e88232cbe82d3a2bcc2d501d","label":"2026-05-04 - Landed review-compaction pilot review","locator":{"end_column":53,"end_line":2632,"fragment":"2026-05-04-landed-review-compaction-pilot-review","pointer":"","start_column":1,"start_line":2632},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-landed-review-compaction-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d16c7b4f5bfb70766eacf21","label":"landed-review-compaction-pilot-review","locator":{"end_column":123,"end_line":2637,"fragment":"","pointer":"","start_column":3,"start_line":2637},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-landed-review-compaction-pilot-review","target_ref":"parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2637:3:0:parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:45b3fd6cf4fe4bbe4f85c260","label":"2026-05-04 - Review-compaction tree pilot migration","locator":{"end_column":54,"end_line":2654,"fragment":"2026-05-04-review-compaction-tree-pilot-migration","pointer":"","start_column":1,"start_line":2654},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-review-compaction-tree-pilot-migration","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:792135dbd944cfb97e192f0b","label":"2026-05-04 - Review-compaction direct-read migration review","locator":{"end_column":62,"end_line":2679,"fragment":"2026-05-04-review-compaction-direct-read-migration-review","pointer":"","start_column":1,"start_line":2679},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-review-compaction-direct-read-migration-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b0c84f2b3c103fb714af0c54","label":"review-compaction-direct-read-migration-review","locator":{"end_column":141,"end_line":2684,"fragment":"","pointer":"","start_column":3,"start_line":2684},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-review-compaction-direct-read-migration-review","target_ref":"parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2684:3:0:parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ced989c831cc1cd299698795","label":"2026-05-04 - Tree projection and first review pack","locator":{"end_column":53,"end_line":2702,"fragment":"2026-05-04-tree-projection-and-first-review-pack","pointer":"","start_column":1,"start_line":2702},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-tree-projection-and-first-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b2826354f2951d6ad433b002","label":"technique_tree_projection","locator":{"end_column":99,"end_line":2707,"fragment":"","pointer":"","start_column":3,"start_line":2707},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-tree-projection-and-first-review-pack","target_ref":"parts/technique-reform-ingress/reports/technique_tree_projection.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2707:3:0:parts/technique-reform-ingress/reports/technique_tree_projection.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b84b7b986eae171ee482c804","label":"first-tree-projection-review-pack","locator":{"end_column":115,"end_line":2712,"fragment":"","pointer":"","start_column":3,"start_line":2712},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-tree-projection-and-first-review-pack","target_ref":"parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2712:3:0:parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:455607dc92bef639932c35f9","label":"2026-05-04 - Family shelf review pack","locator":{"end_column":40,"end_line":2727,"fragment":"2026-05-04-family-shelf-review-pack","pointer":"","start_column":1,"start_line":2727},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-family-shelf-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:99fd0abeebabb6ed6b978935","label":"first-family-shelf-review-pack","locator":{"end_column":109,"end_line":2732,"fragment":"","pointer":"","start_column":3,"start_line":2732},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-family-shelf-review-pack","target_ref":"parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2732:3:0:parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8c7de2f7c1f23f868e92f93c","label":"2026-05-04 - Post-0054 kind-audit hold review","locator":{"end_column":48,"end_line":2752,"fragment":"2026-05-04-post-0054-kind-audit-hold-review","pointer":"","start_column":1,"start_line":2752},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-post-0054-kind-audit-hold-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3a44744fb9619d455cb02a6e","label":"post-0054-kind-audit-hold-review","locator":{"end_column":113,"end_line":2757,"fragment":"","pointer":"","start_column":3,"start_line":2757},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-post-0054-kind-audit-hold-review","target_ref":"parts/technique-reform-ingress/reviews/post-0054-kind-audit-hold-review.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2757:3:0:parts/technique-reform-ingress/reviews/post-0054-kind-audit-hold-review.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a82b2ae88d2755103ae75fa4","label":"2026-05-04 - AOA-T-0054 kind remap","locator":{"end_column":37,"end_line":2775,"fragment":"2026-05-04-aoa-t-0054-kind-remap","pointer":"","start_column":1,"start_line":2775},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-aoa-t-0054-kind-remap","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:21144e4a36d3fb3b0d8cbc05","label":"compaction-resilient-skill-loading","locator":{"end_column":134,"end_line":2780,"fragment":"","pointer":"","start_column":3,"start_line":2780},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-aoa-t-0054-kind-remap","target_ref":"../../techniques/continuity/review-compaction/compaction-resilient-skill-loading/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2780:3:0:../../techniques/continuity/review-compaction/compaction-resilient-skill-loading/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4be917bae577c8a92009d8fb","label":"2026-05-04 - Second kind ambiguity review pack","locator":{"end_column":49,"end_line":2799,"fragment":"2026-05-04-second-kind-ambiguity-review-pack","pointer":"","start_column":1,"start_line":2799},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-second-kind-ambiguity-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ef111f7d1ac2b36d46a65e8d","label":"second-kind-ambiguity-review-pack","locator":{"end_column":115,"end_line":2804,"fragment":"","pointer":"","start_column":3,"start_line":2804},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-second-kind-ambiguity-review-pack","target_ref":"parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2804:3:0:parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a4244c28d7c86404e4cf752d","label":"2026-05-04 - AOA-T-0052 kind remap","locator":{"end_column":37,"end_line":2822,"fragment":"2026-05-04-aoa-t-0052-kind-remap","pointer":"","start_column":1,"start_line":2822},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-aoa-t-0052-kind-remap","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3242ef8138a2e23747002a00","label":"review-findings-compaction","locator":{"end_column":118,"end_line":2827,"fragment":"","pointer":"","start_column":3,"start_line":2827},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-aoa-t-0052-kind-remap","target_ref":"../../techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2827:3:0:../../techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:48b9014c1fe6e3691484fecf","label":"2026-05-04 - AOA-T-0005 kind remap","locator":{"end_column":37,"end_line":2846,"fragment":"2026-05-04-aoa-t-0005-kind-remap","pointer":"","start_column":1,"start_line":2846},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-aoa-t-0005-kind-remap","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:afc7678ae5a9c2558aa707c5","label":"new-intent-rollout-checklist","locator":{"end_column":116,"end_line":2851,"fragment":"","pointer":"","start_column":3,"start_line":2851},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-aoa-t-0005-kind-remap","target_ref":"../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2851:3:0:../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:5a66cd8a50a8e6316a21d580","label":"2026-05-04 - AOA-T-0085 kind remap","locator":{"end_column":37,"end_line":2870,"fragment":"2026-05-04-aoa-t-0085-kind-remap","pointer":"","start_column":1,"start_line":2870},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-aoa-t-0085-kind-remap","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a7a6c97c7a864b2687531326","label":"multi-axis-quest-overlay","locator":{"end_column":110,"end_line":2875,"fragment":"","pointer":"","start_column":3,"start_line":2875},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-aoa-t-0085-kind-remap","target_ref":"../../techniques/continuity/donor-harvest/multi-axis-quest-overlay/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2875:3:0:../../techniques/continuity/donor-harvest/multi-axis-quest-overlay/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bd5e48d03dfcf0b73f8c06ab","label":"2026-05-04 - Technique topology scout review pack","locator":{"end_column":52,"end_line":2894,"fragment":"2026-05-04-technique-topology-scout-review-pack","pointer":"","start_column":1,"start_line":2894},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-technique-topology-scout-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c427f0f79166fadb4879573b","label":"first-topology-scout-review-pack","locator":{"end_column":113,"end_line":2899,"fragment":"","pointer":"","start_column":3,"start_line":2899},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-technique-topology-scout-review-pack","target_ref":"parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2899:3:0:parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c41a8d858399b8600ec7ca2a","label":"2026-05-04 - Kind ambiguity direct-read review pack","locator":{"end_column":54,"end_line":2921,"fragment":"2026-05-04-kind-ambiguity-direct-read-review-pack","pointer":"","start_column":1,"start_line":2921},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-04-kind-ambiguity-direct-read-review-pack","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:81b7e5de1dc6ed7d8228e9e2","label":"first-kind-ambiguity-review-pack","locator":{"end_column":113,"end_line":2926,"fragment":"","pointer":"","start_column":3,"start_line":2926},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-04-kind-ambiguity-direct-read-review-pack","target_ref":"parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2926:3:0:parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d417f992b7257fea8d0af65","label":"2026-05-01 - Active parts split","locator":{"end_column":34,"end_line":2946,"fragment":"2026-05-01-active-parts-split","pointer":"","start_column":1,"start_line":2946},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-active-parts-split","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:915430aeb34e6b45c684baba","label":"2026-05-01 - External candidate ledger source-status pass","locator":{"end_column":60,"end_line":2967,"fragment":"2026-05-01-external-candidate-ledger-source-status-pass","pointer":"","start_column":1,"start_line":2967},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-external-candidate-ledger-source-status-pass","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bdf9fb59c4eee67c778807c2","label":"legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","locator":{"end_column":127,"end_line":2972,"fragment":"","pointer":"","start_column":3,"start_line":2972},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-external-candidate-ledger-source-status-pass","target_ref":"legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:2972:3:0:legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:db220eb33a6870dcd32a8577","label":"2026-05-01 - External candidate ledger compaction","locator":{"end_column":52,"end_line":2981,"fragment":"2026-05-01-external-candidate-ledger-compaction","pointer":"","start_column":1,"start_line":2981},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-external-candidate-ledger-compaction","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e9a94090e08e3eafb98aa089","label":"2026-05-01 - External candidate registry","locator":{"end_column":43,"end_line":2996,"fragment":"2026-05-01-external-candidate-registry","pointer":"","start_column":1,"start_line":2996},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-external-candidate-registry","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1d3c7d3ac1b96717ced1daa6","label":"parts/external-candidate-ledger","locator":{"end_column":79,"end_line":3002,"fragment":"","pointer":"","start_column":3,"start_line":3002},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-external-candidate-registry","target_ref":"parts/external-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3002:3:0:parts/external-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1b1e9ea57df159b2e188f570","label":"2026-05-01 - Cross-layer candidate registry","locator":{"end_column":46,"end_line":3019,"fragment":"2026-05-01-cross-layer-candidate-registry","pointer":"","start_column":1,"start_line":3019},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-cross-layer-candidate-registry","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0a856fa3946e80e32677b9a","label":"parts/cross-layer-candidate-ledger","locator":{"end_column":85,"end_line":3025,"fragment":"","pointer":"","start_column":3,"start_line":3025},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-candidate-registry","target_ref":"parts/cross-layer-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3025:3:0:parts/cross-layer-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fe9b752df04c0ca8ace38790","label":"2026-05-01 - Cross-layer recurrence observation repoint","locator":{"end_column":58,"end_line":3046,"fragment":"2026-05-01-cross-layer-recurrence-observation-repoint","pointer":"","start_column":1,"start_line":3046},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-cross-layer-recurrence-observation-repoint","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a46d5df50de1b594b5c4d192","label":"parts/cross-layer-candidate-ledger","locator":{"end_column":85,"end_line":3051,"fragment":"","pointer":"","start_column":3,"start_line":3051},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-recurrence-observation-repoint","target_ref":"parts/cross-layer-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3051:3:0:parts/cross-layer-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:11c243a5cc960876e1430390","label":"cross-layer registry index","locator":{"end_column":117,"end_line":3053,"fragment":"","pointer":"","start_column":3,"start_line":3053},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-recurrence-observation-repoint","target_ref":"parts/cross-layer-candidate-ledger/generated/cross_layer_candidate_registry.min.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3053:3:0:parts/cross-layer-candidate-ledger/generated/cross_layer_candidate_registry.min.json","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:faf7d1980dcf3bc58ec264ff","label":"2026-05-01 - Distillation gate alignment","locator":{"end_column":43,"end_line":3069,"fragment":"2026-05-01-distillation-gate-alignment","pointer":"","start_column":1,"start_line":3069},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-distillation-gate-alignment","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:01cf60704ed3ffc7cd1df51f","label":"2026-05-01 - Cross-layer candidate ledger compaction","locator":{"end_column":55,"end_line":3090,"fragment":"2026-05-01-cross-layer-candidate-ledger-compaction","pointer":"","start_column":1,"start_line":3090},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-01-cross-layer-candidate-ledger-compaction","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2334e043fbbec96330e8af81","label":"legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","locator":{"end_column":133,"end_line":3095,"fragment":"","pointer":"","start_column":3,"start_line":3095},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-candidate-ledger-compaction","target_ref":"legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3095:3:0:legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:49c79a6583871cd47c41ba27","label":"parts/cross-layer-candidate-ledger","locator":{"end_column":95,"end_line":3096,"fragment":"","pointer":"","start_column":13,"start_line":3096},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-01-cross-layer-candidate-ledger-compaction","target_ref":"parts/cross-layer-candidate-ledger/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3096:13:0:parts/cross-layer-candidate-ledger/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:dae1948119eea3ed802fe747","label":"2026-05-03 - Agon candidate handoff lanes","locator":{"end_column":44,"end_line":3112,"fragment":"2026-05-03-agon-candidate-handoff-lanes","pointer":"","start_column":1,"start_line":3112},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-agon-candidate-handoff-lanes","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c04030dc1b40ebe015cf1ae6","label":"parts/agon-candidate-handoff","locator":{"end_column":79,"end_line":3116,"fragment":"","pointer":"","start_column":9,"start_line":3116},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-agon-candidate-handoff-lanes","target_ref":"parts/agon-candidate-handoff/README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3116:9:0:parts/agon-candidate-handoff/README.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2957a7dbcd3591295f005110","label":"2026-05-03 - Request evidence gate card","locator":{"end_column":42,"end_line":3136,"fragment":"2026-05-03-request-evidence-gate-card","pointer":"","start_column":1,"start_line":3136},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-gate-card","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:adf2600dea7fdd187d1c4e36","label":"2026-05-03 - Request evidence gate example","locator":{"end_column":45,"end_line":3158,"fragment":"2026-05-03-request-evidence-gate-example","pointer":"","start_column":1,"start_line":3158},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-gate-example","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e227793b4c07f34e3be584f1","label":"2026-05-03 - Request evidence gate checklist and evidence note","locator":{"end_column":65,"end_line":3180,"fragment":"2026-05-03-request-evidence-gate-checklist-and-evidence-note","pointer":"","start_column":1,"start_line":3180},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-gate-checklist-and-evidence-note","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:017e58cada32b8d9fa1cc30c","label":"2026-05-03 - Request evidence bundle-readiness review","locator":{"end_column":56,"end_line":3202,"fragment":"2026-05-03-request-evidence-bundle-readiness-review","pointer":"","start_column":1,"start_line":3202},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-bundle-readiness-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fe0cbee66fce9b90cbf6bda1","label":"2026-05-03 - Request evidence technique bundle","locator":{"end_column":49,"end_line":3228,"fragment":"2026-05-03-request-evidence-technique-bundle","pointer":"","start_column":1,"start_line":3228},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-request-evidence-technique-bundle","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ac73cf9f614ac426fb13bf0a","label":"single-missing-evidence-request","locator":{"end_column":121,"end_line":3233,"fragment":"","pointer":"","start_column":3,"start_line":3233},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-request-evidence-technique-bundle","target_ref":"../../techniques/proof/review-evidence/single-missing-evidence-request/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3233:3:0:../../techniques/proof/review-evidence/single-missing-evidence-request/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:98eeb8e40888ff0053ec2dfc","label":"2026-05-03 - Offer evidence reference gate packet","locator":{"end_column":52,"end_line":3252,"fragment":"2026-05-03-offer-evidence-reference-gate-packet","pointer":"","start_column":1,"start_line":3252},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-offer-evidence-reference-gate-packet","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:877328a77383497d579f563e","label":"2026-05-03 - Challenge claim gate packet","locator":{"end_column":43,"end_line":3276,"fragment":"2026-05-03-challenge-claim-gate-packet","pointer":"","start_column":1,"start_line":3276},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-challenge-claim-gate-packet","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:eb26b54c817207f9993cc2ea","label":"2026-05-03 - Technique reform ingress packet","locator":{"end_column":47,"end_line":3301,"fragment":"2026-05-03-technique-reform-ingress-packet","pointer":"","start_column":1,"start_line":3301},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-technique-reform-ingress-packet","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:58546e63467950ba7cf96138","label":"Technique Reform Ingress Packet","locator":{"end_column":109,"end_line":3312,"fragment":"","pointer":"","start_column":3,"start_line":3312},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-technique-reform-ingress-packet","target_ref":"../../docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3312:3:0:../../docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a6275de1cd05905c655bef85","label":"2026-05-03 - Agon first-narrowing frontier review","locator":{"end_column":52,"end_line":3326,"fragment":"2026-05-03-agon-first-narrowing-frontier-review","pointer":"","start_column":1,"start_line":3326},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-agon-first-narrowing-frontier-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0d8905afc63019c4d5545bd9","label":"2026-05-03 - Challenge claim technique bundle","locator":{"end_column":48,"end_line":3352,"fragment":"2026-05-03-challenge-claim-technique-bundle","pointer":"","start_column":1,"start_line":3352},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-challenge-claim-technique-bundle","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2b41b01570bb93c34b8d8fd6","label":"single-locus-claim-challenge","locator":{"end_column":115,"end_line":3357,"fragment":"","pointer":"","start_column":3,"start_line":3357},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-challenge-claim-technique-bundle","target_ref":"../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3357:3:0:../../techniques/proof/review-evidence/single-locus-claim-challenge/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:281ba205a8cc6d79b26ff29a","label":"2026-05-03 - Offer evidence reference technique bundle","locator":{"end_column":57,"end_line":3379,"fragment":"2026-05-03-offer-evidence-reference-technique-bundle","pointer":"","start_column":1,"start_line":3379},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-offer-evidence-reference-technique-bundle","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ca0621a824c58be721d98020","label":"single-scoped-evidence-reference","locator":{"end_column":123,"end_line":3384,"fragment":"","pointer":"","start_column":3,"start_line":3384},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:2026-05-03-offer-evidence-reference-technique-bundle","target_ref":"../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:3384:3:0:../../techniques/proof/review-evidence/single-scoped-evidence-reference/TECHNIQUE.md","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:baf53c016f450ebf32c62968","label":"2026-05-03 - Offer evidence reference bundle-readiness review","locator":{"end_column":64,"end_line":3405,"fragment":"2026-05-03-offer-evidence-reference-bundle-readiness-review","pointer":"","start_column":1,"start_line":3405},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:2026-05-03-offer-evidence-reference-bundle-readiness-review","source_record_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7bcdd4c131d06ec3d46d86f9","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:e2ff3a872424dab89c159010","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7e3c8bd9c02982e929f8ae90","label":"Origin Evidence","locator":{"end_column":17,"end_line":1,"fragment":"origin-evidence","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:origin-evidence","source_record_id":"aoa:aoa-techniques:artifact:e2ff3a872424dab89c159010","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2a43443daee430cdf92df78c","label":"Technique","locator":{"end_column":12,"end_line":3,"fragment":"technique","pointer":"","start_column":1,"start_line":3},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:technique","source_record_id":"aoa:aoa-techniques:artifact:e2ff3a872424dab89c159010","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -28579,15 +28666,15 @@ {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c073f923084e3be188dc6970","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:34852015077d55a63b2eb3d9","label":"Lanes","locator":{"end_column":8,"end_line":10,"fragment":"lanes","pointer":"","start_column":1,"start_line":10},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:lanes","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ee5b0f85db5cc7f3e6d39e2a","label":"GitHub CI Route","locator":{"end_column":18,"end_line":21,"fragment":"github-ci-route","pointer":"","start_column":1,"start_line":21},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:github-ci-route","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:514dfc0cd2f72d6f3e805359","label":"`validation_lanes.json`","locator":{"end_column":62,"end_line":37,"fragment":"","pointer":"","start_column":1,"start_line":37},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:github-ci-route","target_ref":"../../config/validation_lanes.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:37:1:0:../../config/validation_lanes.json","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1d42a9c2eb30be7f2038d99b","label":"Source/Projection Boundary","locator":{"end_column":29,"end_line":41,"fragment":"sourceprojection-boundary","pointer":"","start_column":1,"start_line":41},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:sourceprojection-boundary","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1b0d72751ae7c3b5cac89701","label":"Validator Modules","locator":{"end_column":20,"end_line":50,"fragment":"validator-modules","pointer":"","start_column":1,"start_line":50},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validator-modules","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:38a1bf1cd65b7d197069235e","label":"Mechanics Boundary","locator":{"end_column":21,"end_line":74,"fragment":"mechanics-boundary","pointer":"","start_column":1,"start_line":74},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:mechanics-boundary","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1001ec49b15b571e677785aa","label":"Advisory Boundary","locator":{"end_column":20,"end_line":84,"fragment":"advisory-boundary","pointer":"","start_column":1,"start_line":84},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:advisory-boundary","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2f2257053380c19f5d9934e1","label":"Inventory","locator":{"end_column":12,"end_line":95,"fragment":"inventory","pointer":"","start_column":1,"start_line":95},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:inventory","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b70b533361a052d6b7525f44","label":"`validator_inventory.json`","locator":{"end_column":55,"end_line":98,"fragment":"","pointer":"","start_column":1,"start_line":98},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:inventory","target_ref":"validator_inventory.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:98:1:0:validator_inventory.json","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2cce9b1cc7285f586d61bd51","label":"`SCRIPT_TOPOLOGY.md`","locator":{"end_column":43,"end_line":103,"fragment":"","pointer":"","start_column":1,"start_line":103},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:inventory","target_ref":"SCRIPT_TOPOLOGY.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:103:1:0:SCRIPT_TOPOLOGY.md","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c17d113a9b40c1007fbe7b39","label":"`script_inventory.json`","locator":{"end_column":49,"end_line":104,"fragment":"","pointer":"","start_column":1,"start_line":104},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:inventory","target_ref":"script_inventory.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:104:1:0:script_inventory.json","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c0e6a271bd9d607ecbb8ca18","label":"`validation_lanes.json`","locator":{"end_column":62,"end_line":39,"fragment":"","pointer":"","start_column":1,"start_line":39},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:github-ci-route","target_ref":"../../config/validation_lanes.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:39:1:0:../../config/validation_lanes.json","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1d42a9c2eb30be7f2038d99b","label":"Source/Projection Boundary","locator":{"end_column":29,"end_line":43,"fragment":"sourceprojection-boundary","pointer":"","start_column":1,"start_line":43},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:sourceprojection-boundary","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1b0d72751ae7c3b5cac89701","label":"Validator Modules","locator":{"end_column":20,"end_line":55,"fragment":"validator-modules","pointer":"","start_column":1,"start_line":55},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:validator-modules","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:38a1bf1cd65b7d197069235e","label":"Mechanics Boundary","locator":{"end_column":21,"end_line":79,"fragment":"mechanics-boundary","pointer":"","start_column":1,"start_line":79},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:mechanics-boundary","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1001ec49b15b571e677785aa","label":"Advisory Boundary","locator":{"end_column":20,"end_line":89,"fragment":"advisory-boundary","pointer":"","start_column":1,"start_line":89},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:advisory-boundary","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2f2257053380c19f5d9934e1","label":"Inventory","locator":{"end_column":12,"end_line":100,"fragment":"inventory","pointer":"","start_column":1,"start_line":100},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:inventory","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a3120597ffbc02b2ecf62514","label":"`validator_inventory.json`","locator":{"end_column":55,"end_line":103,"fragment":"","pointer":"","start_column":1,"start_line":103},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:inventory","target_ref":"validator_inventory.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:103:1:0:validator_inventory.json","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:10ec8631efca6f736929631a","label":"`SCRIPT_TOPOLOGY.md`","locator":{"end_column":43,"end_line":108,"fragment":"","pointer":"","start_column":1,"start_line":108},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:inventory","target_ref":"SCRIPT_TOPOLOGY.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:108:1:0:SCRIPT_TOPOLOGY.md","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:e8c594d74e1ff74224fdcb55","label":"`script_inventory.json`","locator":{"end_column":49,"end_line":109,"fragment":"","pointer":"","start_column":1,"start_line":109},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:inventory","target_ref":"script_inventory.json"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:109:1:0:script_inventory.json","source_record_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:2d7a01d070024cd6e75eb947","label":"Skill-Support Semantic Review","locator":{"end_column":31,"end_line":1,"fragment":"skill-support-semantic-review","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:skill-support-semantic-review","source_record_id":"aoa:aoa-techniques:artifact:e66619707ba54a89aa714842","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:64947c8dca361f2aa5e50b93","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:e66619707ba54a89aa714842","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7bef7ddf505664f293134af4","label":"Cluster Map","locator":{"end_column":14,"end_line":14,"fragment":"cluster-map","pointer":"","start_column":1,"start_line":14},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:cluster-map","source_record_id":"aoa:aoa-techniques:artifact:e66619707ba54a89aa714842","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -28959,6 +29046,9 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3df90ee06fbcfbb242b45148","label":"Scenario","locator":{"end_column":11,"end_line":5,"fragment":"scenario","pointer":"","start_column":1,"start_line":5},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:scenario","source_record_id":"aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:36b40ae40ffd0839c4d3720f","label":"Flow","locator":{"end_column":7,"end_line":9,"fragment":"flow","pointer":"","start_column":1,"start_line":9},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:flow","source_record_id":"aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0afb7dba3f1c755bb21fd606","label":"Why this stays bounded","locator":{"end_column":25,"end_line":17,"fragment":"why-this-stays-bounded","pointer":"","start_column":1,"start_line":17},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:why-this-stays-bounded","source_record_id":"aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0c493966ed0551e09d9c3c4e","label":"_candidate_roots","locator":{"end_column":79,"end_line":20,"fragment":"","pointer":"","start_column":1,"start_line":16},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:_candidate_roots","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:_candidate_roots","target_ref":"python:os.environ.get"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"_candidate_roots","semantic_key":"python:function:_candidate_roots","source_record_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:cb7544497f82809456bbc8af","label":"main","locator":{"end_column":13,"end_line":36,"fragment":"","pointer":"","start_column":1,"start_line":23},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:_candidate_roots"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:print"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:str"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:subprocess.run"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:main","target_ref":"python:validator.is_file"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"main","semantic_key":"python:function:main","source_record_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:013e82bbb48e56ee1e1047b3","label":"entry_surface","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/entry_surface","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/entry_surface","source_record_id":"aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1b2c53e20579da35cac92f3e","label":"owner_repo","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/owner_repo","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/owner_repo","source_record_id":"aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"json_pointer","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1c5474c5c0df7c0496b281cd","label":"primary_question","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"/primary_question","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"python-json@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"json:/primary_question","source_record_id":"aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5","symbol_kind":"json_key","temporal_ref":"current","trust_ref":"deterministic"}, @@ -30157,14 +30247,14 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f3fa8335ace13dd81a0554c1","label":"Intake Rule","locator":{"end_column":14,"end_line":8,"fragment":"intake-rule","pointer":"","start_column":1,"start_line":8},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:intake-rule","source_record_id":"aoa:aoa-techniques:artifact:f6795072ca24c6fdeb014d33","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7ebd6e48caf049d05dca19fa","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c7bbed6a817f222f12ca8209","label":"load_json","locator":{"end_column":56,"end_line":25,"fragment":"","pointer":"","start_column":1,"start_line":24},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:load_json","target_ref":"python:json.loads"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:load_json","target_ref":"python:path.read_text"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"load_json","semantic_key":"python:function:load_json","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"function","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fca2e0867a06b868e11dab0f","label":"ValidationTopologyTests","locator":{"end_column":10,"end_line":179,"fragment":"","pointer":"","start_column":1,"start_line":28},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests","semantic_key":"python:class:ValidationTopologyTests","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d15840f361b0d881c78722da","label":"test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","locator":{"end_column":10,"end_line":66,"fragment":"","pointer":"","start_column":5,"start_line":29},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:set"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:tuple"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","semantic_key":"python:method:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:33e433d08c352d3d2b7b9857","label":"test_validator_inventory_matches_manifest_lanes","locator":{"end_column":63,"end_line":87,"fragment":"","pointer":"","start_column":5,"start_line":68},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:set"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","semantic_key":"python:method:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bf24c2966333f87c298c2cf1","label":"test_validation_docs_name_all_lanes_and_owner_boundaries","locator":{"end_column":76,"end_line":113,"fragment":"","pointer":"","start_column":5,"start_line":89},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.subTest"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","semantic_key":"python:method:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:df7130c2b1a132cf4cc96537","label":"test_mechanics_part_local_lane_covers_discovered_part_tests","locator":{"end_column":10,"end_line":153,"fragment":"","pointer":"","start_column":5,"start_line":115},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:REPO_ROOT.glob"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:len"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:path.relative_to"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:path.relative_to"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:run_part_local_tests.builder_check_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:run_part_local_tests.discovered_part_local_test_files"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:run_part_local_tests.validator_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self._part_home_for_script"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self._part_home_for_script"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self._part_home_for_test"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self._part_home_for_test"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertGreater"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:sorted"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","semantic_key":"python:method:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7bf70dfaba18e15f4b51a246","label":"_part_home_for_test","locator":{"end_column":55,"end_line":158,"fragment":"","pointer":"","start_column":5,"start_line":156},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests._part_home_for_test","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests._part_home_for_test","target_ref":"python:parts.index"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests._part_home_for_test","semantic_key":"python:method:ValidationTopologyTests._part_home_for_test","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:43361c9bb12377bbb8b731a9","label":"_part_home_for_script","locator":{"end_column":57,"end_line":163,"fragment":"","pointer":"","start_column":5,"start_line":161},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests._part_home_for_script","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests._part_home_for_script","target_ref":"python:parts.index"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests._part_home_for_script","semantic_key":"python:method:ValidationTopologyTests._part_home_for_script","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8caf583288433fd9a3e66852","label":"test_docs_validation_district_is_indexed_and_agent_mesh_registered","locator":{"end_column":10,"end_line":179,"fragment":"","pointer":"","start_column":5,"start_line":165},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","semantic_key":"python:method:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:fca2e0867a06b868e11dab0f","label":"ValidationTopologyTests","locator":{"end_column":10,"end_line":182,"fragment":"","pointer":"","start_column":1,"start_line":28},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests","semantic_key":"python:class:ValidationTopologyTests","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d15840f361b0d881c78722da","label":"test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","locator":{"end_column":10,"end_line":67,"fragment":"","pointer":"","start_column":5,"start_line":29},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:set"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:tuple"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","semantic_key":"python:method:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:33e433d08c352d3d2b7b9857","label":"test_validator_inventory_matches_manifest_lanes","locator":{"end_column":63,"end_line":88,"fragment":"","pointer":"","start_column":5,"start_line":69},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:self.subTest"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","target_ref":"python:set"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","semantic_key":"python:method:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:bf24c2966333f87c298c2cf1","label":"test_validation_docs_name_all_lanes_and_owner_boundaries","locator":{"end_column":83,"end_line":116,"fragment":"","pointer":"","start_column":5,"start_line":90},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","target_ref":"python:self.subTest"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","semantic_key":"python:method:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:df7130c2b1a132cf4cc96537","label":"test_mechanics_part_local_lane_covers_discovered_part_tests","locator":{"end_column":10,"end_line":156,"fragment":"","pointer":"","start_column":5,"start_line":118},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:REPO_ROOT.glob"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:len"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:path.relative_to"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:path.relative_to"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:run_part_local_tests.builder_check_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:run_part_local_tests.discovered_part_local_test_files"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:run_part_local_tests.validator_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self._part_home_for_script"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self._part_home_for_script"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self._part_home_for_test"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self._part_home_for_test"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertGreater"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:sorted"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","target_ref":"python:tuple"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","semantic_key":"python:method:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7bf70dfaba18e15f4b51a246","label":"_part_home_for_test","locator":{"end_column":55,"end_line":161,"fragment":"","pointer":"","start_column":5,"start_line":159},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests._part_home_for_test","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests._part_home_for_test","target_ref":"python:parts.index"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests._part_home_for_test","semantic_key":"python:method:ValidationTopologyTests._part_home_for_test","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:43361c9bb12377bbb8b731a9","label":"_part_home_for_script","locator":{"end_column":57,"end_line":166,"fragment":"","pointer":"","start_column":5,"start_line":164},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests._part_home_for_script","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests._part_home_for_script","target_ref":"python:parts.index"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests._part_home_for_script","semantic_key":"python:method:ValidationTopologyTests._part_home_for_script","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:8caf583288433fd9a3e66852","label":"test_docs_validation_district_is_indexed_and_agent_mesh_registered","locator":{"end_column":10,"end_line":182,"fragment":"","pointer":"","start_column":5,"start_line":168},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","target_ref":"python:load_json"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","semantic_key":"python:method:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","source_record_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:3b48382ef11cc6cf18801df4","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:f6b137bbaa5d00fc24fd68d4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:d72f07e084dc4547ea1d39f3","label":"Spark Result","locator":{"end_column":14,"end_line":1,"fragment":"spark-result","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:spark-result","source_record_id":"aoa:aoa-techniques:artifact:f6b137bbaa5d00fc24fd68d4","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:37598a7baeed5cc9b6bc3087","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:f6ed156e4bf5c79168066246","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -30612,15 +30702,15 @@ {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7d679f2ec3a46915e7e6f58b","label":"Evidence","locator":{"end_column":11,"end_line":27,"fragment":"evidence","pointer":"","start_column":1,"start_line":27},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:evidence","source_record_id":"aoa:aoa-techniques:artifact:f82bdc0b2d3ef28ae061c549","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:42298119a8eb3e9abf756c3a","label":"Result","locator":{"end_column":9,"end_line":33,"fragment":"result","pointer":"","start_column":1,"start_line":33},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:result","source_record_id":"aoa:aoa-techniques:artifact:f82bdc0b2d3ef28ae061c549","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:7c4fc50a967f667e4aab1e09","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f1ba71275a4c1318bf29698a","label":"ValidateRepoCiReleaseAuthorityTests","locator":{"end_column":60,"end_line":169,"fragment":"","pointer":"","start_column":1,"start_line":13},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests","semantic_key":"python:class:ValidateRepoCiReleaseAuthorityTests","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:f1ba71275a4c1318bf29698a","label":"ValidateRepoCiReleaseAuthorityTests","locator":{"end_column":60,"end_line":170,"fragment":"","pointer":"","start_column":1,"start_line":13},"outbound_refs":[],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests","semantic_key":"python:class:ValidateRepoCiReleaseAuthorityTests","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"class","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:4441186b8e683cc6a7749ee9","label":"test_repo_validation_workflow_uses_source_fast_lane_entrypoint","locator":{"end_column":79,"end_line":26,"fragment":"","pointer":"","start_column":5,"start_line":14},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","target_ref":"python:self.assertNotIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:97a32dda789224e1601c2f3c","label":"test_release_check_sequence_is_loaded_from_validation_lanes","locator":{"end_column":96,"end_line":51,"fragment":"","pointer":"","start_column":5,"start_line":28},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:release_check.release_lane_commands"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:self.assertEqual"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:self.assertNotIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","target_ref":"python:validation_lanes.command_sequence_for_lane"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:95cc9d0dde7ced6a77110b60","label":"test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","locator":{"end_column":73,"end_line":65,"fragment":"","pointer":"","start_column":5,"start_line":53},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","target_ref":"python:release_check.RepoStateSnapshot"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","target_ref":"python:release_check.RepoStateSnapshot"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","target_ref":"python:release_check.repo_state_changed"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","target_ref":"python:self.assertTrue"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9abbc91de99dd28d5b4eb26b","label":"test_codeowners_is_present_and_scoped_narrowly","locator":{"end_column":50,"end_line":79,"fragment":"","pointer":"","start_column":5,"start_line":67},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1a622542418b1f3a14197124","label":"test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","locator":{"end_column":70,"end_line":112,"fragment":"","pointer":"","start_column":5,"start_line":81},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3e61a94a6d55c7bb2cfc0e3","label":"test_pull_request_template_path_stays_uppercase_only","locator":{"end_column":75,"end_line":161,"fragment":"","pointer":"","start_column":5,"start_line":114},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:TemporaryDirectory"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:canonical_template.is_file"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:lowercase_template.exists"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertFalse"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertFalse"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertFalse"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertRaisesRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:shutil.copytree"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.parse_github_review_templates"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.path_exists_with_exact_case"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.path_exists_with_exact_case"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.path_exists_with_exact_case"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.path_exists_with_exact_case"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ef2aa5b4ead0f757425010ca","label":"fake_path_exists_with_exact_case","locator":{"end_column":82,"end_line":150,"fragment":"","pointer":"","start_column":13,"start_line":147},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only.fake_path_exists_with_exact_case","target_ref":"python:real_path_exists_with_exact_case"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only.fake_path_exists_with_exact_case","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only.fake_path_exists_with_exact_case","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c5abcedb3307b15bd7ffd898","label":"test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","locator":{"end_column":60,"end_line":169,"fragment":"","pointer":"","start_column":5,"start_line":163},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:9abbc91de99dd28d5b4eb26b","label":"test_codeowners_is_present_and_scoped_narrowly","locator":{"end_column":50,"end_line":80,"fragment":"","pointer":"","start_column":5,"start_line":67},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:1a622542418b1f3a14197124","label":"test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","locator":{"end_column":70,"end_line":113,"fragment":"","pointer":"","start_column":5,"start_line":82},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c3e61a94a6d55c7bb2cfc0e3","label":"test_pull_request_template_path_stays_uppercase_only","locator":{"end_column":75,"end_line":162,"fragment":"","pointer":"","start_column":5,"start_line":115},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:Path"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:TemporaryDirectory"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:canonical_template.is_file"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:lowercase_template.exists"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:patch.object"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertFalse"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertFalse"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertFalse"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertRaisesRegex"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:self.assertTrue"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:shutil.copytree"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.parse_github_review_templates"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.path_exists_with_exact_case"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.path_exists_with_exact_case"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.path_exists_with_exact_case"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","target_ref":"python:validate_repo.path_exists_with_exact_case"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:ef2aa5b4ead0f757425010ca","label":"fake_path_exists_with_exact_case","locator":{"end_column":82,"end_line":151,"fragment":"","pointer":"","start_column":13,"start_line":148},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only.fake_path_exists_with_exact_case","target_ref":"python:real_path_exists_with_exact_case"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only.fake_path_exists_with_exact_case","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only.fake_path_exists_with_exact_case","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_kind":"python_symbol","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:c5abcedb3307b15bd7ffd898","label":"test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","locator":{"end_column":60,"end_line":170,"fragment":"","pointer":"","start_column":5,"start_line":164},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","target_ref":"python:self.assertIn"},{"evidence_class":"deterministic","relation_kind":"calls","source_context":"python:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","target_ref":"python:self.assertIn"}],"parser_ref":"python-ast@1","provenance_ref":"deterministic","qualified_name":"ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","source_record_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","symbol_kind":"method","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"artifact","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","label":"$artifact","locator":{"end_column":1,"end_line":1,"fragment":"","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-artifact@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"$artifact","source_record_id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_heading","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:18ee57bbba9f38eaae212cb4","label":"Landed Capability-Boundary Pilot Review","locator":{"end_column":41,"end_line":1,"fragment":"landed-capability-boundary-pilot-review","pointer":"","start_column":1,"start_line":1},"outbound_refs":[],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"heading:landed-capability-boundary-pilot-review","source_record_id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_kind":"markdown_link","evidence_class":"deterministic","id":"aoa:aoa-techniques:anchor:a182f8f52edcaf47a7ed5aec","label":"Technique Reform Ingress","locator":{"end_column":41,"end_line":4,"fragment":"","pointer":"","start_column":1,"start_line":4},"outbound_refs":[{"evidence_class":"deterministic","relation_kind":"references","source_context":"heading:landed-capability-boundary-pilot-review","target_ref":"../README.md"}],"parser_ref":"aoa-markdown@1","provenance_ref":"deterministic","qualified_name":"","semantic_key":"link:4:1:0:../README.md","source_record_id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","symbol_kind":"","temporal_ref":"current","trust_ref":"deterministic"}, @@ -31189,7 +31279,7 @@ ], "index_identity": { "artifact_kind": "repository_anchor_index", - "content_digest": "c60c33a8eb43c6b9497e3c697f87297c9d26ef16b1e97781b5ff1cbfa8671f30", + "content_digest": "9bf47289e255946a8413155d593acbee9d4f592e75a73a0129d7420d28d5536a", "index_kind": "anchor", "local_id": "index:repo-local:anchors", "schema_ref": "aoa-kag:schemas/repo-local-kag-repository-index.schema.json" @@ -31295,19 +31385,19 @@ }, "schema_version": "aoa-repo-local-kag-repository-index-v2", "source_index": { - "content_digest": "6f6234e98c9535e09c594f0067aaa9b7cf200315fe9ad4614fc56f068764f93e", + "content_digest": "5ac3215479d6a47cceccef0d681726080f6f044829400eb36c014b65d84b9c79", "local_id": "index:repo-local:source-surfaces", "path": "kag/indexes/source_surface_index.json" }, "summary": { - "entry_count": 31186, + "entry_count": 31276, "kind_counts": { - "artifact": 2079, - "json_pointer": 1048, - "markdown_heading": 12631, - "markdown_link": 11510, - "python_symbol": 1454, - "yaml_path": 2464 + "artifact": 2085, + "json_pointer": 1077, + "markdown_heading": 12641, + "markdown_link": 11516, + "python_symbol": 1465, + "yaml_path": 2492 } } } diff --git a/kag/indexes/repo_artifact_index.json b/kag/indexes/repo_artifact_index.json index 06efe516..f354d74d 100644 --- a/kag/indexes/repo_artifact_index.json +++ b/kag/indexes/repo_artifact_index.json @@ -215,7 +215,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:f41d0c32b416a5316c9d8387","artifact_kind":"document","content_hash":"0c3b53314671ffa75a899cc12532eb55bda69b97b5d032339fe6a34db5420e58","id":"aoa:aoa-techniques:artifact:551a1bddabb3258d62a261b0","lineage_path":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md","mime":"text/markdown","path":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:39ecd70624d04bd048710051"}, {"anchor_id":"aoa:aoa-techniques:anchor:ccb88f747e5a7bebca190373","artifact_kind":"document","content_hash":"d6b9ad231144e3099391deaac2303e6691680382215a9cfa4247a7501c41e17d","id":"aoa:aoa-techniques:artifact:2a7e780aaf2647f7cde8a07c","lineage_path":"Spark/AGENTS.md","mime":"text/markdown","path":".agents/spark/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2841f1cf07e8507db6ad2a21"}, {"anchor_id":"aoa:aoa-techniques:anchor:7e32cf67ed1d3b06504f0709","artifact_kind":"document","content_hash":"70a928b195e79eca627e64cdc4c4c9dbf21b83a335451288d5cbe09f462b43cd","id":"aoa:aoa-techniques:artifact:31d28326ecca1cf901d91b46","lineage_path":".agents/spark/README.md","mime":"text/markdown","path":".agents/spark/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2de690d45ff54722fae66762"}, - {"anchor_id":"aoa:aoa-techniques:anchor:9691e3fa21a88f2a1da72929","artifact_kind":"document","content_hash":"af82684abeaad91f17be8297df6899ebc463344dca0016672b4188095508df0f","id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","lineage_path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","mime":"text/markdown","path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d1a6e5d3d115f18d982a93b2"}, + {"anchor_id":"aoa:aoa-techniques:anchor:9691e3fa21a88f2a1da72929","artifact_kind":"document","content_hash":"280978d4c11c4e4a598634d240723c3487c01c38b4d24887a78eb0714a208e09","id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","lineage_path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","mime":"text/markdown","path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:41ab9a43bc10d8e64fd036c2"}, {"anchor_id":"aoa:aoa-techniques:anchor:bd7dc8285330cb614cc68c80","artifact_kind":"document","content_hash":"1578d1a3a35bafd23d0e3f97a9e24340ebb9b49be4f448647467032dedec2a6b","id":"aoa:aoa-techniques:artifact:24477d1d7cb209d1fbbdf83e","lineage_path":"Spark/SWARM.md","mime":"text/markdown","path":".agents/spark/SWARM.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:62b8a52722d07b547ad1b1e4"}, {"anchor_id":"aoa:aoa-techniques:anchor:16630f499ec97006e0ca6069","artifact_kind":"document","content_hash":"2bb42e618f46e2c5cd8b82cf70a74e8cc6edbd72da7c98f5e85fb064346d3250","id":"aoa:aoa-techniques:artifact:fbda403a1d57ade65895abc0","lineage_path":".agents/spark/handoffs/README.md","mime":"text/markdown","path":".agents/spark/handoffs/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:78a22761e0a7cf8a3ed84704"}, {"anchor_id":"aoa:aoa-techniques:anchor:ed52e810c8f4c680661d535f","artifact_kind":"document","content_hash":"fddaf24157687836860efbc3bcb59189a89ce012dc7f17618d3173774a27a213","id":"aoa:aoa-techniques:artifact:c3a8f9e5d38903da595aeb00","lineage_path":".agents/spark/handoffs/closed/README.md","mime":"text/markdown","path":".agents/spark/handoffs/closed/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:72c19d1ea7e5258233157f75"}, @@ -229,18 +229,18 @@ {"anchor_id":"aoa:aoa-techniques:anchor:e6624befefa7d6a4a0832ca3","artifact_kind":"document","content_hash":"fa1d63ea1a7b3b686c2ca2c56a613659a1922c02d30df8ce785e331157c7c691","id":"aoa:aoa-techniques:artifact:99f84619d10cdce2e5c30f5b","lineage_path":".agents/spark/scenarios/candidate-scout/templates/handoff.md","mime":"text/markdown","path":".agents/spark/scenarios/candidate-scout/templates/handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d4d3e36e73300df470e891b4"}, {"anchor_id":"aoa:aoa-techniques:anchor:2f5ddb8aaab5c80465f527b2","artifact_kind":"document","content_hash":"d323be1cce6f605c3bceaca987a63b2958d25aaa2b90bbd280dd8224742eb2b4","id":"aoa:aoa-techniques:artifact:8da191a41a5772fed0590bf9","lineage_path":".agents/spark/scenarios/candidate-scout/templates/result.md","mime":"text/markdown","path":".agents/spark/scenarios/candidate-scout/templates/result.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:357d13113ed84ab484d563f3"}, {"anchor_id":"aoa:aoa-techniques:anchor:4d0c91f0be8e3faec2aff292","artifact_kind":"document","content_hash":"826002ed4bb1be91d1eed8622d9753ac155ca675be2a5634d94a3084308adfea","id":"aoa:aoa-techniques:artifact:813b84f7862c973ab53f383e","lineage_path":".agents/spark/scenarios/diff-review/PROMPT.md","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/PROMPT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e7fc990709df3e5314bfa1cb"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e249251728ad42de31f411bf","artifact_kind":"document","content_hash":"602cb7492ed0f1cc4d993d4bb7884c9d4c4f09062ad07c04bea4b27887dc98a7","id":"aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","lineage_path":".agents/spark/scenarios/diff-review/README.md","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:101abd7d210f2cb17b00e12f"}, - {"anchor_id":"aoa:aoa-techniques:anchor:0d34436075ac53cb4a60780e","artifact_kind":"document","content_hash":"b18915aba07163261af3351ae10ccfbb7df2784ef5db0446fd511f31a3c4755d","id":"aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","lineage_path":".agents/spark/scenarios/diff-review/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:58b7f684cca41b3b250a32a9"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e249251728ad42de31f411bf","artifact_kind":"document","content_hash":"a6eddd20f6d0711f310eec9abafdea31ba69a52dd4c1a41a2437d0ca3b373568","id":"aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","lineage_path":".agents/spark/scenarios/diff-review/README.md","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fe20b89e83462ac86b61e255"}, + {"anchor_id":"aoa:aoa-techniques:anchor:0d34436075ac53cb4a60780e","artifact_kind":"document","content_hash":"51d5a51874760f902efcbb3ff7981e22d7b8ca21fefd1b77f9051df884a8f3d9","id":"aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","lineage_path":".agents/spark/scenarios/diff-review/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1ed8d254494c017a0306aba8"}, {"anchor_id":"aoa:aoa-techniques:anchor:950ad411ab6371076c51ac50","artifact_kind":"document","content_hash":"b8268b211c9f92be661c300a96fc923d9f63c7b815474aa6d6160e4d8d4075ab","id":"aoa:aoa-techniques:artifact:3e9189e1241a3ac1cdf107d8","lineage_path":".agents/spark/scenarios/diff-review/templates/handoff.md","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/templates/handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2c6b9555c022e15049c6142a"}, {"anchor_id":"aoa:aoa-techniques:anchor:2f6f85c55f6bae9f0d6cd746","artifact_kind":"document","content_hash":"40c93c224cba45fcc343763602668b7c48e1e608d0c9c70288aa74b8156844bc","id":"aoa:aoa-techniques:artifact:82cdde37af7f6baeb44668fd","lineage_path":".agents/spark/scenarios/diff-review/templates/result.md","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/templates/result.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:43c3a72de294cdf18558ff9d"}, {"anchor_id":"aoa:aoa-techniques:anchor:94ddfef0148a80db3b88a1e7","artifact_kind":"document","content_hash":"30aa577c86c2ec10a35c030837063c82e93aec726550772d2e3c86c374fc3f17","id":"aoa:aoa-techniques:artifact:aea204fadf73ee5718d5415b","lineage_path":".agents/spark/scenarios/registry-sync/PROMPT.md","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/PROMPT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d4f865a7cdf99143581f59ad"}, {"anchor_id":"aoa:aoa-techniques:anchor:f9422b587b028c78aff891c6","artifact_kind":"document","content_hash":"03c525a9abeb6373565e83db969b2f6eece103fd369f6047f8de5e3924a44f5b","id":"aoa:aoa-techniques:artifact:cb07dc041136d352abc5b2e8","lineage_path":".agents/spark/scenarios/registry-sync/README.md","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:af08125fc059cff4a989b43b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b050ef8987d40a362d8adff8","artifact_kind":"document","content_hash":"42611cb4028d8aa440519aad018747a1512ec0e70543e667dbe1e0b6ae8c82aa","id":"aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","lineage_path":".agents/spark/scenarios/registry-sync/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a0f564794f835c0305c3aa97"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b050ef8987d40a362d8adff8","artifact_kind":"document","content_hash":"7beee243f94f67632188a8503b6a7a6aae4b0533802d05dd026898649b7ee29d","id":"aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","lineage_path":".agents/spark/scenarios/registry-sync/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:53f927414e3a5c65a37b941e"}, {"anchor_id":"aoa:aoa-techniques:anchor:c4fbfe50eaf222636761ecf4","artifact_kind":"document","content_hash":"799652bb9309bc53af44b7e8dcfd4b9f81fb4275e75128ef5118eafae493d061","id":"aoa:aoa-techniques:artifact:674bbb8aa8fc8c67dceccf36","lineage_path":".agents/spark/scenarios/registry-sync/templates/handoff.md","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/templates/handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:284e867fd14d429f2d6e8eb6"}, {"anchor_id":"aoa:aoa-techniques:anchor:8e3ee10826a2f68489e7eda0","artifact_kind":"document","content_hash":"a5e5a905d14bc953eb123e19f7701e4eafa4047666c4244cb242596bb5b8d2aa","id":"aoa:aoa-techniques:artifact:40e8a6bc4b95a6ec0a50833b","lineage_path":".agents/spark/scenarios/registry-sync/templates/result.md","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/templates/result.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3145f2ee6a8638778bc2def0"}, {"anchor_id":"aoa:aoa-techniques:anchor:94f5f69419c973f3c56f1155","artifact_kind":"document","content_hash":"718f0ecadb2586743383739904ae996f3acc03ffa7e2b2c6be18428cb3819989","id":"aoa:aoa-techniques:artifact:fb787d85b0f7f26229cbdd9a","lineage_path":".agents/spark/scenarios/release-prep/PROMPT.md","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/PROMPT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:44312ec90a54912b699186f6"}, - {"anchor_id":"aoa:aoa-techniques:anchor:89ce82b5d52747604ba56bd0","artifact_kind":"document","content_hash":"33062d1b4084a1f615841659f31436e221f97e0044842416e3a5cd654db202fa","id":"aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","lineage_path":".agents/spark/scenarios/release-prep/README.md","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d09e39debbb1e41c2c4b26c6"}, - {"anchor_id":"aoa:aoa-techniques:anchor:1aa703ad0516dded2ed51aae","artifact_kind":"document","content_hash":"5067555ba333636f8709254aff92abf1ed9ef2f5a33a779a9c921f63a870a90a","id":"aoa:aoa-techniques:artifact:d2953f59029c3da963218542","lineage_path":".agents/spark/scenarios/release-prep/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7603204d2e85e1060378d0e2"}, + {"anchor_id":"aoa:aoa-techniques:anchor:89ce82b5d52747604ba56bd0","artifact_kind":"document","content_hash":"6e138b83a1f0d06fe38f2a3a0bad77ebcfeccec93f13a41bcee788d121cca87b","id":"aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","lineage_path":".agents/spark/scenarios/release-prep/README.md","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:28df53a09e63e9cab8aa2867"}, + {"anchor_id":"aoa:aoa-techniques:anchor:1aa703ad0516dded2ed51aae","artifact_kind":"document","content_hash":"14ca72fc0d4f25848702f856c98efa5cb9013db0e8c21ae890c66bb7dc143905","id":"aoa:aoa-techniques:artifact:d2953f59029c3da963218542","lineage_path":".agents/spark/scenarios/release-prep/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0ad5b8b6b836e38ae82fc73c"}, {"anchor_id":"aoa:aoa-techniques:anchor:6a742ef6694ea01320532587","artifact_kind":"document","content_hash":"f1b43dabf8d911b81c634e1a26d29a23d6bd8d9daf3b27b562a221c7ea166939","id":"aoa:aoa-techniques:artifact:d25de013576826a78e43c29f","lineage_path":".agents/spark/scenarios/release-prep/templates/handoff.md","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/templates/handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:23725aa58dbf18ba07c248b2"}, {"anchor_id":"aoa:aoa-techniques:anchor:037add6c8c55fe4dd0767e97","artifact_kind":"document","content_hash":"54e1d549e4c067af70c285378f869058a6107d37bf7d641a6ba74dec848c9f19","id":"aoa:aoa-techniques:artifact:65d22157cb3e19f21f274b8c","lineage_path":".agents/spark/scenarios/release-prep/templates/result.md","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/templates/result.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:64791d2b954890e785bd8ae1"}, {"anchor_id":"aoa:aoa-techniques:anchor:f35e0bb553ce30c68d8babe7","artifact_kind":"document","content_hash":"cdd1e5a26ffda0c4c4f66cef1cad82b4859217555336a0db16369c5f429edef9","id":"aoa:aoa-techniques:artifact:40831c23552cd401c18fd933","lineage_path":".agents/spark/scenarios/technique-audit/PROMPT.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-audit/PROMPT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:269ab41118b7ab0e82875b16"}, @@ -249,13 +249,13 @@ {"anchor_id":"aoa:aoa-techniques:anchor:da336844c7917678561d915f","artifact_kind":"document","content_hash":"fb9cf27741b3f44b703bc4e2d5b4d1464c262c049c526d1ab32ec32f5ff299ef","id":"aoa:aoa-techniques:artifact:e7573ccc777897e914ac9e99","lineage_path":".agents/spark/scenarios/technique-audit/templates/handoff.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-audit/templates/handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ad31ce5a11075ceecd08a42e"}, {"anchor_id":"aoa:aoa-techniques:anchor:3b48382ef11cc6cf18801df4","artifact_kind":"document","content_hash":"8dd0f1ba539016adbc23cdb704f707012c69b54fea8e7f6f32bd63e3fe903ba9","id":"aoa:aoa-techniques:artifact:f6b137bbaa5d00fc24fd68d4","lineage_path":".agents/spark/scenarios/technique-audit/templates/result.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-audit/templates/result.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3787031dff9ed64e3d4e49fc"}, {"anchor_id":"aoa:aoa-techniques:anchor:709adc91b88a39db94060514","artifact_kind":"document","content_hash":"6f69234461d39d83e06e1448414dafb4023503cd6a3b6876b958ba709c2f5c93","id":"aoa:aoa-techniques:artifact:c6df1331bef3ab8eb6356bdb","lineage_path":".agents/spark/scenarios/technique-refinement/PROMPT.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/PROMPT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f89735a0c35ee77650b20b9b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:47718eb692e916667a343468","artifact_kind":"document","content_hash":"86d8e7a5f9cc5f3cb226a1571d0efedc984a8724a837cc3b2c77e6ab73c55f60","id":"aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","lineage_path":".agents/spark/scenarios/technique-refinement/README.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:01a26dd203f03323d23b166d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:72622e0b7439398bf3e3c8db","artifact_kind":"document","content_hash":"cea21afaa19f0a81635026f13c5081a3c77d01d10491e49f292263f6c34e9a60","id":"aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","lineage_path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:eb7e0b1af3c51f0b0ce4c0bc"}, + {"anchor_id":"aoa:aoa-techniques:anchor:47718eb692e916667a343468","artifact_kind":"document","content_hash":"f6f9828d64f104fb78f0b2fadda5eb2557655856d01aab4fabb41bf3b3af61e9","id":"aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","lineage_path":".agents/spark/scenarios/technique-refinement/README.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7b6c88293e19b574e3acdf4e"}, + {"anchor_id":"aoa:aoa-techniques:anchor:72622e0b7439398bf3e3c8db","artifact_kind":"document","content_hash":"d2f8a2e2945feaf4c6956cfb4e23ee6bc38ca839b09d2b03981e7ceef5f192aa","id":"aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","lineage_path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:34bdced3490ced58f88668bd"}, {"anchor_id":"aoa:aoa-techniques:anchor:901d79ba1a78e90eda4180af","artifact_kind":"document","content_hash":"b86b21330b0da44a8826eea65d99d3c1ce24f2e192df00bdf07914453c93dfca","id":"aoa:aoa-techniques:artifact:65aab6e00bd219449f8e0604","lineage_path":".agents/spark/scenarios/technique-refinement/templates/handoff.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/templates/handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:912d6e69410ee10882fc47ce"}, {"anchor_id":"aoa:aoa-techniques:anchor:2caea3dea47d96fc35e5fed0","artifact_kind":"document","content_hash":"ad5cfe8f4f0075afd5ec7665249c2b0950bc4aa43530f62a5fa63ea2bfd60a36","id":"aoa:aoa-techniques:artifact:96e6b1ce02c4f43c1da2bb66","lineage_path":".agents/spark/scenarios/technique-refinement/templates/result.md","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/templates/result.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4f2e2c6c35880e0cda96a6d2"}, {"anchor_id":"aoa:aoa-techniques:anchor:5759d77aa5f590f92e569360","artifact_kind":"document","content_hash":"04efb76a0c222b0c050857ce2e00d9bbd09ecd4b1016006ec866dc6502a42c2e","id":"aoa:aoa-techniques:artifact:0f6efa61982a73a1287839d9","lineage_path":".agents/spark/scenarios/test-factory/PROMPT.md","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/PROMPT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:62dbc8fb4a2f9a6cae75fc6c"}, - {"anchor_id":"aoa:aoa-techniques:anchor:164e0f08224d4f30287120e6","artifact_kind":"document","content_hash":"35e117dcb1aeae9779f54b228dcc67c8c462887ba09dd23557fa32be01c2afd2","id":"aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","lineage_path":".agents/spark/scenarios/test-factory/README.md","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1df67cabd936768343f296f6"}, - {"anchor_id":"aoa:aoa-techniques:anchor:0a7d45d25ac918469a7c202b","artifact_kind":"document","content_hash":"6846832d4d8535375c3efd95d930776fb3a525d9a64294f836f830ccd44e9c51","id":"aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","lineage_path":".agents/spark/scenarios/test-factory/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e505889f15fab5c28bd15b22"}, + {"anchor_id":"aoa:aoa-techniques:anchor:164e0f08224d4f30287120e6","artifact_kind":"document","content_hash":"fa82f0e7f6b0a395dc378bcbaa822d13dc39b923ff730951a5a0e1f95b26a288","id":"aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","lineage_path":".agents/spark/scenarios/test-factory/README.md","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1a5e1564c135d47ffdba7741"}, + {"anchor_id":"aoa:aoa-techniques:anchor:0a7d45d25ac918469a7c202b","artifact_kind":"document","content_hash":"945a7915d73a82734836f2545364c5c13d9ccaa25b9e45de201ce0156eed09cb","id":"aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","lineage_path":".agents/spark/scenarios/test-factory/examples/result.example.md","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/examples/result.example.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6af52393d52f978140e9a96f"}, {"anchor_id":"aoa:aoa-techniques:anchor:0dbbe602b125cfcc55766ccf","artifact_kind":"document","content_hash":"989a99c6ec230f8303706c24a6d8f485e8894abaae90d9210adc096e7fffb2e2","id":"aoa:aoa-techniques:artifact:f9a0d6347c48e626cb968dc1","lineage_path":".agents/spark/scenarios/test-factory/templates/handoff.md","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/templates/handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:54755671c9da1d27491c1e16"}, {"anchor_id":"aoa:aoa-techniques:anchor:48a66bf6a15eb2aeb8544049","artifact_kind":"document","content_hash":"f2e1da2865fd9b1ae3b62bfe4b3419ccac3e7a080d454983c4988de686e04058","id":"aoa:aoa-techniques:artifact:2d4324af86755a673c1fded3","lineage_path":".agents/spark/scenarios/test-factory/templates/result.md","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/templates/result.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1c67ae0e421a8e8f9043a744"}, {"anchor_id":"aoa:aoa-techniques:anchor:e7c9d76bcebfea7b94c16673","artifact_kind":"schema","content_hash":"342b3926cee66f3e4a556e22803b4fab43a5de845cbfdef2c3cf577b2c6bb917","id":"aoa:aoa-techniques:artifact:84dea1f2d0e604c945f35906","lineage_path":".agents/spark/schemas/spark-handoff.schema.json","mime":"application/json","path":".agents/spark/schemas/spark-handoff.schema.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6d5e116763bcbe8b3b52b0f8"}, @@ -264,44 +264,44 @@ {"anchor_id":"aoa:aoa-techniques:anchor:878e9324377c0c7477e18e6a","artifact_kind":"validator","content_hash":"e9b6aa304f03cd3d573283040717dce7cc022186b16b5f20933fb15b10089922","id":"aoa:aoa-techniques:artifact:80adbf9807a80432bf32a44f","lineage_path":".agents/spark/scripts/validate_spark_lane.py","mime":"text/x-python","path":".agents/spark/scripts/validate_spark_lane.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5ae6eaf5d1e1cc2ebe6b259f"}, {"anchor_id":"aoa:aoa-techniques:anchor:4f77ae669acaeac74aee3543","artifact_kind":"test","content_hash":"218073a99eeccb5503fda3ac7ab3c30cffa4151432ad400956f4d7b5d0fba65d","id":"aoa:aoa-techniques:artifact:2b31a3041fd1f1fcf0b72bc0","lineage_path":".agents/spark/tests/test_spark_lane.py","mime":"text/x-python","path":".agents/spark/tests/test_spark_lane.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d8b6d265e2372b507e71a3b6"}, {"anchor_id":"aoa:aoa-techniques:anchor:5a32988e7a50edfe0d3504dc","artifact_kind":"document","content_hash":"613833c8cab13f9573c3b9756d00b3208c2ba9369e761f9f37d4658f2c3fcb48","id":"aoa:aoa-techniques:artifact:f0cbd6aa0372f04d8e3ab075","lineage_path":".github/AGENTS.md","mime":"text/markdown","path":".github/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:10249b56972440f44a26e8fe"}, - {"anchor_id":"aoa:aoa-techniques:anchor:34c3539d103912d4e690ac2d","artifact_kind":"owner_metadata","content_hash":"105869639af2999982ee4bba2900acbd1e53e319ec5df2f602a468203818e0e7","id":"aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","lineage_path":".github/CODEOWNERS","mime":"text/plain","path":".github/CODEOWNERS","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:22060068e6648835315f970f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:34c3539d103912d4e690ac2d","artifact_kind":"owner_metadata","content_hash":"d4617ca7439571e36d1ed70a72529e5e72f75f531c45afececa42a82f9c40eab","id":"aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","lineage_path":".github/CODEOWNERS","mime":"text/plain","path":".github/CODEOWNERS","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cc0fdf3fe234d3cad6287b60"}, {"anchor_id":"aoa:aoa-techniques:anchor:dbd6d6f449f971a6303e3bc0","artifact_kind":"document","content_hash":"bcdd6efa3b08b2343d993b6ae746f81160b5dc1e78a86448b0d34f69f7086b28","id":"aoa:aoa-techniques:artifact:5ea6a99ea509e9210150d813","lineage_path":".github/ISSUE_TEMPLATE/canonical-promotion.md","mime":"text/markdown","path":".github/ISSUE_TEMPLATE/canonical-promotion.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ae3476e69fc86ba284eadd56"}, {"anchor_id":"aoa:aoa-techniques:anchor:32dfda445fc1630ac7dca546","artifact_kind":"config","content_hash":"658fc205fdab772a7a2ff6d634f703f89945c84ed4965ebec662ae5624379293","id":"aoa:aoa-techniques:artifact:1c0d972ee49103af56fd608a","lineage_path":".github/ISSUE_TEMPLATE/config.yml","mime":"application/yaml","path":".github/ISSUE_TEMPLATE/config.yml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:42cdd31c45296f42987a7478"}, {"anchor_id":"aoa:aoa-techniques:anchor:fbcd971cb6102e79ede53845","artifact_kind":"document","content_hash":"9d4845cdafbac6af2cd450cafe069ba52f0d0241725203f2184dbc6a0f8b4175","id":"aoa:aoa-techniques:artifact:196c84a93a07a7c2622a6d37","lineage_path":".github/ISSUE_TEMPLATE/external-import-review.md","mime":"text/markdown","path":".github/ISSUE_TEMPLATE/external-import-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0e54ce3c8c5eaaef37489251"}, {"anchor_id":"aoa:aoa-techniques:anchor:debfa51d2c8530d11cc3a5d3","artifact_kind":"document","content_hash":"155e65f100ed61414b709a8fe74dcb393050a716a67c7caee8dcc5459cc6ac53","id":"aoa:aoa-techniques:artifact:a238084f3b16092d1ec2e4bb","lineage_path":".github/ISSUE_TEMPLATE/technique-proposal.md","mime":"text/markdown","path":".github/ISSUE_TEMPLATE/technique-proposal.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9cb3c2bfe1f156a8b0989dcd"}, {"anchor_id":"aoa:aoa-techniques:anchor:6e46a06d16c9c342c6d386f5","artifact_kind":"document","content_hash":"59b6b6199b3a988800c2de06a5076282ac3bf0e6e8c7f88eefead3d18b45824c","id":"aoa:aoa-techniques:artifact:18813c86948efc57e661623d","lineage_path":".github/PULL_REQUEST_TEMPLATE.md","mime":"text/markdown","path":".github/PULL_REQUEST_TEMPLATE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ec06ba65ad83c081cb6f2c27"}, - {"anchor_id":"aoa:aoa-techniques:anchor:8c233be5268ed5b522919cea","artifact_kind":"config","content_hash":"17921ddde13fe05ea843c6b6cdbe18a09230821dc917485c789b03ec36b7b77b","id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","lineage_path":".github/workflows/nightly-sentinel.yml","mime":"application/yaml","path":".github/workflows/nightly-sentinel.yml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0918eeda510a5b587d3f55b2"}, - {"anchor_id":"aoa:aoa-techniques:anchor:1574d71229e0ed11f7074ec8","artifact_kind":"config","content_hash":"08969a15784b1e3c96ab8384c7692bd92bd886a36dda8a2216a00c65e9d330da","id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","lineage_path":".github/workflows/release-audit.yml","mime":"application/yaml","path":".github/workflows/release-audit.yml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a030b2ab3bedd5c5562257a1"}, - {"anchor_id":"aoa:aoa-techniques:anchor:54b2514382567e92c148fb34","artifact_kind":"config","content_hash":"8ff20d917c3303b5b17370fb05cc992329e01425694033c459f52bd624695882","id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","lineage_path":".github/workflows/repo-validation.yml","mime":"application/yaml","path":".github/workflows/repo-validation.yml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e36bdb5c019f87abb9e4389c"}, + {"anchor_id":"aoa:aoa-techniques:anchor:8c233be5268ed5b522919cea","artifact_kind":"config","content_hash":"e7e25c393ad6b73c9f78754b5f4de36922156e7bf2f6c05b1c3b56478cf8b31d","id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","lineage_path":".github/workflows/nightly-sentinel.yml","mime":"application/yaml","path":".github/workflows/nightly-sentinel.yml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8cc18f35266876b9868ef9b6"}, + {"anchor_id":"aoa:aoa-techniques:anchor:1574d71229e0ed11f7074ec8","artifact_kind":"config","content_hash":"05667122ca3180e8a90056114bc95a8444b22c49c37cd688ccfc830ee5a8c555","id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","lineage_path":".github/workflows/release-audit.yml","mime":"application/yaml","path":".github/workflows/release-audit.yml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:600a0055a5995ff11670cd74"}, + {"anchor_id":"aoa:aoa-techniques:anchor:54b2514382567e92c148fb34","artifact_kind":"config","content_hash":"92f33b2bb1139a4803e801e05d41893a4d5df253d56454fb4b44aa3f4a723130","id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","lineage_path":".github/workflows/repo-validation.yml","mime":"application/yaml","path":".github/workflows/repo-validation.yml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9f39983291c9f947a7d6413b"}, {"anchor_id":"aoa:aoa-techniques:anchor:d2eabbe300507857bbea0033","artifact_kind":"owner_metadata","content_hash":"344eb56a6bcb0d6385373560f6071c3abc5d4016f1805d29d0f3e26b8baea3e9","id":"aoa:aoa-techniques:artifact:bc37d034bad564583790a46f","lineage_path":".gitignore","mime":"text/plain","path":".gitignore","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:30c61c27aaf74a0aea56741c"}, - {"anchor_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","artifact_kind":"document","content_hash":"e8f950fd581a75da8a284f43a7734046153e04dae046b10eff8bb39f26e98e3c","id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","lineage_path":"AGENTS.md","mime":"text/markdown","path":"AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:da8199a9bcf48f631900805a"}, - {"anchor_id":"aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","artifact_kind":"document","content_hash":"caaf21212ff13194c7dcfff254e3c18eec3039197c5d97afb55448a4f096a5f5","id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","lineage_path":"CHANGELOG.md","mime":"text/markdown","path":"CHANGELOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5efc863533daa0d87e2b9815"}, + {"anchor_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","artifact_kind":"document","content_hash":"2baf594ab9f8e7ed6efb041872cfd5a9bf9e07becc167089b6fff6d0a9e6b6a6","id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","lineage_path":"AGENTS.md","mime":"text/markdown","path":"AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e63bdffd05b61be8f9bc7ef7"}, + {"anchor_id":"aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","artifact_kind":"document","content_hash":"7c49ca5d70522727e2c42ad30c6982df3e4b4664ce28319d0bb4b68117990a5a","id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","lineage_path":"CHANGELOG.md","mime":"text/markdown","path":"CHANGELOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2fffaeaa203d636b9eec9f12"}, {"anchor_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","artifact_kind":"document","content_hash":"df287641481eea425003be6f3ca02b958e6e82763cb6248ea4ed21fd8dddd7ae","id":"aoa:aoa-techniques:artifact:91d16dd057bd39f6431e90a1","lineage_path":"CHARTER.md","mime":"text/markdown","path":"CHARTER.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1ab1972e3362f5cf69edc3b6"}, {"anchor_id":"aoa:aoa-techniques:anchor:9538966af91bcb9cd94aa728","artifact_kind":"document","content_hash":"75b3203a9f5560c31909041cb3c3ee1d6bd3e62977b409f919463e3d027c489f","id":"aoa:aoa-techniques:artifact:ffdbe3a1e7ee93cacfc080b6","lineage_path":"CODE_OF_CONDUCT.md","mime":"text/markdown","path":"CODE_OF_CONDUCT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4ac2e6edb2b1352798e94a5c"}, {"anchor_id":"aoa:aoa-techniques:anchor:5b8faca6d827a00b51c80f7a","artifact_kind":"document","content_hash":"f7e4f4007a7d94fcb13f5dbb64cfe05eab2e24af82e714d425a86bf5ae7cc161","id":"aoa:aoa-techniques:artifact:eca12c0a30e25b4b46522ebf","lineage_path":"CONTRIBUTING.md","mime":"text/markdown","path":"CONTRIBUTING.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:70a3ce989a2ebd4b046e5af0"}, {"anchor_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","artifact_kind":"document","content_hash":"c2b3ca0c8941b88591d527f7f8c407860f7fe35eb3920e0abe9ea0d599e2d78d","id":"aoa:aoa-techniques:artifact:42d9f271dea9edd048f8e120","lineage_path":"DESIGN.AGENTS.md","mime":"text/markdown","path":"DESIGN.AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5aeb638d2529232edb16bad0"}, - {"anchor_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","artifact_kind":"document","content_hash":"8b75f6fd8315e0ad560286be23a5b1bcdbd13473e3841ce9c1fc8b06375efbf8","id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","lineage_path":"DESIGN.md","mime":"text/markdown","path":"DESIGN.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:844a952d23aa16d9dc2910b4"}, + {"anchor_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","artifact_kind":"document","content_hash":"d0beb1c14e292bcb38af7f015e592b61dba7dae9f066892e999e873b61ac1127","id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","lineage_path":"DESIGN.md","mime":"text/markdown","path":"DESIGN.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:96b76b92c2ea4b55ead56ca9"}, {"anchor_id":"aoa:aoa-techniques:anchor:556e41f0d4a9615111b2863e","artifact_kind":"license","content_hash":"0b81e2ea9cf9c447b3317b84e5bbaca9f3cf98a5d08ef8d754a3286f21c3392a","id":"aoa:aoa-techniques:artifact:c693279643b8cd5d248172d9","lineage_path":"LICENSE","mime":"text/plain","path":"LICENSE","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2fb84d8e2342aa860af61102"}, {"anchor_id":"aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","artifact_kind":"document","content_hash":"e382c891fa872f7681a665453b42e14bbf91537c84224f4d5f173c10c9959c56","id":"aoa:aoa-techniques:artifact:f154afc903516acbc3b82fb5","lineage_path":"QUESTBOOK.md","mime":"text/markdown","path":"QUESTBOOK.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:263cb372de519e9bc2c52164"}, - {"anchor_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","artifact_kind":"document","content_hash":"5546bacae7c949fa8358ad1abbfcd74b4bd8c06f77239a456facb0d162e0de99","id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","lineage_path":"README.md","mime":"text/markdown","path":"README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e0d5921cbaf9aca830e41b79"}, + {"anchor_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","artifact_kind":"document","content_hash":"973df08abed27eb109f85dc678a9352a42f690076a06217fa13e0f0b424839d7","id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","lineage_path":"README.md","mime":"text/markdown","path":"README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8f511f6952e46b2d3a8e9239"}, {"anchor_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","artifact_kind":"document","content_hash":"a0b4f23735d1407f706369cb3c436277d59bb1d6caf175515a68d6cb2e86776d","id":"aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","lineage_path":"ROADMAP.md","mime":"text/markdown","path":"ROADMAP.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:408ca46930477ee29395da51"}, {"anchor_id":"aoa:aoa-techniques:anchor:37598a7baeed5cc9b6bc3087","artifact_kind":"security","content_hash":"6f3a7dee9a9a09b7f389be59610a44bf12a907a78aa75191091bbb3caff072a7","id":"aoa:aoa-techniques:artifact:f6ed156e4bf5c79168066246","lineage_path":"SECURITY.md","mime":"text/markdown","path":"SECURITY.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:dc08173f83b1193a39bf11c2"}, {"anchor_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","artifact_kind":"document","content_hash":"2084b736d15f8894f87db90d0274686bd45e40d834190657a30d3d6452bd72b4","id":"aoa:aoa-techniques:artifact:f04f81f6c36ffeba6398f4aa","lineage_path":"TECHNIQUE_INDEX.md","mime":"text/markdown","path":"TECHNIQUE_INDEX.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a8aaebb170cf44a3c5c71f5c"}, {"anchor_id":"aoa:aoa-techniques:anchor:2d7e03ce1dbd6147fe68b11d","artifact_kind":"document","content_hash":"4249336cd0715f26a08618b7667bd459a3339d9a7ab00fa0fdf6df3f62c35107","id":"aoa:aoa-techniques:artifact:e0bf6e32145dd6f877587469","lineage_path":"config/AGENTS.md","mime":"text/markdown","path":"config/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7efeaecfe769cedaf2ecd28d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:ff722a49ae8d3745219e2716","artifact_kind":"config","content_hash":"2190dec63c794d87f1dd62970c09bf2ed569ae2f9de9336600100809ee4dd8e3","id":"aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","lineage_path":"config/agents_mesh.json","mime":"application/json","path":"config/agents_mesh.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cbd99c65cea739e82c600e23"}, + {"anchor_id":"aoa:aoa-techniques:anchor:ff722a49ae8d3745219e2716","artifact_kind":"config","content_hash":"73c9c9c5fc846e654890da47b2953adfb2d051f51befa93f9b7b71aa9f348135","id":"aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","lineage_path":"config/agents_mesh.json","mime":"application/json","path":"config/agents_mesh.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e6d2aa5f8006acc7da7208e2"}, {"anchor_id":"aoa:aoa-techniques:anchor:398ce8f43d9d53f379af2846","artifact_kind":"config","content_hash":"42492db0b1fa0118bd631cde0cde59deff1c9a528c8081f5ca24ac151c26707b","id":"aoa:aoa-techniques:artifact:78a8dfbaa559f938cc3b5b5b","lineage_path":"config/technique_kind_registry.yaml","mime":"application/yaml","path":"config/technique_kind_registry.yaml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cb2fe6c1361e1c599e476da5"}, - {"anchor_id":"aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4","artifact_kind":"config","content_hash":"f401c0b77831fef1e8aa58ac5d891bae65b78bba220cbdb0cba18392f6b855f6","id":"aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","lineage_path":"config/validation_lanes.json","mime":"application/json","path":"config/validation_lanes.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8a78e665fd98ab94669895b8"}, + {"anchor_id":"aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4","artifact_kind":"config","content_hash":"92d449faa490fc13a606e06c9bbe09caeb43c3b17e78427ee7554513e1d61f32","id":"aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","lineage_path":"config/validation_lanes.json","mime":"application/json","path":"config/validation_lanes.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ae26faab06c081cd14affeb4"}, {"anchor_id":"aoa:aoa-techniques:anchor:4d7c20aafd5a5616b97b2e62","artifact_kind":"document","content_hash":"25501b6bd53ae906a645c06229c6870e4c1a64278e329667dde12630fe62acc9","id":"aoa:aoa-techniques:artifact:d00743dc4e878f258330dead","lineage_path":"docs/AGENTS.md","mime":"text/markdown","path":"docs/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:42d915c4657ca67e43804e9e"}, {"anchor_id":"aoa:aoa-techniques:anchor:2129cc6ab0ae64aab4507db5","artifact_kind":"document","content_hash":"dad13d2e9ebd3cf05eb0f3470766284146540cb4737ec51ae367d7612434c20c","id":"aoa:aoa-techniques:artifact:3f501b7b16e871d49ec9709d","lineage_path":"docs/DOMAIN_MAP.md","mime":"text/markdown","path":"docs/DOMAIN_MAP.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:de5e27e8105634d181fad8eb"}, {"anchor_id":"aoa:aoa-techniques:anchor:7dc7edac22322b5899498e76","artifact_kind":"document","content_hash":"f0c408204861629b1b2489dee5eddb209a1086d6c2f775c36aa45206ad757144","id":"aoa:aoa-techniques:artifact:564d64d6e09515e2490437b2","lineage_path":"docs/ECOSYSTEM_CONTEXT.md","mime":"text/markdown","path":"docs/ECOSYSTEM_CONTEXT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0ea8b3a7236eb24880cb0a97"}, {"anchor_id":"aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335","artifact_kind":"document","content_hash":"6ad5390bd12e01f8b4a1a5a166645a95639278fa4d5a49e71fe27a764383a7d7","id":"aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","lineage_path":"docs/README.md","mime":"text/markdown","path":"docs/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e0276bf01ff17d13cc3ca8df"}, {"anchor_id":"aoa:aoa-techniques:anchor:7587370c1a2d80e96695fd85","artifact_kind":"document","content_hash":"e3ec75c3489a5208ca224d6e8d51e8482616f4effc615931193a8a5201817905","id":"aoa:aoa-techniques:artifact:8936340d2e7844f9c8b77f67","lineage_path":"docs/RELEASING.md","mime":"text/markdown","path":"docs/RELEASING.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:52bb01f703b26aa4412ece61"}, - {"anchor_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","artifact_kind":"document","content_hash":"33ae3abf6584777520fd3127af969ab0d04348bc937f0f9731205316988a5715","id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","lineage_path":"docs/ROOT_SURFACE_LAW.md","mime":"text/markdown","path":"docs/ROOT_SURFACE_LAW.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:523b2d63ccaebc21daa338c8"}, + {"anchor_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","artifact_kind":"document","content_hash":"36f32c805587a141ec7c36dca39a5835ac1de130bc6136dbc77f671e33c34ccb","id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","lineage_path":"docs/ROOT_SURFACE_LAW.md","mime":"text/markdown","path":"docs/ROOT_SURFACE_LAW.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:64aaed5446ed09a430f902b6"}, {"anchor_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","artifact_kind":"document","content_hash":"f83f94cc72c5d58a82e565e66feb1c65c68825bc858cd5d4c119c6e1d07931c6","id":"aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","lineage_path":"docs/START_HERE.md","mime":"text/markdown","path":"docs/START_HERE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:366da78a6fe16f498dd4c08b"}, {"anchor_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","artifact_kind":"document","content_hash":"1552053a44d3c80e31023fa34880ab4c75dc4ef497ab806be4b1b1a2aa48afe1","id":"aoa:aoa-techniques:artifact:df5aa70387b8b66abd31b7c1","lineage_path":"docs/TECHNIQUE_ATOM_CONTRACT.md","mime":"text/markdown","path":"docs/TECHNIQUE_ATOM_CONTRACT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0bc59c25f706eb1a375e709d"}, {"anchor_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","artifact_kind":"document","content_hash":"aae3f60876e0fea81fe34cd57b7fa4b9626a2633aa56429f672b1fa414ca0830","id":"aoa:aoa-techniques:artifact:9f5122ba6b49b003ce4d99e8","lineage_path":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","mime":"text/markdown","path":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:17b2f453298703273bb44e98"}, {"anchor_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","artifact_kind":"document","content_hash":"d4d9287e572fc65d394cd11363fd3090bad145dd1239ee207b6cde3d31a1984d","id":"aoa:aoa-techniques:artifact:79eeacf6b8500c3529e09a8e","lineage_path":"docs/TECHNIQUE_TREE_CONTRACT.md","mime":"text/markdown","path":"docs/TECHNIQUE_TREE_CONTRACT.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a07d904c5255d8f6bbbe6706"}, - {"anchor_id":"aoa:aoa-techniques:anchor:a5c5258791826a9f80356f29","artifact_kind":"document","content_hash":"e701822f01613a64b36afc0314bfab791c3607a708ece4905f42355e0b0eabe9","id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","lineage_path":"docs/decisions/AGENTS.md","mime":"text/markdown","path":"docs/decisions/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b294523e46bebd0032c8b48b"}, + {"anchor_id":"aoa:aoa-techniques:anchor:a5c5258791826a9f80356f29","artifact_kind":"document","content_hash":"f3cbb0acbf4daa2717006fcc0007b8e5b89f5e8d59d9bd2f06163d08c178e1aa","id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","lineage_path":"docs/decisions/AGENTS.md","mime":"text/markdown","path":"docs/decisions/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5f8ab702bfb224ebcc8c5192"}, {"anchor_id":"aoa:aoa-techniques:anchor:4c7980bcdd608534212bb1a3","artifact_kind":"document","content_hash":"935f34d1b92cd35748ac1d98a86aead80661d67b8f3f67320f9a9fd89edf7108","id":"aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","lineage_path":"docs/decisions/2026-05-01-agon-active-legacy-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a9a8fed438ca44af2ad316cd"}, {"anchor_id":"aoa:aoa-techniques:anchor:0eef034a77a979020ccdf420","artifact_kind":"document","content_hash":"c0f1deccea5243a74e52b9141a8153d6adf30804c3655a285c3d456b4c48936e","id":"aoa:aoa-techniques:artifact:fdd58aeb6b4fafa71844c566","lineage_path":"docs/decisions/2026-05-01-agon-part-local-artifacts.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b3317845376e3a31d794d205"}, {"anchor_id":"aoa:aoa-techniques:anchor:e6950d1e41005f1147fe053f","artifact_kind":"document","content_hash":"05230f2c2c1237dd526d520c18749e874aa92351f47d6f5e5f362232f3886bdf","id":"aoa:aoa-techniques:artifact:51af704d4fce18536bbf0d79","lineage_path":"docs/decisions/2026-05-01-audit-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:88625c3858cef44407342be4"}, @@ -309,69 +309,69 @@ {"anchor_id":"aoa:aoa-techniques:anchor:77427ef2611ae4fc92160ec3","artifact_kind":"document","content_hash":"4dfb240cc118c202869589798a7f516971ff63b419ad8efa8422a9a8dd0d46e1","id":"aoa:aoa-techniques:artifact:6ae513b765f8285d63a685c1","lineage_path":"docs/decisions/2026-05-01-distillation-cross-layer-candidate-registry.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:533051b046ffce768f493b9c"}, {"anchor_id":"aoa:aoa-techniques:anchor:aaac1e5530f1ecc759b14776","artifact_kind":"document","content_hash":"eeb3471999a0eafd2cd254e8f502ee8583e8b8a0ff8b8d10a58db413c3d8446d","id":"aoa:aoa-techniques:artifact:9fe03959b607e5b273766019","lineage_path":"docs/decisions/2026-05-01-distillation-external-candidate-registry.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6b51d1a3663fedbd4bafa636"}, {"anchor_id":"aoa:aoa-techniques:anchor:491e2d3e81cfde1d923fcbfa","artifact_kind":"document","content_hash":"f735344271c5e69689dad57b0c9601aff26cbe11ed19c1c1a863c37af7ed3209","id":"aoa:aoa-techniques:artifact:06e9e8aaedfd37a6721abd79","lineage_path":"docs/decisions/2026-05-01-distillation-gate-alignment.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:656b684ec5e2e2cc54c0d1c7"}, - {"anchor_id":"aoa:aoa-techniques:anchor:912e61e3f40d31e3ad6e087c","artifact_kind":"document","content_hash":"cccafeee249ad719747e282bbafe18a2d6eea24bcc11d89e429246e9c8731b94","id":"aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","lineage_path":"docs/decisions/2026-05-01-experience-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3aa045c4fcfcb0d493050d3d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:8fe61f4c47fe2fa66beded4a","artifact_kind":"document","content_hash":"689883c866b6988d39cf5846897361391991286bb869312ecd4e79c175e34e09","id":"aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","lineage_path":"docs/decisions/2026-05-01-growth-cycle-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9ca0d75a655f3eb550895e3b"}, + {"anchor_id":"aoa:aoa-techniques:anchor:912e61e3f40d31e3ad6e087c","artifact_kind":"document","content_hash":"0fa4c375fa4128f55772886416754d87a0a49d0508c2f0ae0a07f6884b4e8b40","id":"aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","lineage_path":"docs/decisions/2026-05-01-experience-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e81aac42bca9b4b9debf98b8"}, + {"anchor_id":"aoa:aoa-techniques:anchor:8fe61f4c47fe2fa66beded4a","artifact_kind":"document","content_hash":"1d0033380c8d1fcf2182cba16eee9f087041e13cb234d80c687f0475934204c5","id":"aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","lineage_path":"docs/decisions/2026-05-01-growth-cycle-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bb3bae28192127af01758417"}, {"anchor_id":"aoa:aoa-techniques:anchor:45e2aa2d646982932be117c5","artifact_kind":"document","content_hash":"a0c585ce03b3a00ba98baaa661bf4c36a85cca31bda08226b9ba09fc98d8752f","id":"aoa:aoa-techniques:artifact:a645a53577db8efd068433c5","lineage_path":"docs/decisions/2026-05-01-mechanics-boundary-language-correction.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c0fb76aa67f30a5b456e0ce2"}, {"anchor_id":"aoa:aoa-techniques:anchor:5215c8217fbdf8785c225cc6","artifact_kind":"document","content_hash":"86646cad93127ee7a8bdb7c8a082b0986e08d3c225db633e47aba75653b7fb96","id":"aoa:aoa-techniques:artifact:c2e10157e4040acd07ee7659","lineage_path":"docs/decisions/2026-05-01-mechanics-law-local-bridge-alignment.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:497c5c80715a5a3038b8812f"}, - {"anchor_id":"aoa:aoa-techniques:anchor:4815ea37c69bf587ed4ab8e1","artifact_kind":"document","content_hash":"dff5d4aec952949cccb113b437d94b2b8f46406ca1fc1e56042eecfc26953782","id":"aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","lineage_path":"docs/decisions/2026-05-01-mechanics-owner-request-receipts.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:420f48f3ac6483becd6f1344"}, + {"anchor_id":"aoa:aoa-techniques:anchor:4815ea37c69bf587ed4ab8e1","artifact_kind":"document","content_hash":"d7af4bba7de90e199a2730ffcef5dce05a87aa7de4c3c9ea3b8ba44aef8a4481","id":"aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","lineage_path":"docs/decisions/2026-05-01-mechanics-owner-request-receipts.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1af37ff9b19a736dc3ddbb36"}, {"anchor_id":"aoa:aoa-techniques:anchor:356f5d8a442ca9d2278c6085","artifact_kind":"document","content_hash":"3a727a08cb795fd3ed16c33399fd6ae5ef45d97ab6c6f712d792c8d8f9da0a41","id":"aoa:aoa-techniques:artifact:bafb21d6b5f0a0ecf11c99ca","lineage_path":"docs/decisions/2026-05-01-mechanics-surface-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:782437cd508e38c84facf10d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:0f471855c1214b41ab685261","artifact_kind":"document","content_hash":"265f3156afffe27da663fa89a4af3931f1bc2f42a92f9cb1fa555340fb0cb903","id":"aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","lineage_path":"docs/decisions/2026-05-01-method-growth-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d6d434f5137ed5816c3db5cf"}, + {"anchor_id":"aoa:aoa-techniques:anchor:0f471855c1214b41ab685261","artifact_kind":"document","content_hash":"125225bce69958dbd62dedd96ddd0efe60d8dd97f5a1bdcc0f3d5b2f018dd81c","id":"aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","lineage_path":"docs/decisions/2026-05-01-method-growth-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3786fde4e272fea5f0c66dd9"}, {"anchor_id":"aoa:aoa-techniques:anchor:1efc0dc3ba6f86d52a62e179","artifact_kind":"document","content_hash":"ec30e2bf8274c8bbfde7616152dcf09292c233b05268e508545d2ad414c4f428","id":"aoa:aoa-techniques:artifact:3d786881b22173d939f0ab17","lineage_path":"docs/decisions/2026-05-01-recurrence-cross-layer-registry-observation.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d6b323101e575481e68ec849"}, {"anchor_id":"aoa:aoa-techniques:anchor:9b4d7b1cfe14dff6b24bcc21","artifact_kind":"document","content_hash":"6398ec035d0f0e1656e15a6421b72b2c8bf42a25991d15820767e809e21d8365","id":"aoa:aoa-techniques:artifact:e3e4a4873319fe4d1455d781","lineage_path":"docs/decisions/2026-05-01-standalone-portable-technique-posture.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fa72d40c32a7980b82f73f57"}, {"anchor_id":"aoa:aoa-techniques:anchor:0cee40222af8114055a617bb","artifact_kind":"document","content_hash":"a1242a4fa3694dff8e46b12427519b22be4ad66a3e9ec7b025c2dd7fc29134a0","id":"aoa:aoa-techniques:artifact:3ca81daef9bca21d83cd08a7","lineage_path":"docs/decisions/2026-05-01-technique-atom-contract.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2000008efb23e5b848727446"}, {"anchor_id":"aoa:aoa-techniques:anchor:77a24e8b188bc67dbd0f32c3","artifact_kind":"document","content_hash":"17877b114b55fe0a808efd9170833792f0a13a12faa72b666a3a2b1992335e6e","id":"aoa:aoa-techniques:artifact:134373df2c095a53729fb244","lineage_path":"docs/decisions/2026-05-01-technique-topology-contract.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ccc480d69a35dcb6f8e12281"}, - {"anchor_id":"aoa:aoa-techniques:anchor:7ef31bfa7ef5f4b5817d2abb","artifact_kind":"document","content_hash":"780275d89443040baebd603131b2a953380f1d7ee6bea9c0d7afa33eb4e1bcc6","id":"aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","lineage_path":"docs/decisions/2026-05-02-antifragility-active-legacy-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8a1fd5b48bf2d10f00eb3dc2"}, - {"anchor_id":"aoa:aoa-techniques:anchor:5b531dcbc798b6b4299bec64","artifact_kind":"document","content_hash":"86a172779a80924732652221e6b1853ce267614845315b445ebf1e814bcd369a","id":"aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","lineage_path":"docs/decisions/2026-05-02-recurrence-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cc0696187d8494740036a3e5"}, - {"anchor_id":"aoa:aoa-techniques:anchor:5b5c6af57dced4e9696758bf","artifact_kind":"document","content_hash":"39fe416f32c18284f37b4e302f28618c6677de78bf2f89210f3032c64b42148c","id":"aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc","lineage_path":"docs/decisions/2026-05-02-release-support-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2e0ffb70bc8b08419d957e6a"}, - {"anchor_id":"aoa:aoa-techniques:anchor:dc19f8592776efc030a2ae29","artifact_kind":"document","content_hash":"3d49ff887ced6763cffd46e514fde8dbc5d51da42fc990eb31648cfeaad912da","id":"aoa:aoa-techniques:artifact:4614e41d34def3148f269991","lineage_path":"docs/decisions/2026-05-03-boundary-bridge-candidate-mechanic.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bd87cba2ec7173c65d1262ba"}, - {"anchor_id":"aoa:aoa-techniques:anchor:4a81686407eee2a552262b50","artifact_kind":"document","content_hash":"14b43e9757b9e9197ae7b134db055a069c0a4a3d7de1909bd0b4850031aac2c4","id":"aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","lineage_path":"docs/decisions/2026-05-03-checkpoint-candidate-mechanic.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4fabf1813539fdc47852e4a0"}, - {"anchor_id":"aoa:aoa-techniques:anchor:47ab1dd8473efa97180936e3","artifact_kind":"document","content_hash":"ab97c68fca4ee9c737654c8a95c1a0e7b6ec300eda8064c68babe926823e9888","id":"aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","lineage_path":"docs/decisions/2026-05-03-distillation-agon-candidate-handoff.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e62bc661bf2e87ab8d3e9198"}, - {"anchor_id":"aoa:aoa-techniques:anchor:dc4374c3472ba893695c21fb","artifact_kind":"document","content_hash":"f5322e55550acf4f71f233ebc10848b19f5755f9abfdb6280e573519c28da9cd","id":"aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","lineage_path":"docs/decisions/2026-05-03-mechanics-legacy-scaffold-bridge.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5ef24bde6a617df03ee89b44"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e4bc5f376db8430703b97fd4","artifact_kind":"document","content_hash":"467d63b6d993d789bfc38ae43394e466fe5c98d71d927b84e513ee52353a5c66","id":"aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","lineage_path":"docs/decisions/2026-05-03-mechanics-package-card-standard.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:230083afd657a5faa41f5bad"}, - {"anchor_id":"aoa:aoa-techniques:anchor:51e7e5a32fe9fd41052840df","artifact_kind":"document","content_hash":"27194a7ec23a3abc5737e584ece0918bf12ef8ea5605269ea31b8bf59d227e4a","id":"aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","lineage_path":"docs/decisions/2026-05-03-method-growth-obsolescence-route.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:19f801d334bfe389a70c9927"}, - {"anchor_id":"aoa:aoa-techniques:anchor:fdfc93e407575caec15b0a01","artifact_kind":"document","content_hash":"d80b4772b65bad6cb05f8bd0da6e120aecf23650dde931201672f0d939ac3f0c","id":"aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","lineage_path":"docs/decisions/2026-05-03-method-growth-pattern-adoption-gate.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c8f24458f4a91bfba23ae57d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e794fadc2542b1a05edcf08a","artifact_kind":"document","content_hash":"605a26d80d137acab628f3c3ea938059909e622c6c6754dcce36fefe911d55aa","id":"aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","lineage_path":"docs/decisions/2026-05-03-method-growth-retention-review.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bf624ff929bf3e099c3b0b8c"}, - {"anchor_id":"aoa:aoa-techniques:anchor:03cdcdb6edc5eadaa69c23e0","artifact_kind":"document","content_hash":"3a61235def835c97fd5951deab5d900af2d16d827a7a0adefb217fc31416d6ba","id":"aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","lineage_path":"docs/decisions/2026-05-03-method-growth-skill-proposal-handoff.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bf6263a4631816c49f30d702"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3580be83591f3f5166daf498","artifact_kind":"document","content_hash":"16d596dee8776147f05dd952af50411753d60257fcb978775667c3cc33e7c31a","id":"aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","lineage_path":"docs/decisions/2026-05-03-questbook-candidate-mechanic.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f54476027ed68360bb03bc11"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b0d4e915041e30eaa4cdfd24","artifact_kind":"document","content_hash":"5133852b93e3bda5f0a2cd57be95b4657878d25d597695fdbaf232f798d5d2ef","id":"aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","lineage_path":"docs/decisions/2026-05-03-questbook-lane-first-source-store.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c66b9adda45089c17db94c4c"}, + {"anchor_id":"aoa:aoa-techniques:anchor:7ef31bfa7ef5f4b5817d2abb","artifact_kind":"document","content_hash":"aa19044634a101cd89d206bf67bc825216083e4086a77511d04fc91aa7c9c6fc","id":"aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","lineage_path":"docs/decisions/2026-05-02-antifragility-active-legacy-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ab746dfc4736464da8562feb"}, + {"anchor_id":"aoa:aoa-techniques:anchor:5b531dcbc798b6b4299bec64","artifact_kind":"document","content_hash":"18bcc95707f5b38c0ff2f67c3157dcbdd0f0bfb078c9b1492855e0525b32bf60","id":"aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","lineage_path":"docs/decisions/2026-05-02-recurrence-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:53f5f2122b44d6980e3e47ba"}, + {"anchor_id":"aoa:aoa-techniques:anchor:5b5c6af57dced4e9696758bf","artifact_kind":"document","content_hash":"6280482b51d535cb9978bb2975387adf80d98110e742a6f8c92755eac785101a","id":"aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc","lineage_path":"docs/decisions/2026-05-02-release-support-active-parts-split.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:50ced0fc9a4a4ce4d87b2ede"}, + {"anchor_id":"aoa:aoa-techniques:anchor:dc19f8592776efc030a2ae29","artifact_kind":"document","content_hash":"2f2d0f591b12942626320b0f7461bb97a6aed4e17fe78c0cc801a8e1ff3dd804","id":"aoa:aoa-techniques:artifact:4614e41d34def3148f269991","lineage_path":"docs/decisions/2026-05-03-boundary-bridge-candidate-mechanic.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:11940ba177454c5a50bdec9f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:4a81686407eee2a552262b50","artifact_kind":"document","content_hash":"dd6919a049add62e1edd5bcdbc25ac13cf0d3cff65f0185fbaeae26ed0861235","id":"aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","lineage_path":"docs/decisions/2026-05-03-checkpoint-candidate-mechanic.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:de48c5b5f6b3c3398e50cb13"}, + {"anchor_id":"aoa:aoa-techniques:anchor:47ab1dd8473efa97180936e3","artifact_kind":"document","content_hash":"08233c6985ee6bb1ecccbdbfc5a14b7f6fc4199bc60be372ae140ee66d60bc5c","id":"aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","lineage_path":"docs/decisions/2026-05-03-distillation-agon-candidate-handoff.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b33ab5069448eb9c76bc115a"}, + {"anchor_id":"aoa:aoa-techniques:anchor:dc4374c3472ba893695c21fb","artifact_kind":"document","content_hash":"e4511ebfabbb282e947fc4fedd2ccb0bf602788f4bb89ac5d1d0b3e42849006e","id":"aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","lineage_path":"docs/decisions/2026-05-03-mechanics-legacy-scaffold-bridge.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e9b822ddf71b1d7e5731c5cd"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e4bc5f376db8430703b97fd4","artifact_kind":"document","content_hash":"3c740dcdb0f0dd6747d109fa952215db8e8ac92b133ad07dce228c56afa73f56","id":"aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","lineage_path":"docs/decisions/2026-05-03-mechanics-package-card-standard.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7da36c3d2efdaef5c3d5cacb"}, + {"anchor_id":"aoa:aoa-techniques:anchor:51e7e5a32fe9fd41052840df","artifact_kind":"document","content_hash":"22bf9e377f9b0c930042583d854eefe39b95f4c1568a4f593ee790b8778f3a96","id":"aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","lineage_path":"docs/decisions/2026-05-03-method-growth-obsolescence-route.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8f11cb4e80d418da542e6b57"}, + {"anchor_id":"aoa:aoa-techniques:anchor:fdfc93e407575caec15b0a01","artifact_kind":"document","content_hash":"7b0143e85be3b1905bd2dab0d549c29fdf7c49fbcd5af4c9600bc6e6310bff38","id":"aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","lineage_path":"docs/decisions/2026-05-03-method-growth-pattern-adoption-gate.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8f9420452348cc5f1b9d8c64"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e794fadc2542b1a05edcf08a","artifact_kind":"document","content_hash":"8b78f9bc837f12bca43155f12784a99af1b581a640c1aa115c71090bc7bf1244","id":"aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","lineage_path":"docs/decisions/2026-05-03-method-growth-retention-review.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7e828dfcf08ab913f6dd5dc8"}, + {"anchor_id":"aoa:aoa-techniques:anchor:03cdcdb6edc5eadaa69c23e0","artifact_kind":"document","content_hash":"6f6f5026672ac57611c590f4f89655d32581d83f15cef2a0ff0b7d43efa91d18","id":"aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","lineage_path":"docs/decisions/2026-05-03-method-growth-skill-proposal-handoff.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9dc87c50994d955ab8d3a4ab"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3580be83591f3f5166daf498","artifact_kind":"document","content_hash":"7240b4ff150e5cb4762ef2f4d1e91b180a67e64b1b8c1fd5e7b9366f595c5658","id":"aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","lineage_path":"docs/decisions/2026-05-03-questbook-candidate-mechanic.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5d53795a54b946838cbe5719"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b0d4e915041e30eaa4cdfd24","artifact_kind":"document","content_hash":"268c3f8b54436d239b4bd1c2d8cc757cee417fb71866110104fc91c908abfda8","id":"aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","lineage_path":"docs/decisions/2026-05-03-questbook-lane-first-source-store.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fd0accf388200f8161c017eb"}, {"anchor_id":"aoa:aoa-techniques:anchor:631602b377f7fc86a2327f13","artifact_kind":"document","content_hash":"6bb71485d8f6a4cc529a7c4ae18787c7745c596acaaff30455331d0e5f3abee5","id":"aoa:aoa-techniques:artifact:ca350bc94751a5f794c8b900","lineage_path":"docs/decisions/2026-05-03-root-source-of-truth-topology.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0ac836c718f3088a3aa96888"}, - {"anchor_id":"aoa:aoa-techniques:anchor:62c43d332041477e031ec4c5","artifact_kind":"document","content_hash":"c26c4e1e50965519841f5bd93ac00b1bfdd6ff81706e4e033c5cc88b006f6b79","id":"aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","lineage_path":"docs/decisions/2026-05-03-rpg-candidate-mechanic.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b07d86a57f88a7c9d6b9f8e5"}, - {"anchor_id":"aoa:aoa-techniques:anchor:f4a236c5231e392162af2a26","artifact_kind":"document","content_hash":"25d005066ac7ef62287056d965ebfa2c32b7ed2f9a872c1fdd7a03d0055280d1","id":"aoa:aoa-techniques:artifact:2d91002001af478a6259135d","lineage_path":"docs/decisions/2026-05-03-technique-reform-ingress-packet.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a1c71196387be4577dbfb040"}, - {"anchor_id":"aoa:aoa-techniques:anchor:56423cd5a36212cca5bd1f6a","artifact_kind":"document","content_hash":"ad02a2eda8403271346163026aa933ce5ffd402eb173331caab120b2b2ca7312","id":"aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","lineage_path":"docs/decisions/2026-05-04-0005-kind-remap.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0638b931355f2b44361e3e25"}, - {"anchor_id":"aoa:aoa-techniques:anchor:76b3da8f8bc26087d86c5d45","artifact_kind":"document","content_hash":"d30508513c96da337ef00ae45665d815ae2d27bb49175cef42a9a0b31e80d003","id":"aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","lineage_path":"docs/decisions/2026-05-04-0052-kind-remap.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2b99d8e1964a0b7281122354"}, - {"anchor_id":"aoa:aoa-techniques:anchor:f89372fb5ee2e6dc261456c6","artifact_kind":"document","content_hash":"47578d1ce3f675d599f8af2507a8a692ad5da356a1d927d56cf7aa450a549aa9","id":"aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","lineage_path":"docs/decisions/2026-05-04-0054-kind-remap.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:104c793bc1207e169280f136"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b8cbd99d16cd6d1f48578d9f","artifact_kind":"document","content_hash":"7e79aa40d7a5df5bc3e6f4ce0e2ee1258f66e3b7c5aa6ee3b01946af0f6f8fed","id":"aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","lineage_path":"docs/decisions/2026-05-04-0085-kind-remap.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:95ab1f9cbbb1a364a8f91ac7"}, + {"anchor_id":"aoa:aoa-techniques:anchor:62c43d332041477e031ec4c5","artifact_kind":"document","content_hash":"553bb835557041943cc20f23a7a8b9022bf2d3ac66e56eb34c895a051f05553c","id":"aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","lineage_path":"docs/decisions/2026-05-03-rpg-candidate-mechanic.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:acecaab2f9e13a4f8f6c7ce7"}, + {"anchor_id":"aoa:aoa-techniques:anchor:f4a236c5231e392162af2a26","artifact_kind":"document","content_hash":"626dc0198cc6402fad36587e0a1c7791ce75e520108a3f190b6f566c46a0a85a","id":"aoa:aoa-techniques:artifact:2d91002001af478a6259135d","lineage_path":"docs/decisions/2026-05-03-technique-reform-ingress-packet.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ded4da16bf5da90e61b457fb"}, + {"anchor_id":"aoa:aoa-techniques:anchor:56423cd5a36212cca5bd1f6a","artifact_kind":"document","content_hash":"38a400893885adf63d7a211e7bfe45c84210ce4612bc630be439a620be2b89dc","id":"aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","lineage_path":"docs/decisions/2026-05-04-0005-kind-remap.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b3ad6fe1c774ece9266b34c3"}, + {"anchor_id":"aoa:aoa-techniques:anchor:76b3da8f8bc26087d86c5d45","artifact_kind":"document","content_hash":"78062c5da7f8037b4e060663465a3dc3280948465538da115cfd6e230c2cfcfc","id":"aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","lineage_path":"docs/decisions/2026-05-04-0052-kind-remap.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9c32f53d461e09f6763962e4"}, + {"anchor_id":"aoa:aoa-techniques:anchor:f89372fb5ee2e6dc261456c6","artifact_kind":"document","content_hash":"f906786681a48a4512b94d446879a2953c88fe4e0f2d25007ab254689db6bfe2","id":"aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","lineage_path":"docs/decisions/2026-05-04-0054-kind-remap.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:296bf7cb7bf1248e05e90349"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b8cbd99d16cd6d1f48578d9f","artifact_kind":"document","content_hash":"8796ec99dfbc5964139565ac24dfc050c53d5a2015e3654668a138d88caccf7f","id":"aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","lineage_path":"docs/decisions/2026-05-04-0085-kind-remap.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4d74ad10e936f2c5fa7e38b9"}, {"anchor_id":"aoa:aoa-techniques:anchor:85b3ef63e51dfcbcaeeb7542","artifact_kind":"document","content_hash":"841089efff8de746fa9ae808bad06cdb9d9f8da1b19c58255f0c04589438f5c2","id":"aoa:aoa-techniques:artifact:2ece547f2466235afc086518","lineage_path":"docs/decisions/2026-05-04-root-legacy-provenance-district.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:374af576d5b7b8800ce47e5d"}, {"anchor_id":"aoa:aoa-techniques:anchor:27d164c9388a2414a378fd67","artifact_kind":"document","content_hash":"2cd6d633e94d5cc258f68970a51ccfa2118b4227ab2041d1eb24e70fe0855eef","id":"aoa:aoa-techniques:artifact:5c40cd95be35506f0f55d8d6","lineage_path":"docs/decisions/2026-05-04-technique-tree-contract.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8b34f661eae2cd510d92c601"}, - {"anchor_id":"aoa:aoa-techniques:anchor:d0c171ad3f2e8d174a788ac9","artifact_kind":"document","content_hash":"6bc05415a77c156346b78fabbd79058503107294d11ee1ef57064ed0743edf45","id":"aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","lineage_path":"docs/decisions/2026-05-04-topology-scout-axis-registry.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:88702bfffca3dd4e4093bc86"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3e2ec3593e6b9219196b964a","artifact_kind":"document","content_hash":"5077b8792c006db195f9747086972cfda9723f94905647d602f9aab0b21bdeb4","id":"aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","lineage_path":"docs/decisions/2026-05-06-github-landing-and-mechanics-roadmap-route.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:512180f02f4965f23f9d3861"}, - {"anchor_id":"aoa:aoa-techniques:anchor:646ea72b4ab3140409bfa77e","artifact_kind":"document","content_hash":"c2b88a5311389ff8b12bfe1d755731bf44b70653ee88c74e354af43790499bb4","id":"aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","lineage_path":"docs/decisions/2026-05-06-template-modernization-optional-sections.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:01ecbab36245284eccae16d2"}, - {"anchor_id":"aoa:aoa-techniques:anchor:0767006619a0cd12c1f8dcb7","artifact_kind":"document","content_hash":"01952b03ad270a773d944f55eea0e2e5e17524f07d4f8c029338226f0704b14b","id":"aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","lineage_path":"docs/decisions/2026-05-14-agent-surface-design-and-mesh.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c6138127766e1ca3984c9fbc"}, + {"anchor_id":"aoa:aoa-techniques:anchor:d0c171ad3f2e8d174a788ac9","artifact_kind":"document","content_hash":"8906b9300ceefce7eeb81d9436b801ff247c9d83f4a027130ccd6cf5245f7163","id":"aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","lineage_path":"docs/decisions/2026-05-04-topology-scout-axis-registry.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:75bd51fdee1990fee26b7c39"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3e2ec3593e6b9219196b964a","artifact_kind":"document","content_hash":"0e4ae4ecb068a41b6a2229f6862ddf3cf2525354f754cd5d771fab9b60e99c0d","id":"aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","lineage_path":"docs/decisions/2026-05-06-github-landing-and-mechanics-roadmap-route.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6a882bba5bcfe150c713c7c7"}, + {"anchor_id":"aoa:aoa-techniques:anchor:646ea72b4ab3140409bfa77e","artifact_kind":"document","content_hash":"01ba834a2dbe649e9131b233aa5a0fc93dc92a8aca0def9032b1a27b97db6b29","id":"aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","lineage_path":"docs/decisions/2026-05-06-template-modernization-optional-sections.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:aef426bb10936e96d8fcecf2"}, + {"anchor_id":"aoa:aoa-techniques:anchor:0767006619a0cd12c1f8dcb7","artifact_kind":"document","content_hash":"f9cecba8536bc405711b1186aba62917dd39c69436fb85d4524d13a992d9e650","id":"aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","lineage_path":"docs/decisions/2026-05-14-agent-surface-design-and-mesh.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8a7e7881e269b08a287508c9"}, {"anchor_id":"aoa:aoa-techniques:anchor:ef843bcb1612e3964215ba93","artifact_kind":"document","content_hash":"97a8fc71d0129f5315f2db05983209eb798106593ef168b63aa42aa7f1943d48","id":"aoa:aoa-techniques:artifact:99eb5f0598cd3ce7b0d0facd","lineage_path":"docs/decisions/2026-05-14-canonical-retro-audit-part.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2b3e29b69dd69022c694ea33"}, - {"anchor_id":"aoa:aoa-techniques:anchor:d34e1db87163c17a6fb9fd78","artifact_kind":"document","content_hash":"1e26616dbe4a654cc44e1d7d43db8480b1a56bf2f1e6cbeb6b09e0a30abcc728","id":"aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","lineage_path":"docs/decisions/2026-05-14-mechanic-contract-packet-homes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8632936c3c91f51f4c61c68b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:8a9f5870cde69451c06e7e9e","artifact_kind":"document","content_hash":"923a4de334671cffe329fc29b41d37bfe00ab3d33356232c872ed1f6ad913142","id":"aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","lineage_path":"docs/decisions/2026-05-14-mechanic-script-homes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b15f4ae8ec3f0d5ac7106676"}, - {"anchor_id":"aoa:aoa-techniques:anchor:59cf4ccbdb81f19e508627f6","artifact_kind":"document","content_hash":"c1467175850c1cbad63bf9baa51ca939938344af956319c6fca6f3311045b779","id":"aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","lineage_path":"docs/decisions/2026-05-14-mechanic-test-homes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9783d746557ccb8ba77bca39"}, - {"anchor_id":"aoa:aoa-techniques:anchor:52603fde04d46bceacfa165e","artifact_kind":"document","content_hash":"82225311bd0edc0578f3c24582c5d34ee95ca5cb0cf401a0272d11a42b37d709","id":"aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","lineage_path":"docs/decisions/2026-05-14-recurrence-manifest-part-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:92df6fe6a4ddd55e54bf820c"}, - {"anchor_id":"aoa:aoa-techniques:anchor:9fd0a68d4fb876e40a787fff","artifact_kind":"document","content_hash":"0b3dc95be937d835bd131e933f6cfe30a18770402d8a57c1768131ce2c84dcd7","id":"aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","lineage_path":"docs/decisions/2026-05-14-review-packet-mechanics-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:698aedcb4f8edb44b297b1a1"}, - {"anchor_id":"aoa:aoa-techniques:anchor:67af10d91726ed89f41e0d67","artifact_kind":"document","content_hash":"4079420c2c637698a1ea39a0f1444ea48e7c137006b5b95ebf7bd86c08d464ee","id":"aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","lineage_path":"docs/decisions/2026-05-14-root-data-retirement.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6247a34ac94d5c48d5173cd3"}, + {"anchor_id":"aoa:aoa-techniques:anchor:d34e1db87163c17a6fb9fd78","artifact_kind":"document","content_hash":"f78380b3c2468c2045b68c9132a61ed2890bbb512ace829452eb4fe1988ff2a4","id":"aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","lineage_path":"docs/decisions/2026-05-14-mechanic-contract-packet-homes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f6d29e230c06da5108efa858"}, + {"anchor_id":"aoa:aoa-techniques:anchor:8a9f5870cde69451c06e7e9e","artifact_kind":"document","content_hash":"7126bacf97a5edde239d5326cf2b77b98ff7054d0a1a11fbd8b5238e1ef88932","id":"aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","lineage_path":"docs/decisions/2026-05-14-mechanic-script-homes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e14819639a5aa36fcd6fdba9"}, + {"anchor_id":"aoa:aoa-techniques:anchor:59cf4ccbdb81f19e508627f6","artifact_kind":"document","content_hash":"4fa143607bd99bd4d0d0d03262e526288d7e34f3793cb9df63e0c5426404db84","id":"aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","lineage_path":"docs/decisions/2026-05-14-mechanic-test-homes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f41efd45eb7ea3502c7cfe71"}, + {"anchor_id":"aoa:aoa-techniques:anchor:52603fde04d46bceacfa165e","artifact_kind":"document","content_hash":"df621a6d63232f6f33ef29a6803cf7e0c71e6fbe3d93206e72157161002a510e","id":"aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","lineage_path":"docs/decisions/2026-05-14-recurrence-manifest-part-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4c5ddce029481dbf6950b88f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:9fd0a68d4fb876e40a787fff","artifact_kind":"document","content_hash":"7a70dad632fb2824ed5ccd090c376acb2f60b58997dc4558ba0cca1a9e4099e0","id":"aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","lineage_path":"docs/decisions/2026-05-14-review-packet-mechanics-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fd910166e4c4c482746c5148"}, + {"anchor_id":"aoa:aoa-techniques:anchor:67af10d91726ed89f41e0d67","artifact_kind":"document","content_hash":"3db3aebdec4de773e7bda9067661baaaa1d6ae938251255c3bf53ff91c778016","id":"aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","lineage_path":"docs/decisions/2026-05-14-root-data-retirement.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:36575328237c2d66e273f77a"}, {"anchor_id":"aoa:aoa-techniques:anchor:dd318f5cb40275154126056a","artifact_kind":"document","content_hash":"cf43a0655ec8abe27c083beb53de34e172a35360dd37e632e979f3a946ea0586","id":"aoa:aoa-techniques:artifact:fa841ed2f6a97edcbb053b47","lineage_path":"docs/decisions/2026-05-14-root-md-surface-slimming.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:684127cd63c53380270ada6a"}, - {"anchor_id":"aoa:aoa-techniques:anchor:2b5919e4c84f4db8739b6d1e","artifact_kind":"document","content_hash":"db2cea2c5f50bc055bf23cc778f01770dac773178cb7840884ae13c8ea71b9a6","id":"aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","lineage_path":"docs/decisions/2026-05-14-spark-agent-lane-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:32358fdd914cf0aaea3196b6"}, - {"anchor_id":"aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977","artifact_kind":"document","content_hash":"7ac525aab9321a9dc9bcd5e96607b4870e176f341d2745184ece0ab2155074de","id":"aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","lineage_path":"docs/decisions/2026-05-14-technique-reform-report-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0000444c597dc90b60f57009"}, - {"anchor_id":"aoa:aoa-techniques:anchor:de063c5f03c824808b005410","artifact_kind":"document","content_hash":"3db272c23ae57f8a4c50bbd238382fb66b9ab51e74d3a10717573a7ff8ce8c8c","id":"aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","lineage_path":"docs/decisions/2026-05-14-technique-reform-scout-input-homes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8ad2f9515eea92cbe763ce75"}, - {"anchor_id":"aoa:aoa-techniques:anchor:0adfb6eb37cb06410a104adc","artifact_kind":"document","content_hash":"675b8e7d1e2afc2c9e9ee02febd7748cc01c2aec3a57eacae67c9c250e5111da","id":"aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","lineage_path":"docs/decisions/2026-05-15-spark-registry-backed-technique-lane.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3dfdda0e8041a12c72bbcad3"}, - {"anchor_id":"aoa:aoa-techniques:anchor:688196f084f80a0f4d7bcde6","artifact_kind":"document","content_hash":"1b4f8a65fa0d49b768fde4ab47fa386c25ae22450a036e8ccf15ea8732367784","id":"aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","lineage_path":"docs/decisions/2026-05-16-docs-surface-guardrails-and-tree-contract-slimming.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2f15933e24f415b287f1eaf0"}, - {"anchor_id":"aoa:aoa-techniques:anchor:1833116f863fcb854ff81b6a","artifact_kind":"document","content_hash":"40ae303c4d412a3487a2a706627eed0032b48107cbd908a352eb3656a8c49222","id":"aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","lineage_path":"docs/decisions/2026-05-17-agent-neighbor-doc-command-ownership.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a1b007325c0be5432b71efe2"}, - {"anchor_id":"aoa:aoa-techniques:anchor:29580d1616ca7a518c165a95","artifact_kind":"document","content_hash":"944736d074643950ea2c9e618b4947d948b75188b84531389d3d9bb2d624a2ba","id":"aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","lineage_path":"docs/decisions/2026-05-17-agents-mesh-canonical-closure.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0e33c2428cace9bb342e740b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:03b948530a2726e83de356b1","artifact_kind":"document","content_hash":"71839e76185487fdfdadc956626c34b0a5559ae51339e7b132a3137e1e9a05fa","id":"aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","lineage_path":"docs/decisions/2026-05-18-candidate-intake-active-part-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:93586b73aeb72e192a800796"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3d723d46da4e52f64a997c69","artifact_kind":"document","content_hash":"f1a9bbd5898fae4f0b8c754cabc989591c03d676bd4d514758981cd5f40dcd2a","id":"aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","lineage_path":"docs/decisions/2026-05-18-closed-incoming-packets-distillation-legacy.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:95cb942b6707f6c68948db2b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:117b27346d5e45b6ba483024","artifact_kind":"document","content_hash":"27df91414eb56810bab19ffa3d0dc264aa7800f327e43ffba1cd7bc37d4b4c08","id":"aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","lineage_path":"docs/decisions/2026-05-18-incoming-evidence-only-closeout.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:160408c995ebe4664b17e5ad"}, - {"anchor_id":"aoa:aoa-techniques:anchor:c26bda0a90d9d6ab680ddf7c","artifact_kind":"document","content_hash":"fcb4b594d8b99f87072bf24b27f5efe2c2e328b2f68fdb301748b4674177bbe1","id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","lineage_path":"docs/decisions/2026-05-18-technique-intelligence-move-registry.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5113395e07ccba2fe2aff7df"}, - {"anchor_id":"aoa:aoa-techniques:anchor:72556c3550a2e9f4cfd30500","artifact_kind":"document","content_hash":"f8f9fa72d2b042a49be230baa8e501e26680149138d132ff84d6af10a31304d1","id":"aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","lineage_path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0759ac36d1a56fa80cf15d9d"}, + {"anchor_id":"aoa:aoa-techniques:anchor:2b5919e4c84f4db8739b6d1e","artifact_kind":"document","content_hash":"e235769a68c162a427d6dd6f42fd8a947226ad2c34c37da60ad6f8553dd3c40c","id":"aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","lineage_path":"docs/decisions/2026-05-14-spark-agent-lane-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9560e644ab5ad9ecf488777f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977","artifact_kind":"document","content_hash":"2acfd067656072a669c71a1292527402d437809c660e118ba6b91cb1e886befe","id":"aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","lineage_path":"docs/decisions/2026-05-14-technique-reform-report-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8bc7429ad70095b669658f60"}, + {"anchor_id":"aoa:aoa-techniques:anchor:de063c5f03c824808b005410","artifact_kind":"document","content_hash":"41e30d07e11ccbec1331065e6da2d460e18304a15d803e16a8f4f306c766d990","id":"aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","lineage_path":"docs/decisions/2026-05-14-technique-reform-scout-input-homes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b298424b5fb126db39334728"}, + {"anchor_id":"aoa:aoa-techniques:anchor:0adfb6eb37cb06410a104adc","artifact_kind":"document","content_hash":"82e5068f5020778ac0eac2fe16738e9c13834a353235d2bdb778d462fd4c12fa","id":"aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","lineage_path":"docs/decisions/2026-05-15-spark-registry-backed-technique-lane.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b5c0bc783fd76b463e67c7a3"}, + {"anchor_id":"aoa:aoa-techniques:anchor:688196f084f80a0f4d7bcde6","artifact_kind":"document","content_hash":"7243db56a066626420701082f64901e2764452fa1fb088c3090318c0fe7bf3e8","id":"aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","lineage_path":"docs/decisions/2026-05-16-docs-surface-guardrails-and-tree-contract-slimming.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:770a95c4695871101d360bfb"}, + {"anchor_id":"aoa:aoa-techniques:anchor:1833116f863fcb854ff81b6a","artifact_kind":"document","content_hash":"caceaf58dbc776bbd376aa3a05d0046b5ff8837b8b49dba7cd8293f9158e3871","id":"aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","lineage_path":"docs/decisions/2026-05-17-agent-neighbor-doc-command-ownership.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:dcf24823c2009326b2269983"}, + {"anchor_id":"aoa:aoa-techniques:anchor:29580d1616ca7a518c165a95","artifact_kind":"document","content_hash":"f15bbb2b9f0877c43488dc2220f7c317d1e1248a4863c4f65af501fecf3c3ca7","id":"aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","lineage_path":"docs/decisions/2026-05-17-agents-mesh-canonical-closure.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bce61e03f35c930e0906347f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:03b948530a2726e83de356b1","artifact_kind":"document","content_hash":"810cb5c050390c92d1d6a3b064e1068b5755946744133835a323dae0a61c5456","id":"aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","lineage_path":"docs/decisions/2026-05-18-candidate-intake-active-part-home.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:de2454445bc5eaabda35ac95"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3d723d46da4e52f64a997c69","artifact_kind":"document","content_hash":"52cbe7ea21f2fbb5343dc5c5c8a7e40b183893fbb76cd8c61031d51427fd73c5","id":"aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","lineage_path":"docs/decisions/2026-05-18-closed-incoming-packets-distillation-legacy.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9323884cc454b72a969929d7"}, + {"anchor_id":"aoa:aoa-techniques:anchor:117b27346d5e45b6ba483024","artifact_kind":"document","content_hash":"5aae4ec0b01258ec691ae84626a3d406f2368cf58436e7032ef8d2a8249c013e","id":"aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","lineage_path":"docs/decisions/2026-05-18-incoming-evidence-only-closeout.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:db72c1600546e251ac161ea3"}, + {"anchor_id":"aoa:aoa-techniques:anchor:c26bda0a90d9d6ab680ddf7c","artifact_kind":"document","content_hash":"671b916dcda8cdde5a16c703c3136f968eca11a7421b9bd6f2c6c67c028cdef9","id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","lineage_path":"docs/decisions/2026-05-18-technique-intelligence-move-registry.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4ab03d971e8cb91ed7901bef"}, + {"anchor_id":"aoa:aoa-techniques:anchor:72556c3550a2e9f4cfd30500","artifact_kind":"document","content_hash":"a262632695a2b8238b6ad2bc92bb9729818b467a597188e39e2bb90a158c82fe","id":"aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","lineage_path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:34bb8fdb17fdca209964efb6"}, {"anchor_id":"aoa:aoa-techniques:anchor:03dc8413d88634ad70f8502c","artifact_kind":"document","content_hash":"9c1bc1f4dffd8970f30f1aa89cd1565cc9a348c77ea3c65effd8dbdff9daf857","id":"aoa:aoa-techniques:artifact:262a18d53e3b21e5a529bd9b","lineage_path":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:dcc7748957c5f6b6c9939863"}, {"anchor_id":"aoa:aoa-techniques:anchor:3f2158f18400fa216f912167","artifact_kind":"document","content_hash":"9111c46bab296a730fa5cd5114d035fb1547e7dd90e5a7081d09a01f04c4b1aa","id":"aoa:aoa-techniques:artifact:3570302f879fbf8bebc76db7","lineage_path":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a54fcbc60800f1674ec6813f"}, {"anchor_id":"aoa:aoa-techniques:anchor:9fe4670ae9ef9765644b8b69","artifact_kind":"document","content_hash":"a25d7ae71c9e58ed097eed8733a858f699ea80e0373a9579a5c3e7c6beeee265","id":"aoa:aoa-techniques:artifact:8bf5f4dcc2591df286544649","lineage_path":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1ca2a896090038db0bf17414"}, {"anchor_id":"aoa:aoa-techniques:anchor:174980a049e0dbb2fcb3a0b9","artifact_kind":"document","content_hash":"d9c21c7db161a78f299ff7831f31bf23a01e2d870afbdf439239ecbf96e02875","id":"aoa:aoa-techniques:artifact:e5ec0e7030077b7cf1bfed98","lineage_path":"docs/decisions/README.md","mime":"text/markdown","path":"docs/decisions/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5a1e6ea20847434393c8eeea"}, - {"anchor_id":"aoa:aoa-techniques:anchor:eae995c4fd552e040ded1a2b","artifact_kind":"document","content_hash":"1dd6942642fa34f7109b3807ff58631aa3b38949f74b0bc0093eff5f42e7cb37","id":"aoa:aoa-techniques:artifact:874770b82440579ca24bf934","lineage_path":"docs/decisions/TEMPLATE.md","mime":"text/markdown","path":"docs/decisions/TEMPLATE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f033c330b571249ee7c519bd"}, + {"anchor_id":"aoa:aoa-techniques:anchor:eae995c4fd552e040ded1a2b","artifact_kind":"document","content_hash":"c48a95e5591c43ec553f58a51af2e2b394e08e3ab5f3bd9deb0346f0cdacf438","id":"aoa:aoa-techniques:artifact:874770b82440579ca24bf934","lineage_path":"docs/decisions/TEMPLATE.md","mime":"text/markdown","path":"docs/decisions/TEMPLATE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b316213530298e47fc4961ac"}, {"anchor_id":"aoa:aoa-techniques:anchor:613839da57a56342c64e5306","artifact_kind":"generated_readmodel","content_hash":"8d332b838126191be5997c309d29c1bbae4eb1ee74525c0a69ded28ef8d4fb5e","id":"aoa:aoa-techniques:artifact:16f69bcd84ec7a895c63a279","lineage_path":"docs/decisions/indexes/README.md","mime":"text/markdown","path":"docs/decisions/indexes/README.md","provenance_ref":"deterministic","surface_state":"generated_readmodel","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:aa73dac3d0008fade704c4ca"}, {"anchor_id":"aoa:aoa-techniques:anchor:2fe8b9669fffe2732f1fc985","artifact_kind":"generated_readmodel","content_hash":"e8aee2a967d176ddf8f7b5914340e3c95367a7a9356e3f761a0f1ea73f205be4","id":"aoa:aoa-techniques:artifact:7f76a83a939eefd1ee2b3fe1","lineage_path":"docs/decisions/indexes/by-date.md","mime":"text/markdown","path":"docs/decisions/indexes/by-date.md","provenance_ref":"deterministic","surface_state":"generated_readmodel","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:06f8ab00ace8035ea04d2f7e"}, {"anchor_id":"aoa:aoa-techniques:anchor:c1079448157ef4f00c4f23ef","artifact_kind":"generated_readmodel","content_hash":"b50bd53e5a30ad254f69df0317af67a8b304f8cb6b783db288037d5a1d33831d","id":"aoa:aoa-techniques:artifact:8ae406686a02a37522de1f6a","lineage_path":"docs/decisions/indexes/by-guard.md","mime":"text/markdown","path":"docs/decisions/indexes/by-guard.md","provenance_ref":"deterministic","surface_state":"generated_readmodel","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1d8e603a870856a53dab2b7e"}, @@ -383,7 +383,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:afbbf316a793168113b9e43e","artifact_kind":"document","content_hash":"e148b1e72b725e4920425ffca74a0d7181bb016de59add14e3bc1e8dc039c827","id":"aoa:aoa-techniques:artifact:1d8b9b7788329ad7f8b9f7c2","lineage_path":"docs/guardrails/AGENTS.md","mime":"text/markdown","path":"docs/guardrails/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1885b4bb4fe4f57faa42d653"}, {"anchor_id":"aoa:aoa-techniques:anchor:307b666103ba6f3d53b0354a","artifact_kind":"document","content_hash":"53341597d4038e60cb4ab4714511915af4090ba678b72b850c0ff6b6779e86c5","id":"aoa:aoa-techniques:artifact:a30377afed4eebade38c0468","lineage_path":"docs/guardrails/AGENTS_MESH_INDEX.md","mime":"text/markdown","path":"docs/guardrails/AGENTS_MESH_INDEX.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7705851a0e473c00764d25cb"}, {"anchor_id":"aoa:aoa-techniques:anchor:58778a95328c2aa088c3af89","artifact_kind":"document","content_hash":"292aa11b6a456a6ec709ccdac7262b151078ffeb27ef8fefd853cd79a1957242","id":"aoa:aoa-techniques:artifact:a6035ffadf74cdaa5ce7242d","lineage_path":"docs/guardrails/AGENTS_MESH_PROTOCOL.md","mime":"text/markdown","path":"docs/guardrails/AGENTS_MESH_PROTOCOL.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5d8ee0d65c65a9377b464042"}, - {"anchor_id":"aoa:aoa-techniques:anchor:8170645b250cdd8d938c44bd","artifact_kind":"document","content_hash":"d76a43910177f6de0c3f8b93d47cca0ce234af19d60e9f94d6e5037d110d7f3f","id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","lineage_path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","mime":"text/markdown","path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5a744c5781ffb346aa850ae6"}, + {"anchor_id":"aoa:aoa-techniques:anchor:8170645b250cdd8d938c44bd","artifact_kind":"document","content_hash":"c28b0a8baa97184edf468daf205de9432dae826108c27db41ec5c40de3ea9233","id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","lineage_path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","mime":"text/markdown","path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6a2c898cb386db88c1c920b9"}, {"anchor_id":"aoa:aoa-techniques:anchor:cd7a826fec62501319b66a11","artifact_kind":"document","content_hash":"c586859cd6cf8c74fa1cc52e363e0b92440988399ed90b445fa6f17b9a605b43","id":"aoa:aoa-techniques:artifact:597db2d527cf1980636687f7","lineage_path":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md","mime":"text/markdown","path":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5b53754df31442141855accf"}, {"anchor_id":"aoa:aoa-techniques:anchor:207945d3ed1826091a1dec66","artifact_kind":"document","content_hash":"ede5b94eea0fbc9403bb16ca4cfd323ebd94c2b2519487418efcc70a5dd026e2","id":"aoa:aoa-techniques:artifact:8005e5b700a11bc4fd350476","lineage_path":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md","mime":"text/markdown","path":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:36b523887694fd0038adf811"}, {"anchor_id":"aoa:aoa-techniques:anchor:08147cb257934daaa6a0a80b","artifact_kind":"document","content_hash":"8f4ea7b14ab0226f6ca1abf6a2c0ed93acd48ab6afbf4f6698a8b53f77584568","id":"aoa:aoa-techniques:artifact:c4f6e9b2c3b7d9fc746c9018","lineage_path":"docs/guardrails/README.md","mime":"text/markdown","path":"docs/guardrails/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5c9ba7fd8b8c65aa8ba5088f"}, @@ -433,16 +433,16 @@ {"anchor_id":"aoa:aoa-techniques:anchor:941ca3f162c38ce3a00947a7","artifact_kind":"document","content_hash":"555a77a4fc4a03d564c9bc89a3adde7f6e332f92af72bf8956ce1b01437e54fd","id":"aoa:aoa-techniques:artifact:f0f2da3459f55832608c73b4","lineage_path":"docs/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md","mime":"text/markdown","path":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0935aa137dec50524452e0a4"}, {"anchor_id":"aoa:aoa-techniques:anchor:00f749287049b6cbac539733","artifact_kind":"document","content_hash":"3b97de6a7dc461bb706ab1694850e7699473cd13d758d5557bb5c2bb12bb44ef","id":"aoa:aoa-techniques:artifact:5182e7d1394de0c039b65613","lineage_path":"docs/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md","mime":"text/markdown","path":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2fb6a8ed8f92828660d32244"}, {"anchor_id":"aoa:aoa-techniques:anchor:2c9dbac0c8f40e0e64107103","artifact_kind":"document","content_hash":"561a8618a0cb661b48fd0a6d7267aa7a6b12e6cf34873fb21534b43ea7b25d98","id":"aoa:aoa-techniques:artifact:2991279148f7e9edfd5ef750","lineage_path":"docs/TECHNIQUE_SECTION_LIFT_GUIDE.md","mime":"text/markdown","path":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e12513e5299cd3be11ee2bd1"}, - {"anchor_id":"aoa:aoa-techniques:anchor:6fe38db7e6ebafe9de35f78c","artifact_kind":"document","content_hash":"6718fb54bfd047829a38bf5b0b0140f9b03fc041f1b8704b361252f19b33b0c8","id":"aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","lineage_path":"docs/source-lift/artifact-bundles/README.md","mime":"text/markdown","path":"docs/source-lift/artifact-bundles/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:49f939c4e2d1629531f694c8"}, + {"anchor_id":"aoa:aoa-techniques:anchor:6fe38db7e6ebafe9de35f78c","artifact_kind":"document","content_hash":"05fb15e0f31be1726438d3962583c5d8b8533c15c6a5d23390be1eb1d4f52d6a","id":"aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","lineage_path":"docs/source-lift/artifact-bundles/README.md","mime":"text/markdown","path":"docs/source-lift/artifact-bundles/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3eb3555b37ae8ce2b6107d61"}, {"anchor_id":"aoa:aoa-techniques:anchor:a63fe496d99c1871be75ee59","artifact_kind":"config","content_hash":"4bea059daa91608c611cab8a13fe98b26dd53e790547cbff17f653ad45ca6d3a","id":"aoa:aoa-techniques:artifact:c08fbc9642921d98a2f3bbaf","lineage_path":"docs/source-lift/artifact-bundles/kag_export.bundle.json","mime":"application/json","path":"docs/source-lift/artifact-bundles/kag_export.bundle.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:447aba207bd94722ccaf83cb"}, {"anchor_id":"aoa:aoa-techniques:anchor:f9ba7404f68690c34453e3a4","artifact_kind":"document","content_hash":"49500bf154c68251fed8fd7934beb498c7ee4673a6f8429dc4bba00286f20968","id":"aoa:aoa-techniques:artifact:aecbbf32b8d43d6cf8d19a2b","lineage_path":"docs/testing/TEST_TOPOLOGY.md","mime":"text/markdown","path":"docs/testing/TEST_TOPOLOGY.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ea18383d3481c0714e6bf4c1"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b6293e141ee9edd300b06cbe","artifact_kind":"config","content_hash":"d68117619da9c058d5b5a1dc3cd69fb25cafcb0380f423a8e6c527f045f45f17","id":"aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","lineage_path":"docs/testing/test_inventory.json","mime":"application/json","path":"docs/testing/test_inventory.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3b9b04dd3db1c0bf65a57bbc"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b6293e141ee9edd300b06cbe","artifact_kind":"config","content_hash":"04aeb5355eaea2a00c9b259d7684ed436dc50eab3cc0f856d13e75007e339aa5","id":"aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","lineage_path":"docs/testing/test_inventory.json","mime":"application/json","path":"docs/testing/test_inventory.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6bc4f72c814addc189cbeb05"}, {"anchor_id":"aoa:aoa-techniques:anchor:7e57e7ba903b8f12f6c85c62","artifact_kind":"document","content_hash":"f062632c34d2d2f8f3e860861003413c0bfbd9b08cee3949270c77d89ac220a3","id":"aoa:aoa-techniques:artifact:1a548e9218c9b7c28e355d3e","lineage_path":"docs/validation/AGENTS.md","mime":"text/markdown","path":"docs/validation/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:61a45e609b210b216e764c57"}, - {"anchor_id":"aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd","artifact_kind":"document","content_hash":"e27737474c8206af14ce868e5e383e1a9bf3f5f4a470509d76afb7ec139521bd","id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","lineage_path":"docs/validation/COMMAND_AUTHORITY.md","mime":"text/markdown","path":"docs/validation/COMMAND_AUTHORITY.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:56a06fcd92f85fa54c969e91"}, - {"anchor_id":"aoa:aoa-techniques:anchor:bee9642b3b3068cae0573c74","artifact_kind":"document","content_hash":"2818d083299572fcc2217f20e0171ead9e8ab7100ffa87945b166d79825bd333","id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","lineage_path":"docs/validation/SCRIPT_TOPOLOGY.md","mime":"text/markdown","path":"docs/validation/SCRIPT_TOPOLOGY.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d6323767d286542ac7693f6a"}, - {"anchor_id":"aoa:aoa-techniques:anchor:c073f923084e3be188dc6970","artifact_kind":"document","content_hash":"ca9aa01e9968591774aed184b0476fe5caa869b62204dd913091c1ae2e080716","id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","lineage_path":"docs/validation/VALIDATOR_TOPOLOGY.md","mime":"text/markdown","path":"docs/validation/VALIDATOR_TOPOLOGY.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:aba72aefcf55c4779c9fbcfe"}, - {"anchor_id":"aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b","artifact_kind":"config","content_hash":"6d97f27877d7de51cb548930a41060c78e1b4b56e4c7f18ad24471741a62931f","id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","lineage_path":"docs/validation/script_inventory.json","mime":"application/json","path":"docs/validation/script_inventory.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:21a29bdac5c30c282410ac62"}, - {"anchor_id":"aoa:aoa-techniques:anchor:f3512468853fd3d11da144b0","artifact_kind":"config","content_hash":"446b78a5188eafae9bb4d508c51bfac24e58020da5881308a1b566bdc50a2597","id":"aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","lineage_path":"docs/validation/validator_inventory.json","mime":"application/json","path":"docs/validation/validator_inventory.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e88a625e97d79a679e52c29a"}, + {"anchor_id":"aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd","artifact_kind":"document","content_hash":"2b137e52741c67f31bd43800da9394a611355c723bc1e482591e2c2fef1875e6","id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","lineage_path":"docs/validation/COMMAND_AUTHORITY.md","mime":"text/markdown","path":"docs/validation/COMMAND_AUTHORITY.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:49cddaa20bca56a8cbfee4b1"}, + {"anchor_id":"aoa:aoa-techniques:anchor:bee9642b3b3068cae0573c74","artifact_kind":"document","content_hash":"fea58f7d0ddcedc1cad42629737f2002492937907a20a9049d65b478d56b0b37","id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","lineage_path":"docs/validation/SCRIPT_TOPOLOGY.md","mime":"text/markdown","path":"docs/validation/SCRIPT_TOPOLOGY.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:463940127a9cc63f61a56fa4"}, + {"anchor_id":"aoa:aoa-techniques:anchor:c073f923084e3be188dc6970","artifact_kind":"document","content_hash":"d741cfc8f9001411bf595b8e61f82308c5adbe7063e4bceddbd5f32e589c23f4","id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","lineage_path":"docs/validation/VALIDATOR_TOPOLOGY.md","mime":"text/markdown","path":"docs/validation/VALIDATOR_TOPOLOGY.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:962e9f32f5d926d6d5d89a77"}, + {"anchor_id":"aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b","artifact_kind":"config","content_hash":"5648f2e47075430108cb81e00974397721c4d6d46426ab6a5dea079b0882daaf","id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","lineage_path":"docs/validation/script_inventory.json","mime":"application/json","path":"docs/validation/script_inventory.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bc052284e1ea12ce27ddb173"}, + {"anchor_id":"aoa:aoa-techniques:anchor:f3512468853fd3d11da144b0","artifact_kind":"config","content_hash":"625fe468c4fc4fc407c299105f4f363facde0ed0ba6ef1f0f89f155b6c7b8a15","id":"aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","lineage_path":"docs/validation/validator_inventory.json","mime":"application/json","path":"docs/validation/validator_inventory.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:11dd5c16a1efe3cf5a4613c0"}, {"anchor_id":"aoa:aoa-techniques:anchor:1c9a7d988fc22fcc4570e0be","artifact_kind":"document","content_hash":"d61e15d2bf526314ebc5534c1dc53d44b3e87ebed29edc54e91fa3b752ab4047","id":"aoa:aoa-techniques:artifact:97b1e9d3cdd5039f97903b28","lineage_path":"evals/AGENTS.md","mime":"text/markdown","path":"evals/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ea2af744f0bdc1af7207deb3"}, {"anchor_id":"aoa:aoa-techniques:anchor:202e1049c5c5d7c0fecb47da","artifact_kind":"config","content_hash":"f5e363634137001c8666c64bb1505ea5020ca6292aa65569b4ae5b8ee4e120fb","id":"aoa:aoa-techniques:artifact:b027c5aa6bfa309e504db8b6","lineage_path":"evals/PORT.yaml","mime":"application/yaml","path":"evals/PORT.yaml","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:930627088d127b5ec8080330"}, {"anchor_id":"aoa:aoa-techniques:anchor:62038a210e30f3863e54bfa1","artifact_kind":"document","content_hash":"e5b75e0dd0a91b4c60170a4d3d07bc518a5b0dc0cd9c3ca7e87cdc4e146a02a3","id":"aoa:aoa-techniques:artifact:a1a9eeb43d4de7693b860e12","lineage_path":"evals/README.md","mime":"text/markdown","path":"evals/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b892f7c84529efb8ea0da2ee"}, @@ -453,7 +453,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:62974c378ed3c976b7376b53","artifact_kind":"document","content_hash":"06e78834e2bbe47f3508be342b24947485e2854c93fabc8de14bf49e02ae0b43","id":"aoa:aoa-techniques:artifact:49aaa2819e35a856818ecec8","lineage_path":"examples/README.md","mime":"text/markdown","path":"examples/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:926a081159563053c0cf0847"}, {"anchor_id":"aoa:aoa-techniques:anchor:f1e93c7009768e5a59824868","artifact_kind":"document","content_hash":"2e258e743c61815ba9d6defaf5deebfcb0d6816c39e8cff0767077aaf45d69fd","id":"aoa:aoa-techniques:artifact:87c37630bc6d828694084bbe","lineage_path":"WALKTHROUGH.md","mime":"text/markdown","path":"examples/plan-diff-apply-verify-report-walkthrough.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:30d0a0f99caa6c781c928ad8"}, {"anchor_id":"aoa:aoa-techniques:anchor:a0ae7bd833a34e8ba753daa5","artifact_kind":"document","content_hash":"bf7680fae9bf67491b1da546f7ec067b1843a087f1cb665d928012a7982448d1","id":"aoa:aoa-techniques:artifact:73de061b3989ed8c40a36b86","lineage_path":"generated/AGENTS.md","mime":"text/markdown","path":"generated/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:416a593b41c6aa5ad073f835"}, - {"anchor_id":"aoa:aoa-techniques:anchor:ef80566e1761644e154032e8","artifact_kind":"generated_readmodel","content_hash":"ce54bc01e69be249f25f8e5d8b4fd3f717b6d939894a15e11da03691ca79e939","id":"aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","lineage_path":"generated/agents_mesh.min.json","mime":"application/json","path":"generated/agents_mesh.min.json","provenance_ref":"deterministic","surface_state":"generated_readmodel","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ed60c6fac6ab99d5af376f6c"}, + {"anchor_id":"aoa:aoa-techniques:anchor:ef80566e1761644e154032e8","artifact_kind":"generated_readmodel","content_hash":"14c8bb6b949676889f33eb6e7031d0f3748ea72f8942c50acfa3c17b1a49f966","id":"aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","lineage_path":"generated/agents_mesh.min.json","mime":"application/json","path":"generated/agents_mesh.min.json","provenance_ref":"deterministic","surface_state":"generated_readmodel","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2730cc54ea4e4d461af7775e"}, {"anchor_id":"aoa:aoa-techniques:anchor:1741b755ca7e99e5b1a509c4","artifact_kind":"generated_readmodel","content_hash":"c893c20f736de4ca1aa88e3c54de6919a26e2db60188eccc4fc8de59b90cbcdc","id":"aoa:aoa-techniques:artifact:6876c3c05522c4e1277a2317","lineage_path":"generated/github_review_template_manifest.json","mime":"application/json","path":"generated/github_review_template_manifest.json","provenance_ref":"deterministic","surface_state":"generated_readmodel","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4492523b5fa23df4e4915724"}, {"anchor_id":"aoa:aoa-techniques:anchor:42661e4ea58c46356b794c94","artifact_kind":"generated_readmodel","content_hash":"c73617933c354d446ddf90e8bdcb0a004335d172629f62d678b5431169af524a","id":"aoa:aoa-techniques:artifact:6b7d6ccea097ae14a6c98d6c","lineage_path":"generated/github_review_template_manifest.min.json","mime":"application/json","path":"generated/github_review_template_manifest.min.json","provenance_ref":"deterministic","surface_state":"generated_readmodel","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9319047763f4cd499236eb58"}, {"anchor_id":"aoa:aoa-techniques:anchor:bdf86ca77718a43ce5faf19d","artifact_kind":"generated_readmodel","content_hash":"2e85c2ad24893884fd16f621a052901fbc8c736f534b269f4b1d6b9527d7202c","id":"aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5","lineage_path":"generated/kag_export.json","mime":"application/json","path":"generated/kag_export.json","provenance_ref":"deterministic","surface_state":"generated_readmodel","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:836ab92511a2aebb8f74b958"}, @@ -502,38 +502,38 @@ {"anchor_id":"aoa:aoa-techniques:anchor:6c0487ab5c82a135bb9d646d","artifact_kind":"document","content_hash":"5ace264765be820a047bbe056f5cd5014d483a66ebb46093aa8af9bffc326cb1","id":"aoa:aoa-techniques:artifact:e8921ab3091f80a96da2b570","lineage_path":"legacy/INDEX.md","mime":"text/markdown","path":"legacy/INDEX.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b232fb9c43d8489743d28ced"}, {"anchor_id":"aoa:aoa-techniques:anchor:da1e1168d10f7d81758e66b6","artifact_kind":"document","content_hash":"c1694975fa1a26431eaa54293dc26d5360f6363956b3b117b7a4a58e35593b67","id":"aoa:aoa-techniques:artifact:70cf324ad5b327bba1d3ff96","lineage_path":"legacy/README.md","mime":"text/markdown","path":"legacy/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:115d590d15db24b50598e740"}, {"anchor_id":"aoa:aoa-techniques:anchor:8d16542ec75744041ff14697","artifact_kind":"document","content_hash":"0007f43690ef581d0a3b3b9788a795fee9d21eb1899f724e118ed13316cb2bc0","id":"aoa:aoa-techniques:artifact:f98306dd5b9800eb2179fc78","lineage_path":"legacy/archive/AGENTS.md","mime":"text/markdown","path":"legacy/archive/AGENTS.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f476a78c6b0fa4d69ea083cd"}, - {"anchor_id":"aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12","artifact_kind":"document","content_hash":"768491d067556eed0bec9009bc4b62d56efce85b1ed2974398f0e37b9873af37","id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","lineage_path":"docs/AGENTS_ROOT_REFERENCE.md","mime":"text/markdown","path":"legacy/archive/AGENTS_ROOT_REFERENCE.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fb1c1fc8fe1886b7787517a5"}, + {"anchor_id":"aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12","artifact_kind":"document","content_hash":"149a24efd75b17aa8b34d50e89a1fccd4bd5259814fc4195c51e4798c4c73010","id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","lineage_path":"docs/AGENTS_ROOT_REFERENCE.md","mime":"text/markdown","path":"legacy/archive/AGENTS_ROOT_REFERENCE.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c5e07897730b7f58ba8b2249"}, {"anchor_id":"aoa:aoa-techniques:anchor:76d7e23d785eb99d2c2461c3","artifact_kind":"document","content_hash":"a6a18ed3b06316f06814ac4f844508108fa2c823163635ecdd53a9314c8af4a9","id":"aoa:aoa-techniques:artifact:ca8d844544577e6b3deba7e9","lineage_path":"legacy/archive/README.md","mime":"text/markdown","path":"legacy/archive/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c52058a7d8912c939e22cc0a"}, {"anchor_id":"aoa:aoa-techniques:anchor:4f6cba747776425cdc8516c9","artifact_kind":"document","content_hash":"9d1ef2ac1bdcd6cbaa5cc3735c6b48ff5766ddb60229877eac02f29e8067ef48","id":"aoa:aoa-techniques:artifact:5e1723690eb14108db5c12e7","lineage_path":"legacy/raw/AGENTS.md","mime":"text/markdown","path":"legacy/raw/AGENTS.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b42ddab7e682cef04dc82075"}, {"anchor_id":"aoa:aoa-techniques:anchor:179e757fd5ced558ba459a42","artifact_kind":"document","content_hash":"0574e1a68f6b5f10409575901dbd2456f2e7375ba593033ce86829e29e4a30ae","id":"aoa:aoa-techniques:artifact:a19a1378cfb9c3ea326afee5","lineage_path":"legacy/raw/README.md","mime":"text/markdown","path":"legacy/raw/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:677556cfde447431f9695eac"}, - {"anchor_id":"aoa:aoa-techniques:anchor:22275adf28216c001f24d12d","artifact_kind":"receipt","content_hash":"f9c53cb62142a9e17b953b34eedaa66eefcef2be3215c0ee4aec58aaee47e068","id":"aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","lineage_path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bf471823fadf626b36f5744b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b5da729206e4628202b087c2","artifact_kind":"receipt","content_hash":"471dce56877d84e8670c80942034607f4000030904c30da7c1d44bc8e57232a7","id":"aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","lineage_path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7c695df6121cfde561d3dc4f"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3add0f3393aa4e334f672284","artifact_kind":"receipt","content_hash":"5ff0b48881be6f849a6516809d6adcfa03a2faf6d7d14a00ffbd0c2a7b1ec4ad","id":"aoa:aoa-techniques:artifact:6105204715b11f5a45523076","lineage_path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:90eae40f142bddc45c823a07"}, - {"anchor_id":"aoa:aoa-techniques:anchor:2013fe9a2f06a3d450011a01","artifact_kind":"receipt","content_hash":"6453c36716943771818ff99b00f63a87e801be7998e4f3f274b4b97aecc346fc","id":"aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","lineage_path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fb69a66b6304e69439abd77a"}, - {"anchor_id":"aoa:aoa-techniques:anchor:6b966256c7479bf115107f47","artifact_kind":"receipt","content_hash":"49d924150590d97e962abfd63ad915e38880d34a7346fc9c1b7a4ff43f93d724","id":"aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","lineage_path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b8b42fa1c8a55c5f98fc0616"}, - {"anchor_id":"aoa:aoa-techniques:anchor:58e01a3fbf6a66fcdd246a67","artifact_kind":"receipt","content_hash":"ddd5fbcf5b1018ffd9de2c5ff8bc8e3a0c8b1f4725a07a3c79507799fc965715","id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","lineage_path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ee023c2ab4651abacfd8e910"}, - {"anchor_id":"aoa:aoa-techniques:anchor:36df34fa9131c4f59b2eed93","artifact_kind":"receipt","content_hash":"73212bc54d8347967adb1af82d700510e16df77be51e3bd62a9eb6c16dd55eaf","id":"aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","lineage_path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e2f28111758b83bf937af16f"}, - {"anchor_id":"aoa:aoa-techniques:anchor:58b62cd5792c368706432d2a","artifact_kind":"receipt","content_hash":"107223ee55ca9e5043acc43d0615fe2191eaa931df4ba73151282034e11e6797","id":"aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","lineage_path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e05472c29a6fbce2319b0265"}, - {"anchor_id":"aoa:aoa-techniques:anchor:772724fd1c1e57faedf82e6f","artifact_kind":"receipt","content_hash":"12ce7c7b420106808af53451c4eab9bc58808e8e832a554b745a7735abacf9ae","id":"aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","lineage_path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d9420d44dae7345b1ba64a0d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b3b64446b1e26086f3bdc5b9","artifact_kind":"receipt","content_hash":"57e04b039373f2c0cda093a24c67b0090260d03f25c1229f66a233f05fc9d98a","id":"aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","lineage_path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a2550a089a65e8de0c8c035b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:00c61e6409abd64cea21273a","artifact_kind":"receipt","content_hash":"54345a1781aa8b95b29913fa39731853d8da14ebd0fb8165286ed8f6a463547e","id":"aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","lineage_path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b5dbdd3b18f5ff359acf03cb"}, - {"anchor_id":"aoa:aoa-techniques:anchor:bdf72dbfcf52af7e58e08a2a","artifact_kind":"receipt","content_hash":"71780ac414099a9a330fe886e2c758d3d6f3452ebbe107318c7e073d4df678df","id":"aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","lineage_path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cb7e03326bf981b6f7552914"}, - {"anchor_id":"aoa:aoa-techniques:anchor:2ae69687807f0d4ebc46d32d","artifact_kind":"receipt","content_hash":"d8ab7f94744ba9275ebda2bb6de43a0009f1c8a4dd958d0dd71347ef58dae5b2","id":"aoa:aoa-techniques:artifact:859893b447b67d299abff366","lineage_path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4d4bd0fcec60bafa31221bfc"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3f5cb9568cb25ef8b53f78a6","artifact_kind":"receipt","content_hash":"9be239bae17d2fa5fb7202749468cf4f57a8b9355f442b3d02501aeb314cc53c","id":"aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","lineage_path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f2887cc9709d84ea42219802"}, - {"anchor_id":"aoa:aoa-techniques:anchor:8e9ab940d857973dc8c9fd6c","artifact_kind":"receipt","content_hash":"0649f1a2ded568d2761032d86790b9be543e2924c324cc48a5c88650f70eb45c","id":"aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","lineage_path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cf998ab778938be46f076bb9"}, - {"anchor_id":"aoa:aoa-techniques:anchor:ac98e5bd9ee73e4c09dc06c2","artifact_kind":"receipt","content_hash":"2833492061476f6bad308f61d6e8a52b26a5ce4c4b768ab7b8b6448e2e2597e6","id":"aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","lineage_path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:acbaccbca5a5f05a74354809"}, - {"anchor_id":"aoa:aoa-techniques:anchor:951f052a3c46f816fecc2f3b","artifact_kind":"receipt","content_hash":"b5ef24d6e3877bf40d3ec1fa663fdb44d8cf38a38b5763e0b471fdea549f662b","id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","lineage_path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:301ce6ee6f84090646f6c937"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3c6ac78d870074a3c61cef9a","artifact_kind":"receipt","content_hash":"c7eee2b62e324d5b3907b85cf2219d2179ebd3c99e24997b0c72ff6427cc6cfd","id":"aoa:aoa-techniques:artifact:06d31990926be878929aa81d","lineage_path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a4e3cf4f42f497bed050cd9d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:011977f7749984902d88b61f","artifact_kind":"receipt","content_hash":"d853bfe094387817f42619edb7f248865f547190d6cf8c26a03f0d6fe5097dd3","id":"aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","lineage_path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b304b60548c61cdc07171f8b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:d55fbdeb288ee0d5beeaa771","artifact_kind":"receipt","content_hash":"9baf0e4d2eaa2c5478574ff53bdc8d2414cb8da44c7924e9ddcd1c5310aed6b0","id":"aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","lineage_path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2769f55859e1eb7787a14b99"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3c0668f6c03595e275f6ba06","artifact_kind":"receipt","content_hash":"91a4fe73eeed087ca075b35432e4af73822872a8b48a3d09abc6791754314b75","id":"aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","lineage_path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ffc1f1cbd199ea15079b1448"}, - {"anchor_id":"aoa:aoa-techniques:anchor:058215019ecb3946710363e2","artifact_kind":"receipt","content_hash":"3f18d3cdd580f34d3c3a158d3c6adebe36d40ba65b8c3eb8c6b33390108bb3b5","id":"aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","lineage_path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5d3214a4671294156d1da1eb"}, - {"anchor_id":"aoa:aoa-techniques:anchor:15d71e441d19f9b40aacd7c0","artifact_kind":"receipt","content_hash":"bf579b40668ef5dae847ddf4699afad6e0133be7d7823928ef2187a82b61a1fb","id":"aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","lineage_path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3ad66c61c5069988b442a08d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:049b437d9cb9f0424555278f","artifact_kind":"receipt","content_hash":"2fa071aa7dff8f207178a5eea0c0d7fa375d6ea6d9250f8ab948c89095dcf22a","id":"aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","lineage_path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:de3d4f4553845fec0d14a291"}, - {"anchor_id":"aoa:aoa-techniques:anchor:2624190ed2bdceff42197c75","artifact_kind":"receipt","content_hash":"c4948f53a3612fd353b8ca7edd22fa1d1dbc7fb161748d779650e52101fe1696","id":"aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","lineage_path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8b1e5813290faefa1dad2c6b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3c947829b4afad176790de88","artifact_kind":"receipt","content_hash":"9f7c9b7c032cfc95ba66c7aa6c0fcda122f8c128c2489ec5f8c50d0fce3ccbee","id":"aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","lineage_path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9be40b4d3aacdd917defaa63"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e38b2245976a1b9da2cec16a","artifact_kind":"receipt","content_hash":"18e13926fab0c11bef75e39cdb791618a1ab30df039dc46de4932031fea80369","id":"aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","lineage_path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f527f5acb4b4e3195ebc4758"}, - {"anchor_id":"aoa:aoa-techniques:anchor:de382c146bb929514e50bc73","artifact_kind":"receipt","content_hash":"ea2e89184fc9655cdaf91aa5ff0032288bb35426b35e703f2aa3a7677ccc1dbe","id":"aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","lineage_path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0c4f113ed309978b5676603a"}, + {"anchor_id":"aoa:aoa-techniques:anchor:22275adf28216c001f24d12d","artifact_kind":"receipt","content_hash":"9deac499faaf44b894c626e60f7e4cbf56d8a5138d419ece6794d31fb7ef4352","id":"aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","lineage_path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2d978004272463ee4440bdfa"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b5da729206e4628202b087c2","artifact_kind":"receipt","content_hash":"201ad803daa61b186214c8237bfd3118252d4afc3f689c61e413a0f2ae918efe","id":"aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","lineage_path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fc89ce2eb8b8a2b39054641d"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3add0f3393aa4e334f672284","artifact_kind":"receipt","content_hash":"cc0ae5d635e229a9cbec272606178112459d517f1287761ca67ccb49182b2372","id":"aoa:aoa-techniques:artifact:6105204715b11f5a45523076","lineage_path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:91da33db55f68790e9cc06a7"}, + {"anchor_id":"aoa:aoa-techniques:anchor:2013fe9a2f06a3d450011a01","artifact_kind":"receipt","content_hash":"572a49695d3bed703207e056b1d4e47636950c78eb2e74f4beaf3f270e2dcdf0","id":"aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","lineage_path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:870ca909aefc813a3cca3b03"}, + {"anchor_id":"aoa:aoa-techniques:anchor:6b966256c7479bf115107f47","artifact_kind":"receipt","content_hash":"045b0427abb117284fbe109b83972fe0cc0536c51c0ad35fda9df844e9b4a283","id":"aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","lineage_path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f76a7d6c20e736c135d79c8a"}, + {"anchor_id":"aoa:aoa-techniques:anchor:58e01a3fbf6a66fcdd246a67","artifact_kind":"receipt","content_hash":"f8ad8b8672e6b9e1f55304683dba76ecec365e18c0cba1914c43085eb3ad332a","id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","lineage_path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e3dc17840aeab3354a869b6d"}, + {"anchor_id":"aoa:aoa-techniques:anchor:36df34fa9131c4f59b2eed93","artifact_kind":"receipt","content_hash":"fc3f802298ee6a9f8febd555b4f15ee4546e121061c661fb0a0254e01794579b","id":"aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","lineage_path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:73f65cbce2a0a7d1499ed367"}, + {"anchor_id":"aoa:aoa-techniques:anchor:58b62cd5792c368706432d2a","artifact_kind":"receipt","content_hash":"a15439bcfe87fbf78e6f2aa239c95e6b664b1417525d3b3082e2ce95668f5c3e","id":"aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","lineage_path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:484bee2d35655ee6c4ea7200"}, + {"anchor_id":"aoa:aoa-techniques:anchor:772724fd1c1e57faedf82e6f","artifact_kind":"receipt","content_hash":"05907f250389dc2504dad84845ecad8104a01f9680cdef596fd1b6fed672bb96","id":"aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","lineage_path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:13a624ba7d7c8461e54adaf4"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b3b64446b1e26086f3bdc5b9","artifact_kind":"receipt","content_hash":"517761df924168ee7c8d3a756489cc3663a05e2d167ed3d86cf7edee2b8ea0f1","id":"aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","lineage_path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1f78a2c0fc9a1803a626244f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:00c61e6409abd64cea21273a","artifact_kind":"receipt","content_hash":"3b46ad830ab9118e0ee300963009fe7e6e1485a35b4d326f119738525c00e56d","id":"aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","lineage_path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6ec1fa38f2e32a291cf98934"}, + {"anchor_id":"aoa:aoa-techniques:anchor:bdf72dbfcf52af7e58e08a2a","artifact_kind":"receipt","content_hash":"389e2b1b83e920060c147ce7ec589219e7da29f9d4f76f0d84ee7da7bbf0e18f","id":"aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","lineage_path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3db25d998e72c106bf61eafa"}, + {"anchor_id":"aoa:aoa-techniques:anchor:2ae69687807f0d4ebc46d32d","artifact_kind":"receipt","content_hash":"f5e04c6e0c7f2b809d4e1ec3327d0bc7f06d61c6093cd9f9c709a606413a9a2b","id":"aoa:aoa-techniques:artifact:859893b447b67d299abff366","lineage_path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b901fc2e92d90f95f7003d02"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3f5cb9568cb25ef8b53f78a6","artifact_kind":"receipt","content_hash":"15ceebdfd5fb29bcb87960b56df44e3acdf8f9b7d17f78d5bf4ba2d5d1d4f234","id":"aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","lineage_path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9161862b3fcaf2f3a2157aac"}, + {"anchor_id":"aoa:aoa-techniques:anchor:8e9ab940d857973dc8c9fd6c","artifact_kind":"receipt","content_hash":"8fba5f883fd2203f9642013d3d35c2327320c6c88c200b22b381d0669c70c628","id":"aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","lineage_path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:633dd6d9cf328655aaabdeb0"}, + {"anchor_id":"aoa:aoa-techniques:anchor:ac98e5bd9ee73e4c09dc06c2","artifact_kind":"receipt","content_hash":"66e099336fabfcd8c16a94f2418deec363b4472e26a5b93e34738d2241f62c9d","id":"aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","lineage_path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b33f989dc3d4500ee5e741b0"}, + {"anchor_id":"aoa:aoa-techniques:anchor:951f052a3c46f816fecc2f3b","artifact_kind":"receipt","content_hash":"2646a47a8231225156bb3ff4a545589fe5b58fbbffa4cd80403ed3fa034b28e3","id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","lineage_path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6f2d161fcb80eaecd824a893"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3c6ac78d870074a3c61cef9a","artifact_kind":"receipt","content_hash":"6cc8b97924cccbf3c59ca38d97c45a87ead9fbbb17fd411b004d3884a6bf6d6d","id":"aoa:aoa-techniques:artifact:06d31990926be878929aa81d","lineage_path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5fef168e16a92e7d3f0595d9"}, + {"anchor_id":"aoa:aoa-techniques:anchor:011977f7749984902d88b61f","artifact_kind":"receipt","content_hash":"30c158aba4928224c96162bf753599528da1f3ab8262cacda5f4f8c7a083cbc4","id":"aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","lineage_path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3d6920531d4a6cead1f258f0"}, + {"anchor_id":"aoa:aoa-techniques:anchor:d55fbdeb288ee0d5beeaa771","artifact_kind":"receipt","content_hash":"8d8a69c8a49fda9f670e9281f2091a820046c72367633e50aff17f1bd86d3898","id":"aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","lineage_path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5214290f32fce09bc3531526"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3c0668f6c03595e275f6ba06","artifact_kind":"receipt","content_hash":"956b390e870ca2924924c36c21e73b221077a53cae39a448740e2ecda41e1bc4","id":"aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","lineage_path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1d9b9d329c0179063a5d1bdf"}, + {"anchor_id":"aoa:aoa-techniques:anchor:058215019ecb3946710363e2","artifact_kind":"receipt","content_hash":"5203d51aa0ccac45022ab3d2c00995cfa75ee671799bea0d33897fba56906b2f","id":"aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","lineage_path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1ad84e4a8830f5c6821b1178"}, + {"anchor_id":"aoa:aoa-techniques:anchor:15d71e441d19f9b40aacd7c0","artifact_kind":"receipt","content_hash":"091a6c18363c208b8e4c711d2b0f60491b1fd6413a8574e803e11bf3dd42bc41","id":"aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","lineage_path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8747a219f0f17470c911a666"}, + {"anchor_id":"aoa:aoa-techniques:anchor:049b437d9cb9f0424555278f","artifact_kind":"receipt","content_hash":"fa3d510b5c442ed61f1509e4eaf90c39ed2a160862f758d45596e24949b26a4f","id":"aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","lineage_path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e5c9d4408fc19fea3f3799de"}, + {"anchor_id":"aoa:aoa-techniques:anchor:2624190ed2bdceff42197c75","artifact_kind":"receipt","content_hash":"0435bbffa1754a372411394902df493c2bb6094cb93beb05f9a4497de2c9f13f","id":"aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","lineage_path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:62a0e4f6e641d75656fc1b2c"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3c947829b4afad176790de88","artifact_kind":"receipt","content_hash":"410b32f623b9c92c617acca01faf4f01d858148b1e9d4b2bfa16e3cb1076ffdc","id":"aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","lineage_path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:deef6a425a5fe0af39af2345"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e38b2245976a1b9da2cec16a","artifact_kind":"receipt","content_hash":"94db9f2e01a35d451352618c55c862640ffa401fd9fa61a4236d2318dda600c4","id":"aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","lineage_path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6ae84d929dd7f36653acf25a"}, + {"anchor_id":"aoa:aoa-techniques:anchor:de382c146bb929514e50bc73","artifact_kind":"receipt","content_hash":"b1ef62b9d8210e575d265b989caa2c7d5ce299d40e0223f8c96dbf9328f945af","id":"aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","lineage_path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","mime":"text/markdown","path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:42f8638173c06ac08aa130dc"}, {"anchor_id":"aoa:aoa-techniques:anchor:136a05cfca4e52f75d32272a","artifact_kind":"receipt","content_hash":"23aa7f236f5e04ff64b46c8516bfda87f8fd1f21eca8a02c333cc3b10f4b06e0","id":"aoa:aoa-techniques:artifact:04bef8605ec2e98416c0441c","lineage_path":"legacy/receipts/AGENTS.md","mime":"text/markdown","path":"legacy/receipts/AGENTS.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e584b06a0ee48620068a4c96"}, {"anchor_id":"aoa:aoa-techniques:anchor:d03a1bef68bd7c36ae10aa08","artifact_kind":"receipt","content_hash":"0337ea9df85d7af4e81860e4b9d181f7e9ce31ccba34794fb79ab3b8f6e0644f","id":"aoa:aoa-techniques:artifact:47ec2120ab466efaae32de89","lineage_path":"legacy/receipts/README.md","mime":"text/markdown","path":"legacy/receipts/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:836459cc390783c4c5c746a4"}, {"anchor_id":"aoa:aoa-techniques:anchor:2e97f6bf0bbef989ad50abc9","artifact_kind":"document","content_hash":"fe8ce974c2a12b7400464b4e5479efea4ebd79a5cbec4dade14715a4b7979502","id":"aoa:aoa-techniques:artifact:e76d68a5b5eae349802a9128","lineage_path":"mechanics/AGENTS.md","mime":"text/markdown","path":"mechanics/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a2d8c859f82dc3434768df32"}, @@ -541,7 +541,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:4d94c35254ebfff4f25aab9c","artifact_kind":"document","content_hash":"875cea0de2b95e93b79dd022a8c607a342ef2f7f599321e04506b445b5230cd4","id":"aoa:aoa-techniques:artifact:c08e8155cee768788f062102","lineage_path":"mechanics/REQUEST_RECEIPTS.md","mime":"text/markdown","path":"mechanics/REQUEST_RECEIPTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b72ecf2957d3eb11b8c4d8ed"}, {"anchor_id":"aoa:aoa-techniques:anchor:71407fbd9fd3673cf3c2ad4a","artifact_kind":"document","content_hash":"b5773a027867161b828014a87207a80bfdd4bbb7a2ffd5932a17d57cae372959","id":"aoa:aoa-techniques:artifact:8e087ffe6784c317374525a5","lineage_path":"mechanics/agon/AGENTS.md","mime":"text/markdown","path":"mechanics/agon/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f1d521646c130de345444ad8"}, {"anchor_id":"aoa:aoa-techniques:anchor:391d68382ac0881c0d65819b","artifact_kind":"document","content_hash":"38f3756a2688963ae37955a3042783d832f391ee7e8f97415955a7b04760541d","id":"aoa:aoa-techniques:artifact:9ebcd75e7ab7f2a4697587e2","lineage_path":"mechanics/agon/DIRECTION.md","mime":"text/markdown","path":"mechanics/agon/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:326e77dd2ce06fe73580d80a"}, - {"anchor_id":"aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b","artifact_kind":"document","content_hash":"2dfcef0ee6ab6126565e3aadc124b253d8a4d7dcd2b7a4ce43cdb3cedd956239","id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","lineage_path":"mechanics/agon/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/agon/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:96d4a1dc1f4088dcc0b66fec"}, + {"anchor_id":"aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b","artifact_kind":"document","content_hash":"91139047b155b864cd0aa942d363faed68f26c8d4078d2980ee49e26a34e0fc3","id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","lineage_path":"mechanics/agon/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/agon/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7462c28cc566d2cbbd93660d"}, {"anchor_id":"aoa:aoa-techniques:anchor:0fb98907001d1b8a87bd1e92","artifact_kind":"document","content_hash":"4280a341e36e0147f2d524ef43391bc0dc184a2d8db6da16c29bbeecc37a8902","id":"aoa:aoa-techniques:artifact:00df17e91ebf2c0bbe7bc857","lineage_path":"mechanics/agon/PARTS.md","mime":"text/markdown","path":"mechanics/agon/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:48e40451a3ee319aeea7eac5"}, {"anchor_id":"aoa:aoa-techniques:anchor:0b102dae6de70e92d37a0fde","artifact_kind":"document","content_hash":"12fc8acc78b2e12e869e5e172fe36b4e4273346f00961eeeca5ee8ef013ee339","id":"aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8","lineage_path":"mechanics/agon/PROVENANCE.md","mime":"text/markdown","path":"mechanics/agon/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c4cd2f78c479c104f69411b8"}, {"anchor_id":"aoa:aoa-techniques:anchor:3bc78c5b848f6cb3f84a5ec5","artifact_kind":"document","content_hash":"88d9770c422823052ad9ebad5f6f2abe9c8d9c42ea837770fadd8db9abe7502e","id":"aoa:aoa-techniques:artifact:359861268bcf7d2db2aa8523","lineage_path":"mechanics/agon/README.md","mime":"text/markdown","path":"mechanics/agon/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c0aecffccccf5663769c3abb"}, @@ -552,7 +552,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:205aa2034c6fc0a487f49d95","artifact_kind":"document","content_hash":"71432c0f7b00a764a45737eb74ece31e1ade901afbde5ba5dac850f007166646","id":"aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc","lineage_path":"mechanics/agon/legacy/INDEX.md","mime":"text/markdown","path":"mechanics/agon/legacy/INDEX.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9399c5ad1b8f5b4a8b8dee3c"}, {"anchor_id":"aoa:aoa-techniques:anchor:90ab32120d5c8a5f1dda48b5","artifact_kind":"document","content_hash":"09f23fd5562ed9e51b480029fae3ec65ba79ed8622cb88c4fa0eed0b2ec3484b","id":"aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5","lineage_path":"mechanics/agon/legacy/README.md","mime":"text/markdown","path":"mechanics/agon/legacy/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0c0ac937683036ba9961d2a4"}, {"anchor_id":"aoa:aoa-techniques:anchor:952644c92cdcb3fd86ed2a8b","artifact_kind":"document","content_hash":"1975128c24a822c1842988f1aec9765466c63c12be9d7b61491abc165c86784e","id":"aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","lineage_path":"docs/AGON_WAVE15_TECHNIQUES_LANDING.md","mime":"text/markdown","path":"mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e40ce14fbfeb326f43ab9e8d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:35f09c38d6104131c92cf856","artifact_kind":"document","content_hash":"0292789b7e70ee9890c13b6fb5a9cdcf7ad8e9e87c007a6b7703fefa4215cf5a","id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","lineage_path":"docs/AGON_WAVE4_TECHNIQUE_LANDING.md","mime":"text/markdown","path":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:60a11b671591d53f5f9057ae"}, + {"anchor_id":"aoa:aoa-techniques:anchor:35f09c38d6104131c92cf856","artifact_kind":"document","content_hash":"65c331a21abd0d8d05e7849b55f33a4839d8995b377cdb7298815dd130dd1e01","id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","lineage_path":"docs/AGON_WAVE4_TECHNIQUE_LANDING.md","mime":"text/markdown","path":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8704b617cd6e5e2fae4c393f"}, {"anchor_id":"aoa:aoa-techniques:anchor:6ce9c33bc9689a5760681e8b","artifact_kind":"document","content_hash":"431f67f0291dd84d03674a7c702e640c3bdae4af9fae02ac1f1b8a439dc5a459","id":"aoa:aoa-techniques:artifact:1344c38fee20012764238e1c","lineage_path":"mechanics/agon/legacy/raw/README.md","mime":"text/markdown","path":"mechanics/agon/legacy/raw/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5b016aba9fd44e686c26402e"}, {"anchor_id":"aoa:aoa-techniques:anchor:85678bd420420491d2cd28d7","artifact_kind":"document","content_hash":"3e1f494fc6b6b1bb600d038e2f1f3b9517bc9e55b08ae2ee0c731c06f3f6bd62","id":"aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0","lineage_path":"mechanics/agon/parts/AGENTS.md","mime":"text/markdown","path":"mechanics/agon/parts/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:243695f638904c2d19c5fcb9"}, {"anchor_id":"aoa:aoa-techniques:anchor:08b0f7e8349993480547112e","artifact_kind":"document","content_hash":"a1745299706b6dcb03225f051bc66431f37e62e170aaf3b2eb17745b38d15057","id":"aoa:aoa-techniques:artifact:0e33dc533fcb541678109142","lineage_path":"mechanics/agon/parts/README.md","mime":"text/markdown","path":"mechanics/agon/parts/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2994ae7b697f6e3858266687"}, @@ -600,7 +600,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:8b2203dee7df3cd1d8df3f75","artifact_kind":"test","content_hash":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","id":"aoa:aoa-techniques:artifact:5b00df740809b23874e59462","lineage_path":"tests/test_antifragility_mechanics_topology.py","mime":"text/x-python","path":"mechanics/antifragility/tests/test_antifragility_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:61a2144b276cdc5ff601bd03"}, {"anchor_id":"aoa:aoa-techniques:anchor:9f9bfec410b01b21e26ccb96","artifact_kind":"document","content_hash":"0609d9c47ee04e19f60debc4feb8ea82ad9cf2ad23dd1a981c2a4b8f83509908","id":"aoa:aoa-techniques:artifact:cceb307272637ebed425f089","lineage_path":"mechanics/audit/AGENTS.md","mime":"text/markdown","path":"mechanics/audit/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:95911c6be9da2e5237b8a007"}, {"anchor_id":"aoa:aoa-techniques:anchor:5dc1021730de907dc8367cc5","artifact_kind":"document","content_hash":"dc197d25856be3ae2ab4899e4958b3629607562b423687005f3f4ec03e6bdfae","id":"aoa:aoa-techniques:artifact:eb6c24d59a47db9050ba9877","lineage_path":"mechanics/audit/DIRECTION.md","mime":"text/markdown","path":"mechanics/audit/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:856519f4831c1bafd1b281e7"}, - {"anchor_id":"aoa:aoa-techniques:anchor:fef8cb4d3585806764129a54","artifact_kind":"document","content_hash":"8e33eb173d681ff950a70e281a10566efb3f1f721b9ace114099e7b269ab47ca","id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","lineage_path":"mechanics/audit/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/audit/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:58434d8badedccf15d1a45fb"}, + {"anchor_id":"aoa:aoa-techniques:anchor:fef8cb4d3585806764129a54","artifact_kind":"document","content_hash":"4186668e9f1b918e1e5a6288ff97a170241cdd6e9cd77b831d1ba5068c9777e5","id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","lineage_path":"mechanics/audit/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/audit/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:913276ad1b67c45d4d13c950"}, {"anchor_id":"aoa:aoa-techniques:anchor:53dfebd8df81ed1ae411f67d","artifact_kind":"document","content_hash":"aa015457f86e990e4f1283f77b509f8a040b273fb2983e2ce92eab880aa32aff","id":"aoa:aoa-techniques:artifact:7f54be3138b924b6fbfa62f2","lineage_path":"mechanics/audit/PARTS.md","mime":"text/markdown","path":"mechanics/audit/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3b19927731c2c480c78f1c8e"}, {"anchor_id":"aoa:aoa-techniques:anchor:dc71a1befa1b9ff17558d26f","artifact_kind":"document","content_hash":"bef79182be240b6969d8f94f127075698e1456c5fd51e70b8446b3bccfa4ebbe","id":"aoa:aoa-techniques:artifact:f27efcdcafc548616fa6ed83","lineage_path":"mechanics/audit/PROVENANCE.md","mime":"text/markdown","path":"mechanics/audit/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b8206cdeb41b0ef4b36f06d6"}, {"anchor_id":"aoa:aoa-techniques:anchor:078e7f333328f1102459e5fb","artifact_kind":"document","content_hash":"4466cba4292f3f1617705b4fbd3b8ce92cbda0ba28ce9320cb047dde42da6be8","id":"aoa:aoa-techniques:artifact:8442d8bba839abb3a1035ee7","lineage_path":"mechanics/audit/README.md","mime":"text/markdown","path":"mechanics/audit/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e8f2346c4c430a5f576115d4"}, @@ -610,7 +610,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:1b7b5814afb929719c61875d","artifact_kind":"document","content_hash":"e782886d2cbfa406dc60477e7c278a748a4f6fd304a30f7a7f4e6c792526f913","id":"aoa:aoa-techniques:artifact:730109cbf9e419d0e91319ce","lineage_path":"mechanics/audit/legacy/INDEX.md","mime":"text/markdown","path":"mechanics/audit/legacy/INDEX.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c7b9c0bab5a3ef8b0c0954e9"}, {"anchor_id":"aoa:aoa-techniques:anchor:ec91edf2d92b7a8e4246ab7e","artifact_kind":"document","content_hash":"7438cf697d1b519aa605702e3d43914238a78f79c88d24ce3341be8b2b2bb663","id":"aoa:aoa-techniques:artifact:f93253dae86af3a100005334","lineage_path":"mechanics/audit/legacy/README.md","mime":"text/markdown","path":"mechanics/audit/legacy/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0084828b6f35d3b0db6016d0"}, {"anchor_id":"aoa:aoa-techniques:anchor:4ad03f4304fb99397e3eb403","artifact_kind":"document","content_hash":"4aad1f31e66114f7832e90925407d124809310aa5eed97a5b31f553c884bf7c7","id":"aoa:aoa-techniques:artifact:436c0178449184d78679b748","lineage_path":"mechanics/audit/legacy/raw/README.md","mime":"text/markdown","path":"mechanics/audit/legacy/raw/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:87321154a639c0f9abe9339e"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3009aa25d549a5f182e7204a","artifact_kind":"document","content_hash":"52a8ae3397353c0202ca66912cd2f1663a9694e7ff29e1c6d25f85c53d13d38c","id":"aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","lineage_path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","mime":"text/markdown","path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3c4d1fcef0a811dcf1317483"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3009aa25d549a5f182e7204a","artifact_kind":"document","content_hash":"c585d5e937a2e618b00d8de44c79a854d94796e8a4a53583d53852814717efdf","id":"aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","lineage_path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","mime":"text/markdown","path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3cfcce278d3c203127bba4d7"}, {"anchor_id":"aoa:aoa-techniques:anchor:6379f8ab7692ab90ebc13087","artifact_kind":"document","content_hash":"1cab2e8285183b1ef06dab38b7b25b02613374bc678fe1b31054ce04ea55721b","id":"aoa:aoa-techniques:artifact:0b93e2bbd1c14bf19cfa3f09","lineage_path":"mechanics/audit/parts/AGENTS.md","mime":"text/markdown","path":"mechanics/audit/parts/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f2555136bc869e505c46b545"}, {"anchor_id":"aoa:aoa-techniques:anchor:0fadd2fd958231e4b45617c8","artifact_kind":"document","content_hash":"9f40113790f9e6db158f2a70c22ee51080e87c98ad18c303204fd3e4806b412a","id":"aoa:aoa-techniques:artifact:d3166ec23c1c2b97b314d260","lineage_path":"mechanics/audit/parts/README.md","mime":"text/markdown","path":"mechanics/audit/parts/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:88a1b91c3577e6b16f0b4673"}, {"anchor_id":"aoa:aoa-techniques:anchor:7734094856cb00b20beccb83","artifact_kind":"document","content_hash":"aae2bac2ecef8ae5e9b7aa6d10ada963d34817ba3e58f11aaa1dc3262dd953a7","id":"aoa:aoa-techniques:artifact:b463640837001c8c8c404fb6","lineage_path":"mechanics/audit/parts/canonical-retro-audit/README.md","mime":"text/markdown","path":"mechanics/audit/parts/canonical-retro-audit/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d0eb0cdcd5fa0713a8feb3f9"}, @@ -618,11 +618,11 @@ {"anchor_id":"aoa:aoa-techniques:anchor:55b57fc1f478d0e631675468","artifact_kind":"document","content_hash":"f7dd22b4e1a4a09435e376f5c322cb8ce7e726d258439a9fcfa06d3cbfe0a089","id":"aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc","lineage_path":"docs/EXTERNAL_EVIDENCE_SPRINT_RUNBOOK.md","mime":"text/markdown","path":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:55b579b35e9a427d127c8dd0"}, {"anchor_id":"aoa:aoa-techniques:anchor:b363a721ab855a8fcbc17239","artifact_kind":"document","content_hash":"79ebeb300a17c075a0f909e1ac0b4533c1595c8385178062445c67db73c9e389","id":"aoa:aoa-techniques:artifact:87f7294594c3379e12bb67db","lineage_path":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md","mime":"text/markdown","path":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5742a66ed2a6cea6b7ab64ba"}, {"anchor_id":"aoa:aoa-techniques:anchor:b423ccc3bc299d13a0bfb338","artifact_kind":"document","content_hash":"114a6465db820fb61d767a6b02c0eb74531744fab2c36e96a0ac3ec0c59ad24d","id":"aoa:aoa-techniques:artifact:b2a8cd3f1dd7f330861f0a02","lineage_path":"docs/PROMOTION_WAVE_A_RUNBOOK.md","mime":"text/markdown","path":"mechanics/audit/parts/promotion-evidence-runbook/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c8df64719f596578136c938d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb","artifact_kind":"document","content_hash":"08ffe0eded90cc5605649ccbc6598a166a85a70a4980ec965d1f2856a27104c0","id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","lineage_path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","mime":"text/markdown","path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ad31b30031943af7daa61aa0"}, + {"anchor_id":"aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb","artifact_kind":"document","content_hash":"38d84f2ccbc77f772da420de543747b02bb46f4320e99a6fa361231c258db473","id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","lineage_path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","mime":"text/markdown","path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:90e50b5ab2dfde502cc96991"}, {"anchor_id":"aoa:aoa-techniques:anchor:05bc9804c7daefad3f66ac01","artifact_kind":"test","content_hash":"f28b18d87d2c375c2f3ff12c402682da43f9c9fc8595470723c7aa7f14837b6e","id":"aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9","lineage_path":"tests/test_audit_mechanics_topology.py","mime":"text/x-python","path":"mechanics/audit/tests/test_audit_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3a31fbf6947dccf870c51e55"}, {"anchor_id":"aoa:aoa-techniques:anchor:bc328b701bf14aca1db48b1c","artifact_kind":"document","content_hash":"c5ee92e7f754bac6f9a8f9e3f86662b1826b8208be60d91c67d82913d8ad3c38","id":"aoa:aoa-techniques:artifact:1fcf12b8829a2e1590d8674f","lineage_path":"mechanics/boundary-bridge/AGENTS.md","mime":"text/markdown","path":"mechanics/boundary-bridge/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ca712b4b66b06f9f10ec6afd"}, {"anchor_id":"aoa:aoa-techniques:anchor:8d09dd8641d5aadf934685e7","artifact_kind":"document","content_hash":"6813712ccfbdb417f8d6548bcb670dc0e7f9343c143ab68442b75f264d20ec2b","id":"aoa:aoa-techniques:artifact:0a397c872e31eb43f190b7bd","lineage_path":"mechanics/boundary-bridge/DIRECTION.md","mime":"text/markdown","path":"mechanics/boundary-bridge/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:faf3deca15a90dcf1b1ee621"}, - {"anchor_id":"aoa:aoa-techniques:anchor:ed985c4b7c6d3135db170fcd","artifact_kind":"document","content_hash":"abd31204d369e49a6d04e31198b69ec4eccefe59fad63d79d9fa901d8eaa7af0","id":"aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","lineage_path":"mechanics/boundary-bridge/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/boundary-bridge/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a8c65b302823875415d6518a"}, + {"anchor_id":"aoa:aoa-techniques:anchor:ed985c4b7c6d3135db170fcd","artifact_kind":"document","content_hash":"f0686cd4050bfb34bf2955a9d8e9223321a88d9e3aca600e2fbf230bacd1fb5e","id":"aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","lineage_path":"mechanics/boundary-bridge/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/boundary-bridge/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9f7fa91709ee8a9962ed292a"}, {"anchor_id":"aoa:aoa-techniques:anchor:7db875d04e9ba784cf2f77aa","artifact_kind":"document","content_hash":"607701f6727cbf1c8765cc89635149100efa779fc381cd9e4746d42b75c827a7","id":"aoa:aoa-techniques:artifact:fe08f92726a50caed1d8bcd2","lineage_path":"mechanics/boundary-bridge/PARTS.md","mime":"text/markdown","path":"mechanics/boundary-bridge/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5abbfdf095812677caaeddb5"}, {"anchor_id":"aoa:aoa-techniques:anchor:3300dbb24d5bf0e5a69cd79f","artifact_kind":"document","content_hash":"d6ce957ea4dd1c25c24c38734f3433ed667c8c6f0a9967768ab94045326dd47b","id":"aoa:aoa-techniques:artifact:03ab6d31c240dd6da06db6c6","lineage_path":"mechanics/boundary-bridge/PROVENANCE.md","mime":"text/markdown","path":"mechanics/boundary-bridge/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:49e15ca2eeb5cd33121eab14"}, {"anchor_id":"aoa:aoa-techniques:anchor:011f49430d6fef6fc3394ea0","artifact_kind":"document","content_hash":"2e20b5222a85e7ec3ccb2d23985ea950ff463a2d2deab429a05df251c2a9d786","id":"aoa:aoa-techniques:artifact:ed4ace301e7714a0fa443e06","lineage_path":"mechanics/boundary-bridge/README.md","mime":"text/markdown","path":"mechanics/boundary-bridge/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:40d59e5ee11a1959b30a34b5"}, @@ -640,7 +640,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:720155dd6502ec3f28139454","artifact_kind":"test","content_hash":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","id":"aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f","lineage_path":"tests/test_boundary_bridge_mechanics_topology.py","mime":"text/x-python","path":"mechanics/boundary-bridge/tests/test_boundary_bridge_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0a17bac93b8b1e60c6058f28"}, {"anchor_id":"aoa:aoa-techniques:anchor:5ddeac9e9e4e87d227a4f1db","artifact_kind":"document","content_hash":"ba34075a1204f4014a77cd6f757092988344fe5bb67488cb35d033898c74c957","id":"aoa:aoa-techniques:artifact:cc4a61a4cb72286efc062e32","lineage_path":"mechanics/checkpoint/AGENTS.md","mime":"text/markdown","path":"mechanics/checkpoint/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7c8a8074639e635f81c02c19"}, {"anchor_id":"aoa:aoa-techniques:anchor:50395885d3cb114b521f79cc","artifact_kind":"document","content_hash":"198480d9505d0987aa75831243abd8ce685469e05a2dbca12b24342d5f6037cc","id":"aoa:aoa-techniques:artifact:9cb002695be915bbf742d5bb","lineage_path":"mechanics/checkpoint/DIRECTION.md","mime":"text/markdown","path":"mechanics/checkpoint/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2ac336e4fb7a97e0240c472f"}, - {"anchor_id":"aoa:aoa-techniques:anchor:c673c8c5f6f2e21753f48ba9","artifact_kind":"document","content_hash":"2419ea5c33002c310272e8b51028fbd78b9658f90b51e3a5084607e065b89f51","id":"aoa:aoa-techniques:artifact:a091893937b854517373eaea","lineage_path":"mechanics/checkpoint/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/checkpoint/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d6d9cec5d7b7eb428b5563e6"}, + {"anchor_id":"aoa:aoa-techniques:anchor:c673c8c5f6f2e21753f48ba9","artifact_kind":"document","content_hash":"353f2733930bd88c9861727bfc2973b16c42da8a66e50936e8b0866bcfc7924e","id":"aoa:aoa-techniques:artifact:a091893937b854517373eaea","lineage_path":"mechanics/checkpoint/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/checkpoint/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2e5930874cbcb899263beb7e"}, {"anchor_id":"aoa:aoa-techniques:anchor:d55f41575ba494ef7ff59a3b","artifact_kind":"document","content_hash":"1a32eae703a3980046bd9ccd9d97c104c49959d82dad1af1ff02e8f54aa66370","id":"aoa:aoa-techniques:artifact:cdd82edf1334fed2c0280ed2","lineage_path":"mechanics/checkpoint/PARTS.md","mime":"text/markdown","path":"mechanics/checkpoint/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:80615cdbcccddfd2a1cbaf16"}, {"anchor_id":"aoa:aoa-techniques:anchor:3123404e74cd90edb5d20568","artifact_kind":"document","content_hash":"cb1d57990211e7effd209355bda96d2b62db9a54c2b74e6e0c83e975b91a6d48","id":"aoa:aoa-techniques:artifact:0f645191e875f5883b5c4d1d","lineage_path":"mechanics/checkpoint/PROVENANCE.md","mime":"text/markdown","path":"mechanics/checkpoint/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4e803ece57b7628f104d06db"}, {"anchor_id":"aoa:aoa-techniques:anchor:bbe3c968658bbc47df7eb131","artifact_kind":"document","content_hash":"9052bf44e8cc3f93c21a170a6b05be928fc7f7289df5722df219ff4b57ae0fb7","id":"aoa:aoa-techniques:artifact:b0e9ecf9b03e64ab947c2a82","lineage_path":"mechanics/checkpoint/README.md","mime":"text/markdown","path":"mechanics/checkpoint/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c9f9ad5864efbb7dbadcafe1"}, @@ -657,7 +657,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:74b7f79a3378f62558d1af40","artifact_kind":"test","content_hash":"b19234680a11b5e9972a251fd34879ddad09aef27b953026b55a5c9311229b9b","id":"aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5","lineage_path":"tests/test_checkpoint_mechanics_topology.py","mime":"text/x-python","path":"mechanics/checkpoint/tests/test_checkpoint_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:23d36b532e562b40b0d93c86"}, {"anchor_id":"aoa:aoa-techniques:anchor:7983499fe9dfb4f426b20b13","artifact_kind":"document","content_hash":"db60b1d2146c8797035b9a8fd17a28de8ff9870900b63591f897587d9304e6ef","id":"aoa:aoa-techniques:artifact:0b7d8520f2e4a183b2db8372","lineage_path":"mechanics/distillation/AGENTS.md","mime":"text/markdown","path":"mechanics/distillation/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e1119d533de561d6c49a9013"}, {"anchor_id":"aoa:aoa-techniques:anchor:eee0d726c786b872d1d9b4ac","artifact_kind":"document","content_hash":"acc039728c9413008653cc53a26d01c86d8312e427b7333b9f658e5d8b0092aa","id":"aoa:aoa-techniques:artifact:6e2f5bf08ca1f82980fef902","lineage_path":"mechanics/distillation/DIRECTION.md","mime":"text/markdown","path":"mechanics/distillation/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:26c85c1e566efa1bed8e7d07"}, - {"anchor_id":"aoa:aoa-techniques:anchor:d4fc0c403c650e871a2cbda3","artifact_kind":"document","content_hash":"3d198be191b8c5b1d6c1b4fd77df8e90ebd3e5b738a8fc35f253065bd4236658","id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","lineage_path":"mechanics/distillation/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/distillation/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:77c5b76d924b1ec27dc27574"}, + {"anchor_id":"aoa:aoa-techniques:anchor:d4fc0c403c650e871a2cbda3","artifact_kind":"document","content_hash":"81ff9d260064e3096c6287a536e4257c93482f7a507e42c8fe839e72fd78332d","id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","lineage_path":"mechanics/distillation/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/distillation/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:90a5d2cf06ee256ec5ed6333"}, {"anchor_id":"aoa:aoa-techniques:anchor:a7ca6a2ba423fa66e23600f2","artifact_kind":"document","content_hash":"ef76cb7363ba8d77b25ddba04ff15df4230fa060841ea5d600c2fc1af8bdafed","id":"aoa:aoa-techniques:artifact:8b81ac42d11c2733c2f20418","lineage_path":"mechanics/distillation/PARTS.md","mime":"text/markdown","path":"mechanics/distillation/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ef0d690d9c28742c03f1def1"}, {"anchor_id":"aoa:aoa-techniques:anchor:71631681fd5cc24d750f7469","artifact_kind":"document","content_hash":"08f7adbe9f7b2bfc168b73d41b7405f7032920a88c84f8532da469675fbb5aff","id":"aoa:aoa-techniques:artifact:758e29efb65b54b21c9debb1","lineage_path":"mechanics/distillation/PROVENANCE.md","mime":"text/markdown","path":"mechanics/distillation/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:17d09fbb1bb9394587e1f5ca"}, {"anchor_id":"aoa:aoa-techniques:anchor:f0dee75f40aa051e58a5c9a2","artifact_kind":"document","content_hash":"cdcfddc11450f489aa7e975cd39068c9d86cf655314ec98a9a56dfabfb44eba7","id":"aoa:aoa-techniques:artifact:a9c949d3ec8753d6c9e15610","lineage_path":"mechanics/distillation/README.md","mime":"text/markdown","path":"mechanics/distillation/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f1e7a5f12b521a78de559b75"}, @@ -711,8 +711,8 @@ {"anchor_id":"aoa:aoa-techniques:anchor:4dab938da9e7173a8c88790c","artifact_kind":"document","content_hash":"113c4edeb94ec2eb611d2e36973e0e29044b465a0c0a68c453c2baac68064744","id":"aoa:aoa-techniques:artifact:99e4142d3dc6fa22b624e638","lineage_path":"incoming/personal-ingest-wave-2/support/DONOR_SOURCES.md","mime":"text/markdown","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0fcb32bdd7ebd558c0cd2415"}, {"anchor_id":"aoa:aoa-techniques:anchor:907d2c8ffe54ac1d43eae978","artifact_kind":"config","content_hash":"ee189f9dff904a3a30f4ee203c96a4c10b509375c9eda50b917f8334b5dd7e03","id":"aoa:aoa-techniques:artifact:dbb8e1c98462d2210a69cafe","lineage_path":"incoming/personal-ingest-wave-2/support/manifest.json","mime":"application/json","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/manifest.json","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f7f4df6e1420d6a33781191d"}, {"anchor_id":"aoa:aoa-techniques:anchor:b01099645b513ed12cfa2d21","artifact_kind":"config","content_hash":"110b2799b5b9d4eb428adfec149bbc312e98abb4e549c7187a36aef2eae28832","id":"aoa:aoa-techniques:artifact:5b1bcb5d2dcb811d429f67c5","lineage_path":"incoming/personal-ingest-wave-2/support/registry.json","mime":"application/json","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/registry.json","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cda992743b6194146f1a6050"}, - {"anchor_id":"aoa:aoa-techniques:anchor:9995f1644e399ee461162783","artifact_kind":"document","content_hash":"080eb8f77966af5e34097d6a7b8fcf4455be44d82d413ec6084709006cbef2e9","id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","lineage_path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:039c29d8b3230ea9a9710dd6"}, - {"anchor_id":"aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05","artifact_kind":"document","content_hash":"6949f2c3ee81f1f0cea63b5eca96e8d1508cd9915403cefd95100874e708321d","id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","lineage_path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ad706546fd4e495a92ff967c"}, + {"anchor_id":"aoa:aoa-techniques:anchor:9995f1644e399ee461162783","artifact_kind":"document","content_hash":"438a0f08fbb9c8b4ca5d899993c35b59340b07b791cf234ab196c5536edc7cf3","id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","lineage_path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1ed0208d52642fc3481e0ec0"}, + {"anchor_id":"aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05","artifact_kind":"document","content_hash":"c4bea89ffbabcd2e5e1614a12fa7e0b808bd910ea7beaba5ae118741181f9ac1","id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","lineage_path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3080d2debf73afcb472ea6b9"}, {"anchor_id":"aoa:aoa-techniques:anchor:c35d0c2e782d37cc9ce6b6c1","artifact_kind":"document","content_hash":"a819862229ef5d186620aa9d2128f2419ff4a19eabba61f40ea63d9ae3f4703d","id":"aoa:aoa-techniques:artifact:12b9435bf6e909efd884670d","lineage_path":"mechanics/distillation/legacy/raw/README.md","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/README.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ea27ba93a8b25f6d9f773519"}, {"anchor_id":"aoa:aoa-techniques:anchor:008d3a311fb737f85981af0c","artifact_kind":"document","content_hash":"accb50154a90f2188234b859a691dbae389df8015f0ef02740716bd88f87d80c","id":"aoa:aoa-techniques:artifact:dfc8e88cf15e7b4696445460","lineage_path":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md","provenance_ref":"deterministic","surface_state":"legacy","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:605d439e9bda0a7f86d84f52"}, {"anchor_id":"aoa:aoa-techniques:anchor:657896c747cf94f687706905","artifact_kind":"document","content_hash":"2f3e536e17c19abef1b5e2c58c72cdaef4486fc9224dc68409e5c314eb81d3da","id":"aoa:aoa-techniques:artifact:c7c83102096d7ba5b4584308","lineage_path":"mechanics/distillation/parts/AGENTS.md","mime":"text/markdown","path":"mechanics/distillation/parts/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ad24fc2f0a4ae2f4b39aaa8a"}, @@ -792,83 +792,83 @@ {"anchor_id":"aoa:aoa-techniques:anchor:5810c155ece164ad55c6dac3","artifact_kind":"document","content_hash":"7639ec9dea2c9ef8c40ee1ca80125d88d9af5531be4b30bd158421d42b702775","id":"aoa:aoa-techniques:artifact:40e0f556a68266a4c2fefe82","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c5dd19060a239057fde3beb8"}, {"anchor_id":"aoa:aoa-techniques:anchor:230ccd6b97439f8e668e242d","artifact_kind":"document","content_hash":"96606f264cf74a8de815bac9f73847684e3a4fa1e7e4d8a0f14bad2842f19f88","id":"aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:01541f4609ce062049479c40"}, {"anchor_id":"aoa:aoa-techniques:anchor:93ef0ebf5a33bb20ad038cda","artifact_kind":"document","content_hash":"f1ad900ccbd3aa8940a1856cbd854794af8bd6ccf1f55af0d01470bab7d6c8ba","id":"aoa:aoa-techniques:artifact:6350baca8fc603ed8315477f","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:21860d43e25f59047e8342e4"}, - {"anchor_id":"aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","artifact_kind":"document","content_hash":"87244db585a1d8c988ae76c7509a0590cb5fe16b5dae520d0bef84051c92233a","id":"aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f7913789f5ae43b0e142eb8b"}, + {"anchor_id":"aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","artifact_kind":"document","content_hash":"f5824a60743b3079aae2e1ffdffae83d53498f949ed6b696f2101b55d777e7ef","id":"aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f875bb9d39e546701b63df85"}, {"anchor_id":"aoa:aoa-techniques:anchor:1f8b8af58092484be17ce6b2","artifact_kind":"document","content_hash":"d3a3c67b50e5d0455c127b82edcf79dcc8cd1f34ef2819c7bce44fea49737fa0","id":"aoa:aoa-techniques:artifact:f444d5f6f7157618cd89c466","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:337333f566cc95626abf9fea"}, {"anchor_id":"aoa:aoa-techniques:anchor:600c582f43a21dc7a3c09ef5","artifact_kind":"document","content_hash":"2a95b3a44d89eaa0acd6a1de1f77cc14e27d76625b23b3cc4f1a1320e61c6366","id":"aoa:aoa-techniques:artifact:d96368a93dd5c19b08e5401d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:26056602d499c08c9b2a2012"}, {"anchor_id":"aoa:aoa-techniques:anchor:7c8c069e656545ea884b926b","artifact_kind":"document","content_hash":"fadeee9cab4f88b7f1d28be9f43f77b8f3b98fbada23a2a3ee77fb4534024966","id":"aoa:aoa-techniques:artifact:826afccac9b1261d23f89f8d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9ef0d05388313c94a940240f"}, {"anchor_id":"aoa:aoa-techniques:anchor:deed7f8749125ba10207f02d","artifact_kind":"document","content_hash":"a95513813a68317bb38f73b94efad3a59f1fb6c5c230aca5593bff757220c02c","id":"aoa:aoa-techniques:artifact:ff3eb7e7bed98dc8dc74ff0d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:62e85130c9de507272622692"}, {"anchor_id":"aoa:aoa-techniques:anchor:09d36f42cc56bb63868eb07c","artifact_kind":"document","content_hash":"c35c639808f99ab4c7f90c4813484ef3a6c3baf9c039e2c292890fbb73adbdc9","id":"aoa:aoa-techniques:artifact:a82a2d1eff854a5b62a3f523","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:505bf0087827976419d85958"}, - {"anchor_id":"aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b","artifact_kind":"document","content_hash":"a32b0d084f49f9a28789ca867f4a96dda499da939578ba7316a566ac00fa6151","id":"aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:beed30414178c63ddf6c55ad"}, + {"anchor_id":"aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b","artifact_kind":"document","content_hash":"111a0575428bbbb4b514cb153661758778fc3faa6e4ad272f691edde33bb8db9","id":"aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:59d50e77fd4eab8db462a0af"}, {"anchor_id":"aoa:aoa-techniques:anchor:92db231c800c61f3503df8f2","artifact_kind":"document","content_hash":"0eabf053287899fe12e07f1876a9b594a4b163b3ee2ff7f91f33195b9a90998a","id":"aoa:aoa-techniques:artifact:9bd5382d28ff305374d89d34","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d49c94255e5e320e805a46f2"}, {"anchor_id":"aoa:aoa-techniques:anchor:f624522a9f1d82cd0ee722f3","artifact_kind":"document","content_hash":"43e641cc0b909cad121d49be6f34ea214c38b87fca741185d53b22d19f352e8c","id":"aoa:aoa-techniques:artifact:725d04e0beb9e29e171d02cc","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-wave-a-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:358b52446acc9daec8c83e41"}, - {"anchor_id":"aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd","artifact_kind":"document","content_hash":"32c302e003792ab1ee05c9ff712cf15895fe6d8e885089e1d51b99e42f69f436","id":"aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:51bc27a795c164fb24a83752"}, + {"anchor_id":"aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd","artifact_kind":"document","content_hash":"4f78eeee1f36066e00dc3ca7c78823a2ebd453fdefc6a1676c13ccae2902b3e0","id":"aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9799854c70e40b2be5ce7993"}, {"anchor_id":"aoa:aoa-techniques:anchor:9653ec36aabc5160baccf4ac","artifact_kind":"document","content_hash":"d949226fe533e0059fc4d899068a0c17f30ef597cd4db449a8cf24586dd02c21","id":"aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:02a86336fe37584b883520ac"}, {"anchor_id":"aoa:aoa-techniques:anchor:eea898fb94871ed85902ab69","artifact_kind":"document","content_hash":"66ebd449b498620343855dd57f5521b817b38b2c2d779453d0ce86f0930d82dd","id":"aoa:aoa-techniques:artifact:02725fe911d71d32505fc6ad","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:727e0d5b352976d65aaa852e"}, {"anchor_id":"aoa:aoa-techniques:anchor:fb8edd4e9dcb000601e5c7a1","artifact_kind":"document","content_hash":"b92bb8cdd04ac99b62a0035743dfc6e387c4f60e122db53f4dca98ef02a05d27","id":"aoa:aoa-techniques:artifact:020bb8fb4c97a84728f69dbd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-wave-b-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1d9a9604880a8f5d99053554"}, {"anchor_id":"aoa:aoa-techniques:anchor:d4df5ac720c1168c777e2a9f","artifact_kind":"document","content_hash":"ca965663b6bdbe7f5f2777917ed367fbf30dc2a50348dbb083591b59c22fdffc","id":"aoa:aoa-techniques:artifact:e0fdabb85c8668f75f6b7d80","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-wave-c-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8857ae36875e7eb91fbd6ce4"}, {"anchor_id":"aoa:aoa-techniques:anchor:3b2d233f15714b0a091488cd","artifact_kind":"document","content_hash":"f2cb07caa966ef17b722b027fef6e03bc3ef0218aa98a4ccf665385bb3414202","id":"aoa:aoa-techniques:artifact:02b9d67150122bff94236586","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b377241d7a43a5e1ba849cf2"}, {"anchor_id":"aoa:aoa-techniques:anchor:a4aedfcfc1f2d1fb2d1e2c53","artifact_kind":"document","content_hash":"d3386d41c014882c2bf35202f723becc1b1c62a01955da468d8208e23d84da69","id":"aoa:aoa-techniques:artifact:4cd7f4f448c2b0321fa9fdad","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2ec735d0a15f2dece945f3a2"}, - {"anchor_id":"aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","artifact_kind":"document","content_hash":"c1d6a27422718eae59ed695ee761638c906db837a1451bb60a11bb47437928c2","id":"aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:07fa9abb4de8131ab89f2cd7"}, + {"anchor_id":"aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","artifact_kind":"document","content_hash":"e1b2a2bcc7b614993dad96389e1752e6cd96aa7022f23cb141307d3b11ebcb64","id":"aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bc8fcb69058c843e9b686fd0"}, {"anchor_id":"aoa:aoa-techniques:anchor:d007b12507d20e024679d537","artifact_kind":"document","content_hash":"62b607fa85d65585ada915e55a9fd83e95225b51b4842badd7e554cd9a6abe5f","id":"aoa:aoa-techniques:artifact:068f1b1e753aadb4ac7af2fc","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:33a407859b7e73ab3d0af026"}, - {"anchor_id":"aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","artifact_kind":"document","content_hash":"eb48e205b734a6d826e125c7de0cfad41e1aed51f045f50ee15df7e3cf44af2d","id":"aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bdb455fa106e55a084ab8579"}, + {"anchor_id":"aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","artifact_kind":"document","content_hash":"7bf7a93cdcca7cc58a21440cafc7feae1d8ec98dc64f86a2f20ddadccf2c43f9","id":"aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ed4ba7b30f741da03b593660"}, {"anchor_id":"aoa:aoa-techniques:anchor:8ce7aec5aa70c36407699fa0","artifact_kind":"document","content_hash":"ed7317f36f688f6342632f46a459ec3dabc952b333f88c7db77ba6e58ed91791","id":"aoa:aoa-techniques:artifact:162b12067e96cd5aec11d4f3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bbabfc7ed55265ea39c41732"}, - {"anchor_id":"aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","artifact_kind":"document","content_hash":"d080c82418befed9d9eb94561508b48a8ce61dc9fcada5940f311587d218b764","id":"aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:742a0b00da02da97a68de323"}, + {"anchor_id":"aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","artifact_kind":"document","content_hash":"57bf526e82680fd90418cc27e0c0181d3f6bc7985d63cf4444d5e47dde7cffea","id":"aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2876bbe29d70d6c7cf4a2a45"}, {"anchor_id":"aoa:aoa-techniques:anchor:b07d1392c7862697dbbeca08","artifact_kind":"document","content_hash":"a1cc463d0dff42ca4ebd3be7ced0746fd5a5b554da11d9733cfc32c1480ad86b","id":"aoa:aoa-techniques:artifact:d1a9d831ec2524b5d37880b4","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:df3933dffe529514787cfe21"}, - {"anchor_id":"aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","artifact_kind":"document","content_hash":"3b630289df6edfe51439f372312f94d403cff664eff5d0c0ce2e67711a7d4185","id":"aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1fe7358a16201d805939104b"}, + {"anchor_id":"aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","artifact_kind":"document","content_hash":"1647146c2720f5c822d9e6ec80f27db33bd57aa5d2120b29517e32c004168ba2","id":"aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:90f11c31793a5ddc8e6634d0"}, {"anchor_id":"aoa:aoa-techniques:anchor:a49e9cb33e1091d62de9a3b6","artifact_kind":"document","content_hash":"0cf49dbdf7ab8773c384477edd2a3089e2e1dfc21537fae526f7fd64bfcfb4e3","id":"aoa:aoa-techniques:artifact:331fb050b9ee7573ef318347","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b83af92e3e11a6d7d4ca73cc"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","artifact_kind":"document","content_hash":"0f83ac2a237928fdd4fe3ce6f965e0412006c522ead11507bb100dc5961d8f99","id":"aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:883cd7c2e8f9f7f55a55215e"}, - {"anchor_id":"aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52","artifact_kind":"document","content_hash":"8d10595f1a474ae2949f22e6eee481383defdbea894adc88514e18450f5da144","id":"aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f6a556908a9b898af40a1786"}, - {"anchor_id":"aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821","artifact_kind":"document","content_hash":"2e98b56919f2171c08e69ed66fdb1a94e601fcd0e837fba78e032b72e9172d5b","id":"aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c7830a669e760747df706079"}, - {"anchor_id":"aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67","artifact_kind":"document","content_hash":"82d6e159b2dd36051911dd95b84a5e8d328614b4d1537636a2834e1c75f86a38","id":"aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a67dcf605b732973b6c67443"}, - {"anchor_id":"aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628","artifact_kind":"document","content_hash":"d362558cbf7b444f360ffb33962852fdc6879e83010a131bec6a061901f0b1ad","id":"aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fce8f46182dbe916fa9b3ca7"}, - {"anchor_id":"aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab","artifact_kind":"document","content_hash":"a9acba67e5e7545ad290f7212ad9c723b509219691f9699502a50d64a601d5f1","id":"aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8bbbd58616bbf1859c9fa6d8"}, - {"anchor_id":"aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03","artifact_kind":"document","content_hash":"97aff5be5121d5e130feb1df0e6f151782bd7f812a8df2a7c62bad5257a84a90","id":"aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:16b8be88c6ecca37674843d1"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e","artifact_kind":"document","content_hash":"52471bb8f9f5326b426b0bf89046f30f0f643af6c9578f16f2f1410171d43f72","id":"aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:925685717aae7d74a7803310"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e","artifact_kind":"document","content_hash":"5173c7bdc3ed07254f5d3d0f7914493a1839809ce09c7f744fccae2180c3a06b","id":"aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-a-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7ecaa2cfc289b981c0bb37dd"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355","artifact_kind":"document","content_hash":"0a4c3fc28dab1fddeb0df82533996db8a77281bdf3ea81ce64ec001a07ac01c5","id":"aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-b-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:02c2f293a1202c289f86f8c2"}, - {"anchor_id":"aoa:aoa-techniques:anchor:a8aadf942643495c9581c021","artifact_kind":"document","content_hash":"c7ec01aafce71db828d83e6e8211b75ec8e12ef438453907a3756cd2a1e565c4","id":"aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0408355451120f54a260689d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","artifact_kind":"document","content_hash":"e9226341a83b6b55ee868198e68f50d33bd8627f8d1dc33a315e54ccb4793e22","id":"aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ccd4ac037fb12bd8db37c1a4"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","artifact_kind":"document","content_hash":"4bfe8fbe11c48d1b0fa550d360ccb2f5fb1a2fce3d0503f38637f39d49d72d31","id":"aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:88a31a547b7c3d0e87abed8b"}, + {"anchor_id":"aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52","artifact_kind":"document","content_hash":"a28d23b1b002bd71261f5fc598ca01e6da6a27b11ec338bbce17006f4c0554aa","id":"aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1577a0f913efc3921cd43237"}, + {"anchor_id":"aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821","artifact_kind":"document","content_hash":"14f533154ed36de6eaacf6b71cc2c5c9134b9a0bf843d49d7e289fad6a227356","id":"aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ae6b371dd228f717cdbf5012"}, + {"anchor_id":"aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67","artifact_kind":"document","content_hash":"a9c80e99de63ecfb618753b6871729706e46ebf44c7e6fd515ace438303aace6","id":"aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0d2b3964dd9bda40ee753e21"}, + {"anchor_id":"aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628","artifact_kind":"document","content_hash":"1b241312902605736060dcf513296a2f57768cd23f30e72c813cf3213f7d94a0","id":"aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:09447aae33ba88a634c48872"}, + {"anchor_id":"aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab","artifact_kind":"document","content_hash":"69eb22b5eb6e435d37ec067279143b14990854d7cc4167feb2a8ad55a5613191","id":"aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2186b2c5f14004be309ac671"}, + {"anchor_id":"aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03","artifact_kind":"document","content_hash":"5c4890c47062410ec446b2cad3ee4558e8e859eb16b6b8f4bbedee77ad14899d","id":"aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c796189715e36a5a20b64186"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e","artifact_kind":"document","content_hash":"eac53b946219d71e3f3765fbd79c01e28e1fd450a918786b3c456f17db813be1","id":"aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b087ea953c6cb9bf58575ea7"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e","artifact_kind":"document","content_hash":"9bc1e57c29626827e1d9579d3d65f8c29ce351b160f3c0c77c8b8525daae8d33","id":"aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-a-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2b8d0a9f9d1f9222df85f3ba"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355","artifact_kind":"document","content_hash":"9a39e8813742b0005c23a6e84bfd27869e2a882dc7b170e50b56bf1f0949e2ee","id":"aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-b-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4777835d6c351b04e0845d74"}, + {"anchor_id":"aoa:aoa-techniques:anchor:a8aadf942643495c9581c021","artifact_kind":"document","content_hash":"c867755f2b319a6feeb7afbce7a2211f302fa468fd2342479c0f1f308df3b864","id":"aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c5b32387baeed72d0f564621"}, + {"anchor_id":"aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","artifact_kind":"document","content_hash":"16e9827badf2ebb2a1b039f9b566721f35a667da81b81b0175b59f12fe7f58e9","id":"aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:26a9c6bb7cf45b8ac278531a"}, {"anchor_id":"aoa:aoa-techniques:anchor:b560daa43cd9d3f6ef1e48a5","artifact_kind":"document","content_hash":"3559286eacdfca5ea7a350c429e53d8822f96a70738d1eb423e1a7190e9d5b7b","id":"aoa:aoa-techniques:artifact:c00bb1a986ec29d86f8448ef","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7d134648c045d81b4ff6fdae"}, {"anchor_id":"aoa:aoa-techniques:anchor:6ea51c6712643e400a0286ac","artifact_kind":"document","content_hash":"1c06471ec56cc7f40675e2ab1f97e227be1a615aba2ad1daad09bf462db62b51","id":"aoa:aoa-techniques:artifact:366b800f4b86c83ca4fc1323","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9366791b860220a25ce196a7"}, {"anchor_id":"aoa:aoa-techniques:anchor:452e8e06956baf3e39635f01","artifact_kind":"document","content_hash":"e048d3e6c5d73278803c839a42a8f0afeb77612125cef69fda0d8a86e8213088","id":"aoa:aoa-techniques:artifact:8de898f47e9e3b0854d71aba","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:52bc7f0439583ca20cd3bee4"}, {"anchor_id":"aoa:aoa-techniques:anchor:5aebd19b24796bf16d32f3be","artifact_kind":"document","content_hash":"5fa5d75e1e40b22836c14fc2088040ac6885f0e67184d3ec892a228b7556153b","id":"aoa:aoa-techniques:artifact:1bd931ce32fb23c3d04421f5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a822e63374657580a3364ef9"}, - {"anchor_id":"aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","artifact_kind":"document","content_hash":"4cf40d87cb91e821279cdfe1328927395ea12b178ac08e81bd95ca3ce02a1fa1","id":"aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e79569f32d932adc2f093f50"}, + {"anchor_id":"aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","artifact_kind":"document","content_hash":"6af2cfb4c3bbd1f61689215bc8f097464edbe363d859dc4879e3f1703afbed97","id":"aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1ccc5da7e51502049cbaf6f4"}, {"anchor_id":"aoa:aoa-techniques:anchor:bf297467bd18e3f905f8cded","artifact_kind":"document","content_hash":"9769dafb22b7acef83b1aa626d3bd3676ae8369984edad408f26bfc225db2d27","id":"aoa:aoa-techniques:artifact:90067aff1a4f98e3aff450cb","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1a5dccdb3d3b31411f48c841"}, - {"anchor_id":"aoa:aoa-techniques:anchor:361103f961f909f4c123433e","artifact_kind":"document","content_hash":"c1b3d8fe070c521d338b55c678e93875fad51f8eac777bf682182eddbc2da5ce","id":"aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0939ad50767168ca39614e71"}, - {"anchor_id":"aoa:aoa-techniques:anchor:116da7a2029997226c834014","artifact_kind":"document","content_hash":"9c3cf6c51cbef4379290615dabf85d9a106428911a8de5b06cdd9de7f4605118","id":"aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:642ccb35bd52cb709591247b"}, + {"anchor_id":"aoa:aoa-techniques:anchor:361103f961f909f4c123433e","artifact_kind":"document","content_hash":"0380930cc3287f72c5baa93881a8bcdb96cbaabdd357d0ce5cfdb08b23db1cec","id":"aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:769f5c7e5fa527f09dc3bdc5"}, + {"anchor_id":"aoa:aoa-techniques:anchor:116da7a2029997226c834014","artifact_kind":"document","content_hash":"7581e9c59a74e1c290e99169df70c5b0302f66d1f4763b3c24c6db0e7884f0c4","id":"aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c5805521997e769863958c35"}, {"anchor_id":"aoa:aoa-techniques:anchor:e59b2b40078eeef86eb33dcf","artifact_kind":"document","content_hash":"1704aafccf970536db83477cc32158ddf24c5d13fe7db0817c33dbc3ef8933d9","id":"aoa:aoa-techniques:artifact:33de82121c5e5c731af967ab","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3c93fa6590d30f459929a68f"}, - {"anchor_id":"aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","artifact_kind":"document","content_hash":"d6cd0e83a4c4f9c1b12edd262fdb096008ef789f942c183a245ae1305f665d4a","id":"aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b8c812cfd748e695f18c8507"}, + {"anchor_id":"aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","artifact_kind":"document","content_hash":"cf2c7bdbe59777b4a84b22147fe2a381a0f7b587df28c56430d2e62fe544fb16","id":"aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3a586e913b1a4846b82f92e4"}, {"anchor_id":"aoa:aoa-techniques:anchor:72a969368dcbd0e1c7b42166","artifact_kind":"document","content_hash":"da50a1f09fe358c82b1eb7ca6e79884bc01383475ab116c24246200720d09667","id":"aoa:aoa-techniques:artifact:577c1d0e02c2508128663161","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3c00d9af5f104b650a6f6e3b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","artifact_kind":"document","content_hash":"c6b0db7f8c31612d204b07c63d6384e421b8772445a57b5f68f16fe582b6535a","id":"aoa:aoa-techniques:artifact:c9107011968421971fabafeb","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9da30d853680dca629074a7f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","artifact_kind":"document","content_hash":"9789eda1aa58ec86d62e45426b8652502815d80c5bc172730abb013a33fad6d0","id":"aoa:aoa-techniques:artifact:c9107011968421971fabafeb","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:359b7e8a5a6accf8f0813a87"}, {"anchor_id":"aoa:aoa-techniques:anchor:4a265c97c7a9faca1d98e672","artifact_kind":"document","content_hash":"2e481c9e6fc06d77e3e29d6daa211c4a6ac30a557a981f892afd3041cf996660","id":"aoa:aoa-techniques:artifact:31bd9ed4776744c6bee438e4","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fd6bd8b12d22787c7e6baae8"}, {"anchor_id":"aoa:aoa-techniques:anchor:613461552c83841bed52c351","artifact_kind":"document","content_hash":"f3424ed514fe56113e7512d10af0271bb609f76dcb04ab372d98f211c5d63413","id":"aoa:aoa-techniques:artifact:dcca45fa1ecaebce1e627100","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:aa6a01f42ef8530ef55c3e14"}, - {"anchor_id":"aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","artifact_kind":"document","content_hash":"ff51a82efbeff849b7159430b0915a703285a6eddc34c2ccedce5ec420af1a92","id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0a2793ab75eda3fefb599ae2"}, - {"anchor_id":"aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","artifact_kind":"document","content_hash":"1fe896d68b0facdd97f48281901a4b06fee8f8b910e45410e6b27fbb85c24ea6","id":"aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7b6e76076d216caa80f86956"}, + {"anchor_id":"aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","artifact_kind":"document","content_hash":"88441d03a6ef8a5bdd37137dc9b58f48e4cb8c9ba07810c348071551184492c4","id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1aabf5ebda24b0e088472d71"}, + {"anchor_id":"aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","artifact_kind":"document","content_hash":"9890f5fed35ef6de4b6d75937a3b2dba04d8424fc730672b137166d58693b6ef","id":"aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:035b4b42b44ec2d8686175bb"}, {"anchor_id":"aoa:aoa-techniques:anchor:0a58ef71ee17c1ccb7701f25","artifact_kind":"document","content_hash":"efae1b065f8dd711fa5a4a410fba5c0441f796e86ea6306ffcef67d4ccaa0322","id":"aoa:aoa-techniques:artifact:28d2e503ac2d2a27e1a10092","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f79f2117ea0637f84265b1b0"}, - {"anchor_id":"aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","artifact_kind":"document","content_hash":"bf2bc9967ffd50cc45d126d3ff78a9f381b8136980c60dd4ef7e00ee6da9a790","id":"aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b7989edabbd3ccf36a38b6cf"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","artifact_kind":"document","content_hash":"94b6d2995b045005e7fdd093526bbb84244aa5beb415b71855ccf9ced1120c22","id":"aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ef6e276d493bc58f2f2531d0"}, + {"anchor_id":"aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","artifact_kind":"document","content_hash":"7bf713796ed0fa8af128c45ed37de9a2395bc59c0d45c1894cef4170a6476ce6","id":"aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4fecb15a76652a4e9e17d7b2"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","artifact_kind":"document","content_hash":"0de6fe97c9901c26f3dc952da00a2acdcd2832583c91559ef7d8209d884b0d28","id":"aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7da2ddeac36ceb42cb564e4e"}, {"anchor_id":"aoa:aoa-techniques:anchor:4c90d2731db9899463d26522","artifact_kind":"document","content_hash":"361dd6be53218868a60a75d1c41d429bce89c9d2f8cc2d3b40b0b3056a9a7091","id":"aoa:aoa-techniques:artifact:ed41d63e9981165c3bbc8857","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e839cb962a99f9617fb8ce41"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","artifact_kind":"document","content_hash":"c1165ed6258054eb957ab49918add9ccb6962ba7fd22a93fc1a228c5fcd97a38","id":"aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9dc562b50bf6f9bdcf55b309"}, - {"anchor_id":"aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","artifact_kind":"document","content_hash":"0f4c69a800e9679c0a8a85a19bbd0957e714a5a6f79e0b95ac47b572d870aa67","id":"aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fb7d401dfccc5a54308ae751"}, - {"anchor_id":"aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","artifact_kind":"document","content_hash":"69264fcf2439cdebcd52885eb148f5ecd49703c663825f55b6a9e8ec7e5f0fc3","id":"aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:32d79caddf8360b323d6dd8f"}, - {"anchor_id":"aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","artifact_kind":"document","content_hash":"2e66e32fe075f5d50f80f3035f4a7bf44f2eae975e8f5f91f0f7de668a7f4fae","id":"aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e58e0b7d44be0c1a06e5337e"}, - {"anchor_id":"aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","artifact_kind":"document","content_hash":"859e38b8bb12800863e6cf04edbcafb2abd3d42c6ab22aa8672501394ad71967","id":"aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b51dd116acf02094ce2f7a15"}, - {"anchor_id":"aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","artifact_kind":"document","content_hash":"3fd432b492a458c3cfd7a67f8892f95fdaa198aca78062413719631f07ceeff5","id":"aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9d649fd23469c0ef67d765dc"}, - {"anchor_id":"aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","artifact_kind":"document","content_hash":"3a0264d4534fc32835aa8e9e4a753a2b3d91fa3af24e30a8b796d90a23414975","id":"aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:df0fa434acbeb45feb9d7728"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","artifact_kind":"document","content_hash":"fc63dceb1fa3d0762c08ea646e50e95911bf5014b7713c15c1dbcf3ca4fefb4b","id":"aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3e45ef9b89a32c97722449da"}, + {"anchor_id":"aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","artifact_kind":"document","content_hash":"1d1aca7fad9880eae825d967d8bd9e0971b2e058628900b6c7e4da6b10ca01d2","id":"aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e7fa5f4ae19b14657413a287"}, + {"anchor_id":"aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","artifact_kind":"document","content_hash":"e01b0438cd29418b269a4271ff3dfc5d7fa4daf64f93bb03395c8df6d21b2293","id":"aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c8d96a62e66493f26038d570"}, + {"anchor_id":"aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","artifact_kind":"document","content_hash":"57472290306e66fce766c46450557414ee04ef33f1e6af3137be49ab1ad02448","id":"aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9304c17929655663ce11515d"}, + {"anchor_id":"aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","artifact_kind":"document","content_hash":"f3177aaa3110c396c73066ceba8af6b069accb1b850e86131c4f824b567d3182","id":"aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1d964184e3c904b8002951c8"}, + {"anchor_id":"aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","artifact_kind":"document","content_hash":"9dca2eaed91c55471f9de083a25c3021485a88209f3a64692f95c0808239888f","id":"aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:09c0d5ba8fe2ecd25ae39bb2"}, + {"anchor_id":"aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","artifact_kind":"document","content_hash":"91592e5879bf7a11976ceb94071e325a1e3fc75b58f590c18955b2fa7b44c0b4","id":"aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:62c67e854b1f4f6401a9a6f1"}, {"anchor_id":"aoa:aoa-techniques:anchor:b4fc9193eeb8bec23196d74a","artifact_kind":"document","content_hash":"692c44af4a48c49e04602b01cbad37cbeecc4459495828accf1a8456357459d9","id":"aoa:aoa-techniques:artifact:a97d8942d149af1b82453153","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:eef185dbcbb2843d6dfb7bfd"}, {"anchor_id":"aoa:aoa-techniques:anchor:49869e1b92146765f59c96ff","artifact_kind":"document","content_hash":"0d52bc6272b47303a90a2ce2267e417ed6eee4091e5e8d60ea7828d99ab86385","id":"aoa:aoa-techniques:artifact:406d0a2cdc8e2dd75bccb45d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:952adec99a2170847b2f3071"}, {"anchor_id":"aoa:aoa-techniques:anchor:4b4976023e495c834125bfcd","artifact_kind":"document","content_hash":"87c57a1ca5295213ef5946d6a8e5b2294f92edcd3b8db99d2911e8f9ec23ffe3","id":"aoa:aoa-techniques:artifact:b8752e2dfab43b33fff12bfc","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2ddf8f0d8602b976506906e8"}, - {"anchor_id":"aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","artifact_kind":"document","content_hash":"c7e8308d9b081a1f13a887efe35b599c4631ac8e6e19c43817d1581d128b5dc2","id":"aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:39db7d76bb01f399ca086c29"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","artifact_kind":"document","content_hash":"6689e5533962862e42f1a11af7da5ac1233a1d1dbc549cc4850947ebae8225bf","id":"aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:118d689afec79cc1c5ecd09d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","artifact_kind":"document","content_hash":"bb52bfe732a869da475cb05e2c2d09f71c19d51b5613de5a593b22083c317fd1","id":"aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:76818b8e8b338d4f5008d463"}, + {"anchor_id":"aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","artifact_kind":"document","content_hash":"2ab73bc37df37241234b4abe64e5f43c99bfe465e473e6715ff92003be1c005b","id":"aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4564402560b67fcc2bd22a0f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","artifact_kind":"document","content_hash":"3365169d47987a78b40dbd810103a9483e8a8da9523bdd3ab918346c386ad3dd","id":"aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:388904ffc4ca7927c7648e81"}, + {"anchor_id":"aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","artifact_kind":"document","content_hash":"ce6c71bd9745a92ac845b85ce5f86fa6f9e8bd3b174226e33e42b4e5fde6b1f3","id":"aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:abec45c7e17347227047cfdc"}, {"anchor_id":"aoa:aoa-techniques:anchor:a24137ed4f39b13cf69ac833","artifact_kind":"document","content_hash":"3fff1a0667a66fbb8962779d9067e66c864e9f1c16f0c049f1e16f917f46520b","id":"aoa:aoa-techniques:artifact:31a6a3ce9244beba872569d3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5215ddafe6b9b8ba79a54686"}, {"anchor_id":"aoa:aoa-techniques:anchor:bb01040578683f99cd6e58cb","artifact_kind":"document","content_hash":"df30144161d65343e4bf0612bf6e65b1c11ef0d8eb3edc24f458a784c6956511","id":"aoa:aoa-techniques:artifact:d1724b1d0fcb3bd4e94adfd5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a18ac66e8962af8114eea78e"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","artifact_kind":"document","content_hash":"d8b0fce9b5596e6c853317ddf2329d536274be1dcdc189e5daf00dbc519e972d","id":"aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4832f63c1ae95862a9bfe332"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","artifact_kind":"document","content_hash":"9c04accb2d92e021c5334e9b24dc2de6b1480e1ded34abcf84953592d324c42a","id":"aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5d6a870e40b38b9aaf4db5ae"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","artifact_kind":"document","content_hash":"3a2c6c5337139cefc16df79972f2dee84af1f6e6649143c17fa483eb18b9404c","id":"aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7134c37012605bbccf029f96"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","artifact_kind":"document","content_hash":"a4093dd20c27c4910b20168075830a915d1d7abac6ddd645164c51f662628558","id":"aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e45eecf01a6e379c9ec44e92"}, {"anchor_id":"aoa:aoa-techniques:anchor:4fe36c7dd7093f65d8114e3b","artifact_kind":"document","content_hash":"22b974e104379a27c0a2ee9ca404bd687358565e9ac5e0e6d51def2b580d1b3a","id":"aoa:aoa-techniques:artifact:01a70f8ddd540893b5a82d72","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f35e61499b83dbc317f20daf"}, - {"anchor_id":"aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","artifact_kind":"document","content_hash":"47c73a4708c0369de8ba74cbc243e041d1979de29aee757f04f47b7942f165e8","id":"aoa:aoa-techniques:artifact:183461d99a40009516486c0e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:230659517cd83870e30aebda"}, - {"anchor_id":"aoa:aoa-techniques:anchor:5049b1246255eab985c0f688","artifact_kind":"document","content_hash":"53d8ac63f6d21d3d5bc0c420c055c6713ecacaa5c4f0f38f5b014adb23bdf99a","id":"aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fb9423a8cc10473e490144a5"}, - {"anchor_id":"aoa:aoa-techniques:anchor:2914a4a235947730804edc19","artifact_kind":"document","content_hash":"2bf7d48674e975d523c038f4ebc47ae2c8cb55b37fff60ec3a2a4a0ab58a3ad7","id":"aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/TEMP_OWNER_BOUNDARY_BRIDGE_LONG_PASS_PLAN.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:371c61e801b24a616d98a50a"}, + {"anchor_id":"aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","artifact_kind":"document","content_hash":"d48775d5f3ffa6ccb41de4d118fb650b12772d042dc60f34223dea5d1310e15e","id":"aoa:aoa-techniques:artifact:183461d99a40009516486c0e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6d6d79bb62761c0968874609"}, + {"anchor_id":"aoa:aoa-techniques:anchor:5049b1246255eab985c0f688","artifact_kind":"document","content_hash":"beaf6b6d0ab31069e8c2a154a3350f8370a7d7ed09bcc5967be720dd1905a664","id":"aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:57a9ec852e3a5d24598dd207"}, + {"anchor_id":"aoa:aoa-techniques:anchor:2914a4a235947730804edc19","artifact_kind":"document","content_hash":"5625a74c7f40b24e835a2c5837aaed63c3c2ed619dc3f3c25f323ae2037efb11","id":"aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/TEMP_OWNER_BOUNDARY_BRIDGE_LONG_PASS_PLAN.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:dbb762d013be9739389f337f"}, {"anchor_id":"aoa:aoa-techniques:anchor:305866d803086f7e98a58e31","artifact_kind":"document","content_hash":"a6ae7cb78de7cc4f0a40b57470183257d99ebc90bc923141bd7469bf010da501","id":"aoa:aoa-techniques:artifact:c7f5d25fc63cc0a96b9735c2","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:448cda1669a6503b68d30e3b"}, {"anchor_id":"aoa:aoa-techniques:anchor:2bec5bdf7f5bb94a14c386ba","artifact_kind":"document","content_hash":"91dbb2fc316e4e14e38687ce745e35fa7d9a23de8e09f7d2e47d55883bbf7353","id":"aoa:aoa-techniques:artifact:c7008657e0ae2e93ff9f9bcf","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:552ffa39b3744a97d799534a"}, {"anchor_id":"aoa:aoa-techniques:anchor:fdd86ac3dedd571c779f0062","artifact_kind":"document","content_hash":"a3e6af4b80eba1887813bf2bcfda44e1544e9a3068035ff96954b5488e5cdf38","id":"aoa:aoa-techniques:artifact:9671af65d12915bba6df468c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e63fb7ee2f2ce9f5f5321a5f"}, @@ -879,8 +879,8 @@ {"anchor_id":"aoa:aoa-techniques:anchor:706c86a7a45ad63e22fabdec","artifact_kind":"document","content_hash":"d4fc5357c8ba6573c35d7be55d2b06135d4a1c005d3d59259fe3ed8458b45ab9","id":"aoa:aoa-techniques:artifact:e8b51cf0ee49407040e14967","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:904053b54edec3a6846ae33d"}, {"anchor_id":"aoa:aoa-techniques:anchor:e2d905475a1e1b31afb5976c","artifact_kind":"document","content_hash":"2100809fb3552fd705f33cdeee4304aeb8f39942077fdb2013e8118426d70824","id":"aoa:aoa-techniques:artifact:cd86ffaf0ac8b5ffb3d7d7cb","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cd9666ccc31d0ef2824c58fe"}, {"anchor_id":"aoa:aoa-techniques:anchor:f91073f609c8ed98eecdd4c8","artifact_kind":"document","content_hash":"228337077fd8756deebcf80f0f16872aec4b10865aa84078631e9e2333d9dad8","id":"aoa:aoa-techniques:artifact:c378e0bb4347b59a1244c35a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1e506fd0959a64968921a677"}, - {"anchor_id":"aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb","artifact_kind":"document","content_hash":"a06581dd1041c83a899497d7086a09684f98c68fb205f90cf887e4d3a724d706","id":"aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4e3709c06a203ca028e96a6c"}, - {"anchor_id":"aoa:aoa-techniques:anchor:c22c249c88b41751271e550e","artifact_kind":"document","content_hash":"c8b3f55058e9cb439298cf4eb7465ccdb1907cb05d3f427325658a201a17a2aa","id":"aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:92956729e6e2b0efb352648d"}, + {"anchor_id":"aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb","artifact_kind":"document","content_hash":"1925eb1e60452a7ce8cbac0eaacae18d8c6b2b017d1126b68304179b0b639b8f","id":"aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:185aaaeba45e969d4e19d497"}, + {"anchor_id":"aoa:aoa-techniques:anchor:c22c249c88b41751271e550e","artifact_kind":"document","content_hash":"102ba42a94616ff76d6d4c3887c758193a37c8da4def3b8de1db8f337b310228","id":"aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1fbbcb37ac20a1a3f4059c18"}, {"anchor_id":"aoa:aoa-techniques:anchor:699ad6faae43c4f3b7ec0053","artifact_kind":"document","content_hash":"85144fbb7a6d9127e540f5633078cf79f302b4cac81a6724a9664323454e6072","id":"aoa:aoa-techniques:artifact:a5d8ccba85d0a3c70b399526","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b1a6fbdeecd24f3f00d10861"}, {"anchor_id":"aoa:aoa-techniques:anchor:bc6d13accbe0a13deb572ee6","artifact_kind":"document","content_hash":"e496174dcc48d51e7b3bddbbca14280aae633d59b36e74eb7260efc7900390d0","id":"aoa:aoa-techniques:artifact:9be1ca9680a3adf4cf38e13a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:36be919f29f525affeba1948"}, {"anchor_id":"aoa:aoa-techniques:anchor:69b605d67753b11dbd164f0b","artifact_kind":"document","content_hash":"575a69f402b8cd0134615cc18e10d5fccceebc3c125d2ef687c10186eda19f90","id":"aoa:aoa-techniques:artifact:4e66fdff1d365acd57cbf978","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ca1c926d35abae25e7d5d78a"}, @@ -889,15 +889,15 @@ {"anchor_id":"aoa:aoa-techniques:anchor:6730f2ba972d7e4b6e8556e8","artifact_kind":"document","content_hash":"08886e9737bee5a17028f4b218d515ab5bae8b73dcab00afd956860eff12bfdd","id":"aoa:aoa-techniques:artifact:b77ebb6f44579ca40ca922fa","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6c6d5f0cbc562af098d00007"}, {"anchor_id":"aoa:aoa-techniques:anchor:9c98aa48b4723abaa35ef21f","artifact_kind":"document","content_hash":"9b68a9f0d3e6789ce31fae0354c373341811174b585a67a162ff223832359824","id":"aoa:aoa-techniques:artifact:d28a9f0415aee8fa14596dbe","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:95b3a6ffad542cbb5e16afb7"}, {"anchor_id":"aoa:aoa-techniques:anchor:4035531165582a1dc864a388","artifact_kind":"document","content_hash":"b4a77ec867b5ee7a09b1038822b3741930f6dd5934d70b5d89962a389d79c28e","id":"aoa:aoa-techniques:artifact:53b5a894bcdc854168397bb3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a0687bed561d3b8adc0dc009"}, - {"anchor_id":"aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","artifact_kind":"document","content_hash":"bd0f1d73fb26f434143e7e240a59777aef7754bed569541f69e30d374f76a719","id":"aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:870e641fcfa0664c10777c82"}, + {"anchor_id":"aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","artifact_kind":"document","content_hash":"53338ef2e0bd69ec2f40cd15397334ce49e384a5d056617cdf3fd2dcf6f622d8","id":"aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1e2696caa07137bea305080b"}, {"anchor_id":"aoa:aoa-techniques:anchor:8f3f5e1f21dc6819f11a60c4","artifact_kind":"document","content_hash":"1d4bfb2393d75845825962d3274af902aa0c66ee8a8315791c398dc600f02097","id":"aoa:aoa-techniques:artifact:fde64b8930329509292434ad","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6ec6f7c3d65447280560e8e5"}, {"anchor_id":"aoa:aoa-techniques:anchor:329f6ffb482f2fe17a5d7077","artifact_kind":"document","content_hash":"1013c81048a39b31fc270f5cdba96332416b0766e418bda78a112c1be945cd63","id":"aoa:aoa-techniques:artifact:c69089469604c6b4ee8aeb2b","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bf917fbf8c14c2831ae93b6f"}, {"anchor_id":"aoa:aoa-techniques:anchor:ef644b1e48e790cc73017fb9","artifact_kind":"document","content_hash":"5ecf74660fc43b7ed361fddcab6c49acf9ede57e6583e5b5221328aaf6abb248","id":"aoa:aoa-techniques:artifact:c38f953d407fda8093621250","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:29d69fc8a2df609c12482c56"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","artifact_kind":"document","content_hash":"98bcdb629f5518a0ab53a6a80625e7b5d39301dddb9ee136d678210ae792bd40","id":"aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d0b39ef8476b8f5d92e5abf5"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","artifact_kind":"document","content_hash":"fb775ce0cc66c45f6eb9cdaa8b3d279d745c172ec4a6d06c0e8e7ec8f40c4d7e","id":"aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c88b41b1004796c0a0ad40a9"}, {"anchor_id":"aoa:aoa-techniques:anchor:2c234357d93af3aa108a0e07","artifact_kind":"document","content_hash":"0690450d17dc87ee3169f08a610fb9d41362952a7d08a1d64e887b325b2f6b07","id":"aoa:aoa-techniques:artifact:24f952fceed043566fc03f8b","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2b1ce3cedc885377800c4fdb"}, {"anchor_id":"aoa:aoa-techniques:anchor:74123619244129f4ee04644d","artifact_kind":"document","content_hash":"5b866c15fabe67bd9ffd2e0467be6e9883d76e9cc8148784a717e15c730c3012","id":"aoa:aoa-techniques:artifact:6d639d0fa8f0902c2e18bf90","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1d30813f5819714ae5236780"}, {"anchor_id":"aoa:aoa-techniques:anchor:f3fbac540e0009f5027f61cc","artifact_kind":"document","content_hash":"e62ffc3740fb577f6af9b259cfcdb679e5e2fd77a9070bcf50db39b8ef29cbda","id":"aoa:aoa-techniques:artifact:99758dab04fd48b9c22c8134","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2508cd169a425887fa631641"}, - {"anchor_id":"aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44","artifact_kind":"document","content_hash":"87538d528730ecc8c8b2488989f3efc958866c114feb4c85f748a836443e5810","id":"aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6d700d5201ee2591bf2487a6"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44","artifact_kind":"document","content_hash":"35fcbbf7a51b3e5704819b0373d00933a55085e8e35c4a35bfb728dbe514026f","id":"aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cd9b0a3e5f87d583a94658a6"}, {"anchor_id":"aoa:aoa-techniques:anchor:6ce9de08c4ee5a53e1f590ac","artifact_kind":"document","content_hash":"0fa30c97ee3ad517805dadab145baf0847a26085c1244e4cffbf59e1275d0722","id":"aoa:aoa-techniques:artifact:a1368b52e87f2aa01ddbc24f","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1379ae9f9981c95cfa757fde"}, {"anchor_id":"aoa:aoa-techniques:anchor:15b4a56f5feb8566c0c35adb","artifact_kind":"document","content_hash":"9c2e2f53e05b0a24e8cd9d49102452ebd354b087148f987e607754ca59a3e004","id":"aoa:aoa-techniques:artifact:36efec87ded6f5b069e4f084","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:44b8c93169da9615cbf16e94"}, {"anchor_id":"aoa:aoa-techniques:anchor:db24304873d3a69304589284","artifact_kind":"document","content_hash":"16122b325eed3058f3800cf1682b610e6734948cdb240694c8edfc0d351e5d03","id":"aoa:aoa-techniques:artifact:0cbfc31da990762d893d8446","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c30899dd3c359161f324d7d4"}, @@ -917,10 +917,10 @@ {"anchor_id":"aoa:aoa-techniques:anchor:d0e1c4a664f5b79b973bc63d","artifact_kind":"document","content_hash":"ec58d590bafc352b42bb310ae77b90512083cca910350808c5029ed09b884807","id":"aoa:aoa-techniques:artifact:998ba212c6a82e2f08d7b6df","lineage_path":"docs/EVALUATION_CHAIN_SHADOW_REVIEW.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a994a3d3278602ddc7200f16"}, {"anchor_id":"aoa:aoa-techniques:anchor:c35f2c4604d83d6c8d0aa525","artifact_kind":"document","content_hash":"31c3ea88f8103457772f1c15359a12480278831a29e132bd27318a70c66eef4e","id":"aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2","lineage_path":"docs/PUBLISHED_SUMMARY_SHADOW_REVIEW.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0c6df9e37d5322ead8779811"}, {"anchor_id":"aoa:aoa-techniques:anchor:1edd9e314c354ccc5d3e03e7","artifact_kind":"document","content_hash":"6ccaae2e2d08f920048c6aac04e70a7571d526eac107de49452e7b40601adcba","id":"aoa:aoa-techniques:artifact:71201fec2eec509ba55b62ee","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f3429dd11f568fabfc2a7895"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","artifact_kind":"document","content_hash":"3bc406b50b37e1c1ae9923b54a50969d8b3bf178f27621b67aa637d8f243ab04","id":"aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:de37b61fd26b9a9b6a8d1f04"}, - {"anchor_id":"aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","artifact_kind":"document","content_hash":"c220d2949f35eddd0213555aa33b60c3844d8951d67a5d04857b9a9b6ccae3e0","id":"aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:469fc2c57c06cc9792871f5b"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","artifact_kind":"document","content_hash":"3e096a32b4fac9b0365a701665bbd385147226ae74a109c345d2874f9e3dd890","id":"aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b133ee2201009510f5bc80d8"}, + {"anchor_id":"aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","artifact_kind":"document","content_hash":"7bd01c8951ad1936185f8fa38e1bb0f65595f759cb942e88dc0dc775c7a01032","id":"aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:306e84e670b43cc4e4f2fa13"}, {"anchor_id":"aoa:aoa-techniques:anchor:e70bf4851d8e35a142be7212","artifact_kind":"document","content_hash":"fec34383d1256377e326320bbb4efa601c30f1d9bc6791fb3d456f7afbc8fa37","id":"aoa:aoa-techniques:artifact:d6d89bc629ac65cb08f10b90","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:387cf5b613937da040782da8"}, - {"anchor_id":"aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b","artifact_kind":"document","content_hash":"29bf98aaf3cfa0a1fb1d2f0dbf10fba15d57bd9c33b6fdeb181c6ffcb353b866","id":"aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f91fa967d3b06e2ac9397fcd"}, + {"anchor_id":"aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b","artifact_kind":"document","content_hash":"2919ce69c349574cab1b81bf348800ccf1bec2c3666f078b791444dd72bae09b","id":"aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0ba32cc6e395001ce9eab57a"}, {"anchor_id":"aoa:aoa-techniques:anchor:cd28e8d8ec9d4c6812cffca1","artifact_kind":"document","content_hash":"29387adbceef1e57561db73a392e3d896c0fc51aa55ac274c7350f53636157e7","id":"aoa:aoa-techniques:artifact:276241f8b398d6731e4f727a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:24bb2d987a0562744ed5f773"}, {"anchor_id":"aoa:aoa-techniques:anchor:c2fa6e9160ac26bbb3390efa","artifact_kind":"document","content_hash":"359631feebdc4ac2ef3882c9603bd28cea7a90283c17067ffe632b9366681f14","id":"aoa:aoa-techniques:artifact:fec3dc23de4553ec2e819b55","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8f647a9b19a588f1043e74d5"}, {"anchor_id":"aoa:aoa-techniques:anchor:08a3a6e0d1a9376a233b10b5","artifact_kind":"document","content_hash":"ea73ff37b816cc1490b701b7a043cd0cddafe7a7e73b52ed3781b63dc815d612","id":"aoa:aoa-techniques:artifact:b152a0b98d3754afb662dffa","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:074a9f4673231288db5c1b09"}, @@ -930,8 +930,8 @@ {"anchor_id":"aoa:aoa-techniques:anchor:7b91d3196b2d38fed0fd951e","artifact_kind":"document","content_hash":"ddfca17844df11c1d73ee303d819d743f9b4e0aa0f869e5feda7f5846caf97bc","id":"aoa:aoa-techniques:artifact:5a427c584fa1429f11e93829","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:68290aef31c6dd222556149f"}, {"anchor_id":"aoa:aoa-techniques:anchor:ca0e1dc55b4a47f9d121ae86","artifact_kind":"document","content_hash":"10cd31b5a29143d03a8566d16106aa7598cf3e5b7a4cab79d951699103277dd9","id":"aoa:aoa-techniques:artifact:ce8ca6e1f0f910e839bf7ede","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1df74a66de374f07202b82be"}, {"anchor_id":"aoa:aoa-techniques:anchor:73b0b4ae94897ba720da53f9","artifact_kind":"document","content_hash":"b174bd994b03503cc4b87cd7c1f54b85e490c47da50a27b8edb3dea1f69cfdc7","id":"aoa:aoa-techniques:artifact:4bd7e049d0c871f8d832ce7d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:787becdf162536b8fab6da25"}, - {"anchor_id":"aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc","artifact_kind":"document","content_hash":"babce1cbb81ec975387a54ddc2697ca8198cf62e62b36e0721bcd93006bdb90d","id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/TEMP_TEMPLATE_MODERNIZATION_LONG_PASS_PLAN.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b8e92fa8b1be99777613e616"}, - {"anchor_id":"aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4","artifact_kind":"document","content_hash":"9de3b73ba4197d44738132db355d6ed656c9cd52efe24ea7e1a1d2440d419192","id":"aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a1c6a3fbaa98b5e914125a45"}, + {"anchor_id":"aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc","artifact_kind":"document","content_hash":"53e126f72317bcef728f229c269b62ac131ab089a5559e108cddaa22e81b248e","id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/TEMP_TEMPLATE_MODERNIZATION_LONG_PASS_PLAN.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4b355ce2b9e1c65a3c048062"}, + {"anchor_id":"aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4","artifact_kind":"document","content_hash":"195edc833440680ce5b8f3603599cf604319b6715bace30940a4c07948c109fa","id":"aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0d0a23089ef8e60c2444e526"}, {"anchor_id":"aoa:aoa-techniques:anchor:0b253a863340466491b1b23a","artifact_kind":"document","content_hash":"944bdaec832a80cee456a96ab27012aa50681d337a6a015f584122955e0299c2","id":"aoa:aoa-techniques:artifact:aba405c32b985c0a2fa81085","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9af6d1267079e13479daeb77"}, {"anchor_id":"aoa:aoa-techniques:anchor:2f7f49780021b6d3615f4baa","artifact_kind":"document","content_hash":"669b35639dd2ff9ee9861acd371d0b6fea9ca790033ea96ceaa72c9b66975e9e","id":"aoa:aoa-techniques:artifact:4009d2ba51883ad244865419","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c1447eac8bfb64fa3387627b"}, {"anchor_id":"aoa:aoa-techniques:anchor:a0c310c067e722660d722e4d","artifact_kind":"document","content_hash":"85e946983e479c041d389d7a6e62519d4d78740f9fabde2e7ae8be9865d0e929","id":"aoa:aoa-techniques:artifact:8a6542641b3e9209ba03e08d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2c5d7d9755c5d14959db612e"}, @@ -950,7 +950,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:e9410b122cca054a4cddbe9a","artifact_kind":"test","content_hash":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","id":"aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1b471e96507cb19e8ba8c909"}, {"anchor_id":"aoa:aoa-techniques:anchor:017cbd2f4868c2b183418b92","artifact_kind":"test","content_hash":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","id":"aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ecc1aad3d0164cd03f8ef7ce"}, {"anchor_id":"aoa:aoa-techniques:anchor:fef88c03c0bd2ffd010a2904","artifact_kind":"test","content_hash":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","id":"aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:55debedd98353423662b6244"}, - {"anchor_id":"aoa:aoa-techniques:anchor:17ffa9045deefa31c5ce000f","artifact_kind":"test","content_hash":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","id":"aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d6f37ce3decb1612d8d4d3c6"}, + {"anchor_id":"aoa:aoa-techniques:anchor:17ffa9045deefa31c5ce000f","artifact_kind":"test","content_hash":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","id":"aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4e972e66fd12161e58edccc0"}, {"anchor_id":"aoa:aoa-techniques:anchor:d4489bb0c4a4fbde366d5e04","artifact_kind":"test","content_hash":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","id":"aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0a903e721337618a99ffdef0"}, {"anchor_id":"aoa:aoa-techniques:anchor:1e70455e1ec38c8975f9395c","artifact_kind":"test","content_hash":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","id":"aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6","lineage_path":"tests/test_docs_boundary_tree_pilot.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_docs_boundary_tree_pilot.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:da20330203c3e66935b80cf0"}, {"anchor_id":"aoa:aoa-techniques:anchor:11cac66ef107d693a8c44ff7","artifact_kind":"test","content_hash":"4a09365d51a6b68831dfa2f0681603fd453af9ec9e2a2ff661870efed6e60a3f","id":"aoa:aoa-techniques:artifact:82e028210399ae4428247f3c","lineage_path":"tests/test_evaluation_chain_tree_pilot.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_evaluation_chain_tree_pilot.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f79cd89b2ac7b1b71624f7d8"}, @@ -965,7 +965,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:669654784ff3aacf80d98cbd","artifact_kind":"test","content_hash":"be31fda9de0d38712184d67229f7e4ebfa04aff3db72de81710f35db405247e1","id":"aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27","lineage_path":"tests/test_skill_support_tree_pilot.py","mime":"text/x-python","path":"mechanics/distillation/tests/test_skill_support_tree_pilot.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fbbfdc8adfc324d8cb85528a"}, {"anchor_id":"aoa:aoa-techniques:anchor:8c1a576e5c5f1bdfdd025796","artifact_kind":"document","content_hash":"8917cbc109dfed5ab3d9d01c70adac34066c4f63087a31db2c72e3a040c2e6a3","id":"aoa:aoa-techniques:artifact:97ba6ad641f66f9e5b516012","lineage_path":"mechanics/experience/AGENTS.md","mime":"text/markdown","path":"mechanics/experience/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ab1cd21c2cc152f60517d902"}, {"anchor_id":"aoa:aoa-techniques:anchor:677164dd99bd7d0cf411749a","artifact_kind":"document","content_hash":"3145edd56cc3862bd7db72573095dd5b5e300869753b9bb5f07efecdea39d8f2","id":"aoa:aoa-techniques:artifact:168341aaed8d3a58118fde73","lineage_path":"mechanics/experience/DIRECTION.md","mime":"text/markdown","path":"mechanics/experience/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e776a500fefb5012967d742b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:784eb112e9cd463e306d27d9","artifact_kind":"document","content_hash":"f8a501b6d3c0d5f55cd8094e70a6c7898b79de9eebe28f169840c1b155637034","id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","lineage_path":"mechanics/experience/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/experience/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8502e8e79966c17a952d6a88"}, + {"anchor_id":"aoa:aoa-techniques:anchor:784eb112e9cd463e306d27d9","artifact_kind":"document","content_hash":"84b32899506adde58b349bda6bd535f5f4b20dc25f8288dd1da51d1d029d6861","id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","lineage_path":"mechanics/experience/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/experience/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5b953f71cd2eb72bdcf8aca6"}, {"anchor_id":"aoa:aoa-techniques:anchor:221ac0588f5be5f82fa9d4c4","artifact_kind":"document","content_hash":"f32c0cb242b4ca7bdbbf62b880f29c9ca94b081282ce37d52bef459ca1b69604","id":"aoa:aoa-techniques:artifact:66fbb26dd96eaa4473a83948","lineage_path":"mechanics/experience/PARTS.md","mime":"text/markdown","path":"mechanics/experience/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7dc1770c29bddb8bd2578862"}, {"anchor_id":"aoa:aoa-techniques:anchor:8a4e0102fda4aee535c877ef","artifact_kind":"document","content_hash":"1ab3863d95a3e795d233bc3f159d2a3dbdef8461f863225a323aa8457e1058b0","id":"aoa:aoa-techniques:artifact:5e5a9beb1aec14ac44db6ef3","lineage_path":"mechanics/experience/PROVENANCE.md","mime":"text/markdown","path":"mechanics/experience/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1737a5e5717ca0bd39b34347"}, {"anchor_id":"aoa:aoa-techniques:anchor:471c76e509f12421a7e3531d","artifact_kind":"document","content_hash":"2e12434832edbc002b62af2775529b51b111b6e021e6da88f49af9eddec4d63d","id":"aoa:aoa-techniques:artifact:16d501e3e9dde3dd1ee3540d","lineage_path":"mechanics/experience/README.md","mime":"text/markdown","path":"mechanics/experience/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ca0075879d8fe2daafbfe8ea"}, @@ -1002,7 +1002,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:1866c9a69aac2d1b6c2a5c83","artifact_kind":"test","content_hash":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","id":"aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0","lineage_path":"tests/test_experience_mechanics_topology.py","mime":"text/x-python","path":"mechanics/experience/tests/test_experience_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e61651319f32fccef6cd9ce1"}, {"anchor_id":"aoa:aoa-techniques:anchor:62e1f6ee0e746ecba57b5555","artifact_kind":"document","content_hash":"d96dc243756ee7158380b102a6db5611a5c6c41ca1ffe4215cb0d1ce6497493f","id":"aoa:aoa-techniques:artifact:ac0fbb989bdb0fc797cd718d","lineage_path":"mechanics/growth-cycle/AGENTS.md","mime":"text/markdown","path":"mechanics/growth-cycle/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cf14d93fcce5314e71b57d40"}, {"anchor_id":"aoa:aoa-techniques:anchor:418b953fd27c43c884d9b2a4","artifact_kind":"document","content_hash":"116a1f0dbe5737ea5b0b48d054a2d7a0322ba9c4b1d22db209719d3ffc094177","id":"aoa:aoa-techniques:artifact:dca2b23f8fe41a026708cfba","lineage_path":"mechanics/growth-cycle/DIRECTION.md","mime":"text/markdown","path":"mechanics/growth-cycle/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:508ab6b8c02beccc88c0bd16"}, - {"anchor_id":"aoa:aoa-techniques:anchor:8dd763b83ac5927ba12152ed","artifact_kind":"document","content_hash":"e61c8385b2376f3233d2afbea4ed1b6581c054274c914e68169372e1aeeb0276","id":"aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","lineage_path":"mechanics/growth-cycle/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/growth-cycle/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2a906b07dbecb8b079b3d123"}, + {"anchor_id":"aoa:aoa-techniques:anchor:8dd763b83ac5927ba12152ed","artifact_kind":"document","content_hash":"be5a16710cfe637b7592164c782e3bebaf0ec5b71580eeb46a3bb73cfb4c6c62","id":"aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","lineage_path":"mechanics/growth-cycle/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/growth-cycle/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9ff178644da86f524523ccd8"}, {"anchor_id":"aoa:aoa-techniques:anchor:91bdb086c46493618d29f389","artifact_kind":"document","content_hash":"f17d3eb68deb95b97141faea7664bcb2f5267acd7f84e6d84771b026379671d2","id":"aoa:aoa-techniques:artifact:0005dd1f769882e57df585ef","lineage_path":"mechanics/growth-cycle/PARTS.md","mime":"text/markdown","path":"mechanics/growth-cycle/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a1b8613ca5bad2714efea97d"}, {"anchor_id":"aoa:aoa-techniques:anchor:9672982db4824bb0de4dbbd0","artifact_kind":"document","content_hash":"0a12f7f3cd40c0ebb6c6d265621b72369be40dd19e00a0ad4c175fef2d671760","id":"aoa:aoa-techniques:artifact:9be0d3a9ff402ae88e6df24d","lineage_path":"mechanics/growth-cycle/PROVENANCE.md","mime":"text/markdown","path":"mechanics/growth-cycle/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c4361749303aae6cc658ea98"}, {"anchor_id":"aoa:aoa-techniques:anchor:4542faaec0b9f84893bba941","artifact_kind":"document","content_hash":"ecb41f974643319b77ec6ee7386beed52518688772ec8c97cd36c2267c70973a","id":"aoa:aoa-techniques:artifact:dc9132d584369fcbb76fde34","lineage_path":"mechanics/growth-cycle/README.md","mime":"text/markdown","path":"mechanics/growth-cycle/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1f1caea14c641b1c8ba54932"}, @@ -1022,7 +1022,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:c9a8eaecac36231a7a08d73b","artifact_kind":"test","content_hash":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","id":"aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91","lineage_path":"tests/test_growth_cycle_mechanics_topology.py","mime":"text/x-python","path":"mechanics/growth-cycle/tests/test_growth_cycle_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:02252d9a5e7003949f4c95fd"}, {"anchor_id":"aoa:aoa-techniques:anchor:edd3cfbb07dbd8f0b0b67111","artifact_kind":"document","content_hash":"badf03ec874db6375e90952c60b3872418e2b7788eade63eacd1f473220cba2d","id":"aoa:aoa-techniques:artifact:a1437a25a7c1a02db837a57d","lineage_path":"mechanics/method-growth/AGENTS.md","mime":"text/markdown","path":"mechanics/method-growth/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:94f66c68eb4c97e455fa4f51"}, {"anchor_id":"aoa:aoa-techniques:anchor:b6b589133354c3f91b8fbf49","artifact_kind":"document","content_hash":"ff72b84443b1f1b3405a1bedadafae1bd2e821cd8006303e3b48dba3e3ccdccc","id":"aoa:aoa-techniques:artifact:cb611965358d0abf88ec5a5f","lineage_path":"mechanics/method-growth/DIRECTION.md","mime":"text/markdown","path":"mechanics/method-growth/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2303b987747a8d6739a81dab"}, - {"anchor_id":"aoa:aoa-techniques:anchor:010f1a833244b035a3e127f4","artifact_kind":"document","content_hash":"e875f78557e154a8d247b716f5ddd79749e4bab8e8718bd5a4cc738de43afb40","id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","lineage_path":"mechanics/method-growth/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/method-growth/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:678cc918479eba9f774a4b06"}, + {"anchor_id":"aoa:aoa-techniques:anchor:010f1a833244b035a3e127f4","artifact_kind":"document","content_hash":"90583f33c372afb1d6547a3d7c71247e938d6c610962febd423c215d8dcd9ebb","id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","lineage_path":"mechanics/method-growth/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/method-growth/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d48f81d336cdf7b21e20ac24"}, {"anchor_id":"aoa:aoa-techniques:anchor:fef34c0da72fb4b1756e21b5","artifact_kind":"document","content_hash":"8ed2df6970c0a8636eef2dd0b6c2a4f03d05ec310eee2b8390529da74d36e4fc","id":"aoa:aoa-techniques:artifact:bd75897649933a8becf9cd74","lineage_path":"mechanics/method-growth/PARTS.md","mime":"text/markdown","path":"mechanics/method-growth/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:9f1968ac509eaf16caffbbba"}, {"anchor_id":"aoa:aoa-techniques:anchor:7dd14803c610a7cf72b7ccd9","artifact_kind":"document","content_hash":"c867cf566ed1e2d68bf6274cb0121add7c403ada32e679e51d1e2d152096c46e","id":"aoa:aoa-techniques:artifact:cd0307e0636674574235aebf","lineage_path":"mechanics/method-growth/PROVENANCE.md","mime":"text/markdown","path":"mechanics/method-growth/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:74723efe0e16581ff1944c6a"}, {"anchor_id":"aoa:aoa-techniques:anchor:c392164dd57169f43cee87de","artifact_kind":"document","content_hash":"fd8d1bfc9ff807add633f2b73beb1b76e4c4b7749cbb366a9f9a9a3a57d11339","id":"aoa:aoa-techniques:artifact:13625acb67ef244c4570bac3","lineage_path":"mechanics/method-growth/README.md","mime":"text/markdown","path":"mechanics/method-growth/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f5531f6ac0b5fa2a598b9488"}, @@ -1052,7 +1052,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:1c8cd17bb7a837a02eb50c23","artifact_kind":"test","content_hash":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","id":"aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55","lineage_path":"tests/test_method_growth_mechanics_topology.py","mime":"text/x-python","path":"mechanics/method-growth/tests/test_method_growth_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:cf24e4102d6156426addbdac"}, {"anchor_id":"aoa:aoa-techniques:anchor:53ef5320505459a8d8ed9005","artifact_kind":"document","content_hash":"c3bfe7733b215efecf9ed9e9dcdef07c5bd76c4cb3bb71a82789410fdcf166c2","id":"aoa:aoa-techniques:artifact:19cf9e44d6ce3b2b9ead568b","lineage_path":"mechanics/questbook/AGENTS.md","mime":"text/markdown","path":"mechanics/questbook/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a99773b29a1d0f864247ea25"}, {"anchor_id":"aoa:aoa-techniques:anchor:6750cc745f3de4db2ba1cc94","artifact_kind":"document","content_hash":"e6c476c082837599eaccccdbe4290bb5aae42ee0c097e76b409d8b5bb2503feb","id":"aoa:aoa-techniques:artifact:c696ee454107eeaf73493386","lineage_path":"mechanics/questbook/DIRECTION.md","mime":"text/markdown","path":"mechanics/questbook/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:651ffb11a8f3d9c7bf7b46c5"}, - {"anchor_id":"aoa:aoa-techniques:anchor:80675f891dbdb2d4b9dfe4e4","artifact_kind":"document","content_hash":"784ee888bad83a3357f52a74278ac5189655c71f7454c95024658762772886d9","id":"aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","lineage_path":"mechanics/questbook/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/questbook/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2083ca7dda2acd1706c4328e"}, + {"anchor_id":"aoa:aoa-techniques:anchor:80675f891dbdb2d4b9dfe4e4","artifact_kind":"document","content_hash":"1f26b74709cb90876b3fae70a5be5b1e29b41192eb3f5c7f1d121eed809a8d89","id":"aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","lineage_path":"mechanics/questbook/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/questbook/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b5bca98c9343587f2db97b34"}, {"anchor_id":"aoa:aoa-techniques:anchor:b4fcd3a63e1dc401bcc6f1b6","artifact_kind":"document","content_hash":"9929f464ca2810e505118957c47edd346d6d62f742c6e2d8c6a395e054abb472","id":"aoa:aoa-techniques:artifact:8ec3726817bef92fcf35c7c6","lineage_path":"mechanics/questbook/PARTS.md","mime":"text/markdown","path":"mechanics/questbook/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:52479fc35b8a59be22ced79a"}, {"anchor_id":"aoa:aoa-techniques:anchor:480d646dfc5d98aeae3827cb","artifact_kind":"document","content_hash":"69f7a27f892dbb8dd1450f07ec07e536174531f6e85e9ce0bcc02761a66f676a","id":"aoa:aoa-techniques:artifact:de1c334450c40e51bb158627","lineage_path":"mechanics/questbook/PROVENANCE.md","mime":"text/markdown","path":"mechanics/questbook/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f94268a177311cb8b50de67f"}, {"anchor_id":"aoa:aoa-techniques:anchor:223f301549a7c3634523c676","artifact_kind":"document","content_hash":"5ac9557960f3fec67c66e69dc066f3f0933e19e0c3a1dedd5cca2ef0c05b7523","id":"aoa:aoa-techniques:artifact:1542cfb27c305bbfb441f82f","lineage_path":"mechanics/questbook/README.md","mime":"text/markdown","path":"mechanics/questbook/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:988bd41eb43d577da8f512e5"}, @@ -1070,7 +1070,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef","artifact_kind":"test","content_hash":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","lineage_path":"tests/test_questbook_mechanics_topology.py","mime":"text/x-python","path":"mechanics/questbook/tests/test_questbook_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c9e7cc75a3391d9129942045"}, {"anchor_id":"aoa:aoa-techniques:anchor:e3dd9a43b7f6089811ca3814","artifact_kind":"document","content_hash":"f25cc64a173ed291ae99f475cd41de8ad5d1b14ed0d658442e68308cbe5b93b8","id":"aoa:aoa-techniques:artifact:8a4bf6cbf0b0b17588e64529","lineage_path":"mechanics/recurrence/AGENTS.md","mime":"text/markdown","path":"mechanics/recurrence/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b8ecb81aece534cc96505ab9"}, {"anchor_id":"aoa:aoa-techniques:anchor:6a3ba94fae364e83211e6acf","artifact_kind":"document","content_hash":"aa9170e0b0b203d27a79dd56516c4c0ac5e89df0abfb57a5e216814f23709416","id":"aoa:aoa-techniques:artifact:373d31bb4eefee2cd479babf","lineage_path":"mechanics/recurrence/DIRECTION.md","mime":"text/markdown","path":"mechanics/recurrence/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b8e5dbe4340a77724d70622b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:7333d08c03ba0655284f67f7","artifact_kind":"document","content_hash":"3da63d3c458ba51897cb3d84346c0eb534a87de44b1311259129111ee0477f31","id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","lineage_path":"mechanics/recurrence/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/recurrence/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:13ad917b4b58cd569a2c9869"}, + {"anchor_id":"aoa:aoa-techniques:anchor:7333d08c03ba0655284f67f7","artifact_kind":"document","content_hash":"b1fe6fb1dcd52bf4bc47df24add2d4fbeb4028a0e399c86278505d3dd2329187","id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","lineage_path":"mechanics/recurrence/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/recurrence/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:861ec50b7dcdf9c929b1e202"}, {"anchor_id":"aoa:aoa-techniques:anchor:923d1ed2f8cb8a0077a8267f","artifact_kind":"document","content_hash":"5125ad2c8fa8866877fec596ede11ebf064d4d58b77db002255a092711ad9600","id":"aoa:aoa-techniques:artifact:c187a0a940d29d727be151a6","lineage_path":"mechanics/recurrence/PARTS.md","mime":"text/markdown","path":"mechanics/recurrence/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b8746fc60f02abc8abe985cd"}, {"anchor_id":"aoa:aoa-techniques:anchor:39191cd2e43e46ed75a7ad74","artifact_kind":"document","content_hash":"cc11cec358e13849b29e23d9ebf438665425c244986a65b2c891c1955d495a3e","id":"aoa:aoa-techniques:artifact:8876379d2e54475aa9b24341","lineage_path":"mechanics/recurrence/PROVENANCE.md","mime":"text/markdown","path":"mechanics/recurrence/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4c842b1088b4c762ed3b2112"}, {"anchor_id":"aoa:aoa-techniques:anchor:67e4c840ab1dad3c1e825c4d","artifact_kind":"document","content_hash":"8973bdf860486578924f16fba28a7c210e97790cee80a4fcd2fd8e2e3a382297","id":"aoa:aoa-techniques:artifact:19fb3d55a5cf2e7e3f87c063","lineage_path":"mechanics/recurrence/README.md","mime":"text/markdown","path":"mechanics/recurrence/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:1dce88971fc10a37fbec6f48"}, @@ -1093,7 +1093,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:64029f0b3c3af008b870f4ee","artifact_kind":"test","content_hash":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","id":"aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7","lineage_path":"tests/test_recurrence_mechanics_topology.py","mime":"text/x-python","path":"mechanics/recurrence/tests/test_recurrence_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c230e5e5f573e330c6b6c0a7"}, {"anchor_id":"aoa:aoa-techniques:anchor:1225f530a01b985d1dd48428","artifact_kind":"document","content_hash":"c97cd62c8b22500a968644f1a333230987586af28b7765bf91114ae0cdc95dd9","id":"aoa:aoa-techniques:artifact:301079de4f207771e1be5e44","lineage_path":"mechanics/release-support/AGENTS.md","mime":"text/markdown","path":"mechanics/release-support/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:26fbc3439f6a6cc85f272149"}, {"anchor_id":"aoa:aoa-techniques:anchor:b08d56465b2d9ededaf44c73","artifact_kind":"document","content_hash":"6ba8bf9ab1584882054e37c797529366624dad13ad86c34140970a3c3bd86c11","id":"aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00","lineage_path":"mechanics/release-support/DIRECTION.md","mime":"text/markdown","path":"mechanics/release-support/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ec1730d2a7e0fe3661b84a69"}, - {"anchor_id":"aoa:aoa-techniques:anchor:fbd467901feb694385c7163a","artifact_kind":"document","content_hash":"947565c6126d54bed011d2d94d28276109bfb2e7802432d51e1a87267ab099fb","id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","lineage_path":"mechanics/release-support/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/release-support/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2f2d8123f7a0f6764f3f6914"}, + {"anchor_id":"aoa:aoa-techniques:anchor:fbd467901feb694385c7163a","artifact_kind":"document","content_hash":"b10c39b9cfc44721c74fa62900dd3d3e9adb372a63063fdfef58f4887fe98672","id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","lineage_path":"mechanics/release-support/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/release-support/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5bfa95530b151d743b65e2d0"}, {"anchor_id":"aoa:aoa-techniques:anchor:59148a9670299f1eb178d983","artifact_kind":"document","content_hash":"9c6577a71eda6d2943da35a445f56fc2cd627dec0c8728836cc4c78e8c0e55e9","id":"aoa:aoa-techniques:artifact:07208cf1e5f67b4a2e115f21","lineage_path":"mechanics/release-support/PARTS.md","mime":"text/markdown","path":"mechanics/release-support/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:acd9fb8b9387b177a5aa5b5b"}, {"anchor_id":"aoa:aoa-techniques:anchor:acdf1069fc2096a4d03c983d","artifact_kind":"document","content_hash":"fb668f5f4ebc4b4722bffadf735f9e04cea8538ff209bf483a003b8a4bf8bac6","id":"aoa:aoa-techniques:artifact:6699026f4eaa3488aa900737","lineage_path":"mechanics/release-support/PROVENANCE.md","mime":"text/markdown","path":"mechanics/release-support/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b526ec33a34e424eb1f0a5bc"}, {"anchor_id":"aoa:aoa-techniques:anchor:d4d0162479655530148090ae","artifact_kind":"document","content_hash":"53e9144823499a671120765da136298ef42a5a58cc719c4657a628f9055a8570","id":"aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f","lineage_path":"mechanics/release-support/README.md","mime":"text/markdown","path":"mechanics/release-support/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:df03875cbbdb8db27d7f8445"}, @@ -1114,7 +1114,7 @@ {"anchor_id":"aoa:aoa-techniques:anchor:96d8fdf94001d913fa71febc","artifact_kind":"test","content_hash":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","id":"aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187","lineage_path":"tests/test_release_support_mechanics_topology.py","mime":"text/x-python","path":"mechanics/release-support/tests/test_release_support_mechanics_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:01a0632aa42e2fb671168fda"}, {"anchor_id":"aoa:aoa-techniques:anchor:4bc4e8abdf130baad4ea9609","artifact_kind":"document","content_hash":"97943993751889bebffefcace950bf563562570ff2c8cccbd81f8f1596c37cf7","id":"aoa:aoa-techniques:artifact:1bea40a4f33d56ec3110ebf3","lineage_path":"mechanics/rpg/AGENTS.md","mime":"text/markdown","path":"mechanics/rpg/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0d223a1739797462fefbdf79"}, {"anchor_id":"aoa:aoa-techniques:anchor:ec3f84ef83aa834038b891f5","artifact_kind":"document","content_hash":"187067da38d8c48dab79a0d40192b8d5a0dd052a7032bc1af0c29aa5eec0611b","id":"aoa:aoa-techniques:artifact:ec069fbc48c817d019b7b03b","lineage_path":"mechanics/rpg/DIRECTION.md","mime":"text/markdown","path":"mechanics/rpg/DIRECTION.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2011a30afe26fe7caa53b75d"}, - {"anchor_id":"aoa:aoa-techniques:anchor:26bfbabf2fc754ad2c803c62","artifact_kind":"document","content_hash":"42712a2597a56a9985b4a5f282535879ea3864d0b963fb1680c56a6f15cfa236","id":"aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","lineage_path":"mechanics/rpg/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/rpg/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4bb44e5816459d77d470949a"}, + {"anchor_id":"aoa:aoa-techniques:anchor:26bfbabf2fc754ad2c803c62","artifact_kind":"document","content_hash":"1223fda4383e0ac682b924b97b1af5351220aa574d7c33dfa67a9e63fc46ac4e","id":"aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","lineage_path":"mechanics/rpg/LANDING_LOG.md","mime":"text/markdown","path":"mechanics/rpg/LANDING_LOG.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4d7ad98e29edd58e7292d0d7"}, {"anchor_id":"aoa:aoa-techniques:anchor:8f12d665e6b23f8bb3bc52ea","artifact_kind":"document","content_hash":"a4f67672bdee3b1210d073ef334d8e21a467cffa77778bc2adb518cc65c16477","id":"aoa:aoa-techniques:artifact:da1e4d646a243e773637436c","lineage_path":"mechanics/rpg/PARTS.md","mime":"text/markdown","path":"mechanics/rpg/PARTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3bfc6fb14992b41914c8eea6"}, {"anchor_id":"aoa:aoa-techniques:anchor:662e24a17b433b28c7d04cbf","artifact_kind":"document","content_hash":"934bccf8f875c5c4f2d134079196f65b601d7ec2b5938269e422c5c2453f4457","id":"aoa:aoa-techniques:artifact:a9cd7cf6fa46aa3e2ec978f9","lineage_path":"mechanics/rpg/PROVENANCE.md","mime":"text/markdown","path":"mechanics/rpg/PROVENANCE.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:62142db9182943b51ff2aa42"}, {"anchor_id":"aoa:aoa-techniques:anchor:10d61e38a30d55ef5467bc47","artifact_kind":"document","content_hash":"5dd6ef8bd9f86ddfd462d1ea205894e5ae0e1765358a23c42f07f24fd632afbb","id":"aoa:aoa-techniques:artifact:850e7b6f4f85c0ec893fb9c2","lineage_path":"mechanics/rpg/README.md","mime":"text/markdown","path":"mechanics/rpg/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ec48baac5fbd5939f8d55ebe"}, @@ -1203,10 +1203,11 @@ {"anchor_id":"aoa:aoa-techniques:anchor:6dcd40d75400cbc939b04164","artifact_kind":"validator","content_hash":"221578d391c0093be1779f0567fe82934a9b0087378c308cae08a199793e71da","id":"aoa:aoa-techniques:artifact:97117975e7a1a05d5c0e0a11","lineage_path":"scripts/validate_agents_md_shape.py","mime":"text/x-python","path":"scripts/validate_agents_md_shape.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:bb0c7712272294b1f9bdef9a"}, {"anchor_id":"aoa:aoa-techniques:anchor:de45174711e11ed6a953ce49","artifact_kind":"validator","content_hash":"0698f43610ea36b5d60daae4e37ba8a6b516bbc1870378fcd068b7d3d186bdb0","id":"aoa:aoa-techniques:artifact:5dc490a89b7477c117470956","lineage_path":"scripts/validate_agents_mesh.py","mime":"text/x-python","path":"scripts/validate_agents_mesh.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:49bae4c16219ab8ac2d011ce"}, {"anchor_id":"aoa:aoa-techniques:anchor:413c394090cfbc94d781202d","artifact_kind":"validator","content_hash":"1fc10e20b4e033b8ee432185b81c73abe7a4bb8b8979fded2ffd530cfc831b2e","id":"aoa:aoa-techniques:artifact:e5f4c29fb35ffbe366619cd7","lineage_path":"scripts/validate_agents_mesh_index.py","mime":"text/x-python","path":"scripts/validate_agents_mesh_index.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:84290b5c59a163973fd016ce"}, + {"anchor_id":"aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0","artifact_kind":"validator","content_hash":"efd486b5f0ebebbfdca1b64eb45b38f51036e7918b78539d59b3dc57a0646c0a","id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","lineage_path":"scripts/validate_local_stats_port.py","mime":"text/x-python","path":"scripts/validate_local_stats_port.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6ebdb6d1dd7b7766e7a76cca"}, {"anchor_id":"aoa:aoa-techniques:anchor:992e4c748b558b55fbbb9482","artifact_kind":"validator","content_hash":"1e933171e646487625f55bc0333e6eb72d497f11db815e02115d900602461df1","id":"aoa:aoa-techniques:artifact:5befe5bd63a605b75db26c3a","lineage_path":"scripts/validate_nested_agents.py","mime":"text/x-python","path":"scripts/validate_nested_agents.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:479f88e43a6e886c9ca21029"}, {"anchor_id":"aoa:aoa-techniques:anchor:6e5d86edf8bbd36960e0b0b0","artifact_kind":"validator","content_hash":"8858f8f414f8672562ec74916c216ff33ce8e7bb84ba928ec3d52f5c4c50a1ca","id":"aoa:aoa-techniques:artifact:179cd9e9a1e53d6027df9638","lineage_path":"scripts/validate_public_hygiene.py","mime":"text/x-python","path":"scripts/validate_public_hygiene.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fb9756d7b86484a81fe0da86"}, {"anchor_id":"aoa:aoa-techniques:anchor:9658ffb32a49a4b52422e50c","artifact_kind":"validator","content_hash":"ed0726263ac070986cea996c85d319a328d20d1e3d743d19439aa6f38340e229","id":"aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","lineage_path":"scripts/validate_repo.py","mime":"text/x-python","path":"scripts/validate_repo.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:79c45103a4d7b7458c9f1fd0"}, - {"anchor_id":"aoa:aoa-techniques:anchor:2dcb946bb46f02a50eb66d0e","artifact_kind":"validator","content_hash":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","lineage_path":"scripts/validate_repo_local_kag_index.py","mime":"text/x-python","path":"scripts/validate_repo_local_kag_index.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7a18fd0c05df73f36a479280"}, + {"anchor_id":"aoa:aoa-techniques:anchor:2dcb946bb46f02a50eb66d0e","artifact_kind":"validator","content_hash":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","lineage_path":"scripts/validate_repo_local_kag_index.py","mime":"text/x-python","path":"scripts/validate_repo_local_kag_index.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:928270eff17a628c6ea7ced4"}, {"anchor_id":"aoa:aoa-techniques:anchor:4ee1d2c2763ee13e01827f9f","artifact_kind":"validator","content_hash":"cb4693f0c81b74d76252ea5f3fed57b86a7ff90d4487f9c09bd8be57ebf0d9be","id":"aoa:aoa-techniques:artifact:7d17f6046e98c9a3736efcb8","lineage_path":"scripts/validate_semantic_agents.py","mime":"text/x-python","path":"scripts/validate_semantic_agents.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:81617d0b49164b98c4570637"}, {"anchor_id":"aoa:aoa-techniques:anchor:3b1e44fb4a8f0b0e3220f688","artifact_kind":"validator","content_hash":"ca1ada6eca3ae7ae5d6b9d6dc71d733240b0fd039716926bf328969eb179be01","id":"aoa:aoa-techniques:artifact:712bfcf4dd0980ac8009ae26","lineage_path":"scripts/validate_source_contracts.py","mime":"text/x-python","path":"scripts/validate_source_contracts.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:8a4e89439eed1d0fddb9de59"}, {"anchor_id":"aoa:aoa-techniques:anchor:5c2b693cfcc55210e48810b7","artifact_kind":"source_code","content_hash":"9a2f191ab2fe80ef539b138aa8d9f94b468c8775b1d12ea15254a6bc707a0dca","id":"aoa:aoa-techniques:artifact:dda053a98d0f42c53736338b","lineage_path":"scripts/validation_lanes.py","mime":"text/x-python","path":"scripts/validation_lanes.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:46c2b51f991bbcea91360ae4"}, @@ -1224,6 +1225,10 @@ {"anchor_id":"aoa:aoa-techniques:anchor:18bfd491dd31ecf8dd53802d","artifact_kind":"source_code","content_hash":"601f26e61b30dc3b8c8bec75d34e2870e56ad43b26c8baf9b3bcd8418fa05b8a","id":"aoa:aoa-techniques:artifact:350991278c050e85113cce7c","lineage_path":"scripts/validators/public_hygiene.py","mime":"text/x-python","path":"scripts/validators/public_hygiene.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:13152130caac0dde1c84015d"}, {"anchor_id":"aoa:aoa-techniques:anchor:b936590f1a065bb8638d37b1","artifact_kind":"source_code","content_hash":"b3786fbfc06e9e21b51f7d3d0f47c7ad6ae285a03a6e3b3fd651de536c70a30c","id":"aoa:aoa-techniques:artifact:5b642e24330a04d5119f4f1a","lineage_path":"scripts/validators/questbook.py","mime":"text/x-python","path":"scripts/validators/questbook.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0d5701b53ba96c4d7506e9be"}, {"anchor_id":"aoa:aoa-techniques:anchor:d84ba1850d96b8cb59c72e03","artifact_kind":"source_code","content_hash":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","id":"aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c","lineage_path":"scripts/validators/source_contracts.py","mime":"text/x-python","path":"scripts/validators/source_contracts.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:265d0f2e64e3636d440f59ae"}, + {"anchor_id":"aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703","artifact_kind":"document","content_hash":"487c331a007d383597c96a84c5f6f615f13ef1cba3a2e6659af894290a98659e","id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","lineage_path":"stats/AGENTS.md","mime":"text/markdown","path":"stats/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:67e14a565409059c79b667e9"}, + {"anchor_id":"aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904","artifact_kind":"document","content_hash":"9a0b05cbf14fe7e7ba41cacb323f1c6c2efd15c352bd5dda296d698eabaa0242","id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","lineage_path":"stats/README.md","mime":"text/markdown","path":"stats/README.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:dcee9f8ead80b7814af63949"}, + {"anchor_id":"aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1","artifact_kind":"config","content_hash":"80d17cfbce1cf277115c965ae5fa916344e8aef0cf28e6cce6e44c37b54e5e60","id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","lineage_path":"stats/packets/published-promotion-readiness-pass-ratio.reference.json","mime":"application/json","path":"stats/packets/published-promotion-readiness-pass-ratio.reference.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c3a5e60947061ee404e3a8b6"}, + {"anchor_id":"aoa:aoa-techniques:anchor:de1cbe45e89a2c422ba362a7","artifact_kind":"config","content_hash":"c57416357b479f9c0d29cc2af610fcaa5e8239b55cb930ae26c420c495971a26","id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","lineage_path":"stats/port.manifest.json","mime":"application/json","path":"stats/port.manifest.json","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7b226751a5779ec3035b239d"}, {"anchor_id":"aoa:aoa-techniques:anchor:d88e1c4bad1b0610f57813e4","artifact_kind":"document","content_hash":"a76c718ad1736c20c88b31ffe3d4dd9e3e1b81e63e8a1880105b2348f4098a58","id":"aoa:aoa-techniques:artifact:d537a4537f49cb72b8045d90","lineage_path":"techniques/AGENTS.md","mime":"text/markdown","path":"techniques/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:877f3fe721805c934dbfe3b0"}, {"anchor_id":"aoa:aoa-techniques:anchor:4bb64dccf4cd84ccae49e469","artifact_kind":"document","content_hash":"f6797d4ff6a798518d0bd46cd16f30ff2de7aea43780638bcafa933a9e527dde","id":"aoa:aoa-techniques:artifact:aac1fdea85399dc5bb3a69f6","lineage_path":"techniques/agent-workflows/AGENTS.md","mime":"text/markdown","path":"techniques/agent-workflows/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d812a05deb525c7601e19f92"}, {"anchor_id":"aoa:aoa-techniques:anchor:3f6616bc510ef69ec85f8310","artifact_kind":"document","content_hash":"3c90ec66af5505b2fd251f4b193230ea5c068e073dd60b1221e4ddcf9e2f2a49","id":"aoa:aoa-techniques:artifact:7aa7e4b9fe7d2eed132b58ee","lineage_path":"techniques/continuity/AGENTS.md","mime":"text/markdown","path":"techniques/continuity/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c8b5087ddad0a3afb7c1568e"}, @@ -2055,12 +2060,13 @@ {"anchor_id":"aoa:aoa-techniques:anchor:faf746b7a53866226e5c2b3c","artifact_kind":"document","content_hash":"fd9b39d29f61072a219597669884cba0cb428a694b37283a8410424ce516e0f8","id":"aoa:aoa-techniques:artifact:712d5f03480e57eb0994afdd","lineage_path":"tests/AGENTS.md","mime":"text/markdown","path":"tests/AGENTS.md","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:0735c6f95709d68acb07e7cf"}, {"anchor_id":"aoa:aoa-techniques:anchor:321ac6db0395e08a070722ec","artifact_kind":"source_code","content_hash":"1b52c67d7c1052a668437eb7b9297e9f0a6bc8bb5c66f0010014530163a9cd62","id":"aoa:aoa-techniques:artifact:018896bc1d0eaf2756c5b6ee","lineage_path":"tests/support/topology_inventory.py","mime":"text/x-python","path":"tests/support/topology_inventory.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2e7bca9615305a7df09c68a4"}, {"anchor_id":"aoa:aoa-techniques:anchor:ff73bc0280dd6138c2c8e51d","artifact_kind":"validator","content_hash":"2a4931bc44563a5b22ba1c58a88c6e265b6cfdc610f693fd50bba9af1ea9e600","id":"aoa:aoa-techniques:artifact:40891dcacd7def19d666e3eb","lineage_path":"tests/support/validate_repo_fixtures.py","mime":"text/x-python","path":"tests/support/validate_repo_fixtures.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:5a250130adf5d736c25d532c"}, - {"anchor_id":"aoa:aoa-techniques:anchor:9cc7ca4245209d9ac659a736","artifact_kind":"test","content_hash":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","lineage_path":"tests/test_agents_mesh.py","mime":"text/x-python","path":"tests/test_agents_mesh.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:adf3dd8f82093a69abe927b9"}, + {"anchor_id":"aoa:aoa-techniques:anchor:9cc7ca4245209d9ac659a736","artifact_kind":"test","content_hash":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","lineage_path":"tests/test_agents_mesh.py","mime":"text/x-python","path":"tests/test_agents_mesh.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:3d19d685ea1f4b710cc67ec7"}, {"anchor_id":"aoa:aoa-techniques:anchor:f3dc1e711c49dad3e623583f","artifact_kind":"test","content_hash":"96d942021322b174f8afd2a30e359ef662363ad2c5716c1dae7f1022e004500c","id":"aoa:aoa-techniques:artifact:098f12afb4fd11c72d66bfee","lineage_path":"tests/test_current_direction_routes.py","mime":"text/x-python","path":"tests/test_current_direction_routes.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:34b454455e5fea83ca698ee3"}, {"anchor_id":"aoa:aoa-techniques:anchor:782586ebd868087106224faf","artifact_kind":"test","content_hash":"3e4860d66a8089f02520e200b18e22b7798ee6dbc31d20eecd3ccc193101246d","id":"aoa:aoa-techniques:artifact:b90af86566bbb19195eefe41","lineage_path":"tests/test_decision_indexes.py","mime":"text/x-python","path":"tests/test_decision_indexes.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e8b0c5e5af2dbc96f521fbb4"}, {"anchor_id":"aoa:aoa-techniques:anchor:503d79d5c7e72c975eb35bdb","artifact_kind":"test","content_hash":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","id":"aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171","lineage_path":"tests/test_docs_surface_guardrails.py","mime":"text/x-python","path":"tests/test_docs_surface_guardrails.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:4fddbe4cd5c2d62d37465c73"}, {"anchor_id":"aoa:aoa-techniques:anchor:154389af303e447610eaa593","artifact_kind":"test","content_hash":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","id":"aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0","lineage_path":"tests/test_downstream_feed_contracts.py","mime":"text/x-python","path":"tests/test_downstream_feed_contracts.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:6a09d8d83d4f4019841bfa60"}, - {"anchor_id":"aoa:aoa-techniques:anchor:600bf60f135562857113242d","artifact_kind":"test","content_hash":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","lineage_path":"tests/test_github_workflow_topology.py","mime":"text/x-python","path":"tests/test_github_workflow_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f0ca578bbb3891fa67c3c2d1"}, + {"anchor_id":"aoa:aoa-techniques:anchor:600bf60f135562857113242d","artifact_kind":"test","content_hash":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","lineage_path":"tests/test_github_workflow_topology.py","mime":"text/x-python","path":"tests/test_github_workflow_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:fd3f511b90d49cc949ce1ad5"}, + {"anchor_id":"aoa:aoa-techniques:anchor:a34e409cad41c756827551c1","artifact_kind":"test","content_hash":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","lineage_path":"tests/test_local_stats_port.py","mime":"text/x-python","path":"tests/test_local_stats_port.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2dafcd9ee202ad442c00693b"}, {"anchor_id":"aoa:aoa-techniques:anchor:1c03f7edffadf90c461dcb44","artifact_kind":"test","content_hash":"5ee32f86c3257b326899f3050bf53f8522dae8b94b895673bf5c542c48b06aed","id":"aoa:aoa-techniques:artifact:d990104fd42a98fd27b96867","lineage_path":"tests/test_nested_agents_docs.py","mime":"text/x-python","path":"tests/test_nested_agents_docs.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:2d466dbc90c09f1c0ed1941e"}, {"anchor_id":"aoa:aoa-techniques:anchor:3bb58326fa489b1aba02a064","artifact_kind":"test","content_hash":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","id":"aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2","lineage_path":"tests/test_release_check.py","mime":"text/x-python","path":"tests/test_release_check.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:63c1406f2a534e0b5eb82efe"}, {"anchor_id":"aoa:aoa-techniques:anchor:bcd9180670351ea5814b34ea","artifact_kind":"test","content_hash":"15d361a33c946c95bd1412b67adb2fa94deb43ad1c64abd045e29d269141cafb","id":"aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0","lineage_path":"tests/test_roadmap_parity.py","mime":"text/x-python","path":"tests/test_roadmap_parity.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:89d85f810ef18872c37d777f"}, @@ -2069,20 +2075,20 @@ {"anchor_id":"aoa:aoa-techniques:anchor:ef1d913536ddf6783088905f","artifact_kind":"test","content_hash":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","id":"aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae","lineage_path":"tests/test_technique_intelligence.py","mime":"text/x-python","path":"tests/test_technique_intelligence.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:f79c2f99154cc211058be9e7"}, {"anchor_id":"aoa:aoa-techniques:anchor:f0ffaf3b7bf0bae97872af76","artifact_kind":"test","content_hash":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","id":"aoa:aoa-techniques:artifact:9474485b910fe51774c07f50","lineage_path":"tests/test_test_topology.py","mime":"text/x-python","path":"tests/test_test_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b10c4a080a06a3c55a680563"}, {"anchor_id":"aoa:aoa-techniques:anchor:1e8c672d059473f20827dd52","artifact_kind":"test","content_hash":"786d9d04a6dcba445b9be1ae3e7d5d533b56d5f9d4d8097711cee65cb9789176","id":"aoa:aoa-techniques:artifact:8658ee6a5e9a7c7b185a1d3e","lineage_path":"tests/test_validate_repo_agents_mesh.py","mime":"text/x-python","path":"tests/test_validate_repo_agents_mesh.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:7300d3d49db4c4e9ab1553e6"}, - {"anchor_id":"aoa:aoa-techniques:anchor:7c4fc50a967f667e4aab1e09","artifact_kind":"test","content_hash":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","lineage_path":"tests/test_validate_repo_ci_release_authority.py","mime":"text/x-python","path":"tests/test_validate_repo_ci_release_authority.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:a7aa9bab4ffbf8813640e43f"}, + {"anchor_id":"aoa:aoa-techniques:anchor:7c4fc50a967f667e4aab1e09","artifact_kind":"test","content_hash":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","lineage_path":"tests/test_validate_repo_ci_release_authority.py","mime":"text/x-python","path":"tests/test_validate_repo_ci_release_authority.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:c988c88b13672222377d62ee"}, {"anchor_id":"aoa:aoa-techniques:anchor:660895c90976ec04c12753c8","artifact_kind":"test","content_hash":"75ea96accc00d5ba348a1a3db62197b0bfc93400342ad6609a271e406821649c","id":"aoa:aoa-techniques:artifact:b8959f6cec62a716dfef8fd1","lineage_path":"tests/test_validate_repo_compatibility_imports.py","mime":"text/x-python","path":"tests/test_validate_repo_compatibility_imports.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:ab41a33ab6fa05a4a102d256"}, {"anchor_id":"aoa:aoa-techniques:anchor:252e1f9e875634c2740af2bd","artifact_kind":"test","content_hash":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","id":"aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8","lineage_path":"tests/test_validate_repo_generated_drift.py","mime":"text/x-python","path":"tests/test_validate_repo_generated_drift.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:673ab89718ddce6f6c7d1819"}, {"anchor_id":"aoa:aoa-techniques:anchor:4440f6f092bbc21d45b38c68","artifact_kind":"test","content_hash":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","id":"aoa:aoa-techniques:artifact:20edd23620da977fb144b11f","lineage_path":"tests/test_validate_repo_public_hygiene.py","mime":"text/x-python","path":"tests/test_validate_repo_public_hygiene.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:777b44133425654ed434e3eb"}, {"anchor_id":"aoa:aoa-techniques:anchor:8b59d0d1b806e762138723ee","artifact_kind":"test","content_hash":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","id":"aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd","lineage_path":"tests/test_validate_repo_questbook_intelligence.py","mime":"text/x-python","path":"tests/test_validate_repo_questbook_intelligence.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:43db612874895e4f8e1fcbca"}, - {"anchor_id":"aoa:aoa-techniques:anchor:e1f66dd2761026a2be6ac3a4","artifact_kind":"test","content_hash":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","id":"aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","lineage_path":"tests/test_validate_repo_source_contracts.py","mime":"text/x-python","path":"tests/test_validate_repo_source_contracts.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b1304c57b82ac4fc6f98af2e"}, + {"anchor_id":"aoa:aoa-techniques:anchor:e1f66dd2761026a2be6ac3a4","artifact_kind":"test","content_hash":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","id":"aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","lineage_path":"tests/test_validate_repo_source_contracts.py","mime":"text/x-python","path":"tests/test_validate_repo_source_contracts.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:d61e6af0add0f3a8452c2912"}, {"anchor_id":"aoa:aoa-techniques:anchor:916f3e93be9caf885a15ca06","artifact_kind":"test","content_hash":"6311888aa2c60efcd52e728336a7175582dbb67e30a7a6b4efe7a2ca538af4f9","id":"aoa:aoa-techniques:artifact:03b76abc01704964e291b6af","lineage_path":"tests/test_validate_semantic_agents.py","mime":"text/x-python","path":"tests/test_validate_semantic_agents.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:36ef42c83cf5045714890bac"}, - {"anchor_id":"aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e","artifact_kind":"test","content_hash":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","lineage_path":"tests/test_validation_command_authority.py","mime":"text/x-python","path":"tests/test_validation_command_authority.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b702756e0a23fb1f7645144b"}, - {"anchor_id":"aoa:aoa-techniques:anchor:7ebd6e48caf049d05dca19fa","artifact_kind":"test","content_hash":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","lineage_path":"tests/test_validation_topology.py","mime":"text/x-python","path":"tests/test_validation_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e14305252f7eb53e56093c58"}, + {"anchor_id":"aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e","artifact_kind":"test","content_hash":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","lineage_path":"tests/test_validation_command_authority.py","mime":"text/x-python","path":"tests/test_validation_command_authority.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:b73c41117774fafedf764d5d"}, + {"anchor_id":"aoa:aoa-techniques:anchor:7ebd6e48caf049d05dca19fa","artifact_kind":"test","content_hash":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","lineage_path":"tests/test_validation_topology.py","mime":"text/x-python","path":"tests/test_validation_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:67c4a6bb2529015d626ec5a2"}, {"anchor_id":"aoa:aoa-techniques:anchor:d14332634523225dd7c62507","artifact_kind":"test","content_hash":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","id":"aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473","lineage_path":"tests/test_validator_module_topology.py","mime":"text/x-python","path":"tests/test_validator_module_topology.py","provenance_ref":"deterministic","surface_state":"authored_source","temporal_ref":"current","trust_ref":"deterministic","version_id":"aoa:aoa-techniques:artifact-version:e9fa3859d5e4f70a2ffd14e2"} ], "index_identity": { "artifact_kind": "repository_artifact_index", - "content_digest": "a6be34a0a3e170a977ae104c99d43ffe742c0fd019364e23a7c94aea2b5fb475", + "content_digest": "b4447f6907feb653baee929b54b7b662bede8d4d14b622d76ba17ebcddc47d4f", "index_kind": "artifact", "local_id": "index:repo-local:artifacts", "schema_ref": "aoa-kag:schemas/repo-local-kag-repository-index.schema.json" @@ -2168,19 +2174,19 @@ }, "schema_version": "aoa-repo-local-kag-repository-index-v2", "source_index": { - "content_digest": "6f6234e98c9535e09c594f0067aaa9b7cf200315fe9ad4614fc56f068764f93e", + "content_digest": "5ac3215479d6a47cceccef0d681726080f6f044829400eb36c014b65d84b9c79", "local_id": "index:repo-local:source-surfaces", "path": "kag/indexes/source_surface_index.json" }, "summary": { - "entry_count": 2079, + "entry_count": 2085, "kind_counts": { "asset": 50, - "config": 114, + "config": 116, "data_table": 1, "dependency_manifest": 1, "directory_marker": 4, - "document": 1631, + "document": 1633, "generated_readmodel": 49, "index": 1, "license": 1, @@ -2193,8 +2199,8 @@ "script": 36, "security": 1, "source_code": 19, - "test": 74, - "validator": 17 + "test": 75, + "validator": 18 } } } diff --git a/kag/indexes/repo_assertion_index.json b/kag/indexes/repo_assertion_index.json index bec82fcd..6a8fc1c9 100644 --- a/kag/indexes/repo_assertion_index.json +++ b/kag/indexes/repo_assertion_index.json @@ -540,6 +540,7 @@ {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8896dfd177a1666dbc203202"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:7eb5cf184916e7c9daf5fc7a","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3f29c341908125fe27778aef"],"subject_id":"aoa:aoa-techniques:artifact:3f29c341908125fe27778aef","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2129cc6ab0ae64aab4507db5"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:c821fb06d01ffe41c5b8ec70","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3f501b7b16e871d49ec9709d"],"subject_id":"aoa:aoa-techniques:artifact:3f501b7b16e871d49ec9709d","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:2f42a1a7a978a6f8e0ec674d","object":{"kind":"literal","value":"command"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"subject_id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:08e1b11499b0ab80f73e5c01","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a"],"subject_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a32eaa6335966eec7b1a1e2d"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:eaed1410d91dae00eaa69a0d","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c"],"subject_id":"aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c776ec5b2e0d95daef8773cf"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:ac774b79ff00bfbcc6e7bf16","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075"],"subject_id":"aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:daacf55144c3dff2f738cb23"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:be4d3563257833c5724ea133","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3faea6ec16c782a2552f82dc"],"subject_id":"aoa:aoa-techniques:artifact:3faea6ec16c782a2552f82dc","temporal_ref":"current","trust_ref":"deterministic"}, @@ -559,6 +560,7 @@ {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4dbc97ffe6ff7b96dbfaadb2"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:39dffabb685312809e967bff","object":{"kind":"literal","value":"surface"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6"],"subject_id":"aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d8d3a4fd08271182777b74a7"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:073073e3beb1e0552010d9d4","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:414a09b9e6ec0fec2c11ec9d"],"subject_id":"aoa:aoa-techniques:artifact:414a09b9e6ec0fec2c11ec9d","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d77561ec8489743f312f8675"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:612da12bb7333fbd1a316803","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:414b0a361e825c8fd86799e2"],"subject_id":"aoa:aoa-techniques:artifact:414b0a361e825c8fd86799e2","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:f937d8936e510ef32d4dc6e7","object":{"kind":"literal","value":"surface"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:41627642723565570a5ba138"],"subject_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:462d705a4cb5d208fa7d9ce9"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:3190c31034c90cf923b05ee2","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:416736a2a201444290bbfb32"],"subject_id":"aoa:aoa-techniques:artifact:416736a2a201444290bbfb32","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5074af8a54c3e80460e40232"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:9654375dc15295d18fb0e10a","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:418c6be0e0b584548a956f40"],"subject_id":"aoa:aoa-techniques:artifact:418c6be0e0b584548a956f40","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:017cbd2f4868c2b183418b92"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:46a73ae790b6685d4710059c","object":{"kind":"literal","value":"command"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"subject_id":"aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee","temporal_ref":"current","trust_ref":"deterministic"}, @@ -880,6 +882,7 @@ {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c90514efe4c6f02678b8fbe6"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:839821fdc6c090f0325cdce7","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6b742cefa7d28236093d7a8e"],"subject_id":"aoa:aoa-techniques:artifact:6b742cefa7d28236093d7a8e","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:42661e4ea58c46356b794c94"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:1f772da616020dd9ea90ae89","object":{"kind":"literal","value":"artifact"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6b7d6ccea097ae14a6c98d6c"],"subject_id":"aoa:aoa-techniques:artifact:6b7d6ccea097ae14a6c98d6c","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:58e01a3fbf6a66fcdd246a67"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:98b64ecc852cd61b4f1fa1d0","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f"],"subject_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:e62a6fc44b83db5ca6bd1c32","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5"],"subject_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:73d6e655cdd42c12629bd5d4"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:c31b86e6dc5f07cd08d19b0b","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99"],"subject_id":"aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:07d2283661b6173af8df0399"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:93902bf581b737fa2256c987","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6be2d5a266f8a31f35dafc6f"],"subject_id":"aoa:aoa-techniques:artifact:6be2d5a266f8a31f35dafc6f","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6c1ed5fe78fcc8e49a1f045e"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:96cb96737a65a8c3f58aebb9","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6becd745ed2dbfa4b6e4e6f1"],"subject_id":"aoa:aoa-techniques:artifact:6becd745ed2dbfa4b6e4e6f1","temporal_ref":"current","trust_ref":"deterministic"}, @@ -1012,6 +1015,7 @@ {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:575946391cdaa8ff6a82b97e"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:8b387691b264e59f1e501b04","object":{"kind":"literal","value":"surface"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7b8605db8641e13d6b613b32"],"subject_id":"aoa:aoa-techniques:artifact:7b8605db8641e13d6b613b32","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2ed5515d1b5f880d8f274c58"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:fbb21214114a89a65e46edcb","object":{"kind":"literal","value":"artifact"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7bee74fe0254b259c85979a4"],"subject_id":"aoa:aoa-techniques:artifact:7bee74fe0254b259c85979a4","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:951f052a3c46f816fecc2f3b"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:15ab5267930493eb91105b06","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175"],"subject_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a34e409cad41c756827551c1"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:72faa01752bc611c485eece6","object":{"kind":"literal","value":"command"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"subject_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d896485a992c9aba72be467"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:66870fce718d006e04391281","object":{"kind":"literal","value":"surface"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a"],"subject_id":"aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cd7aa78cd08df9b305f86628"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:31297b4d47db0eb2ca122883","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c4158a807d03e8b332141dc"],"subject_id":"aoa:aoa-techniques:artifact:7c4158a807d03e8b332141dc","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:59444a2ca3b50c1062309d27"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:4edd70ac2a53c708a31b4fdd","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c63d46303d9a2a5bbaff428"],"subject_id":"aoa:aoa-techniques:artifact:7c63d46303d9a2a5bbaff428","temporal_ref":"current","trust_ref":"deterministic"}, @@ -1259,6 +1263,7 @@ {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:688196f084f80a0f4d7bcde6"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:1d69d7396f2c5b919ff247e2","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73"],"subject_id":"aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:66e44c3112cdaf117a959584"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:bad9e06f8df083862e5e291a","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98a4d14e0dc54ba32ba9958e"],"subject_id":"aoa:aoa-techniques:artifact:98a4d14e0dc54ba32ba9958e","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bf8f26c2da253c7556b9df24"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:783da59e19617ec1b1d23ce2","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98a53b8158b65b6e4c5fd342"],"subject_id":"aoa:aoa-techniques:artifact:98a53b8158b65b6e4c5fd342","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:de1cbe45e89a2c422ba362a7"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:2249007b64ff2dbed900e3b2","object":{"kind":"literal","value":"surface"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee"],"subject_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:12c2162d9aa0e2c3cf6a4895"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:f5ef535829164d41aeab3cca","object":{"kind":"literal","value":"surface"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba"],"subject_id":"aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c35f2c4604d83d6c8d0aa525"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:036e9d1a9ba444a208614fa0","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2"],"subject_id":"aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9653ec36aabc5160baccf4ac"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:c5b94e23725a085a95fedddc","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae"],"subject_id":"aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae","temporal_ref":"current","trust_ref":"deterministic"}, @@ -1919,6 +1924,7 @@ {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dc3af6b732a018a5a4a06413"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:d831ebc41bd54167fadbdc9a","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:e96a2cda0b11c8e8f0ef99c8"],"subject_id":"aoa:aoa-techniques:artifact:e96a2cda0b11c8e8f0ef99c8","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:16e431f327930deab13b43a9"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:b841e4c77ebd06e38af74733","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6"],"subject_id":"aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:96fba1c5a54973c7cb44ce25"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:6c44d376ad7441bbd2529fa4","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63"],"subject_id":"aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:c7f95ae902c2ba4fc5a02abd","object":{"kind":"literal","value":"command"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454"],"subject_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bdf86ca77718a43ce5faf19d"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:2811db43d9a30b2bf59ad4a6","object":{"kind":"literal","value":"artifact"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5"],"subject_id":"aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f20d173e0089aba8f4d5f5ca"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:a41395d27aa6a4fc787ce645","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea74f3c9a143c34fa99dfde8"],"subject_id":"aoa:aoa-techniques:artifact:ea74f3c9a143c34fa99dfde8","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"classification","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d8a578d637ce806b419c2fa"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:8d07add1758e49fe0ae2fd39","object":{"kind":"literal","value":"document"},"predicate":"classified_as","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9"],"subject_id":"aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9","temporal_ref":"current","trust_ref":"deterministic"}, @@ -2105,6 +2111,8 @@ {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:c182bb6aee8bd1651b84d4a9","object":{"kind":"literal","value":"1"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d"],"subject_id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4dbc97ffe6ff7b96dbfaadb2"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:9828e0303404c672b639dc1a","object":{"kind":"literal","value":"https://github.com/8Dionysus/aoa-techniques/mechanics/method-growth/parts/obsolescence/schemas/technique_obsolescence_notice_v1.json"},"predicate":"declares_contract_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6"],"subject_id":"aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4dbc97ffe6ff7b96dbfaadb2"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:60f4f0987f08dffa3d07c647","object":{"kind":"literal","value":"https://json-schema.org/draft/2020-12/schema"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6"],"subject_id":"aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6","temporal_ref":"current","trust_ref":"declared"}, + {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:f287a4af98656b3892e9ca1f","object":{"kind":"literal","value":"1.0.0"},"predicate":"declares_contract_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:41627642723565570a5ba138"],"subject_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","temporal_ref":"current","trust_ref":"declared"}, + {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:bfc7b23adebb0e65aa9017d3","object":{"kind":"literal","value":"aoa_stats_measurement_packet_v1"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:41627642723565570a5ba138"],"subject_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:8540b9cba755869d39b1c1f3","object":{"kind":"literal","value":"1"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa"],"subject_id":"aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ef077b0e56f1f8d6972e05cf"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:87fa8babe069fd1383823528","object":{"kind":"literal","value":"https://github.com/8Dionysus/aoa-techniques/mechanics/distillation/parts/external-candidate-ledger/schemas/external-candidate-registry-entry.schema.json"},"predicate":"declares_contract_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:4aba082c98932530e04ed537"],"subject_id":"aoa:aoa-techniques:artifact:4aba082c98932530e04ed537","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ef077b0e56f1f8d6972e05cf"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:d82c495d6218675c4d885107","object":{"kind":"literal","value":"https://json-schema.org/draft/2020-12/schema"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:4aba082c98932530e04ed537"],"subject_id":"aoa:aoa-techniques:artifact:4aba082c98932530e04ed537","temporal_ref":"current","trust_ref":"declared"}, @@ -2145,6 +2153,8 @@ {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9ad08765b70f5485cac9d76a"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:f9d1f8f50e383cc98d7468e8","object":{"kind":"literal","value":"distillation-external-candidate-registry.seed/0.1"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:94221beed9e75626c26fa5f0"],"subject_id":"aoa:aoa-techniques:artifact:94221beed9e75626c26fa5f0","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:50aef2de61585199f4a70f21"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:31a4d8a3c902a2b90eb034ed","object":{"kind":"literal","value":"aoa_techniques_spark_lane_registry_v1"},"predicate":"declares_contract_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:9851eb240bc1fe75a20ec096"],"subject_id":"aoa:aoa-techniques:artifact:9851eb240bc1fe75a20ec096","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:50aef2de61585199f4a70f21"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:b364c45efda0a829ceecf9cb","object":{"kind":"literal","value":"https://json-schema.org/draft/2020-12/schema"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:9851eb240bc1fe75a20ec096"],"subject_id":"aoa:aoa-techniques:artifact:9851eb240bc1fe75a20ec096","temporal_ref":"current","trust_ref":"declared"}, + {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:de1cbe45e89a2c422ba362a7"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:82544ebb537f6fa3c661ce4e","object":{"kind":"literal","value":"1.0.0"},"predicate":"declares_contract_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee"],"subject_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","temporal_ref":"current","trust_ref":"declared"}, + {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:de1cbe45e89a2c422ba362a7"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:66e0a6b27ae42d90e7a5b53b","object":{"kind":"literal","value":"aoa_stats_local_port_v1"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee"],"subject_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:12c2162d9aa0e2c3cf6a4895"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:79ef7acb61836a781aced253","object":{"kind":"literal","value":"https://aoa-techniques.dev/schemas/technique_intelligence_dag.schema.json"},"predicate":"declares_contract_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba"],"subject_id":"aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:12c2162d9aa0e2c3cf6a4895"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:6debcdc79a9329c68a0f0bbb","object":{"kind":"literal","value":"https://json-schema.org/draft/2020-12/schema"},"predicate":"declares_schema_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba"],"subject_id":"aoa:aoa-techniques:artifact:98cc2d5ea3bce804eac4dbba","temporal_ref":"current","trust_ref":"declared"}, {"assertion_kind":"contract","confidence":0.75,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7255ae89498b31e3f2f967d5"],"evidence_class":"declared","id":"aoa:aoa-techniques:assertion:941c3a9b8e4300030bfe314e","object":{"kind":"literal","value":"aoa_techniques_spark_result_v1"},"predicate":"declares_contract_version","provenance_ref":"declared","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:9d5e17a6b07eb18a81912631"],"subject_id":"aoa:aoa-techniques:artifact:9d5e17a6b07eb18a81912631","temporal_ref":"current","trust_ref":"declared"}, @@ -2815,6 +2825,7 @@ {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2129cc6ab0ae64aab4507db5"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:6869b310d16138ef927bf514","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3f501b7b16e871d49ec9709d"],"subject_id":"aoa:aoa-techniques:artifact:3f501b7b16e871d49ec9709d","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:b61396c846fa79040c2dfd91","object":{"kind":"literal","value":"test"},"predicate":"command_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"subject_id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:94abfa910fd084bd957fc645","object":{"kind":"literal","value":"mechanic_package"},"predicate":"mechanics_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"subject_id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:354e14e1d336693d6e74fa3b","object":{"kind":"literal","value":"agents"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a"],"subject_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a32eaa6335966eec7b1a1e2d"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:2b619fecb0011706ef60e79d","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c"],"subject_id":"aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c776ec5b2e0d95daef8773cf"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:841d02a645171f77a9ce8db9","object":{"kind":"literal","value":"mechanics_doc"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075"],"subject_id":"aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c776ec5b2e0d95daef8773cf"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:6c1cc5ce08bb5cc319ea0a71","object":{"kind":"literal","value":"part_doc"},"predicate":"mechanics_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075"],"subject_id":"aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075","temporal_ref":"current","trust_ref":"deterministic"}, @@ -3213,6 +3224,7 @@ {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:039f330566e791ed1e794c41"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:25fb28271571af9eb2747a29","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6b227e49a51d6ec3ed31546f"],"subject_id":"aoa:aoa-techniques:artifact:6b227e49a51d6ec3ed31546f","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c90514efe4c6f02678b8fbe6"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:bd69cfe4f10bf8cda0e71f36","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6b742cefa7d28236093d7a8e"],"subject_id":"aoa:aoa-techniques:artifact:6b742cefa7d28236093d7a8e","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:58e01a3fbf6a66fcdd246a67"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:953e4390d7526c3fd30228c4","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f"],"subject_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:ee580f70c677778f3e134365","object":{"kind":"literal","value":"readme"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5"],"subject_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:73d6e655cdd42c12629bd5d4"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:fe1f9bcfdba80964694168ff","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99"],"subject_id":"aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:07d2283661b6173af8df0399"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:ac300204b026641fb71d4e4d","object":{"kind":"literal","value":"readme"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6be2d5a266f8a31f35dafc6f"],"subject_id":"aoa:aoa-techniques:artifact:6be2d5a266f8a31f35dafc6f","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6c1ed5fe78fcc8e49a1f045e"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:88a8b7182eb2d52d1809896b","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:6becd745ed2dbfa4b6e4e6f1"],"subject_id":"aoa:aoa-techniques:artifact:6becd745ed2dbfa4b6e4e6f1","temporal_ref":"current","trust_ref":"deterministic"}, @@ -3360,6 +3372,7 @@ {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cd2c630839a64eaee4605c3c"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:a39fd96f230d717f1d83d864","object":{"kind":"literal","value":"legacy"},"predicate":"mechanics_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7b2260a83613041a4b540d95"],"subject_id":"aoa:aoa-techniques:artifact:7b2260a83613041a4b540d95","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7bb286afd32f30de3ff4b3a6"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:3dc9c04bcbbd601d6259f21c","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7b55c8d13fa2d110fa3a6daa"],"subject_id":"aoa:aoa-techniques:artifact:7b55c8d13fa2d110fa3a6daa","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:951f052a3c46f816fecc2f3b"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:b9a330c5b16043b59a23cf17","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175"],"subject_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a34e409cad41c756827551c1"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:5ebe7e5b29479443dbc8883c","object":{"kind":"literal","value":"test"},"predicate":"command_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"subject_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d896485a992c9aba72be467"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:648ed8bda6f74c722afceeef","object":{"kind":"literal","value":"mechanic_part"},"predicate":"mechanics_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a"],"subject_id":"aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cd7aa78cd08df9b305f86628"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:1a6954f22b16e25ae802e925","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c4158a807d03e8b332141dc"],"subject_id":"aoa:aoa-techniques:artifact:7c4158a807d03e8b332141dc","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:59444a2ca3b50c1062309d27"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:bba7b3142df0752647ea9d7f","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:7c63d46303d9a2a5bbaff428"],"subject_id":"aoa:aoa-techniques:artifact:7c63d46303d9a2a5bbaff428","temporal_ref":"current","trust_ref":"deterministic"}, @@ -4395,6 +4408,7 @@ {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:16e431f327930deab13b43a9"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:7a3b7ebcedca91146f9bc996","object":{"kind":"literal","value":"mechanics_doc"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6"],"subject_id":"aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:16e431f327930deab13b43a9"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:d843bb20b2aeaf36ba18461c","object":{"kind":"literal","value":"part_doc"},"predicate":"mechanics_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6"],"subject_id":"aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:96fba1c5a54973c7cb44ce25"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:99ae39a0bc50de5dd2273e15","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63"],"subject_id":"aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63","temporal_ref":"current","trust_ref":"deterministic"}, + {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:4fbddc0c8cfcb97bac18d701","object":{"kind":"literal","value":"validator"},"predicate":"command_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454"],"subject_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f20d173e0089aba8f4d5f5ca"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:d7665bd869218b5d32dc9f16","object":{"kind":"literal","value":"unknown_document"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea74f3c9a143c34fa99dfde8"],"subject_id":"aoa:aoa-techniques:artifact:ea74f3c9a143c34fa99dfde8","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d8a578d637ce806b419c2fa"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:28d9cc0136f5c967ece3e05a","object":{"kind":"literal","value":"roadmap"},"predicate":"document_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9"],"subject_id":"aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9","temporal_ref":"current","trust_ref":"deterministic"}, {"assertion_kind":"role","confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d8a578d637ce806b419c2fa"],"evidence_class":"deterministic","id":"aoa:aoa-techniques:assertion:9d4895ec72899188a25649fd","object":{"kind":"literal","value":"mechanic_package"},"predicate":"mechanics_role","provenance_ref":"deterministic","quality_state":"accepted","source_record_ids":["aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9"],"subject_id":"aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9","temporal_ref":"current","trust_ref":"deterministic"}, @@ -4581,7 +4595,7 @@ ], "index_identity": { "artifact_kind": "repository_assertion_index", - "content_digest": "ebb4e93e8161cabbd25d8496baf3011e62539b01b7bd0e800293b291b4bd611a", + "content_digest": "f985ad62484a0417ccf715e9dc99233a0174fd50b200c6ce358acf64a61a03a2", "index_kind": "assertion", "local_id": "index:repo-local:assertions", "schema_ref": "aoa-kag:schemas/repo-local-kag-repository-index.schema.json" @@ -4671,16 +4685,16 @@ }, "schema_version": "aoa-repo-local-kag-repository-index-v2", "source_index": { - "content_digest": "6f6234e98c9535e09c594f0067aaa9b7cf200315fe9ad4614fc56f068764f93e", + "content_digest": "5ac3215479d6a47cceccef0d681726080f6f044829400eb36c014b65d84b9c79", "local_id": "index:repo-local:source-surfaces", "path": "kag/indexes/source_surface_index.json" }, "summary": { - "entry_count": 4578, + "entry_count": 4592, "kind_counts": { - "classification": 2079, - "contract": 103, - "role": 2396 + "classification": 2085, + "contract": 107, + "role": 2400 } } } diff --git a/kag/indexes/repo_entity_index.json b/kag/indexes/repo_entity_index.json index e3f4b316..520dfbef 100644 --- a/kag/indexes/repo_entity_index.json +++ b/kag/indexes/repo_entity_index.json @@ -44,6 +44,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:a6593f655c48f058fb98be67"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:78ad5dbf87debe01a22f084e","label":"quests/techniques/AGENTS.md","provenance_ref":"deterministic","semantic_key":"quests/techniques/AGENTS.md","source_digest":"e0160327badb89296df25a765c7d99854e806b3fbfdbd35451262313352a654d","source_record_ids":["aoa:aoa-techniques:artifact:fa4c2103641a1e3297b5e2db"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:85678bd420420491d2cd28d7"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:7a233ace8995de5fce505459","label":"mechanics/agon/parts/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/agon/parts/AGENTS.md","source_digest":"3e1f494fc6b6b1bb600d038e2f1f3b9517bc9e55b08ae2ee0c731c06f3f6bd62","source_record_ids":["aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:afbbf316a793168113b9e43e"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:7bd442c619aafbf4e24f301b","label":"docs/guardrails/AGENTS.md","provenance_ref":"deterministic","semantic_key":"docs/guardrails/AGENTS.md","source_digest":"e148b1e72b725e4920425ffca74a0d7181bb016de59add14e3bc1e8dc039c827","source_record_ids":["aoa:aoa-techniques:artifact:1d8b9b7788329ad7f8b9f7c2"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:7bfa6104649e975409ad1aa7","label":"stats/AGENTS.md","provenance_ref":"deterministic","semantic_key":"stats/AGENTS.md","source_digest":"487c331a007d383597c96a84c5f6f615f13ef1cba3a2e6659af894290a98659e","source_record_ids":["aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b468584d9a09ecdd134146e2"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:83387659cf3dfd6a1dbefb13","label":"mechanics/checkpoint/parts/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/parts/AGENTS.md","source_digest":"411f2856254a7c5ee049eaf9f2ce2fccea092463fbcf05f43c62edfdb29a0a63","source_record_ids":["aoa:aoa-techniques:artifact:702481da184f07f5e5d7f9b6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4d7c20aafd5a5616b97b2e62"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:89084e101d6d45ff2693c79e","label":"docs/AGENTS.md","provenance_ref":"deterministic","semantic_key":"docs/AGENTS.md","source_digest":"25501b6bd53ae906a645c06229c6870e4c1a64278e329667dde12630fe62acc9","source_record_ids":["aoa:aoa-techniques:artifact:d00743dc4e878f258330dead"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:62e1f6ee0e746ecba57b5555"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:8a4a901152814c4cc06ec3f1","label":"mechanics/growth-cycle/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/growth-cycle/AGENTS.md","source_digest":"d96dc243756ee7158380b102a6db5611a5c6c41ca1ffe4215cb0d1ce6497493f","source_record_ids":["aoa:aoa-techniques:artifact:ac0fbb989bdb0fc797cd718d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -74,7 +75,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:05ff61d82a32d6f84dd59ed4"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:cf60616ffd431b1cf581862d","label":"mechanics/release-support/parts/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/parts/AGENTS.md","source_digest":"1dd7befaa1719f4cc60c4a030bea74043e606bcfd8ef16f5d8f3187f0d643cba","source_record_ids":["aoa:aoa-techniques:artifact:67e9b6c07b17b6f2605622e2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e3dd9a43b7f6089811ca3814"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:d251f949346d606ecf5d13b1","label":"mechanics/recurrence/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence/AGENTS.md","source_digest":"f25cc64a173ed291ae99f475cd41de8ad5d1b14ed0d658442e68308cbe5b93b8","source_record_ids":["aoa:aoa-techniques:artifact:8a4bf6cbf0b0b17588e64529"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a1a9eb814de45b8be9f8d563"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:d427eb41bacb3c865e305f25","label":"mechanics/audit/legacy/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/legacy/AGENTS.md","source_digest":"fe0ff8e2324b19ec035b0178ee7776a0c833bc12562871e894942575f7ee07a1","source_record_ids":["aoa:aoa-techniques:artifact:d49c981907e98d0aabf2e838"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:a5c5258791826a9f80356f29"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:d612bd0b3c2dfd50fea0d5d3","label":"docs/decisions/AGENTS.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/AGENTS.md","source_digest":"e701822f01613a64b36afc0314bfab791c3607a708ece4905f42355e0b0eabe9","source_record_ids":["aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:a5c5258791826a9f80356f29"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:d612bd0b3c2dfd50fea0d5d3","label":"docs/decisions/AGENTS.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/AGENTS.md","source_digest":"f3cbb0acbf4daa2717006fcc0007b8e5b89f5e8d59d9bd2f06163d08c178e1aa","source_record_ids":["aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4bb64dccf4cd84ccae49e469"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:d66ad56fa304dfe9cd5e101c","label":"techniques/agent-workflows/AGENTS.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/AGENTS.md","source_digest":"f6797d4ff6a798518d0bd46cd16f30ff2de7aea43780638bcafa933a9e527dde","source_record_ids":["aoa:aoa-techniques:artifact:aac1fdea85399dc5bb3a69f6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4f2795975d0b20305415b283"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:d67e5d775cb2d0f7298ca25f","label":"kag/AGENTS.md","provenance_ref":"deterministic","semantic_key":"kag/AGENTS.md","source_digest":"1eaceae85a3ebb6b8625557fe9bb98d639334c32e1fd7b6954d24cd104f8d246","source_record_ids":["aoa:aoa-techniques:artifact:f80d68b85bc445f7b8bc4a73"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:89faf2102a33eb93ea1d7dc6"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:d992b946bff70d4b531ae950","label":"scripts/AGENTS.md","provenance_ref":"deterministic","semantic_key":"scripts/AGENTS.md","source_digest":"b21852bb5884f61e19c722292fdd6883813ea385b5eb2a413e41d72db3ef65a9","source_record_ids":["aoa:aoa-techniques:artifact:cb91064dc54bd943e58ccc25"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -90,7 +91,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:f96be22bbfa558dcf4c52c14"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:f80c2657df234cafe9217d74","label":"mechanics/distillation/parts/technique-reform-ingress/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/AGENTS.md","source_digest":"d4fb3921061ad3eadfde25ec740483ec951d642eff4341c740efd508c672df84","source_record_ids":["aoa:aoa-techniques:artifact:538a4458db4e8a9435f20f9b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:651b0fcaa678b2d00dadcb51"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:f81cf0e7c007c90f0eee3c65","label":"templates/AGENTS.md","provenance_ref":"deterministic","semantic_key":"templates/AGENTS.md","source_digest":"3b96a5adc3ec746b3e319a22a4c165f4e6c352b2a348037d5434a3c7f4313c9e","source_record_ids":["aoa:aoa-techniques:artifact:a186e61abf9abcc675452202"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:96ab28771ed4bdc714ec8f54"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:f85a9d59f31cd223df88ec4e","label":"mechanics/recurrence/parts/live-observation-producers/scripts/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence/parts/live-observation-producers/scripts/AGENTS.md","source_digest":"4b035510f7b89e6ed96e9bcecfdf7d589d6cf43faed067c441062a9dc2606240","source_record_ids":["aoa:aoa-techniques:artifact:fe10cc3966eef02f0a57ad2e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","label":"AGENTS.md","provenance_ref":"deterministic","semantic_key":"AGENTS.md","source_digest":"e8f950fd581a75da8a284f43a7734046153e04dae046b10eff8bb39f26e98e3c","source_record_ids":["aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","label":"AGENTS.md","provenance_ref":"deterministic","semantic_key":"AGENTS.md","source_digest":"2baf594ab9f8e7ed6efb041872cfd5a9bf9e07becc167089b6fff6d0a9e6b6a6","source_record_ids":["aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5ddeac9e9e4e87d227a4f1db"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:fb04aa4be3f5567b042bef85","label":"mechanics/checkpoint/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/AGENTS.md","source_digest":"ba34075a1204f4014a77cd6f757092988344fe5bb67488cb35d033898c74c957","source_record_ids":["aoa:aoa-techniques:artifact:cc4a61a4cb72286efc062e32"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bbabdf5180fdfe1c66ba7e3b"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:fc7f7a27a0bf4ba5713f829b","label":"mechanics/method-growth/parts/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/parts/AGENTS.md","source_digest":"5fc8772addecfc010b125474d92a809f94b6269b2f09a1b5d4b931523cc8e9b1","source_record_ids":["aoa:aoa-techniques:artifact:d3617f5c4554fc9e730c5f0e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6f22f4f13a7a236cf6aab6d6"],"entity_kind":"agent_route","id":"aoa:aoa-techniques:entity:ffb0cd57663dae588779ee4f","label":"mechanics/distillation/parts/technique-reform-ingress/data/AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/data/AGENTS.md","source_digest":"13e5ad1ff983b7d1e48444728b2e4b9edfd79ac6d8303ffe3349ad9e895854a7","source_record_ids":["aoa:aoa-techniques:artifact:34627f21196e425b7edb4a68"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -101,7 +102,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:d0a678f1411d5ec7284adb24"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:088be33e908e2dfd00c1350c","label":"mechanics/distillation/tests/test_distillation_incoming_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_incoming_topology.py","source_digest":"6ef1879023abc7a411e7fc2ea99516b2569c23eb3799d4a34bf7f81ec6a6afa4","source_record_ids":["aoa:aoa-techniques:artifact:17887a255a778da6f8fe0313"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:992e4c748b558b55fbbb9482"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:0b90844264ce5b431a37cea5","label":"scripts/validate_nested_agents.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_nested_agents.py","source_digest":"1e933171e646487625f55bc0333e6eb72d497f11db815e02115d900602461df1","source_record_ids":["aoa:aoa-techniques:artifact:5befe5bd63a605b75db26c3a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ad15789ff37f3d468ff8b076"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:0f8c93ee1e4dbcbee4462359","label":"scripts/release_check.py","provenance_ref":"deterministic","semantic_key":"scripts/release_check.py","source_digest":"f49bc6c93dcd1146eb57253a0914db4e9c36b5dd06fba53178222c452abad300","source_record_ids":["aoa:aoa-techniques:artifact:070046d3ac1483cac58e8963"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7c4fc50a967f667e4aab1e09"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:102b9257a1b608fa05df1f5c","label":"tests/test_validate_repo_ci_release_authority.py","provenance_ref":"deterministic","semantic_key":"tests/test_validate_repo_ci_release_authority.py","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7c4fc50a967f667e4aab1e09"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:102b9257a1b608fa05df1f5c","label":"tests/test_validate_repo_ci_release_authority.py","provenance_ref":"deterministic","semantic_key":"tests/test_validate_repo_ci_release_authority.py","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6624f264692d6da00e210709"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:127d8371db5891b515423a0e","label":".agents/skills/aoa-safe-infra-change/scripts/risk_surface_scan.py","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-safe-infra-change/scripts/risk_surface_scan.py","source_digest":"88b6260627a9c15f75fb58d38d55a506f9230ba2cef1940e8ea09fd70bd417a5","source_record_ids":["aoa:aoa-techniques:artifact:4783038b8178cb7128c32402"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:503d79d5c7e72c975eb35bdb"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:12ecb679f45852cb344e408f","label":"tests/test_docs_surface_guardrails.py","provenance_ref":"deterministic","semantic_key":"tests/test_docs_surface_guardrails.py","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9bb98c284f4f80ccbc19a7e6"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:138a2787ae2367b0ab466111","label":"mechanics/rpg/tests/test_rpg_mechanics_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_rpg_mechanics_topology.py","source_digest":"0ee8e83f7952b25dfa80917805d322045895d25d84d54817ed91984b0c4883ea","source_record_ids":["aoa:aoa-techniques:artifact:695fcf0256bfb75cc8039476"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -109,7 +110,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b2603ed71ba69024fd84e702"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:165fe4f58f50a391caa3cf55","label":"scripts/build_kag_export.py","provenance_ref":"deterministic","semantic_key":"scripts/build_kag_export.py","source_digest":"a0aad8a565400d698b541c7f1b87c70a6dee0d0e415e917059554ac3a9085324","source_record_ids":["aoa:aoa-techniques:artifact:d630508e51064a2a5e0d3490"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f603f2d584d5ab76a1877ff6"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:1724f0f49906630313183d25","label":"mechanics/distillation/tests/test_kag_source_lift_tree_pilot.py","provenance_ref":"deterministic","semantic_key":"tests/test_kag_source_lift_tree_pilot.py","source_digest":"877d4ee775f5b77366cf88c7c1c82f36ae5297c01a715ae0449986182f8f96d9","source_record_ids":["aoa:aoa-techniques:artifact:50ff6e7647104f2158343fac"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ff73bc0280dd6138c2c8e51d"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:17ec76a9953c0842c9029953","label":"tests/support/validate_repo_fixtures.py","provenance_ref":"deterministic","semantic_key":"tests/support/validate_repo_fixtures.py","source_digest":"2a4931bc44563a5b22ba1c58a88c6e265b6cfdc610f693fd50bba9af1ea9e600","source_record_ids":["aoa:aoa-techniques:artifact:40891dcacd7def19d666e3eb"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:17f141724f930f234ecc0e20","label":"tests/test_validation_command_authority.py","provenance_ref":"deterministic","semantic_key":"tests/test_validation_command_authority.py","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:17f141724f930f234ecc0e20","label":"tests/test_validation_command_authority.py","provenance_ref":"deterministic","semantic_key":"tests/test_validation_command_authority.py","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0a225f0f13fca2586c011374"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:183a68ba009bbb0905e4b727","label":"mechanics/distillation/tests/test_distillation_reform_ingress_reviews.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/tests/test_distillation_reform_ingress_reviews.py","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:1ce27798ea70791c739d14e7","label":"mechanics/questbook/tests/test_questbook_mechanics_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_questbook_mechanics_topology.py","source_digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:64029f0b3c3af008b870f4ee"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:1e2e49fc0d18f323fc3594ca","label":"mechanics/recurrence/tests/test_recurrence_mechanics_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_recurrence_mechanics_topology.py","source_digest":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","source_record_ids":["aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -118,7 +119,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:83c9cee2518e7ca5bc94929c"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:23c697f0f0882be6483cf392","label":"mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py","source_digest":"269e2e2ac5cef83d7e059ff7160580f419aeb4c1208376d48c3b13f1ae9ff555","source_record_ids":["aoa:aoa-techniques:artifact:19ad5940ccc2d23e9da0c7f6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7e781f53509355187248453e"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:24179fc97cdcda4e92f3d314","label":"scripts/build_example_manifest.py","provenance_ref":"deterministic","semantic_key":"scripts/build_example_manifest.py","source_digest":"09d8ba9a18a115a7d9b5ccb908ad71977010fca8c24dad9095a9e76a92a0cbd4","source_record_ids":["aoa:aoa-techniques:artifact:6408b7f6d50ec2fda7b3357a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:25bd5860f48d9d0db01787f6"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:259cf7fda2bb4b8a5049d418","label":"mechanics/agon/parts/move-technique-bridge/tests/test_agon_technique_binding_candidates.py","provenance_ref":"deterministic","semantic_key":"tests/test_agon_technique_binding_candidates.py","source_digest":"bf5d344a04f7d1781b1da0948afd7b956c9728037af254d93300df2ea149ce01","source_record_ids":["aoa:aoa-techniques:artifact:83139d36644f0d2cbe04ce64"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:17ffa9045deefa31c5ce000f"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:2603b5fda8d0d555d35de96e","label":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:17ffa9045deefa31c5ce000f"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:2603b5fda8d0d555d35de96e","label":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7e1720e087547f25caccf943"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:276699bfd83e9c9b1ccc5c11","label":"mechanics/tests/test_experience_release_contracts.py","provenance_ref":"deterministic","semantic_key":"tests/test_experience_wave5_seed_contracts.py","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:beebfbe62f129484bf6104ba"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:2792924a300e06d18b50a41e","label":"mechanics/distillation/tests/test_history_artifacts_tree_pilot.py","provenance_ref":"deterministic","semantic_key":"tests/test_history_artifacts_tree_pilot.py","source_digest":"a0eeb86c6e74f0b35b1713511550ccd283df7a64fc52a77a768c7ea066bad49a","source_record_ids":["aoa:aoa-techniques:artifact:e5099efe04874e260d36b86a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:154389af303e447610eaa593"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:27bf048a4a71d766b0efe7dc","label":"tests/test_downstream_feed_contracts.py","provenance_ref":"deterministic","semantic_key":"tests/test_downstream_feed_contracts.py","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -139,6 +140,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:d4489bb0c4a4fbde366d5e04"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:4801d0c2a3a1aa9ce19034ce","label":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ae98c9a44df514475a5ef1bd"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:4880b5c08050e6a36f8da4b8","label":"mechanics/distillation/parts/external-candidate-ledger/scripts/build_external_candidate_registry.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/external-candidate-ledger/scripts/build_external_candidate_registry.py","source_digest":"76196f39b46ff4a290c1e34ec79e23ae714f7b117c616bb589167ff69b7eec5d","source_record_ids":["aoa:aoa-techniques:artifact:bac359db4375a051d784ce67"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:660895c90976ec04c12753c8"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:48a97b2f9df46b8446c75214","label":"tests/test_validate_repo_compatibility_imports.py","provenance_ref":"deterministic","semantic_key":"tests/test_validate_repo_compatibility_imports.py","source_digest":"75ea96accc00d5ba348a1a3db62197b0bfc93400342ad6609a271e406821649c","source_record_ids":["aoa:aoa-techniques:artifact:b8959f6cec62a716dfef8fd1"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:494d21737a2c0e9d75dffbea","label":"scripts/validate_local_stats_port.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_local_stats_port.py","source_digest":"efd486b5f0ebebbfdca1b64eb45b38f51036e7918b78539d59b3dc57a0646c0a","source_record_ids":["aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bcd9180670351ea5814b34ea"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:4bcde636f843f8f4ae34bcee","label":"tests/test_roadmap_parity.py","provenance_ref":"deterministic","semantic_key":"tests/test_roadmap_parity.py","source_digest":"15d361a33c946c95bd1412b67adb2fa94deb43ad1c64abd045e29d269141cafb","source_record_ids":["aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8b59d0d1b806e762138723ee"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:4ca162b1572a3dd5a327452d","label":"tests/test_validate_repo_questbook_intelligence.py","provenance_ref":"deterministic","semantic_key":"tests/test_validate_repo_questbook_intelligence.py","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f0ae42f04dceaca4c38d9c7a"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:4e38accd72e42e1cc59c917e","label":".agents/skills/aoa-dry-run-first/scripts/dry_run_contract.py","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-dry-run-first/scripts/dry_run_contract.py","source_digest":"679498e2f8e139bc6c68fbaeb023c82a68f062a2aab04557a9e4b6d89f5adc94","source_record_ids":["aoa:aoa-techniques:artifact:e1480fe2d209b15c9c80b7e2"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -151,10 +153,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:8b9fa3f67cc6cc007b878f0a"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:6140e0575d4b992eb08eafe1","label":"mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py","source_digest":"02bf98ad93ed0ce929c1db22d2abf817d897e6cc1339850d0612f6c533599a36","source_record_ids":["aoa:aoa-techniques:artifact:6bf6b62a56d7affb222fb3fd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4aeb621a2da610b566dfb3de"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:6158894a4549094ebb1ef474","label":"mechanics/recurrence/tests/test_publish_live_receipts.py","provenance_ref":"deterministic","semantic_key":"tests/test_publish_live_receipts.py","source_digest":"07dd997de496e385a243270aad1364a8a207a2eef515f8936b589a0eaae50ff0","source_record_ids":["aoa:aoa-techniques:artifact:10b851fc91ec1551b6ac7e03"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:72fe7d00090431aed1044af0"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:63b7f9f55b07e98cf1c64117","label":"mechanics/agon/parts/move-technique-bridge/scripts/validate_agon_technique_binding_candidates.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_agon_technique_binding_candidates.py","source_digest":"a5395e290f2e4385a7701fa152b21b176efdf8ef97daba406b7965b4b6b0ab00","source_record_ids":["aoa:aoa-techniques:artifact:b4260ef3235bf666c0f5e048"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:600bf60f135562857113242d"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:63c80e607e1bb7677bbf406f","label":"tests/test_github_workflow_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_github_workflow_topology.py","source_digest":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:600bf60f135562857113242d"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:63c80e607e1bb7677bbf406f","label":"tests/test_github_workflow_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_github_workflow_topology.py","source_digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c48b6d6e49417c76506e009b"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:63e4e319c814cdc919f11b75","label":"mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/validate_cross_layer_candidate_registry.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/validate_cross_layer_candidate_registry.py","source_digest":"42a897c75c7aab4aea5bae9745d9eca639fb83dc6231808433152b6d63dc5c80","source_record_ids":["aoa:aoa-techniques:artifact:5374bda42b1a16346071489a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fe214cc828e9a7ec1fee9b90"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:65d084e7aac7f02a65fe3f2d","label":"scripts/build_shadow_review_manifest.py","provenance_ref":"deterministic","semantic_key":"scripts/build_shadow_review_manifest.py","source_digest":"44a058ef019f50ddf4b79868ce7bae5bf6906b1a1a59f8e6bbc0ca7476b22362","source_record_ids":["aoa:aoa-techniques:artifact:966d6fa5656961731c441dfc"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e1f66dd2761026a2be6ac3a4"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:692e1a5ce8cd1c6e538e0e63","label":"tests/test_validate_repo_source_contracts.py","provenance_ref":"deterministic","semantic_key":"tests/test_validate_repo_source_contracts.py","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e1f66dd2761026a2be6ac3a4"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:692e1a5ce8cd1c6e538e0e63","label":"tests/test_validate_repo_source_contracts.py","provenance_ref":"deterministic","semantic_key":"tests/test_validate_repo_source_contracts.py","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e76b0f29dde266311d494e44"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:6aa76a7366ab79a6cd06d651","label":"mechanics/agon/parts/epistemic-technique-candidates/scripts/build_agon_epistemic_technique_candidates.py","provenance_ref":"deterministic","semantic_key":"scripts/build_agon_epistemic_technique_candidates.py","source_digest":"64b66e16765717391ca150260c73ee5ab55438274050ddc7e6f1eb43140e425e","source_record_ids":["aoa:aoa-techniques:artifact:1ea19a95e311526da500ae47"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5c5a9ea83ed4755b013edebf"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:6c454ece4f83654b0aba9c88","label":"scripts/build_agents_mesh_index.py","provenance_ref":"deterministic","semantic_key":"scripts/build_agents_mesh_index.py","source_digest":"e2c212b6371f2c59fbd73c2fd3e8238bb83538cf28643383cc1a0c6a2243909b","source_record_ids":["aoa:aoa-techniques:artifact:d418d4c43458866dd3cfc410"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9933ca6a75de6a7f405e2fa6"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:7000dee1cd3f40f3f81ed028","label":"scripts/build_kind_manifest.py","provenance_ref":"deterministic","semantic_key":"scripts/build_kind_manifest.py","source_digest":"33f01d4df8612dfa9c65c72cfff8d11fcfa4ae73dd8082e591675e72660eabd5","source_record_ids":["aoa:aoa-techniques:artifact:53ffb86edb6cafc084ad6558"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -174,7 +176,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:9e4cac7b102c0bc695156dfb"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:8e960c4bd693d3ab6028fb94","label":".agents/skills/aoa-safe-infra-change/scripts/infra_change_contract.py","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-safe-infra-change/scripts/infra_change_contract.py","source_digest":"e4381cd2c63502625b2c52a5263442f51918fcd5c86d57b71691c6479927fb7a","source_record_ids":["aoa:aoa-techniques:artifact:f0743278822e9f09d5471953"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:87d420d120859b0c37849987"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:95e04b876b731244b5d5f93a","label":"scripts/generate_decision_indexes.py","provenance_ref":"deterministic","semantic_key":"scripts/generate_decision_indexes.py","source_digest":"5288a81253366efba7d075309b806d4482845d70eb9a50754c3b5e71adc9e671","source_record_ids":["aoa:aoa-techniques:artifact:9ee2698c6e40371183b10fdd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c4f6c00ae3db9159a1cb91c7"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:97a19102270742d8c86eb792","label":"mechanics/distillation/tests/test_skill_discovery_tree_pilot.py","provenance_ref":"deterministic","semantic_key":"tests/test_skill_discovery_tree_pilot.py","source_digest":"4d5a458554372200a14f047aa67f8eee828aa07003dc0d355edfef530b101c58","source_record_ids":["aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7ebd6e48caf049d05dca19fa"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:981f8d481d4ddb8edfb1e282","label":"tests/test_validation_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_validation_topology.py","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7ebd6e48caf049d05dca19fa"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:981f8d481d4ddb8edfb1e282","label":"tests/test_validation_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_validation_topology.py","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8354c9cffb8970ac26ef1646"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:9d6b06ec855664284f3091db","label":"mechanics/agon/parts/epistemic-technique-candidates/scripts/validate_agon_epistemic_technique_candidates.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_agon_epistemic_technique_candidates.py","source_digest":"87f2f7ea36c69d9f2519f3492224807709128c8d114e04243f2b7d20598046cf","source_record_ids":["aoa:aoa-techniques:artifact:759c48fbb09f99f50b4da1a7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1c8cd17bb7a837a02eb50c23"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:9e020523e6b674d526889de1","label":"mechanics/method-growth/tests/test_method_growth_mechanics_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_method_growth_mechanics_topology.py","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4ee1d2c2763ee13e01827f9f"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:9e3bd9fbb8e15f0c2032b552","label":"scripts/validate_semantic_agents.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_semantic_agents.py","source_digest":"cb4693f0c81b74d76252ea5f3fed57b86a7ff90d4487f9c09bd8be57ebf0d9be","source_record_ids":["aoa:aoa-techniques:artifact:7d17f6046e98c9a3736efcb8"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -184,7 +186,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:669654784ff3aacf80d98cbd"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:a7d7af47f64503fc3ff69315","label":"mechanics/distillation/tests/test_skill_support_tree_pilot.py","provenance_ref":"deterministic","semantic_key":"tests/test_skill_support_tree_pilot.py","source_digest":"be31fda9de0d38712184d67229f7e4ebfa04aff3db72de81710f35db405247e1","source_record_ids":["aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ed30810d749089eb4df0ea53"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:a8b275ad056e974880b742bd","label":"tests/test_root_legacy_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_root_legacy_topology.py","source_digest":"be548f162aee661b61751d8be2ebc7237a8ed73500f761d12103a66e64457ead","source_record_ids":["aoa:aoa-techniques:artifact:5eed110f16220e7ba98c2982"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ae9174c0915262e42e11fef0"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:a99483312f5d12b692653cba","label":"mechanics/tests/test_mechanics_request_receipts.py","provenance_ref":"deterministic","semantic_key":"tests/test_mechanics_request_receipts.py","source_digest":"bfebeee3200e324838db107c7c9460238b3937193156f8a7d0ea6b3818656108","source_record_ids":["aoa:aoa-techniques:artifact:1bdaff3aa0a3613590d76c27"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9cc7ca4245209d9ac659a736"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:abbfcc36c8cb53652d2584bb","label":"tests/test_agents_mesh.py","provenance_ref":"deterministic","semantic_key":"tests/test_agents_mesh.py","source_digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9cc7ca4245209d9ac659a736"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:abbfcc36c8cb53652d2584bb","label":"tests/test_agents_mesh.py","provenance_ref":"deterministic","semantic_key":"tests/test_agents_mesh.py","source_digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:08461cb1fec5568a19d91878"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:ac0bec2d89dfb0839cbc0fa9","label":"mechanics/distillation/tests/test_published_summary_tree_pilot.py","provenance_ref":"deterministic","semantic_key":"tests/test_published_summary_tree_pilot.py","source_digest":"fcd185b6b699a5d1d34b84f973590848ff943be9afcabc7753f29fa119dc3841","source_record_ids":["aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5cc7b7e9f9ce0d55f371fb68"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:ad689bea4b7fd4e6d2351b2f","label":"scripts/build_repo_doc_surface_manifest.py","provenance_ref":"deterministic","semantic_key":"scripts/build_repo_doc_surface_manifest.py","source_digest":"48c2ac2f954003a0ad51e4f6e42b3028d49d4f530588b45bf2d01715c50fc487","source_record_ids":["aoa:aoa-techniques:artifact:87bed0746754a2242f1910f8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1c03f7edffadf90c461dcb44"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:b706272cf4a37271a7baa89b","label":"tests/test_nested_agents_docs.py","provenance_ref":"deterministic","semantic_key":"tests/test_nested_agents_docs.py","source_digest":"5ee32f86c3257b326899f3050bf53f8522dae8b94b895673bf5c542c48b06aed","source_record_ids":["aoa:aoa-techniques:artifact:d990104fd42a98fd27b96867"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -193,6 +195,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:8e1dc88584ff1ea2978f6e36"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:bdc384fa4877c12425cc5962","label":"scripts/validate_abyss_machine_kag_export_bundle.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_abyss_machine_kag_export_bundle.py","source_digest":"df4f2110b6c85b90aaf96cb740098706a8004ae1a4d850c1eabe32f2f0771002","source_record_ids":["aoa:aoa-techniques:artifact:7eaedf4491a248821a2ecacc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:11cac66ef107d693a8c44ff7"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:bf89cc88ed54c257b48f599f","label":"mechanics/distillation/tests/test_evaluation_chain_tree_pilot.py","provenance_ref":"deterministic","semantic_key":"tests/test_evaluation_chain_tree_pilot.py","source_digest":"4a09365d51a6b68831dfa2f0681603fd453af9ec9e2a2ff661870efed6e60a3f","source_record_ids":["aoa:aoa-techniques:artifact:82e028210399ae4428247f3c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9658ffb32a49a4b52422e50c"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:bfaaa599ef15e0e468dbd5de","label":"scripts/validate_repo.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_repo.py","source_digest":"ed0726263ac070986cea996c85d319a328d20d1e3d743d19439aa6f38340e229","source_record_ids":["aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:a34e409cad41c756827551c1"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:c2a8f797810fd066c29ce179","label":"tests/test_local_stats_port.py","provenance_ref":"deterministic","semantic_key":"tests/test_local_stats_port.py","source_digest":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4f77ae669acaeac74aee3543"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:cb2946517a64850ea558ce12","label":".agents/spark/tests/test_spark_lane.py","provenance_ref":"deterministic","semantic_key":".agents/spark/tests/test_spark_lane.py","source_digest":"218073a99eeccb5503fda3ac7ab3c30cffa4151432ad400956f4d7b5d0fba65d","source_record_ids":["aoa:aoa-techniques:artifact:2b31a3041fd1f1fcf0b72bc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6dcd40d75400cbc939b04164"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:cc3f1e719078d6cff71c68c3","label":"scripts/validate_agents_md_shape.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_agents_md_shape.py","source_digest":"221578d391c0093be1779f0567fe82934a9b0087378c308cae08a199793e71da","source_record_ids":["aoa:aoa-techniques:artifact:97117975e7a1a05d5c0e0a11"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:413c394090cfbc94d781202d"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:cce5e8ad644749a95759aa80","label":"scripts/validate_agents_mesh_index.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_agents_mesh_index.py","source_digest":"1fc10e20b4e033b8ee432185b81c73abe7a4bb8b8979fded2ffd530cfc831b2e","source_record_ids":["aoa:aoa-techniques:artifact:e5f4c29fb35ffbe366619cd7"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -208,7 +211,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:ef1d913536ddf6783088905f"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:e1e9991b89f7e7f9ad13e558","label":"tests/test_technique_intelligence.py","provenance_ref":"deterministic","semantic_key":"tests/test_technique_intelligence.py","source_digest":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","source_record_ids":["aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5c0d602f4f53bec3d3a5f111"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:e28270b6efc2576fb15d6158","label":"mechanics/distillation/tests/test_handoff_continuation_tree_pilot.py","provenance_ref":"deterministic","semantic_key":"tests/test_handoff_continuation_tree_pilot.py","source_digest":"392cb68ca208540637f362302ba47330282ed0e0838a6812ece5e1e83b126d59","source_record_ids":["aoa:aoa-techniques:artifact:7407303c3d88ba654f200fed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:96d8fdf94001d913fa71febc"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:e3228f8c59138178f74a431d","label":"mechanics/release-support/tests/test_release_support_mechanics_topology.py","provenance_ref":"deterministic","semantic_key":"tests/test_release_support_mechanics_topology.py","source_digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","source_record_ids":["aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:2dcb946bb46f02a50eb66d0e"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:e324b8f1b7073750f0b829e3","label":"scripts/validate_repo_local_kag_index.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_repo_local_kag_index.py","source_digest":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:2dcb946bb46f02a50eb66d0e"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:e324b8f1b7073750f0b829e3","label":"scripts/validate_repo_local_kag_index.py","provenance_ref":"deterministic","semantic_key":"scripts/validate_repo_local_kag_index.py","source_digest":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d0869f2520c586735a1e3ec6"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:e4d5d06ca9c25f4f788fba94","label":"mechanics/distillation/tests/test_distillation_package_surfaces.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/tests/test_distillation_package_surfaces.py","source_digest":"7297a6af92ddc2a4bd5a53489e7c08f6cf479ae7ecccd6f89b365f9085b7efd7","source_record_ids":["aoa:aoa-techniques:artifact:ced7185b3e1ab4e5f1d322d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fef88c03c0bd2ffd010a2904"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:ed8b7e4b32f942d728311af8","label":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4440f6f092bbc21d45b38c68"],"entity_kind":"command","id":"aoa:aoa-techniques:entity:ef3bd132d6c79e1c6a4decd7","label":"tests/test_validate_repo_public_hygiene.py","provenance_ref":"deterministic","semantic_key":"tests/test_validate_repo_public_hygiene.py","source_digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","source_record_ids":["aoa:aoa-techniques:artifact:20edd23620da977fb144b11f"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -260,85 +263,85 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:a6bca21ff480e1e6367da9bd"],"entity_kind":"contract","id":"aoa:aoa-techniques:entity:d391dd42dc987b753486a1b1","label":".agents/skills/aoa-summon/references/summon-request-v3.schema.json","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-summon/references/summon-request-v3.schema.json","source_digest":"cf40528ffc09e038747cec62e2ab77f5cf63aa5824df92bf7b4d9d59223ebd25","source_record_ids":["aoa:aoa-techniques:artifact:2bc1eff02adb2881f6b6e12b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:052e3ebdeee0ad37b88dffd8"],"entity_kind":"contract","id":"aoa:aoa-techniques:entity:f01ecd219188740a75dcdda0","label":"mechanics/method-growth/parts/retention-checks/schemas/technique_retention_probe_v1.json","provenance_ref":"deterministic","semantic_key":"schemas/technique_retention_probe_v1.json","source_digest":"c959b6245afd2fa4c6f0adc42dfadf5f64e1e1732bd321f2d378ba8643f2b631","source_record_ids":["aoa:aoa-techniques:artifact:69115555405d4182c0eda99a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c7432410ae936f696ca8c3ca"],"entity_kind":"contract","id":"aoa:aoa-techniques:entity:fdd81371c58099a78aa569a6","label":"mechanics/distillation/parts/agon-candidate-handoff/schemas/agon-candidate-handoff-entry.schema.json","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/schemas/agon-candidate-handoff-entry.schema.json","source_digest":"0be986a9194702790bf0ff8323f3aa0a7379d9636b718c5f8ac5050853f49b42","source_record_ids":["aoa:aoa-techniques:artifact:738280b93c94398fbd150d50"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:fdfc93e407575caec15b0a01"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:00f9c1c06985aee1903fd127","label":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-method-growth-pattern-adoption-gate.md","source_digest":"d80b4772b65bad6cb05f8bd0da6e120aecf23650dde931201672f0d939ac3f0c","source_record_ids":["aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e794fadc2542b1a05edcf08a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:091120dbc782083d0aa075d5","label":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-method-growth-retention-review.md","source_digest":"605a26d80d137acab628f3c3ea938059909e622c6c6754dcce36fefe911d55aa","source_record_ids":["aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:03cdcdb6edc5eadaa69c23e0"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:10f7d7bfa99e4464f8560d79","label":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-method-growth-skill-proposal-handoff.md","source_digest":"3a61235def835c97fd5951deab5d900af2d16d827a7a0adefb217fc31416d6ba","source_record_ids":["aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:29580d1616ca7a518c165a95"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:1613a51f942c6a84f1d9bb45","label":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-17-agents-mesh-canonical-closure.md","source_digest":"944736d074643950ea2c9e618b4947d948b75188b84531389d3d9bb2d624a2ba","source_record_ids":["aoa:aoa-techniques:artifact:36ba783140c1bec340f64427"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:fdfc93e407575caec15b0a01"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:00f9c1c06985aee1903fd127","label":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-method-growth-pattern-adoption-gate.md","source_digest":"7b0143e85be3b1905bd2dab0d549c29fdf7c49fbcd5af4c9600bc6e6310bff38","source_record_ids":["aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e794fadc2542b1a05edcf08a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:091120dbc782083d0aa075d5","label":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-method-growth-retention-review.md","source_digest":"8b78f9bc837f12bca43155f12784a99af1b581a640c1aa115c71090bc7bf1244","source_record_ids":["aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:03cdcdb6edc5eadaa69c23e0"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:10f7d7bfa99e4464f8560d79","label":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-method-growth-skill-proposal-handoff.md","source_digest":"6f6f5026672ac57611c590f4f89655d32581d83f15cef2a0ff0b7d43efa91d18","source_record_ids":["aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:29580d1616ca7a518c165a95"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:1613a51f942c6a84f1d9bb45","label":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-17-agents-mesh-canonical-closure.md","source_digest":"f15bbb2b9f0877c43488dc2220f7c317d1e1248a4863c4f65af501fecf3c3ca7","source_record_ids":["aoa:aoa-techniques:artifact:36ba783140c1bec340f64427"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:768de01ee4eed1d819075a9a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:1bafca394e4c95c386fde41e","label":"docs/decisions/indexes/by-surface.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/indexes/by-surface.md","source_digest":"305d20f44e77e03f2471589865f0a3e5511307d484f57e1aaa684a9f89474ecc","source_record_ids":["aoa:aoa-techniques:artifact:acd156903f044a996b858398"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:482cc1edd5cb89f27fc506bc"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:1bb6ed5a08df8d2056fb6e45","label":"docs/decisions/indexes/by-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/indexes/by-mechanic.md","source_digest":"79c13aff48b2ad1e3c5494b6a08afb869a8eb35af234f51f837cc50dbea1b501","source_record_ids":["aoa:aoa-techniques:artifact:ebd094489b277783f911ea74"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:de063c5f03c824808b005410"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:1cac4ff91bcdbb4942dd0a1b","label":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-technique-reform-scout-input-homes.md","source_digest":"3db272c23ae57f8a4c50bbd238382fb66b9ab51e74d3a10717573a7ff8ce8c8c","source_record_ids":["aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:de063c5f03c824808b005410"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:1cac4ff91bcdbb4942dd0a1b","label":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-technique-reform-scout-input-homes.md","source_digest":"41e30d07e11ccbec1331065e6da2d460e18304a15d803e16a8f4f306c766d990","source_record_ids":["aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:45e2aa2d646982932be117c5"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:1d96bc5d10756d052d15d663","label":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-mechanics-boundary-language-correction.md","source_digest":"a0c585ce03b3a00ba98baaa661bf4c36a85cca31bda08226b9ba09fc98d8752f","source_record_ids":["aoa:aoa-techniques:artifact:a645a53577db8efd068433c5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c1079448157ef4f00c4f23ef"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2110a238255350290abc49ab","label":"docs/decisions/indexes/by-guard.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/indexes/by-guard.md","source_digest":"b50bd53e5a30ad254f69df0317af67a8b304f8cb6b783db288037d5a1d33831d","source_record_ids":["aoa:aoa-techniques:artifact:8ae406686a02a37522de1f6a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:491e2d3e81cfde1d923fcbfa"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:23ddfcc5a2f82bb80c4a6125","label":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-distillation-gate-alignment.md","source_digest":"f735344271c5e69689dad57b0c9601aff26cbe11ed19c1c1a863c37af7ed3209","source_record_ids":["aoa:aoa-techniques:artifact:06e9e8aaedfd37a6721abd79"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:85b3ef63e51dfcbcaeeb7542"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:243eee2c189c2c26fc8a09f5","label":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-root-legacy-provenance-district.md","source_digest":"841089efff8de746fa9ae808bad06cdb9d9f8da1b19c58255f0c04589438f5c2","source_record_ids":["aoa:aoa-techniques:artifact:2ece547f2466235afc086518"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3d723d46da4e52f64a997c69"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:246f238aca45e127f062b6a6","label":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-18-closed-incoming-packets-distillation-legacy.md","source_digest":"f1a9bbd5898fae4f0b8c754cabc989591c03d676bd4d514758981cd5f40dcd2a","source_record_ids":["aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:dc19f8592776efc030a2ae29"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:25ea2c66df8b2c19330bc052","label":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-boundary-bridge-candidate-mechanic.md","source_digest":"3d49ff887ced6763cffd46e514fde8dbc5d51da42fc990eb31648cfeaad912da","source_record_ids":["aoa:aoa-techniques:artifact:4614e41d34def3148f269991"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:eae995c4fd552e040ded1a2b"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:262be28e3ff2242d741cdca3","label":"docs/decisions/TEMPLATE.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/TEMPLATE.md","source_digest":"1dd6942642fa34f7109b3807ff58631aa3b38949f74b0bc0093eff5f42e7cb37","source_record_ids":["aoa:aoa-techniques:artifact:874770b82440579ca24bf934"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3d723d46da4e52f64a997c69"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:246f238aca45e127f062b6a6","label":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-18-closed-incoming-packets-distillation-legacy.md","source_digest":"52cbe7ea21f2fbb5343dc5c5c8a7e40b183893fbb76cd8c61031d51427fd73c5","source_record_ids":["aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:dc19f8592776efc030a2ae29"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:25ea2c66df8b2c19330bc052","label":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-boundary-bridge-candidate-mechanic.md","source_digest":"2f2d0f591b12942626320b0f7461bb97a6aed4e17fe78c0cc801a8e1ff3dd804","source_record_ids":["aoa:aoa-techniques:artifact:4614e41d34def3148f269991"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:eae995c4fd552e040ded1a2b"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:262be28e3ff2242d741cdca3","label":"docs/decisions/TEMPLATE.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/TEMPLATE.md","source_digest":"c48a95e5591c43ec553f58a51af2e2b394e08e3ab5f3bd9deb0346f0cdacf438","source_record_ids":["aoa:aoa-techniques:artifact:874770b82440579ca24bf934"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:77427ef2611ae4fc92160ec3"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:266ec2853b0bbe0e31205daf","label":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-distillation-cross-layer-candidate-registry.md","source_digest":"4dfb240cc118c202869589798a7f516971ff63b419ad8efa8422a9a8dd0d46e1","source_record_ids":["aoa:aoa-techniques:artifact:6ae513b765f8285d63a685c1"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0adfb6eb37cb06410a104adc"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:28b892559798e4f6e8abb565","label":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-15-spark-registry-backed-technique-lane.md","source_digest":"675b8e7d1e2afc2c9e9ee02febd7748cc01c2aec3a57eacae67c9c250e5111da","source_record_ids":["aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3e2ec3593e6b9219196b964a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:29481944ee329060affdbab4","label":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-06-github-landing-and-mechanics-roadmap-route.md","source_digest":"5077b8792c006db195f9747086972cfda9723f94905647d602f9aab0b21bdeb4","source_record_ids":["aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:2b5919e4c84f4db8739b6d1e"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2988784aeec5f9f6d73a7206","label":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-spark-agent-lane-home.md","source_digest":"db2cea2c5f50bc055bf23cc778f01770dac773178cb7840884ae13c8ea71b9a6","source_record_ids":["aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:03b948530a2726e83de356b1"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2ada86234e8dd1305447122a","label":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-18-candidate-intake-active-part-home.md","source_digest":"71839e76185487fdfdadc956626c34b0a5559ae51339e7b132a3137e1e9a05fa","source_record_ids":["aoa:aoa-techniques:artifact:c787e280fd85964945ece4db"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0f471855c1214b41ab685261"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2d04997c39b996d50d47c27e","label":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-method-growth-active-parts-split.md","source_digest":"265f3156afffe27da663fa89a4af3931f1bc2f42a92f9cb1fa555340fb0cb903","source_record_ids":["aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:d34e1db87163c17a6fb9fd78"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2fc3a5c37a117ed43b6f3b0f","label":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-mechanic-contract-packet-homes.md","source_digest":"1e26616dbe4a654cc44e1d7d43db8480b1a56bf2f1e6cbeb6b09e0a30abcc728","source_record_ids":["aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f4a236c5231e392162af2a26"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2fd3f826c2862f9493be78de","label":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-technique-reform-ingress-packet.md","source_digest":"25d005066ac7ef62287056d965ebfa2c32b7ed2f9a872c1fdd7a03d0055280d1","source_record_ids":["aoa:aoa-techniques:artifact:2d91002001af478a6259135d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0adfb6eb37cb06410a104adc"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:28b892559798e4f6e8abb565","label":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-15-spark-registry-backed-technique-lane.md","source_digest":"82e5068f5020778ac0eac2fe16738e9c13834a353235d2bdb778d462fd4c12fa","source_record_ids":["aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3e2ec3593e6b9219196b964a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:29481944ee329060affdbab4","label":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-06-github-landing-and-mechanics-roadmap-route.md","source_digest":"0e4ae4ecb068a41b6a2229f6862ddf3cf2525354f754cd5d771fab9b60e99c0d","source_record_ids":["aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:2b5919e4c84f4db8739b6d1e"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2988784aeec5f9f6d73a7206","label":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-spark-agent-lane-home.md","source_digest":"e235769a68c162a427d6dd6f42fd8a947226ad2c34c37da60ad6f8553dd3c40c","source_record_ids":["aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:03b948530a2726e83de356b1"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2ada86234e8dd1305447122a","label":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-18-candidate-intake-active-part-home.md","source_digest":"810cb5c050390c92d1d6a3b064e1068b5755946744133835a323dae0a61c5456","source_record_ids":["aoa:aoa-techniques:artifact:c787e280fd85964945ece4db"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0f471855c1214b41ab685261"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2d04997c39b996d50d47c27e","label":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-method-growth-active-parts-split.md","source_digest":"125225bce69958dbd62dedd96ddd0efe60d8dd97f5a1bdcc0f3d5b2f018dd81c","source_record_ids":["aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d34e1db87163c17a6fb9fd78"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2fc3a5c37a117ed43b6f3b0f","label":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-mechanic-contract-packet-homes.md","source_digest":"f78380b3c2468c2045b68c9132a61ed2890bbb512ace829452eb4fe1988ff2a4","source_record_ids":["aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f4a236c5231e392162af2a26"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:2fd3f826c2862f9493be78de","label":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-technique-reform-ingress-packet.md","source_digest":"626dc0198cc6402fad36587e0a1c7791ce75e520108a3f190b6f566c46a0a85a","source_record_ids":["aoa:aoa-techniques:artifact:2d91002001af478a6259135d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e6950d1e41005f1147fe053f"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:365f2a9c1bb1e807c6a64c4f","label":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-audit-active-parts-split.md","source_digest":"05230f2c2c1237dd526d520c18749e874aa92351f47d6f5e5f362232f3886bdf","source_record_ids":["aoa:aoa-techniques:artifact:51af704d4fce18536bbf0d79"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:4a81686407eee2a552262b50"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:36c604e1446b7a7f217ea46a","label":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-checkpoint-candidate-mechanic.md","source_digest":"14b43e9757b9e9197ae7b134db055a069c0a4a3d7de1909bd0b4850031aac2c4","source_record_ids":["aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:646ea72b4ab3140409bfa77e"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:3b49a1313480bee312f0f121","label":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-06-template-modernization-optional-sections.md","source_digest":"c2b88a5311389ff8b12bfe1d755731bf44b70653ee88c74e354af43790499bb4","source_record_ids":["aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:4a81686407eee2a552262b50"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:36c604e1446b7a7f217ea46a","label":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-checkpoint-candidate-mechanic.md","source_digest":"dd6919a049add62e1edd5bcdbc25ac13cf0d3cff65f0185fbaeae26ed0861235","source_record_ids":["aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:646ea72b4ab3140409bfa77e"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:3b49a1313480bee312f0f121","label":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-06-template-modernization-optional-sections.md","source_digest":"01ba834a2dbe649e9131b233aa5a0fc93dc92a8aca0def9032b1a27b97db6b29","source_record_ids":["aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:356f5d8a442ca9d2278c6085"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:3b8bd525a3d4aab3d5917c56","label":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-mechanics-surface-split.md","source_digest":"3a727a08cb795fd3ed16c33399fd6ae5ef45d97ab6c6f712d792c8d8f9da0a41","source_record_ids":["aoa:aoa-techniques:artifact:bafb21d6b5f0a0ecf11c99ca"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9fe4670ae9ef9765644b8b69"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:43c37ee883a95a1b1f53d9e1","label":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md","source_digest":"a25d7ae71c9e58ed097eed8733a858f699ea80e0373a9579a5c3e7c6beeee265","source_record_ids":["aoa:aoa-techniques:artifact:8bf5f4dcc2591df286544649"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ef843bcb1612e3964215ba93"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:45b9e66285bdd8b833aca664","label":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-canonical-retro-audit-part.md","source_digest":"97a8fc71d0129f5315f2db05983209eb798106593ef168b63aa42aa7f1943d48","source_record_ids":["aoa:aoa-techniques:artifact:99eb5f0598cd3ce7b0d0facd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:dc4374c3472ba893695c21fb"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:4f29c8722660d731a7adacac","label":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-mechanics-legacy-scaffold-bridge.md","source_digest":"f5322e55550acf4f71f233ebc10848b19f5755f9abfdb6280e573519c28da9cd","source_record_ids":["aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:52603fde04d46bceacfa165e"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:4fc2fcf5e0867410aa11343a","label":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-recurrence-manifest-part-home.md","source_digest":"82225311bd0edc0578f3c24582c5d34ee95ca5cb0cf401a0272d11a42b37d709","source_record_ids":["aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:dc4374c3472ba893695c21fb"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:4f29c8722660d731a7adacac","label":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-mechanics-legacy-scaffold-bridge.md","source_digest":"e4511ebfabbb282e947fc4fedd2ccb0bf602788f4bb89ac5d1d0b3e42849006e","source_record_ids":["aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:52603fde04d46bceacfa165e"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:4fc2fcf5e0867410aa11343a","label":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-recurrence-manifest-part-home.md","source_digest":"df621a6d63232f6f33ef29a6803cf7e0c71e6fbe3d93206e72157161002a510e","source_record_ids":["aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4c7980bcdd608534212bb1a3"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:51fce04d47ca8f0d216a5e85","label":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-agon-active-legacy-split.md","source_digest":"935f34d1b92cd35748ac1d98a86aead80661d67b8f3f67320f9a9fd89edf7108","source_record_ids":["aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3580be83591f3f5166daf498"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:54023cbf56c1b711b6035d91","label":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-questbook-candidate-mechanic.md","source_digest":"16d596dee8776147f05dd952af50411753d60257fcb978775667c3cc33e7c31a","source_record_ids":["aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:4815ea37c69bf587ed4ab8e1"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:5ec67d9d3fe2c03e29b609bd","label":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-mechanics-owner-request-receipts.md","source_digest":"dff5d4aec952949cccb113b437d94b2b8f46406ca1fc1e56042eecfc26953782","source_record_ids":["aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:d0c171ad3f2e8d174a788ac9"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:5ed23636e48dfdc63d2980c7","label":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-topology-scout-axis-registry.md","source_digest":"6bc05415a77c156346b78fabbd79058503107294d11ee1ef57064ed0743edf45","source_record_ids":["aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:72556c3550a2e9f4cfd30500"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:5ee4b949adccf03955cfb3db","label":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","source_digest":"f8f9fa72d2b042a49be230baa8e501e26680149138d132ff84d6af10a31304d1","source_record_ids":["aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3580be83591f3f5166daf498"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:54023cbf56c1b711b6035d91","label":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-questbook-candidate-mechanic.md","source_digest":"7240b4ff150e5cb4762ef2f4d1e91b180a67e64b1b8c1fd5e7b9366f595c5658","source_record_ids":["aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:4815ea37c69bf587ed4ab8e1"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:5ec67d9d3fe2c03e29b609bd","label":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-mechanics-owner-request-receipts.md","source_digest":"d7af4bba7de90e199a2730ffcef5dce05a87aa7de4c3c9ea3b8ba44aef8a4481","source_record_ids":["aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d0c171ad3f2e8d174a788ac9"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:5ed23636e48dfdc63d2980c7","label":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-topology-scout-axis-registry.md","source_digest":"8906b9300ceefce7eeb81d9436b801ff247c9d83f4a027130ccd6cf5245f7163","source_record_ids":["aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:72556c3550a2e9f4cfd30500"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:5ee4b949adccf03955cfb3db","label":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","source_digest":"a262632695a2b8238b6ad2bc92bb9729818b467a597188e39e2bb90a158c82fe","source_record_ids":["aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3170d71940014890c28c391c"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:5f242483979abe1c8e017e9c","label":"docs/decisions/AOA-TECH-D-0004-distillation-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-distillation-active-parts-split.md","source_digest":"2fe1ae233cf6af613e97d016ce6419849d035f30e521661e973411eba1754b96","source_record_ids":["aoa:aoa-techniques:artifact:89f167424b70f74383393934"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dd318f5cb40275154126056a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:62f0afbb46174430e9ccbc81","label":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-root-md-surface-slimming.md","source_digest":"cf43a0655ec8abe27c083beb53de34e172a35360dd37e632e979f3a946ea0586","source_record_ids":["aoa:aoa-techniques:artifact:fa841ed2f6a97edcbb053b47"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9fd0a68d4fb876e40a787fff"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:6d522832ae1ffdd1a14a5922","label":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-review-packet-mechanics-home.md","source_digest":"0b3dc95be937d835bd131e933f6cfe30a18770402d8a57c1768131ce2c84dcd7","source_record_ids":["aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b8cbd99d16cd6d1f48578d9f"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:6ee108c2865b4ef8b0f6e1d7","label":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-0085-kind-remap.md","source_digest":"7e79aa40d7a5df5bc3e6f4ce0e2ee1258f66e3b7c5aa6ee3b01946af0f6f8fed","source_record_ids":["aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:5b5c6af57dced4e9696758bf"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:6fd6e16118ccc6c0c08aa103","label":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-02-release-support-active-parts-split.md","source_digest":"39fe416f32c18284f37b4e302f28618c6677de78bf2f89210f3032c64b42148c","source_record_ids":["aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c26bda0a90d9d6ab680ddf7c"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:751087bdc485b31c296bfed7","label":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-18-technique-intelligence-move-registry.md","source_digest":"fcb4b594d8b99f87072bf24b27f5efe2c2e328b2f68fdb301748b4674177bbe1","source_record_ids":["aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f89372fb5ee2e6dc261456c6"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:7598515501c67c0530fbaed3","label":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-0054-kind-remap.md","source_digest":"47578d1ce3f675d599f8af2507a8a692ad5da356a1d927d56cf7aa450a549aa9","source_record_ids":["aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9fd0a68d4fb876e40a787fff"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:6d522832ae1ffdd1a14a5922","label":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-review-packet-mechanics-home.md","source_digest":"7a70dad632fb2824ed5ccd090c376acb2f60b58997dc4558ba0cca1a9e4099e0","source_record_ids":["aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b8cbd99d16cd6d1f48578d9f"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:6ee108c2865b4ef8b0f6e1d7","label":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-0085-kind-remap.md","source_digest":"8796ec99dfbc5964139565ac24dfc050c53d5a2015e3654668a138d88caccf7f","source_record_ids":["aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:5b5c6af57dced4e9696758bf"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:6fd6e16118ccc6c0c08aa103","label":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-02-release-support-active-parts-split.md","source_digest":"6280482b51d535cb9978bb2975387adf80d98110e742a6f8c92755eac785101a","source_record_ids":["aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c26bda0a90d9d6ab680ddf7c"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:751087bdc485b31c296bfed7","label":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-18-technique-intelligence-move-registry.md","source_digest":"671b916dcda8cdde5a16c703c3136f968eca11a7421b9bd6f2c6c67c028cdef9","source_record_ids":["aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f89372fb5ee2e6dc261456c6"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:7598515501c67c0530fbaed3","label":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-0054-kind-remap.md","source_digest":"f906786681a48a4512b94d446879a2953c88fe4e0f2d25007ab254689db6bfe2","source_record_ids":["aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:06612901f354b1bfcfa85995"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:7ef9a251a62f3591c583c5c1","label":"docs/decisions/indexes/by-technique-axis.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/indexes/by-technique-axis.md","source_digest":"72cbf2a6ac45ab44fd2190668381675b9e9059312fa42dbd7126d92870e69528","source_record_ids":["aoa:aoa-techniques:artifact:9ee9420f3dce0fd1476f73f9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0eef034a77a979020ccdf420"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:7f2244b7e9d84e8b765e32da","label":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-agon-part-local-artifacts.md","source_digest":"c0f1deccea5243a74e52b9141a8153d6adf30804c3655a285c3d456b4c48936e","source_record_ids":["aoa:aoa-techniques:artifact:fdd58aeb6b4fafa71844c566"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:912e61e3f40d31e3ad6e087c"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:8269a903dd30eb62aa3c3364","label":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-experience-active-parts-split.md","source_digest":"cccafeee249ad719747e282bbafe18a2d6eea24bcc11d89e429246e9c8731b94","source_record_ids":["aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:47ab1dd8473efa97180936e3"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:833ccdfe47e14dba023a1c87","label":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-distillation-agon-candidate-handoff.md","source_digest":"ab97c68fca4ee9c737654c8a95c1a0e7b6ec300eda8064c68babe926823e9888","source_record_ids":["aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b0d4e915041e30eaa4cdfd24"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:880ce881bf610d3538ffc2e2","label":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-questbook-lane-first-source-store.md","source_digest":"5133852b93e3bda5f0a2cd57be95b4657878d25d597695fdbaf232f798d5d2ef","source_record_ids":["aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0767006619a0cd12c1f8dcb7"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:8ebf7c3ed5dc2996b4e9ccdb","label":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-agent-surface-design-and-mesh.md","source_digest":"01952b03ad270a773d944f55eea0e2e5e17524f07d4f8c029338226f0704b14b","source_record_ids":["aoa:aoa-techniques:artifact:25548ca6869965daad3c9589"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:90dffe43c28bea0a9566466e","label":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-technique-reform-report-home.md","source_digest":"7ac525aab9321a9dc9bcd5e96607b4870e176f341d2745184ece0ab2155074de","source_record_ids":["aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:67af10d91726ed89f41e0d67"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:95a4e4e021d52f6022cfc8d5","label":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-root-data-retirement.md","source_digest":"4079420c2c637698a1ea39a0f1444ea48e7c137006b5b95ebf7bd86c08d464ee","source_record_ids":["aoa:aoa-techniques:artifact:351454b54fbbcc270019a868"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:912e61e3f40d31e3ad6e087c"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:8269a903dd30eb62aa3c3364","label":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-experience-active-parts-split.md","source_digest":"0fa4c375fa4128f55772886416754d87a0a49d0508c2f0ae0a07f6884b4e8b40","source_record_ids":["aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:47ab1dd8473efa97180936e3"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:833ccdfe47e14dba023a1c87","label":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-distillation-agon-candidate-handoff.md","source_digest":"08233c6985ee6bb1ecccbdbfc5a14b7f6fc4199bc60be372ae140ee66d60bc5c","source_record_ids":["aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b0d4e915041e30eaa4cdfd24"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:880ce881bf610d3538ffc2e2","label":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-questbook-lane-first-source-store.md","source_digest":"268c3f8b54436d239b4bd1c2d8cc757cee417fb71866110104fc91c908abfda8","source_record_ids":["aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0767006619a0cd12c1f8dcb7"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:8ebf7c3ed5dc2996b4e9ccdb","label":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-agent-surface-design-and-mesh.md","source_digest":"f9cecba8536bc405711b1186aba62917dd39c69436fb85d4524d13a992d9e650","source_record_ids":["aoa:aoa-techniques:artifact:25548ca6869965daad3c9589"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:90dffe43c28bea0a9566466e","label":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-technique-reform-report-home.md","source_digest":"2acfd067656072a669c71a1292527402d437809c660e118ba6b91cb1e886befe","source_record_ids":["aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:67af10d91726ed89f41e0d67"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:95a4e4e021d52f6022cfc8d5","label":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-root-data-retirement.md","source_digest":"3db3aebdec4de773e7bda9067661baaaa1d6ae938251255c3bf53ff91c778016","source_record_ids":["aoa:aoa-techniques:artifact:351454b54fbbcc270019a868"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0cee40222af8114055a617bb"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:95d83bf0ea464883d278545d","label":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-technique-atom-contract.md","source_digest":"a1242a4fa3694dff8e46b12427519b22be4ad66a3e9ec7b025c2dd7fc29134a0","source_record_ids":["aoa:aoa-techniques:artifact:3ca81daef9bca21d83cd08a7"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:76b3da8f8bc26087d86c5d45"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:99c92f630e2c3dc31ebac3e1","label":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-0052-kind-remap.md","source_digest":"d30508513c96da337ef00ae45665d815ae2d27bb49175cef42a9a0b31e80d003","source_record_ids":["aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:76b3da8f8bc26087d86c5d45"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:99c92f630e2c3dc31ebac3e1","label":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-0052-kind-remap.md","source_digest":"78062c5da7f8037b4e060663465a3dc3280948465538da115cfd6e230c2cfcfc","source_record_ids":["aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2fe8b9669fffe2732f1fc985"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:9c347fce057578440945fd48","label":"docs/decisions/indexes/by-date.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/indexes/by-date.md","source_digest":"e8aee2a967d176ddf8f7b5914340e3c95367a7a9356e3f761a0f1ea73f205be4","source_record_ids":["aoa:aoa-techniques:artifact:7f76a83a939eefd1ee2b3fe1"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:117b27346d5e45b6ba483024"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:9d98ccf44172a924c2862c9a","label":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-18-incoming-evidence-only-closeout.md","source_digest":"27df91414eb56810bab19ffa3d0dc264aa7800f327e43ffba1cd7bc37d4b4c08","source_record_ids":["aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:59cf4ccbdb81f19e508627f6"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:a028b44b182ab58cd59d5890","label":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-mechanic-test-homes.md","source_digest":"c1467175850c1cbad63bf9baa51ca939938344af956319c6fca6f3311045b779","source_record_ids":["aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:56423cd5a36212cca5bd1f6a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:b4734806c9a8510a14d692bf","label":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-0005-kind-remap.md","source_digest":"ad02a2eda8403271346163026aa933ce5ffd402eb173331caab120b2b2ca7312","source_record_ids":["aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8fe61f4c47fe2fa66beded4a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:b4aa89707acb14465861f7ef","label":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-growth-cycle-active-parts-split.md","source_digest":"689883c866b6988d39cf5846897361391991286bb869312ecd4e79c175e34e09","source_record_ids":["aoa:aoa-techniques:artifact:66c9da7139c879aa59436976"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:51e7e5a32fe9fd41052840df"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:b8851d4c3dc31ddbb1742259","label":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-method-growth-obsolescence-route.md","source_digest":"27194a7ec23a3abc5737e584ece0918bf12ef8ea5605269ea31b8bf59d227e4a","source_record_ids":["aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:117b27346d5e45b6ba483024"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:9d98ccf44172a924c2862c9a","label":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-18-incoming-evidence-only-closeout.md","source_digest":"5aae4ec0b01258ec691ae84626a3d406f2368cf58436e7032ef8d2a8249c013e","source_record_ids":["aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:59cf4ccbdb81f19e508627f6"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:a028b44b182ab58cd59d5890","label":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-mechanic-test-homes.md","source_digest":"4fa143607bd99bd4d0d0d03262e526288d7e34f3793cb9df63e0c5426404db84","source_record_ids":["aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:56423cd5a36212cca5bd1f6a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:b4734806c9a8510a14d692bf","label":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-0005-kind-remap.md","source_digest":"38a400893885adf63d7a211e7bfe45c84210ce4612bc630be439a620be2b89dc","source_record_ids":["aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8fe61f4c47fe2fa66beded4a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:b4aa89707acb14465861f7ef","label":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-growth-cycle-active-parts-split.md","source_digest":"1d0033380c8d1fcf2182cba16eee9f087041e13cb234d80c687f0475934204c5","source_record_ids":["aoa:aoa-techniques:artifact:66c9da7139c879aa59436976"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:51e7e5a32fe9fd41052840df"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:b8851d4c3dc31ddbb1742259","label":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-method-growth-obsolescence-route.md","source_digest":"22bf9e377f9b0c930042583d854eefe39b95f4c1568a4f593ee790b8778f3a96","source_record_ids":["aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1efc0dc3ba6f86d52a62e179"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:bb24b89babd52a95ae1c95da","label":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-recurrence-cross-layer-registry-observation.md","source_digest":"ec30e2bf8274c8bbfde7616152dcf09292c233b05268e508545d2ad414c4f428","source_record_ids":["aoa:aoa-techniques:artifact:3d786881b22173d939f0ab17"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9b4d7b1cfe14dff6b24bcc21"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:bea3b57734f05a301d54662c","label":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-standalone-portable-technique-posture.md","source_digest":"6398ec035d0f0e1656e15a6421b72b2c8bf42a25991d15820767e809e21d8365","source_record_ids":["aoa:aoa-techniques:artifact:e3e4a4873319fe4d1455d781"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:77a24e8b188bc67dbd0f32c3"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:bec753835483ba876460abba","label":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-technique-topology-contract.md","source_digest":"17877b114b55fe0a808efd9170833792f0a13a12faa72b666a3a2b1992335e6e","source_record_ids":["aoa:aoa-techniques:artifact:134373df2c095a53729fb244"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:03dc8413d88634ad70f8502c"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:c08353db210939e192591954","label":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md","source_digest":"9c1bc1f4dffd8970f30f1aa89cd1565cc9a348c77ea3c65effd8dbdff9daf857","source_record_ids":["aoa:aoa-techniques:artifact:262a18d53e3b21e5a529bd9b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:62c43d332041477e031ec4c5"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:c451cbf3eba375642474b764","label":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-rpg-candidate-mechanic.md","source_digest":"c26c4e1e50965519841f5bd93ac00b1bfdd6ff81706e4e033c5cc88b006f6b79","source_record_ids":["aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:62c43d332041477e031ec4c5"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:c451cbf3eba375642474b764","label":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-rpg-candidate-mechanic.md","source_digest":"553bb835557041943cc20f23a7a8b9022bf2d3ac66e56eb34c895a051f05553c","source_record_ids":["aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:27d164c9388a2414a378fd67"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:c911de258758ea3c29ba87e9","label":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-04-technique-tree-contract.md","source_digest":"2cd6d633e94d5cc258f68970a51ccfa2118b4227ab2041d1eb24e70fe0855eef","source_record_ids":["aoa:aoa-techniques:artifact:5c40cd95be35506f0f55d8d6"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1833116f863fcb854ff81b6a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:ca6d6db25af77c41cedefc4a","label":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-17-agent-neighbor-doc-command-ownership.md","source_digest":"40ae303c4d412a3487a2a706627eed0032b48107cbd908a352eb3656a8c49222","source_record_ids":["aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1833116f863fcb854ff81b6a"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:ca6d6db25af77c41cedefc4a","label":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-17-agent-neighbor-doc-command-ownership.md","source_digest":"caceaf58dbc776bbd376aa3a05d0046b5ff8837b8b49dba7cd8293f9158e3871","source_record_ids":["aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:aaac1e5530f1ecc759b14776"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:d2e0d8bf9205f227256026bd","label":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-distillation-external-candidate-registry.md","source_digest":"eeb3471999a0eafd2cd254e8f502ee8583e8b8a0ff8b8d10a58db413c3d8446d","source_record_ids":["aoa:aoa-techniques:artifact:9fe03959b607e5b273766019"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:544093c82ec1750d71cb3650"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:d43402fb2b727b78ac8c7031","label":"docs/decisions/indexes/by-number.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/indexes/by-number.md","source_digest":"76a5e88b052fb7025fb18924950b629eec223c48193bd3a1945349b335cec501","source_record_ids":["aoa:aoa-techniques:artifact:02e6940a395ca8b888f25191"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e4bc5f376db8430703b97fd4"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:dcf51a5db5903830249e92dc","label":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-mechanics-package-card-standard.md","source_digest":"467d63b6d993d789bfc38ae43394e466fe5c98d71d927b84e513ee52353a5c66","source_record_ids":["aoa:aoa-techniques:artifact:953aa38f18288b54eece690b"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e4bc5f376db8430703b97fd4"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:dcf51a5db5903830249e92dc","label":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-mechanics-package-card-standard.md","source_digest":"3c740dcdb0f0dd6747d109fa952215db8e8ac92b133ad07dce228c56afa73f56","source_record_ids":["aoa:aoa-techniques:artifact:953aa38f18288b54eece690b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5215c8217fbdf8785c225cc6"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:df9c52fd7a14673a0194a86e","label":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-01-mechanics-law-local-bridge-alignment.md","source_digest":"86646cad93127ee7a8bdb7c8a082b0986e08d3c225db633e47aba75653b7fb96","source_record_ids":["aoa:aoa-techniques:artifact:c2e10157e4040acd07ee7659"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7ef31bfa7ef5f4b5817d2abb"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:e19aaac2328a54a0c360bc9f","label":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-02-antifragility-active-legacy-split.md","source_digest":"780275d89443040baebd603131b2a953380f1d7ee6bea9c0d7afa33eb4e1bcc6","source_record_ids":["aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:5b531dcbc798b6b4299bec64"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:e41eac45f41025b6d34c84a9","label":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-02-recurrence-active-parts-split.md","source_digest":"86a172779a80924732652221e6b1853ce267614845315b445ebf1e814bcd369a","source_record_ids":["aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7ef31bfa7ef5f4b5817d2abb"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:e19aaac2328a54a0c360bc9f","label":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-02-antifragility-active-legacy-split.md","source_digest":"aa19044634a101cd89d206bf67bc825216083e4086a77511d04fc91aa7c9c6fc","source_record_ids":["aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:5b531dcbc798b6b4299bec64"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:e41eac45f41025b6d34c84a9","label":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-02-recurrence-active-parts-split.md","source_digest":"18bcc95707f5b38c0ff2f67c3157dcbdd0f0bfb078c9b1492855e0525b32bf60","source_record_ids":["aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:631602b377f7fc86a2327f13"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:e7f87caf112fa69307c3c917","label":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-03-root-source-of-truth-topology.md","source_digest":"6bb71485d8f6a4cc529a7c4ae18787c7745c596acaaff30455331d0e5f3abee5","source_record_ids":["aoa:aoa-techniques:artifact:ca350bc94751a5f794c8b900"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8a9f5870cde69451c06e7e9e"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:e88d8f5c7d6e0039bb411725","label":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-mechanic-script-homes.md","source_digest":"923a4de334671cffe329fc29b41d37bfe00ab3d33356232c872ed1f6ad913142","source_record_ids":["aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:688196f084f80a0f4d7bcde6"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:efeda0d5b97351edce652e73","label":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-16-docs-surface-guardrails-and-tree-contract-slimming.md","source_digest":"1b4f8a65fa0d49b768fde4ab47fa386c25ae22450a036e8ccf15ea8732367784","source_record_ids":["aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8a9f5870cde69451c06e7e9e"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:e88d8f5c7d6e0039bb411725","label":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-14-mechanic-script-homes.md","source_digest":"7126bacf97a5edde239d5326cf2b77b98ff7054d0a1a11fbd8b5238e1ef88932","source_record_ids":["aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:688196f084f80a0f4d7bcde6"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:efeda0d5b97351edce652e73","label":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/2026-05-16-docs-surface-guardrails-and-tree-contract-slimming.md","source_digest":"7243db56a066626420701082f64901e2764452fa1fb088c3090318c0fe7bf3e8","source_record_ids":["aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3f2158f18400fa216f912167"],"entity_kind":"decision","id":"aoa:aoa-techniques:entity:ff988784f2f84f6dd66241b8","label":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md","provenance_ref":"deterministic","semantic_key":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md","source_digest":"9111c46bab296a730fa5cd5114d035fb1547e7dd90e5a7081d09a01f04c4b1aa","source_record_ids":["aoa:aoa-techniques:artifact:3570302f879fbf8bebc76db7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c43acacf39b31916eb566aaa"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:0035b21457859e88d90c2e60","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:techniques/instruction/capability-registry/capability-spec-versioning/checks","source_digest":"34c6086b1dbcbe5caf796ae77c095c6357220c34e41aae7f140404f8b27feb1f","source_record_ids":["aoa:aoa-techniques:artifact:e919acf32379833d5aaefd98"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0766969695a59702ee0e8b47"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:004cbd6a2cc7fdc2b03bcc3e","label":"aoa-session-self-repair","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-session-self-repair","source_digest":"721db779a7ef472f765f83fae45021b35e536ffdb9b3232184d08058d0f7c0dc","source_record_ids":["aoa:aoa-techniques:artifact:2d146c79330d6387c38ca15e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e76b0f29dde266311d494e44"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:00e1f643cab1050f82f5c87f","label":"scripts","provenance_ref":"deterministic","semantic_key":"directory:mechanics/agon/parts/epistemic-technique-candidates/scripts","source_digest":"b793e01315816a281c83b9c6652dad15f2f81a674e99ad730560d56232745cb9","source_record_ids":["aoa:aoa-techniques:artifact:1ea19a95e311526da500ae47"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1aa703ad0516dded2ed51aae"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:0108ef63a1281625184090bf","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/release-prep/examples","source_digest":"7603204d2e85e1060378d0e269d0cca098ae183b71ff3a38db3c36273b3a5b8e","source_record_ids":["aoa:aoa-techniques:artifact:d2953f59029c3da963218542"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1aa703ad0516dded2ed51aae"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:0108ef63a1281625184090bf","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/release-prep/examples","source_digest":"0ad5b8b6b836e38ae82fc73c9e29481facb935027de04c22b56b867227d5eb04","source_record_ids":["aoa:aoa-techniques:artifact:d2953f59029c3da963218542"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b2cb22a0eb7df9496e74b567"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:014ab55493b325370378fe74","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/examples","source_digest":"5232be93902a4e3547c403400042bb9cc171aeb15b2b73add73241a4e61387a8","source_record_ids":["aoa:aoa-techniques:artifact:551cfa57299dff76b28597ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:16630f499ec97006e0ca6069"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:017a899d3f5b198ee97ec699","label":"handoffs","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/handoffs","source_digest":"78a22761e0a7cf8a3ed84704c8aec7a247871c5b28fd82729e1650cb43157161","source_record_ids":["aoa:aoa-techniques:artifact:fbda403a1d57ade65895abc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:663d13e30152989cea785444"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:01d394a424dc963c515c816f","label":"schemas","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/parts/external-candidate-ledger/schemas","source_digest":"9e9ce0ca260cd4d02e65b4dfabc8d64d03e6eae9efb220ecae58133961817198","source_record_ids":["aoa:aoa-techniques:artifact:37320dfab9c549cded5b4f65"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -391,7 +394,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:7b17d40a9798969387d38658"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1090fbff77620a621528890a","label":"tests","provenance_ref":"deterministic","semantic_key":"directory:mechanics/experience/tests","source_digest":"34434ff4a3fd4a12031642676f593aa3adc75e0890d513373471795e86bd4099","source_record_ids":["aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ef6798235c7a956b46c1400c"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1150cd907f797e6ae68612f7","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:mechanics/method-growth/parts/pattern-adoption/examples","source_digest":"7cc8d1b2e0ce98daa645ccd63dc7197ec9e40e18a4eed1ab355e82d4c8dd3935","source_record_ids":["aoa:aoa-techniques:artifact:9dd4729f5086cc2ccb7e90a1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a66c140085547db71257cb9e"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:116893ff3284754615f3d045","label":"agents","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-quest-harvest/agents","source_digest":"a219e275d8d829f679c6e45d9aeea39b8715a35d0e30ac5d5ac0b9fd48b60420","source_record_ids":["aoa:aoa-techniques:artifact:b96ef85dc8a11633e5f69daa"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:47718eb692e916667a343468"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1178ca8202fed3b6bb39ebd3","label":"technique-refinement","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/technique-refinement","source_digest":"01a26dd203f03323d23b166dce3a14a4d28873af39678a807b5d844468448684","source_record_ids":["aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:47718eb692e916667a343468"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1178ca8202fed3b6bb39ebd3","label":"technique-refinement","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/technique-refinement","source_digest":"7b6c88293e19b574e3acdf4ea8257320c0969e7f47027829b08aa7df30281bd2","source_record_ids":["aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5e0306e4895dfc63062f2ae2"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:11811d5997d6424564c895eb","label":"agents","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-commit-growth-seam/agents","source_digest":"2f8d534f1daac442b6615a55bd357e2bb6dc4258831ab37370e2308c84f1a1ff","source_record_ids":["aoa:aoa-techniques:artifact:b488fa870f11fb566638e969"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:edee9d57ff8acab27b54b620"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:11a176cceac88d4e31c8e88d","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/examples","source_digest":"4f3d2c66fd1b8b4c19b2b61cf4cbe1295c1a0a0f8370ce266bb7cdec29dd9dd5","source_record_ids":["aoa:aoa-techniques:artifact:22ca698c0b795bf598928106"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:117590a6512c37f886b9596d"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:12b3e7048ede95d32c33d248","label":"docs","provenance_ref":"deterministic","semantic_key":"directory:techniques/docs","source_digest":"98b214899229f6cd3d8e54d82eefa7521edb06753a10e9d6bec337ad6af485a1","source_record_ids":["aoa:aoa-techniques:artifact:e7923cf520e9cfaf3b8cb91c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -428,7 +431,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:25636c6d7bd067d19ed7965d"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:19ef8b0daf10cfadd2247c3c","label":"contract-test-design","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/skill-support/contract-test-design","source_digest":"b57a3bebdff326241f3ff191393ebec6ed4a7b37b02ca6820a5155154fc28fdb","source_record_ids":["aoa:aoa-techniques:artifact:0097e6c200df4283b557c350"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:45fcb59871f870767d4579f1"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1a406fb6ee09110c6f82aeec","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/notes","source_digest":"2357ea0cca27c3ea24288515ceaec7b2d3f3ccd2d52275ae826ab370ddbf2f2e","source_record_ids":["aoa:aoa-techniques:artifact:41d67ac8b66668035b22c04a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4060afa0d3bdefb2aaba1ec6"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1a947fc97b5561e714670849","label":"chat-graph-review-mailbox","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/legacy/archive/closed-incoming-packets/chat-graph-review-mailbox","source_digest":"a43da34f5c7e696756ec82944e2ec5264db03181a5b424bad7e322388001c949","source_record_ids":["aoa:aoa-techniques:artifact:80a3b09df4e3867a6924b1c7"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:72622e0b7439398bf3e3c8db"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1aa286d5398a5bf5012a5b5e","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/technique-refinement/examples","source_digest":"eb7e0b1af3c51f0b0ce4c0bc9f72312c3efd9b98485563a9efea33569ec7878d","source_record_ids":["aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:72622e0b7439398bf3e3c8db"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1aa286d5398a5bf5012a5b5e","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/technique-refinement/examples","source_digest":"34bdced3490ced58f88668bdc26cc99c20dd37b5f499581b278a50b35f9d84b4","source_record_ids":["aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ca408d4c593b6987048c78c8"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1b87aa761b18293f6a6adcf0","label":"tests","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/parts/external-candidate-ledger/tests","source_digest":"6c818e88254705e0a4803a4e0cce3824e116f7a064f6124de5a629f5634a876e","source_record_ids":["aoa:aoa-techniques:artifact:9b3627e44c3737426b0a9555"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d77561ec8489743f312f8675"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1b9ee081a9aea1479c8756ca","label":"legacy","provenance_ref":"deterministic","semantic_key":"directory:mechanics/release-support/legacy","source_digest":"b08fb8148514c4cc1d853ff6767eddc75af69f12f2eccac5a0c657cb8a89027b","source_record_ids":["aoa:aoa-techniques:artifact:414b0a361e825c8fd86799e2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e47a2aecdfcbf3038fbeeb3b"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1be4ddc8ec0ba5afa083cb65","label":"owner-handoff-anchors","provenance_ref":"deterministic","semantic_key":"directory:mechanics/rpg/parts/owner-handoff-anchors","source_digest":"ca94fac17afe7451d23d97c8330218eacf033dd926f04112681cc3eb65fc1afc","source_record_ids":["aoa:aoa-techniques:artifact:05bfa76197c6b7a0fb2cbb0d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -439,7 +442,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:5da3cf8dd44869d115501ac1"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1d034d2def1aea810ee10dd8","label":"exports","provenance_ref":"deterministic","semantic_key":"directory:memo/exports","source_digest":"d76671c5b86dcfd8c1fd532931da333d98ed6c706a6b88295c719a8af8a2cb94","source_record_ids":["aoa:aoa-techniques:artifact:d77c10c9ba07bd6d5f7d9521"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:88163f45079ac3717b6d402f"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1d0e9fcbdaff833ebcc99f55","label":"candidate-intake","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/parts/candidate-intake","source_digest":"296aeac421dda830cd23cd14f422facbdbf81687bc3f6d26a004843e0954912b","source_record_ids":["aoa:aoa-techniques:artifact:35d77bf50f6518f4f2e625ff"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:63081d4dc1f355056375aee7"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1dc5b2c1bbd86e144e0b4ebb","label":"assets","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-property-invariants/assets","source_digest":"acf230fad92340e5c0c1d5eb0b100645037334f4be3a40b3426ea25b3a4016fb","source_record_ids":["aoa:aoa-techniques:artifact:a1b7548f51793f4b5377dc9f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b6293e141ee9edd300b06cbe"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1de48a928dc6ab04ffa2ad71","label":"testing","provenance_ref":"deterministic","semantic_key":"directory:docs/testing","source_digest":"3b9b04dd3db1c0bf65a57bbc3378e8328a1eaf49e727badbccd9d782c89e9b83","source_record_ids":["aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b6293e141ee9edd300b06cbe"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1de48a928dc6ab04ffa2ad71","label":"testing","provenance_ref":"deterministic","semantic_key":"directory:docs/testing","source_digest":"6bc4f72c814addc189cbeb0594a9df206c168cef982c43ce388cf7a93ed86ffa","source_record_ids":["aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e58a756cc935a2795ee351e2"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1e054ee4bf896fce7315c5f5","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-approval-gate-check/checks","source_digest":"5f6a9d3e985ba701a71c9cff0e30b8f1b92d2c6731c8d82aec3748e22b0e6dce","source_record_ids":["aoa:aoa-techniques:artifact:5284bcd566341941dcafd934"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7aa97653c8b8d1cb9aca1f2b"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1e305c42bf7d3ca2820dbc74","label":"aoa-session-self-diagnose","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-session-self-diagnose","source_digest":"4558df979203ea845ad16ee806b08fedc4b99ff41c998cdbb0c18628190f4d76","source_record_ids":["aoa:aoa-techniques:artifact:0679b61b4ab20f1c64477c0a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6f22f4f13a7a236cf6aab6d6"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:1efbb97407c23547703cbf80","label":"data","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/parts/technique-reform-ingress/data","source_digest":"85e7922b5f9f9483567b87f757b5d625fa5fb511bb9d1306c5ac173a256c0de1","source_record_ids":["aoa:aoa-techniques:artifact:34627f21196e425b7edb4a68"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -621,7 +624,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:6db5c681903cf927e5408636"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:4d3d9d0f934546459425b3b2","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:techniques/tool-use/tool-gateway/mcp-gateway-proxy/examples","source_digest":"51583f84e0501967d9fe089cacf3f7f9d0f7826eead146ab563c185c2b518f82","source_record_ids":["aoa:aoa-techniques:artifact:32efd6a45f0ac7162684fb0d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c56d385ef110c0995508bf6c"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:4d83a256490c64cb6f5781e3","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-source-of-truth-check/examples","source_digest":"d08350119ab03b38bf82053c6b28f2ecbff046cda3a802f1aee2c09167514c3b","source_record_ids":["aoa:aoa-techniques:artifact:7d1d65ff7e95bdf8549413d2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8be2acb6d75569df181ecb70"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:4d9afa49668e2c9ab37255cc","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/skill-support/property-invariants/notes","source_digest":"9d3aa4255f1fe58c85a3350da58a67c71cdacd353cd1e1fb69ba33de6df64376","source_record_ids":["aoa:aoa-techniques:artifact:0aa9bcfff017d7175583c296"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0a7d45d25ac918469a7c202b"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:4df547e743c97c82d6ac1842","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/test-factory/examples","source_digest":"e505889f15fab5c28bd15b221bf61b7d321302245d3a62aa5c73e7f7a5ba2c15","source_record_ids":["aoa:aoa-techniques:artifact:97d951cd0207080221b62d57"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0a7d45d25ac918469a7c202b"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:4df547e743c97c82d6ac1842","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/test-factory/examples","source_digest":"6af52393d52f978140e9a96f5379a761d20056208f0fe92156e3a35de914cf28","source_record_ids":["aoa:aoa-techniques:artifact:97d951cd0207080221b62d57"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:216038c047d7be92f24c9bf3"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:4e2a310b721123888ec2c732","label":"generated","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/parts/external-candidate-ledger/generated","source_digest":"8c000acce3431bbf86314b70afebc7b26fe4aa3f9ebda36b436c1fb66fc262c6","source_record_ids":["aoa:aoa-techniques:artifact:75425832416fde31fbae2931"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:955475f1440c4addf33d4d0e"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:4e574c0b96b47512d863809d","label":"review-evidence","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/review-evidence","source_digest":"992d2fec35174eb5f754964ef112dcc2c18faf8a62d0eb88c46fdec3bc512679","source_record_ids":["aoa:aoa-techniques:artifact:00a2848773b5fb5770c32213"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:da4801eacd603b9bb77770c9"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:4ec749cd753f1b6ba5d472d8","label":"adopted-practice-retention-review","provenance_ref":"deterministic","semantic_key":"directory:techniques/governance/practice-adoption-lifecycle/adopted-practice-retention-review","source_digest":"175a27c669e63a191b476ea8ff7ba0a7701498def62c5aa384ee8e4e66879597","source_record_ids":["aoa:aoa-techniques:artifact:20f49fedeeee87ed2a390691"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -638,7 +641,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:216e6bc90fdc8136c822acc7"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:515df1fc69c0a89a5f7bda48","label":"scripts","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-local-stack-bringup/scripts","source_digest":"e2a47ba013c268010960eb5fb025c1671e8e58636c27e6912c8a18be16c5f71b","source_record_ids":["aoa:aoa-techniques:artifact:65fb7d4d4186c308ea5dec74"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ece90781a786691faa2982d2"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:517e71875e89271d1e808903","label":"scenarios","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios","source_digest":"e9f2d57079d0fc5a4f578741e765808398423c08dd2690bcd33293a017dd9591","source_record_ids":["aoa:aoa-techniques:artifact:efd34f4ea8cac32cab6a2fb7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:076c166e9bb8dbcce0381f3a"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:52317b3407ecf3c2cc7df019","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:techniques/knowledge-lift/kag-source-lift/bounded-relation-lift-for-kag/examples","source_digest":"1daf62d78849395d8368ce80ab244c4c59b6e184a2255deaa64e003aba845e93","source_record_ids":["aoa:aoa-techniques:artifact:4955a0c83358c661ce06cd3d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:528a73413a1ad7ffee93c879","label":"promotion-readiness-matrix","provenance_ref":"deterministic","semantic_key":"directory:mechanics/audit/parts/promotion-readiness-matrix","source_digest":"ad31b30031943af7daa61aa0b5f52331e5e91287b41dca976586d6b3e424443b","source_record_ids":["aoa:aoa-techniques:artifact:939587694ad1459c4120bb30"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:528a73413a1ad7ffee93c879","label":"promotion-readiness-matrix","provenance_ref":"deterministic","semantic_key":"directory:mechanics/audit/parts/promotion-readiness-matrix","source_digest":"90e50b5ab2dfde502cc96991798604c7005851112306e10512a93f821f23a177","source_record_ids":["aoa:aoa-techniques:artifact:939587694ad1459c4120bb30"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6379f8ab7692ab90ebc13087"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:52c86beacc7fb2fc09d327d8","label":"parts","provenance_ref":"deterministic","semantic_key":"directory:mechanics/audit/parts","source_digest":"f2555136bc869e505c46b545e1d02a5b42992f4e82547431b9dc2cc690b086aa","source_record_ids":["aoa:aoa-techniques:artifact:0b93e2bbd1c14bf19cfa3f09"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0760628f1c54e851dd39ee51"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:52e0e3fb385c37cd1deb21d7","label":"git-verified-handoff-claims","provenance_ref":"deterministic","semantic_key":"directory:techniques/continuity/handoff-continuation/git-verified-handoff-claims","source_digest":"6e4f2b08b1101efd678f356e2333e91d4ddf1a01dba03ce8eec6b70c84715da0","source_record_ids":["aoa:aoa-techniques:artifact:15487cdc20fb13c61b1c515a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5349e750b1f9198ba1e384d5","label":"tests","provenance_ref":"deterministic","semantic_key":"directory:mechanics/questbook/tests","source_digest":"c9e7cc75a3391d9129942045ce2a4b7dcb9e40f23a57b698567dc9636f40e7ac","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -655,7 +658,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:add36d860b355204915abeeb"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:55990b90884f96ddc4fb84b8","label":"evidence-notes","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/parts/agon-candidate-handoff/gates/evidence-notes","source_digest":"5dcee6853501879d265471be8bffc6c5621ab0581945bc82820fbb6a0597f175","source_record_ids":["aoa:aoa-techniques:artifact:1ef01e20174005e6c1188987"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e4ebaadd62df8eeecb03fbd7"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:55a621c4b7940e10ae4309db","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/examples","source_digest":"5af2199c456476ec09e5af61085738a73416cdd2262c95e14411b7e5f7cfdc2b","source_record_ids":["aoa:aoa-techniques:artifact:88d1f522451f427bfa72f9da"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:55d1dd4d206d760f3baf9ecb"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:573ecc54b3478c0e12d73767","label":"aoa-approval-gate-check","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-approval-gate-check","source_digest":"761e3102f77ca742ad3f868bd1e011012c98dc5327b57b9e566483eccf26acfb","source_record_ids":["aoa:aoa-techniques:artifact:cc455d1148a90874a6e48b2e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:581e9749cdd2db16f6ce3b80","label":"decisions","provenance_ref":"deterministic","semantic_key":"directory:docs/decisions","source_digest":"0000444c597dc90b60f57009d5010526084427ec7abac60b7e07dbbe7a63a234","source_record_ids":["aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:581e9749cdd2db16f6ce3b80","label":"decisions","provenance_ref":"deterministic","semantic_key":"directory:docs/decisions","source_digest":"8bc7429ad70095b669658f6017e10db612a8caa2ae454601b10f7bf7d2ac4b36","source_record_ids":["aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:10bc57d266ee9ca65274ba8c"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:583deb632a584dc35bd47cb7","label":"nodes","provenance_ref":"deterministic","semantic_key":"directory:kag/nodes","source_digest":"19b27f165f3712c7d33a9354a1cd83548c6212f857cdc3d5e6bd4f50869da81f","source_record_ids":["aoa:aoa-techniques:artifact:bd786bdd35267c1c6a0fe675"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:99e2b22815d6ac528ce0ec40"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:585c831a13d263858740c0cc","label":"required-vs-optional-source-rendering","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/published-summary/required-vs-optional-source-rendering","source_digest":"37989d97c45cb644b05200bc40e1739a40af86f60009457cd65e0216fe5aff70","source_record_ids":["aoa:aoa-techniques:artifact:3ac08889c4c8eb97855776e4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7cbca15d67e40d53c37e270b"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:58854a089cf01d53fa2fa2bc","label":"fragmented-agent-context","provenance_ref":"deterministic","semantic_key":"directory:techniques/instruction/instruction-surface/fragmented-agent-context","source_digest":"b72ee7f14486fc7d2258fa32f66fd453065968a85edecb914777df4b279e7315","source_record_ids":["aoa:aoa-techniques:artifact:0325988d5058232e1d61ec80"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -670,7 +673,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:55746eecca1eeae205a62d8d"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5ae12cd356b9ff88246bc758","label":"cross-repo-resource-map-bootstrap","provenance_ref":"deterministic","semantic_key":"directory:techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap","source_digest":"571645dbfeaa3e5647fceaf7dc4e8f314c2e8fbf5ab7a1880de8154625bb1220","source_record_ids":["aoa:aoa-techniques:artifact:770f717bd719c9ebb8fd232e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:45025ae3367a385c72fd514b"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5aee3a37feb6ad86fb562886","label":"agents","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-invariant-coverage-audit/agents","source_digest":"181d767915505a45a15621302814f63750ead7ba9f5d5ea1128091f341269965","source_record_ids":["aoa:aoa-techniques:artifact:99bc9e453e582fa719c9215f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b1b997a86c119d019c1835ef"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5af707fd5e3b557ca160ae81","label":"single-source-rule-distribution","provenance_ref":"deterministic","semantic_key":"directory:techniques/instruction/instruction-surface/single-source-rule-distribution","source_digest":"b79744617eb99c195f503fb2316a91464d6af16bd4ddbe8383c3789ff9785343","source_record_ids":["aoa:aoa-techniques:artifact:655b0934dca893480d6eb15d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:89ce82b5d52747604ba56bd0"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5b05ccfb9c1b0d961b860ba9","label":"release-prep","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/release-prep","source_digest":"d09e39debbb1e41c2c4b26c616831be2b24f480dc6da3fed82dce3890b7a266b","source_record_ids":["aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:89ce82b5d52747604ba56bd0"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5b05ccfb9c1b0d961b860ba9","label":"release-prep","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/release-prep","source_digest":"28df53a09e63e9cab8aa28674f240e457a9a364ddb52b6e0b5489922ec9b7a14","source_record_ids":["aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5d8708e26b3b65eefbe0db09"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5b8d48c79863492568c2b00f","label":"telemetry-integrity-snapshot","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/published-summary/telemetry-integrity-snapshot","source_digest":"349a1f23841ae7f8dbde667ba487b3df1afee120bf28dbaf10cae1c4e16f2b9d","source_record_ids":["aoa:aoa-techniques:artifact:b829c2e4f1646e021e22b490"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:563fc6e5606ddf98964c3ea5"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5bba689f38c335d80c77047a","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/notes","source_digest":"fb7ed44659bbbb00e59a69f14389d5d6a90360d4e79ceffaa6253bb769612efb","source_record_ids":["aoa:aoa-techniques:artifact:5ea367362ffc1187e0c85dc1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4f2cd452f7ae94645c7e3b97"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5bf149dabfa8bd0ef06b99ec","label":"references","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-dry-run-first/references","source_digest":"b8aebdda1fbce3c1ec352ec7ddca8cc9a665165fb01cf949cdb3feb10cd20df2","source_record_ids":["aoa:aoa-techniques:artifact:44483595f91163aba31ca13d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -680,7 +683,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:1e3ba8b6a110c4f7491b449a"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5d06a9667b7c20a86205976b","label":"promotion-boundary","provenance_ref":"deterministic","semantic_key":"directory:techniques/governance/promotion-boundary","source_digest":"69277c651d756f08a4f1c02d92554133e5c87b0a9bc7a732555d9c6f56778166","source_record_ids":["aoa:aoa-techniques:artifact:04b66b88ff12ad6c3b3ca6f1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bfd0781c321d696204707698"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5d22e696b14dd72a313696b9","label":"local-pattern-adoption-gate","provenance_ref":"deterministic","semantic_key":"directory:techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate","source_digest":"b55b606f496dc8e7c6f499f12498e376f21a94f75e4889de671f9b369f69cecc","source_record_ids":["aoa:aoa-techniques:artifact:6bfd984550cc4925d5e797c6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2ffd9bc452bea451dbe1ae70"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5da605f2f2db8c9912745d0d","label":"bundle-reviews","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/parts/agon-candidate-handoff/gates/bundle-reviews","source_digest":"e06341900f033bac33045509728ccbbd4e4e02388089662c2ea2bbea2f226884","source_record_ids":["aoa:aoa-techniques:artifact:0d087cce4b634d96e2d9653d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5e1f2793cb301d95915b3d33","label":"archive","provenance_ref":"deterministic","semantic_key":"directory:legacy/archive","source_digest":"fb1c1fc8fe1886b7787517a5da714bb05f0e4bd0807daa2c53531bbb4f00ae53","source_record_ids":["aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5e1f2793cb301d95915b3d33","label":"archive","provenance_ref":"deterministic","semantic_key":"directory:legacy/archive","source_digest":"c5e07897730b7f58ba8b2249c850bf4d545c854f6fb421e92ba0e9dafd75256a","source_record_ids":["aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:67f3e943565f13b54b84ae71"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5ebd7eabc4a30cb068e8916d","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap/notes","source_digest":"ff5600d6171847f60832300d1425ead3db95df86d5bb5d778fe7023e7eff6b30","source_record_ids":["aoa:aoa-techniques:artifact:6cbc0bd9d24e6cedb378fe63"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0b5426eb25da6c4f99bfa10b"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5ef249d0336834ae0e821216","label":"mcp-gateway-proxy","provenance_ref":"deterministic","semantic_key":"directory:techniques/tool-use/tool-gateway/mcp-gateway-proxy","source_digest":"9b710ebcda0c7d3ac760858cc560751bfbe9b8e6cea575b16681af27a6f24582","source_record_ids":["aoa:aoa-techniques:artifact:e7cc694eb0111785c178b9df"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:18f3dc49afa4ff405f6b9d4d"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:5fbdf4ff1db2eca7a50cb4c4","label":"references","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-invariant-coverage-audit/references","source_digest":"a66f09154e20df2818596609d42d0db01cd77a50495de2e5120f2ebc89b8e7a1","source_record_ids":["aoa:aoa-techniques:artifact:f00a19b19e4dbeaa575f01af"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -691,6 +694,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:9fd2fc410f1a4a37c35980e8"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:61a83266b88081bcfd15f56d","label":"raw","provenance_ref":"deterministic","semantic_key":"directory:mechanics/experience/legacy/raw","source_digest":"db1b7a268ee0b7560095e7b234a71172133b37d3e55dc7bd099382cdf9d62b17","source_record_ids":["aoa:aoa-techniques:artifact:949bc46940b1b8c699a2aaa5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:14c31a3b59bc072d9ed96e68"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:624e3a4cf68070ae15b77a8b","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:techniques/execution/ready-work-graphs/dependency-aware-task-graph/checks","source_digest":"18e23cee0612d2341142c75a086069a8fe2d82dc7426bca03344b3159b63b603","source_record_ids":["aoa:aoa-techniques:artifact:9f329f41db5440a32682a751"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ed46bcab3e572d986d89fbb1"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:625e4e617f5dc2eff2a63820","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-session-route-forks/checks","source_digest":"4eb740710adfa4c0f37361cfea785b254d9858e27f7798e16aefc93d61d30ddc","source_record_ids":["aoa:aoa-techniques:artifact:f73d6bb820b2923c7a7b2dcd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:6260d9d4b747ab70c76d90b0","label":"packets","provenance_ref":"deterministic","semantic_key":"directory:stats/packets","source_digest":"c3a5e60947061ee404e3a8b648dacccc955efbd6dd07ae37ab13937552b9f557","source_record_ids":["aoa:aoa-techniques:artifact:41627642723565570a5ba138"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9a2ab01879b8826a731fbfe4"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:6261e551722a0415a14d3c69","label":"long-gap-reentry","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/parts/long-gap-reentry","source_digest":"682823d7cc06b364ad5dff9d58e1ce39de2c642c7e1641d18eb41b216e128d0d","source_record_ids":["aoa:aoa-techniques:artifact:395a124445c66f20adae62e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0b850f2205124f90996d1ed5"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:62e72cd2222f4f159b363caf","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/execution/intent-chain/new-intent-rollout-checklist/notes","source_digest":"79d9a321167ca4742cbb6fec578222335026d2c730edd5c23d54b8b6438e05ca","source_record_ids":["aoa:aoa-techniques:artifact:0b514ec0f40107f2d5885231"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9543062438cd1bc847bb5b75"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:6309e7aea81ca2b0f305ffd0","label":"evaluation","provenance_ref":"deterministic","semantic_key":"directory:techniques/evaluation","source_digest":"bbd1fa9342fa338c31bc8f53fc9fa0367569d1f4b9991006b9ebc26d063f81c5","source_record_ids":["aoa:aoa-techniques:artifact:1e963cf2d2b5de8a07625937"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -707,7 +711,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:a6e660002df4e4fbe4cf8e67"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:6654b623336b84e5e0d00fcf","label":"frontmatter-metadata-spine","provenance_ref":"deterministic","semantic_key":"directory:techniques/knowledge-lift/kag-source-lift/frontmatter-metadata-spine","source_digest":"d5d075feac1f99f861c1c9fa79ce8913f520018d44e0683ad2b40fffd521425a","source_record_ids":["aoa:aoa-techniques:artifact:8a47b6fe523961d9a211829f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:88a4d6ff5e4be16355b80233"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:6692267befd2762da2b11c9d","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/published-summary/required-vs-optional-source-rendering/notes","source_digest":"40067eeb28507142c2f28ed5b59725f6dd706946a65208635307e61da1d6fc47","source_record_ids":["aoa:aoa-techniques:artifact:1225a2a36eb697a3b3e9062b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f2eabda5b60ef92690ec5584"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:66b873101297af4e35bc9f8c","label":"multi-axis-quest-overlay","provenance_ref":"deterministic","semantic_key":"directory:techniques/continuity/donor-harvest/multi-axis-quest-overlay","source_digest":"de36ff91a360dc7cf7789c1a0871bf1884f47edbc0edf96b1ef3c82642acc8c9","source_record_ids":["aoa:aoa-techniques:artifact:b0acf9a0cd3ef34704ab6b29"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e249251728ad42de31f411bf"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:66da19ddb3322e5fcfeb2e59","label":"diff-review","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/diff-review","source_digest":"101abd7d210f2cb17b00e12f2549114490875f31ccebff08bf0e818a3b885aa9","source_record_ids":["aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e249251728ad42de31f411bf"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:66da19ddb3322e5fcfeb2e59","label":"diff-review","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/diff-review","source_digest":"fe20b89e83462ac86b61e25510123b2504741ab84b3d5f5d6c13f782a4008a13","source_record_ids":["aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:53530997e9663556b5f8e2f9"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:671f38e4f33bd95e52d3d85e","label":"property-invariants","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/skill-support/property-invariants","source_digest":"fa04983ba810fd63a7075ec47baac3dfa3d8034eabe59f979fb8e6454958e16e","source_record_ids":["aoa:aoa-techniques:artifact:c72fce65f8f3a6a4c8a4aee7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4dbc97ffe6ff7b96dbfaadb2"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:673c526e28fb51b01005407f","label":"schemas","provenance_ref":"deterministic","semantic_key":"directory:mechanics/method-growth/parts/obsolescence/schemas","source_digest":"35733c6202544a50b61bfa3daf46aef5c6d08c92926f5b832abf7832826a6f24","source_record_ids":["aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d8fceefed4d8fc6f0a1662ad"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:67a37a4db2fcce3ecd03e9a4","label":"generated","provenance_ref":"deterministic","semantic_key":"directory:mechanics/agon/parts/move-technique-bridge/generated","source_digest":"e9321c633357a21f57a67fe27a6283ac639d5f0fb8f0d9e5db8e6714769ed527","source_record_ids":["aoa:aoa-techniques:artifact:530c1f5f4fd8537b2cc4c141"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -854,7 +858,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:136a05cfca4e52f75d32272a"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:8c555035f79f9346675de528","label":"receipts","provenance_ref":"deterministic","semantic_key":"directory:legacy/receipts","source_digest":"e584b06a0ee48620068a4c9665e806675950938ad12fbc3a77db969c1ece5609","source_record_ids":["aoa:aoa-techniques:artifact:04bef8605ec2e98416c0441c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ada2b8b13b6625e31a6921b8"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:8c74aebd862fe9467c752ba6","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/skill-support/bounded-context-map/notes","source_digest":"5bb8762d5c2e0e1f0418c57eb17246ed32ccbb50eb77224c611abf64c98614de","source_record_ids":["aoa:aoa-techniques:artifact:0142d07491244de8cc0bbcf5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5eca26f9f92cc76ecbdf29b7"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:8ca89d81ec41c1cebae5b70b","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:techniques/instruction/instruction-surface/profile-preset-composition/checks","source_digest":"ee333cbf2ba52212fdfd1fb17d7b9aaa925b3b132be381d683919d69f2bcf9a1","source_record_ids":["aoa:aoa-techniques:artifact:045f674617adfca9ecf497df"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ff722a49ae8d3745219e2716"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:8d4f31f310ceccc571d19a74","label":"config","provenance_ref":"deterministic","semantic_key":"directory:config","source_digest":"cbd99c65cea739e82c600e23c59fd6c5a876b36f692d8e2268d0153651a2591b","source_record_ids":["aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ff722a49ae8d3745219e2716"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:8d4f31f310ceccc571d19a74","label":"config","provenance_ref":"deterministic","semantic_key":"directory:config","source_digest":"e6d2aa5f8006acc7da7208e2c0ed24cb11ffd0a2ac1085bbb73700c1d31edd59","source_record_ids":["aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d933b894b739c95285bc2006"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:8d537673d7a55685aeeeccc5","label":"references","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-source-of-truth-check/references","source_digest":"01bc0b75f9ef1750cfe03706d979ed49884fea82b16db9fca61747c57455c282","source_record_ids":["aoa:aoa-techniques:artifact:59a12300c1bb3b52ad26a3e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ad598899c0fc70c0a2266350"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:8da222ff37cbeae9bb752647","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/governance/promotion-boundary/skill-proposal-handoff-packet/notes","source_digest":"1990668b006db650a407b917a7c4bbd7ca4ece390b834f2433aff253e0e817c7","source_record_ids":["aoa:aoa-techniques:artifact:33b2328b6747dddafe3f2af6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b79981e29c93214ded3ab44e"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:8e1ef37017ac2e049827100c","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/checks","source_digest":"af8dfbde9598e0f1ebcc62f83e2ecf96bca9d8c9572b34af9588eef4f23ba744","source_record_ids":["aoa:aoa-techniques:artifact:239c388b05081615ac1d4a95"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1014,7 +1018,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e1bc4a1cc5470ac993c4b6d2"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:be26ea60f8ca6dd48448377f","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:techniques/execution/runtime-truth-lifecycle/one-command-service-lifecycle/checks","source_digest":"92a3e06a3c5f8f5ef199527b2fa883ae1eb0680373b8911f22661ee108a08d9f","source_record_ids":["aoa:aoa-techniques:artifact:1e1420f04123850475c53478"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b427604591becd5686656dcf"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:bef2396ecee8839e17f2a8df","label":"skill-vs-command-boundary","provenance_ref":"deterministic","semantic_key":"directory:techniques/instruction/capability-boundary/skill-vs-command-boundary","source_digest":"6871f03ebeb9bd1cf1fd8b54252255be0dc9fb95dc7c99ff38709c109a090ec0","source_record_ids":["aoa:aoa-techniques:artifact:b9252eec9ba4bc7770f204a0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c78d1f6761f563cb12c77eb4"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:bef85a66c32aec0ca496cf19","label":"structured-handoff-before-compaction","provenance_ref":"deterministic","semantic_key":"directory:techniques/continuity/handoff-continuation/structured-handoff-before-compaction","source_digest":"2b9c415059c93ab21a6dc5aaf3fa49f021bffe9868032335d56d6d9b781497ea","source_record_ids":["aoa:aoa-techniques:artifact:d106030ab1130d4f8f6fa6e0"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9691e3fa21a88f2a1da72929"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:bf0542601e6669ef53a51656","label":"spark","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark","source_digest":"d1a6e5d3d115f18d982a93b21099fc44397ba30c44e1f836d4c4de0b9fb14921","source_record_ids":["aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9691e3fa21a88f2a1da72929"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:bf0542601e6669ef53a51656","label":"spark","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark","source_digest":"41ab9a43bc10d8e64fd036c247229bb0294c783449bbc5b76e464a295c315d5b","source_record_ids":["aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1ecb1d8d5300616209ae26d5"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:bf4f510cccfc5c3dde388b74","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:techniques/instruction/instruction-surface/fragmented-agent-context/examples","source_digest":"5e87f0927b0a24dec76add5df36963d11a88f190053806bdbeef97ea71fd8a4a","source_record_ids":["aoa:aoa-techniques:artifact:3e44ec8be46ceb8637f989a0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:da9a4d6f80820c575a5b1ba3"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:bf55f621a0823fc320bb7249","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/tool-use/tool-gateway/mcp-gateway-proxy/notes","source_digest":"0d378c71d7447eb0881a5e51e21f59384588487dc44e58d7bb978cfd69315f0f","source_record_ids":["aoa:aoa-techniques:artifact:392e6c7c4ac4c1c7e72086b9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f40bdb6a8c2639cef293176a"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:bf9fb499bc1d36dcc57cc644","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:techniques/instruction/capability-registry/capability-discovery/checks","source_digest":"f447b99e39f386d4834c028b8da4509973569c2c1d41d8d871f9ac7d274650c6","source_record_ids":["aoa:aoa-techniques:artifact:0b727e7eae9fb3483854b135"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1108,6 +1112,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:00296792184aad48ce6431d8"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d4cfc0a9a4ef0902cea12bbd","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/execution/runtime-truth-lifecycle/contextual-host-doctor/notes","source_digest":"f5634152aa9c6b918104789d1e534aebeef0da4f11deb52e9f3ce718d936d07c","source_record_ids":["aoa:aoa-techniques:artifact:15ef1c41fab50fad799f1f01"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d0713719f0c56e0be428eb4b"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d51d3051ef5afbc606152462","label":"media-ingest","provenance_ref":"deterministic","semantic_key":"directory:techniques/ingest/media-ingest","source_digest":"a9f59d8742c17b33191dc2a9fbb07a570e90da0af316c448f57c965e49b7d912","source_record_ids":["aoa:aoa-techniques:artifact:007a82a8574a70f9abf45002"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:75aac53f355e3317514874b7"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d56e0f26031b0f9952c26ae1","label":"runtime-truth-lifecycle","provenance_ref":"deterministic","semantic_key":"directory:techniques/execution/runtime-truth-lifecycle","source_digest":"8557ca19c1791977d0bfd3e468200297e47bc8cedfe1b385107229b7b8bb3535","source_record_ids":["aoa:aoa-techniques:artifact:00e178bcdf3dd84ade599378"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d585030345eeb0892f989b2f","label":"stats","provenance_ref":"deterministic","semantic_key":"directory:stats","source_digest":"67e14a565409059c79b667e95a85db666fd3925fc4e4ed8637df962fa1ad0b18","source_record_ids":["aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f0350df157ec90d69fcf3887"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d5ea5eded3bc80975e9a50d5","label":"scripts","provenance_ref":"deterministic","semantic_key":"directory:mechanics/recurrence/parts/live-observation-producers/scripts","source_digest":"22b3033ac8f77d593c96c633c4416b6fab0a22b0c2a8fb82643f0b83498e1b44","source_record_ids":["aoa:aoa-techniques:artifact:1e52a0e919d049cd43732980"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4e71e9a942df8b10f7a3d0c4"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d62cd35042dee0280f2d2ddc","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-session-progression-lift/checks","source_digest":"9eacb9ec8849a0b8b04c6f340181db8e82e77ca0c6f4a85756121361c7cb073b","source_record_ids":["aoa:aoa-techniques:artifact:cc44be8bae400fb571c17016"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:332f4d2a061c701c20efaf2d"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d63a0fe205a7f5d719758153","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:techniques/recovery/antifragility-recovery/isolated-service-stop-on-shared-substrate/examples","source_digest":"e594703dad5649c269597b1461deb1d52f03c15562304f7fb2a9a6c84010131d","source_record_ids":["aoa:aoa-techniques:artifact:1b51b9a4fa704c7421aee187"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1122,7 +1127,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:2852d8bafe181c7fc72c895e"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d8a71dad56738ba1757543de","label":"transcript-replay-artifact","provenance_ref":"deterministic","semantic_key":"directory:techniques/history/history-artifacts/transcript-replay-artifact","source_digest":"e69e549239ff8d8b22eb0d258fcb61a7b50e1c70b31cc342d83866c38538737c","source_record_ids":["aoa:aoa-techniques:artifact:e74cd97eb96b87b71a16d827"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cfefbb491362bac257a30a14"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d950eda0042200716f0582f0","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:techniques/governance/decision-routing/owner-layer-triage/checks","source_digest":"9e9b361338569e4d61846966688005b0c1798db8d7939956b0b2e464b6ec93bc","source_record_ids":["aoa:aoa-techniques:artifact:a64caec5b64873baeb0944dc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:415f166dadce2da3f1bd713f"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d9b1068c7062df4ed7076a62","label":"ingest","provenance_ref":"deterministic","semantic_key":"directory:techniques/ingest","source_digest":"f6fcf92c50b5ca6520e8452d4498d7f321e4b184692574b8001e5922477c6e4b","source_record_ids":["aoa:aoa-techniques:artifact:825255f117845ba2e37f9964"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b050ef8987d40a362d8adff8"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d9c6c49284b3416d9db07d8c","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/registry-sync/examples","source_digest":"a0f564794f835c0305c3aa9730a354545f7e6e4cc342bf4977a941e55bcadd98","source_record_ids":["aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b050ef8987d40a362d8adff8"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:d9c6c49284b3416d9db07d8c","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/registry-sync/examples","source_digest":"53f927414e3a5c65a37b941e30b14515a49d97ce92631a221d8a45d17a879c72","source_record_ids":["aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0523824e689a3fd4231cbf59"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:da07a7171d8a72afad6db215","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:mechanics/release-support/parts/installation-techniques/examples","source_digest":"b1107cebdec527987439056e31bdeca3b6221e4993ce1fd22477cf3222aecee4","source_record_ids":["aoa:aoa-techniques:artifact:aab6fd5018245ef251fae0f3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7288bbb50e5514262dd3a448"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:da39231fbb47badd4701fba2","label":"assets","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-quest-harvest/assets","source_digest":"2e6e577a002b5cad7f61f1cb407e25b19a681a8adc36a6581f261611a0cf4410","source_record_ids":["aoa:aoa-techniques:artifact:8e9ba9b293f5b013b7268017"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f9999bd107dd3407c134ece5"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:da7a553bbd2b6ef0b9e64ebe","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/proof/published-summary/published-summary-remediation-snapshot/notes","source_digest":"5070478f18deeb0615437ffa4740fa336ad56dce92a4e707f5429dc07d8fb1f1","source_record_ids":["aoa:aoa-techniques:artifact:10af0fef4a120085a701499c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1158,7 +1163,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:2d9b3b17a48efa6ec8846451"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:e2218414455cdde9f64f9b24","label":"schemas","provenance_ref":"deterministic","semantic_key":"directory:mechanics/method-growth/parts/adoption-boundaries/schemas","source_digest":"aa457eecc764c46fbdee2c340d032a0a22a4fe73d310421622baadc72e5eea06","source_record_ids":["aoa:aoa-techniques:artifact:b9df735df304f8d8810a6977"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3451385aaf7fe495cd288462"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:e23ef330ee38658b67f39b17","label":"authority-resolution","provenance_ref":"deterministic","semantic_key":"directory:mechanics/experience/parts/authority-resolution","source_digest":"a495dd4c696ee7e8567cf0cb90bbaf347c3f78621151bd5800223af8d3cdb9c6","source_record_ids":["aoa:aoa-techniques:artifact:b06f4f620e0692b0c9a33d83"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e2d94c0f3933b65d0a8c9fbc"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:e25e8ff5c4b6122ac5cd7ab6","label":"commit-triggered-background-review","provenance_ref":"deterministic","semantic_key":"directory:techniques/continuity/review-compaction/commit-triggered-background-review","source_digest":"0e77fa72ff437db855deaa28fc0094aec59a4ec021846a5c3ae046d5b6936ec7","source_record_ids":["aoa:aoa-techniques:artifact:f0f00513b93bdb9235827f82"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0d34436075ac53cb4a60780e"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:e36eb37bac004888cc6d4cbb","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/diff-review/examples","source_digest":"58b7f684cca41b3b250a32a998be1bc4e28d950c392e624564b389df6ec1a11e","source_record_ids":["aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0d34436075ac53cb4a60780e"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:e36eb37bac004888cc6d4cbb","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:.agents/spark/scenarios/diff-review/examples","source_digest":"1ed8d254494c017a0306aba80926e5c142bb5a6816339b2525725d4f45fb4fb8","source_record_ids":["aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:adb73d16cf7b54d48460f287"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:e419945193caf6fd5aa7540d","label":"checks","provenance_ref":"deterministic","semantic_key":"directory:techniques/execution/agent-workflows-core/shell-composable-agent-invocation/checks","source_digest":"9b74afb9beaed3a07c5bff7657c7338cd9391f432d7d6d45f56396ac503a2cef","source_record_ids":["aoa:aoa-techniques:artifact:ca87171caf6fee01d9499c43"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e37b430c42e43beb34f81cd0"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:e424cd0a7cfac4e70510deac","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/governance/automation-readiness/automation-fit-matrix/notes","source_digest":"e1e10ab12a6e42becab569f6acbc672f924ffff20498224423f5951c3a8d6aaf","source_record_ids":["aoa:aoa-techniques:artifact:40814f047eb1492024fb221b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4fa89ac9ebdddb09380968fc"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:e4279bda3a52bfd33bdaeb4b","label":"examples","provenance_ref":"deterministic","semantic_key":"directory:techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/examples","source_digest":"4884a49d97cf22353f239c7345f33910a74e1d54383ffcd61990797d114e7f24","source_record_ids":["aoa:aoa-techniques:artifact:209f2463faaf5c9060be3d1a"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1190,7 +1195,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:a803ec443aebf2d491befe91"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:eed466314c2f3096eb33e646","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate/notes","source_digest":"9134229bb42ddd178ac15c50d31c499fe81b0059f3a412686c4ce29df714e284","source_record_ids":["aoa:aoa-techniques:artifact:1b832ce690f5019c5d9c826a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ce0e28e0fc99f6c2f58946fb"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:ef88c0cff958a850c8e77034","label":"docs","provenance_ref":"deterministic","semantic_key":"directory:mechanics/distillation/legacy/archive/closed-incoming-packets/chat-handoff-bounded-continuation/docs","source_digest":"d76893cc0c703e6e88f0a35c07b555233ef98994ee5073d7769d76946a66bcba","source_record_ids":["aoa:aoa-techniques:artifact:57e29e91d362cfc1ba48774f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2fc941c7d857c783de1ae62c"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:efb847e11061c2d2ebe12ba1","label":"baseline-first-additive-profile-benchmarks","provenance_ref":"deterministic","semantic_key":"directory:techniques/execution/runtime-truth-lifecycle/baseline-first-additive-profile-benchmarks","source_digest":"c5ad34c35854dd3f43fd3dab9958eedaca9fed09a0705b41e614aa4f322b70ad","source_record_ids":["aoa:aoa-techniques:artifact:d078f1d3bf30efcdc6934355"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1574d71229e0ed11f7074ec8"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:f019620edd42955bd2ad859f","label":"workflows","provenance_ref":"deterministic","semantic_key":"directory:.github/workflows","source_digest":"a030b2ab3bedd5c5562257a15610b1296bb3949638e6faf4fcb3a2e374d10a0f","source_record_ids":["aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1574d71229e0ed11f7074ec8"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:f019620edd42955bd2ad859f","label":"workflows","provenance_ref":"deterministic","semantic_key":"directory:.github/workflows","source_digest":"600a0055a5995ff11670cd742ed18c4f949832566981b9e8c7c3623e19b1a108","source_record_ids":["aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e4d65314c5ee72176a5dd12d"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:f0d6f57772f9dcbe44919b7c","label":"notes","provenance_ref":"deterministic","semantic_key":"directory:techniques/instruction/instruction-surface/upstream-mirroring-with-provenance/notes","source_digest":"e6c6f2ee5ea1c862fcbd376bf30bf6467465f4106dfacba9db6f1beaceb0ed24","source_record_ids":["aoa:aoa-techniques:artifact:34058cf2c328bd90cf8685f5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c2794d35d391c05cae798ce6"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:f134a82e2437eb1ca956d9a1","label":"nearest-wrong-target-rejection","provenance_ref":"deterministic","semantic_key":"directory:techniques/governance/promotion-boundary/nearest-wrong-target-rejection","source_digest":"473c5be47b86a02f44567a30c894e5b7ca6a5b1f3d296933283fe1ee92e3b44f","source_record_ids":["aoa:aoa-techniques:artifact:8dbbfaebecce23663f764e20"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ae15c341c9e16d3e0d8953de"],"entity_kind":"directory","id":"aoa:aoa-techniques:entity:f2afd2ff037caa398b0e0665","label":"references","provenance_ref":"deterministic","semantic_key":"directory:.agents/skills/aoa-session-donor-harvest/references","source_digest":"58e5cd09ddcac08b95f5d11a8d87abea6773a1c46f53c4ddf19c90a068aec4be","source_record_ids":["aoa:aoa-techniques:artifact:18e4d7b9ab04bf529f3f4af7"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1256,7 +1261,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:18f3dc49afa4ff405f6b9d4d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:00eb28a3a1aabc5875901ca3","label":".agents/skills/aoa-invariant-coverage-audit/references/coverage-audit-shapes.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-invariant-coverage-audit/references/coverage-audit-shapes.md","source_digest":"6d59049e6371995f6cd1b6944ab6e9fb6cccfafab8eb8601c29e344f3035563a","source_record_ids":["aoa:aoa-techniques:artifact:f00a19b19e4dbeaa575f01af"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4ad03f4304fb99397e3eb403"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:00fcf2ffa3902bc547308967","label":"mechanics/audit/legacy/raw/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/legacy/raw/README.md","source_digest":"4aad1f31e66114f7832e90925407d124809310aa5eed97a5b31f553c884bf7c7","source_record_ids":["aoa:aoa-techniques:artifact:436c0178449184d78679b748"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:383f989f176a03d90938186c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:00fd84d7fab2aa3761b0ed32","label":"mechanics/questbook/ROADMAP.md","provenance_ref":"deterministic","semantic_key":"mechanics/questbook/ROADMAP.md","source_digest":"9dd0dd31dfa407ea1327570b87c8c58863e5c3686c34ca93bae471c2986cc8f7","source_record_ids":["aoa:aoa-techniques:artifact:a38eac462abd74917c9aa231"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7ce21988d527efc51541f116"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:01377c5fedb356b01ad29883","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","source_digest":"bf2bc9967ffd50cc45d126d3ff78a9f381b8136980c60dd4ef7e00ee6da9a790","source_record_ids":["aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7ce21988d527efc51541f116"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:01377c5fedb356b01ad29883","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","source_digest":"7bf713796ed0fa8af128c45ed37de9a2395bc59c0d45c1894cef4170a6476ce6","source_record_ids":["aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6b8a0b95be3dd636c7fa21de"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:01ede0f4098bae74675bc5c9","label":"techniques/continuity/review-compaction/review-findings-compaction/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/review-findings-compaction/notes/external-import-review.md","source_digest":"322854e892e324f1f96fed2186a3f5ea75353c78f8778710b679c2279281ea44","source_record_ids":["aoa:aoa-techniques:artifact:78ddcd8cb31836741b866e60"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e23496f55bf5af4224f48ed4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0298bd41eceb8447f812b376","label":"techniques/execution/agent-workflows-core/stateless-single-shot-agent/checks/stateless-single-shot-agent-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/stateless-single-shot-agent/checks/stateless-single-shot-agent-checklist.md","source_digest":"728d1c5a03a4e5e2ef17e9acf6fb395e4cd49d96a44b821283bec5ee6f5ca34f","source_record_ids":["aoa:aoa-techniques:artifact:2025513516b5905193ae6cd9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2030293bcfe5fa02a805fb8f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:02ac386ff561bd3269e3e04e","label":"techniques/execution/runtime-truth-lifecycle/render-truth-before-startup/checks/render-truth-before-startup-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/render-truth-before-startup/checks/render-truth-before-startup-checklist.md","source_digest":"969702e69d69c210c6f2c48f910b79f991ddfe93619f8e22d600d1941f5d2998","source_record_ids":["aoa:aoa-techniques:artifact:c3633ce00072e52ca020b49d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1275,7 +1280,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:7f14543cc65c9efa007746e5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0568365aa6b0a51ba475a9b8","label":"techniques/continuity/handoff-continuation/episode-bounded-agent-loop/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/episode-bounded-agent-loop/TECHNIQUE.md","source_digest":"3a55f427cae90883b16c645fbcaf4613f1b999be20acd28c8ba20e7627226725","source_record_ids":["aoa:aoa-techniques:artifact:59ae467af916cdee016de225"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9f69161cfceddbdd8ea69ac5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:056db8fa90302a30e3b1fd52","label":"techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/telegram-export-normalization-to-local-store/notes/canonical-readiness.md","source_digest":"3831d42d9a8d70afa75db751ea556a29f96abc5673b3d735d7062d163a36089f","source_record_ids":["aoa:aoa-techniques:artifact:05279c2f375337b9f6eee4fb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:399c8e5a91e13b810809aaed"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:059fccb81913d1810d11476b","label":"techniques/continuity/handoff-continuation/session-opening-ritual-before-work/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/continuity/handoff-continuation/session-opening-ritual-before-work/notes/adverse-effects-review.md","source_digest":"e5dafc09117d6a2296637c7e620ed6d37dfb9d9b2cd71664e4327d65f567ed64","source_record_ids":["aoa:aoa-techniques:artifact:dd9fe94335e5abcd3334380e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3009aa25d549a5f182e7204a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:05a0a4693bfda75d4c173f06","label":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","source_digest":"52a8ae3397353c0202ca66912cd2f1663a9694e7ff29e1c6d25f85c53d13d38c","source_record_ids":["aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3009aa25d549a5f182e7204a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:05a0a4693bfda75d4c173f06","label":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","source_digest":"c585d5e937a2e618b00d8de44c79a854d94796e8a4a53583d53852814717efdf","source_record_ids":["aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fbf906dc8d0146886f86b70c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:05c608dd07a6eee631ede9f2","label":"techniques/execution/runtime-truth-lifecycle/baseline-first-additive-profile-benchmarks/examples/minimal-baseline-first-additive-profile-benchmarks.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/baseline-first-additive-profile-benchmarks/examples/minimal-baseline-first-additive-profile-benchmarks.md","source_digest":"a8ed7c4e9f3388dfd0b5d09758483167b68c2fd83c5c8b7fd4b7000a4807cee9","source_record_ids":["aoa:aoa-techniques:artifact:040dd8699c33cac07cf4c506"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3f509b03ec463b21d870ea1a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:05e4dc0e3b104755dea37c23","label":".agents/skills/aoa-session-route-forks/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-session-route-forks/SKILL.md#generation-2","source_digest":"7d6d3fa93722020b448f7b5345bd3b98499a99239a19a2a4b0cd6e6248440014","source_record_ids":["aoa:aoa-techniques:artifact:0343aea2ab7d216dcc38a493"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:462e9e2f4825c2289ed67d08"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:05fdf04895fbc290ca1c3b17","label":"mechanics/antifragility/parts/recovery-practice-bridge/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/antifragility/parts/recovery-practice-bridge/README.md","source_digest":"42741040a8be040006649d4e78c5371e1a048a5ed38901cc0f42bac49f838f74","source_record_ids":["aoa:aoa-techniques:artifact:207d028a244119d51928639b"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1286,23 +1291,23 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:354c494a1263acfeaa52ba9c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:06cab1ce2728b3aa7dc94397","label":"mechanics/recurrence/legacy/raw/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence/legacy/raw/README.md","source_digest":"a35a273e3d727f63c90e2a90c724b158e9a27d7549daf4eac637a2790983d277","source_record_ids":["aoa:aoa-techniques:artifact:3d31871e3f829a548775f14b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9f95a41e9853df1555329aea"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:06cfbd3af8419cd781ab5a11","label":"techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/notes/adverse-effects-review.md","source_digest":"553e18ba5399f48bd16ef3eaf420316c5b6af2791c1f06b31d6c3d7a7fe35210","source_record_ids":["aoa:aoa-techniques:artifact:f4fccf1f1e648bf102382866"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c9ce9bbcc4dd77e828bec54e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:073ed333b3793f789ecc3b5f","label":"techniques/governance/decision-routing/owner-layer-triage/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/owner-layer-triage/TECHNIQUE.md","source_digest":"a04fbd7c2edd78ed0037f3f0f3cc03f39f7449a8d66dd6acc4f61fad0f6858ff","source_record_ids":["aoa:aoa-techniques:artifact:15208e0bf31513e05ff40cee"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:a8aadf942643495c9581c021"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:074d85ac2f5bfb6f4ef2b0fd","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","source_digest":"c7ec01aafce71db828d83e6e8211b75ec8e12ef438453907a3756cd2a1e565c4","source_record_ids":["aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:a8aadf942643495c9581c021"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:074d85ac2f5bfb6f4ef2b0fd","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","source_digest":"c867755f2b319a6feeb7afbce7a2211f302fa468fd2342479c0f1f308df3b864","source_record_ids":["aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:901ebe884eb24a6de300bb9d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:079953ebe614b79b477ac29a","label":".agents/skills/aoa-contract-test/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-contract-test/SKILL.md","source_digest":"f966cf9acc169f43dbdbbf6a24e5ea2a52a354ab992a8172b0558ce874ab32d6","source_record_ids":["aoa:aoa-techniques:artifact:b010b6bbedccf3b3968036fa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6c85a22007f0d3a11c845f63"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:079b0873ea243c483f3cd9b2","label":"techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/cross-repo-resource-map-bootstrap/notes/external-import-review.md","source_digest":"b2a101fa2aeaf55f1dadabf77bd9b52c9eb5255c9e5c8b400d0e88dcd5cf8bbf","source_record_ids":["aoa:aoa-techniques:artifact:dffc9e10fd6fad716823a2d7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d924e029605eb97a1b2e989d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:07b6988320d01f480980a903","label":"techniques/continuity/handoff-continuation/episode-bounded-agent-loop/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/episode-bounded-agent-loop/notes/second-context-adaptation.md","source_digest":"4c69c4c14bce38e7a557494b01f8d620256981327539e59b16cd51021cfab127","source_record_ids":["aoa:aoa-techniques:artifact:6afdfec1cd5d4db89cb75bf8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b5da729206e4628202b087c2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:07cfac2ad20a076b2a891af4","label":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","source_digest":"471dce56877d84e8670c80942034607f4000030904c30da7c1d44bc8e57232a7","source_record_ids":["aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e38b2245976a1b9da2cec16a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:07db9ee93e3f84b696a54328","label":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","source_digest":"18e13926fab0c11bef75e39cdb791618a1ab30df039dc46de4932031fea80369","source_record_ids":["aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b5da729206e4628202b087c2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:07cfac2ad20a076b2a891af4","label":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","source_digest":"201ad803daa61b186214c8237bfd3118252d4afc3f689c61e413a0f2ae918efe","source_record_ids":["aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e38b2245976a1b9da2cec16a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:07db9ee93e3f84b696a54328","label":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","source_digest":"94db9f2e01a35d451352618c55c862640ffa401fd9fa61a4236d2318dda600c4","source_record_ids":["aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ff3f14ddd40ef2514c5e218a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:081b01482ae6133d9a4b4ad1","label":"techniques/knowledge-lift/kag-source-lift/semantic-review-surface-lift/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/knowledge-lift/kag-source-lift/semantic-review-surface-lift/notes/adverse-effects-review.md","source_digest":"e118fe1eecfccbf6a8886de3848f397a55e2629571903767db5b5445ee30be3b","source_record_ids":["aoa:aoa-techniques:artifact:d2b374987e9e83e7c0daba63"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:812d62cbcf8278e3f74f8b1d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0834a03dd86109e64a464c2c","label":"techniques/continuity/donor-harvest/progression-evidence-lift/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/continuity/donor-harvest/progression-evidence-lift/notes/adverse-effects-review.md","source_digest":"c151506ad310712aef3269041f188c13a6775a4cc92fc10b97fc6d3d22d87455","source_record_ids":["aoa:aoa-techniques:artifact:2df14b9d26a4b4fe2f54731b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9691e3fa21a88f2a1da72929"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0834f71306862f4598a3f8cb","label":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","provenance_ref":"deterministic","semantic_key":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","source_digest":"af82684abeaad91f17be8297df6899ebc463344dca0016672b4188095508df0f","source_record_ids":["aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:71646ecdc56040140d2af748"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0865593900d52b21077090ce","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","source_digest":"d6cd0e83a4c4f9c1b12edd262fdb096008ef789f942c183a245ae1305f665d4a","source_record_ids":["aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9691e3fa21a88f2a1da72929"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0834f71306862f4598a3f8cb","label":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","provenance_ref":"deterministic","semantic_key":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","source_digest":"280978d4c11c4e4a598634d240723c3487c01c38b4d24887a78eb0714a208e09","source_record_ids":["aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:71646ecdc56040140d2af748"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0865593900d52b21077090ce","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","source_digest":"cf2c7bdbe59777b4a84b22147fe2a381a0f7b587df28c56430d2e62fe544fb16","source_record_ids":["aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9a2ab01879b8826a731fbfe4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:08676f9cd599f4da69f38a48","label":"mechanics/distillation/parts/long-gap-reentry/README.md","provenance_ref":"deterministic","semantic_key":"docs/LONG_GAP_CANON_DESIGN.md","source_digest":"50c48cc32dd586ec28cd135fa2935e72f38d7275432e0c4e3288e05ac11fbf82","source_record_ids":["aoa:aoa-techniques:artifact:395a124445c66f20adae62e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:eea898fb94871ed85902ab69"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:086de1701c430ab71770855d","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md","source_digest":"66ebd449b498620343855dd57f5521b817b38b2c2d779453d0ce86f0930d82dd","source_record_ids":["aoa:aoa-techniques:artifact:02725fe911d71d32505fc6ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:19683592185c92e331a28a34"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:08c9f03d09479c063a1490bb","label":"techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/superseded-practice-obsolescence-route/notes/canonical-readiness.md","source_digest":"dd2ccb4c2af8f97003ce088cadc409fdc5144a80ae68e16a0b9c4fff89c84e7c","source_record_ids":["aoa:aoa-techniques:artifact:12349f003c8fe5281bef380c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5d0e7c59d6f50518a587eeac"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:09475aa7876510ba31940326","label":"techniques/instruction/capability-boundary/recommendation-truth-vs-host-actionability/checks/recommendation-truth-vs-host-actionability-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/recommendation-truth-vs-host-actionability/checks/recommendation-truth-vs-host-actionability-checklist.md","source_digest":"fc4e2490c28442c145d3afe28935372d158f475374843dffbbf275dd6030d72c","source_record_ids":["aoa:aoa-techniques:artifact:5cb0ce73afabbfe67b244057"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cc8233a385a1e427f9e22955"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0955395cf35662af8726e199","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/checklists/request-evidence-gate-checklist.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/checklists/request-evidence-gate-checklist.md","source_digest":"487ec53e8d79473b8dc923043b6723d08dad6f2c4e5ecbaeab3601ebe9035ea6","source_record_ids":["aoa:aoa-techniques:artifact:a7008b04ee25596f485c2f99"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bd8e223de52567ec32a14762"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:09e118e1e5a378e6231e0bc3","label":"techniques/history/history-artifacts/local-first-session-index/checks/local-first-session-index-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/history/local-first-session-index/checks/local-first-session-index-checklist.md","source_digest":"7ed8b7dad9d38f1af9faab029f8bf88cbd6c52f0cacc86efe480acd7c41882c6","source_record_ids":["aoa:aoa-techniques:artifact:0c8b3c975f53615853e84d17"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:35f09c38d6104131c92cf856"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0a1e606a969c99025aaf839a","label":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md","provenance_ref":"deterministic","semantic_key":"docs/AGON_WAVE4_TECHNIQUE_LANDING.md","source_digest":"0292789b7e70ee9890c13b6fb5a9cdcf7ad8e9e87c007a6b7703fefa4215cf5a","source_record_ids":["aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:35f09c38d6104131c92cf856"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0a1e606a969c99025aaf839a","label":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md","provenance_ref":"deterministic","semantic_key":"docs/AGON_WAVE4_TECHNIQUE_LANDING.md","source_digest":"65c331a21abd0d8d05e7849b55f33a4839d8995b377cdb7298815dd130dd1e01","source_record_ids":["aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7dc7edac22322b5899498e76"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0a3ff28bbfe6420ba1583c78","label":"docs/ECOSYSTEM_CONTEXT.md","provenance_ref":"deterministic","semantic_key":"docs/ECOSYSTEM_CONTEXT.md","source_digest":"f0c408204861629b1b2489dee5eddb209a1086d6c2f775c36aa45206ad757144","source_record_ids":["aoa:aoa-techniques:artifact:564d64d6e09515e2490437b2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:23448a410f0c40ef9653ec5a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0a6b4b66c87a64ef0a21674a","label":"techniques/continuity/donor-harvest/multi-axis-quest-overlay/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/multi-axis-quest-overlay/notes/origin-evidence.md","source_digest":"20d4de19063c01aadd35f8eb8ff839eea4d3884e615fdff14b044d3e3a6fe03b","source_record_ids":["aoa:aoa-techniques:artifact:1061634e883aaf7509f2cc85"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d4c63523de46edbfeb5cd031"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0aadb8a97dae9040c9947862","label":"techniques/instruction/docs-boundary/decision-rationale-recording/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/decision-rationale-recording/TECHNIQUE.md","source_digest":"2f3f0713b9800bfd38a0e0445cbbe0957c8b293d5ef3f76584a4baea05bfd3bf","source_record_ids":["aoa:aoa-techniques:artifact:ffc4b0c856fe2ec1810bf418"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1315,7 +1320,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:c69ff88c69391d705b9fcf15"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0c2db192ec723dda94b485ef","label":".agents/skills/aoa-dry-run-first/examples/runtime.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-dry-run-first/examples/runtime.md","source_digest":"1321fc858d8d92f93c74c784b4abc1c2859c3d61a1607deb525456fb04bbb70d","source_record_ids":["aoa:aoa-techniques:artifact:30b7207b73e99759eb18fbf8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:205aa2034c6fc0a487f49d95"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0c4fabddf97ec4cde807d27a","label":"mechanics/agon/legacy/INDEX.md","provenance_ref":"deterministic","semantic_key":"mechanics/agon/legacy/INDEX.md","source_digest":"71432c0f7b00a764a45737eb74ece31e1ade901afbde5ba5dac850f007166646","source_record_ids":["aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b0a8d4ea33d18a90cf779525"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0cbc3798dc1174904a7e0587","label":"techniques/instruction/docs-boundary/decision-rationale-recording/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/decision-rationale-recording/notes/origin-evidence.md","source_digest":"233b3e3cc5b1abf9bb6320ae399777c9d3e2ef918b48f9425b9c20a14765c04e","source_record_ids":["aoa:aoa-techniques:artifact:9a3f4914969c040006c7cfec"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:2624190ed2bdceff42197c75"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0cd73a1520db014dcf53508e","label":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","source_digest":"c4948f53a3612fd353b8ca7edd22fa1d1dbc7fb161748d779650e52101fe1696","source_record_ids":["aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:2624190ed2bdceff42197c75"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0cd73a1520db014dcf53508e","label":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","source_digest":"0435bbffa1754a372411394902df493c2bb6094cb93beb05f9a4497de2c9f13f","source_record_ids":["aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:acdf1069fc2096a4d03c983d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0d06fdec69a202238fa69797","label":"mechanics/release-support/PROVENANCE.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/PROVENANCE.md","source_digest":"fb668f5f4ebc4b4722bffadf735f9e04cea8538ff209bf483a003b8a4bf8bac6","source_record_ids":["aoa:aoa-techniques:artifact:6699026f4eaa3488aa900737"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8d7e3d38cd6bdf24a5f2fdba"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0d5bdeb2d2a61a2d78e93b67","label":"techniques/proof/evaluation-chain/signal-first-gate-promotion/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/signal-first-gate-promotion/notes/canonical-readiness.md","source_digest":"dc9de756571e370f66dee870076701becf6a8a19ab9d93fb78baeea21028b2f6","source_record_ids":["aoa:aoa-techniques:artifact:a805db5f17fa027905cc9bb1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5a076790ec4a6915fcebfa53"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:0da34eb5971e7dd5b079cf93","label":"techniques/proof/owner-truth-closeout/audit-to-closeout-proof-loop/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/audit-to-closeout-proof-loop/TECHNIQUE.md","source_digest":"6ab3b679c4747526e96b1741a6c07c6837345d242c6698899b2f6bef8ead05ae","source_record_ids":["aoa:aoa-techniques:artifact:3a246793128dcdb1764f8833"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1337,7 +1342,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b427604591becd5686656dcf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:104c5f60b08291e7b5421b96","label":"techniques/instruction/capability-boundary/skill-vs-command-boundary/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/skill-vs-command-boundary/TECHNIQUE.md","source_digest":"034fff31eb4ee02b6cdc1c4468065ddc0741a110f0e676b065eba32d3ce5dbc6","source_record_ids":["aoa:aoa-techniques:artifact:b9252eec9ba4bc7770f204a0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3b2d233f15714b0a091488cd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:10558146e7b8840fe2273ee3","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md","source_digest":"f2cb07caa966ef17b722b027fef6e03bc3ef0218aa98a4ccf665385bb3414202","source_record_ids":["aoa:aoa-techniques:artifact:02b9d67150122bff94236586"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:da1e1168d10f7d81758e66b6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:106321505439c06cb1ab06fc","label":"legacy/README.md","provenance_ref":"deterministic","semantic_key":"legacy/README.md","source_digest":"c1694975fa1a26431eaa54293dc26d5360f6363956b3b117b7a4a58e35593b67","source_record_ids":["aoa:aoa-techniques:artifact:70cf324ad5b327bba1d3ff96"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:47718eb692e916667a343468"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:107686980b4b1852fd5bfa37","label":".agents/spark/scenarios/technique-refinement/README.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/technique-refinement/README.md","source_digest":"86d8e7a5f9cc5f3cb226a1571d0efedc984a8724a837cc3b2c77e6ab73c55f60","source_record_ids":["aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:47718eb692e916667a343468"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:107686980b4b1852fd5bfa37","label":".agents/spark/scenarios/technique-refinement/README.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/technique-refinement/README.md","source_digest":"f6f9828d64f104fb78f0b2fadda5eb2557655856d01aab4fabb41bf3b3af61e9","source_record_ids":["aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bec1f39cae0a470e6fa3b9e0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:10e071122a896467cd86bba0","label":"techniques/knowledge-lift/kag-source-lift/github-review-template-lift/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/github-review-template-lift/notes/origin-evidence.md","source_digest":"2b97a44bde391d60f0146f633bce8ee8c260de9c3e95bad8be0a60ebfa3887c0","source_record_ids":["aoa:aoa-techniques:artifact:8aef386e08e063cb73801a64"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ef179f84ab4921c8e3cb9b86"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:11360cb6f50feb870318ff06","label":"techniques/governance/automation-readiness/human-loop-to-first-landing/checks/human-loop-to-first-landing-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/human-loop-to-seed-lift/checks/human-loop-to-seed-lift-checklist.md","source_digest":"39f56ebda655b665f774dc91c3e63e71de3ef08443d8daacbbcf477fe632b495","source_record_ids":["aoa:aoa-techniques:artifact:9987bb31e7f5f2cdd5ad31eb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d360929657312e978b635ebb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:11381b50de9c3b4e95699916","label":"techniques/proof/skill-support/contract-test-design/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contract-test-design/notes/adverse-effects-review.md","source_digest":"7da2fb154174c9067a393f6bcfbbf2fa67f625353d32d02250ba25abaec8993c","source_record_ids":["aoa:aoa-techniques:artifact:8a161d03b5adda9f47e974f9"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1348,18 +1353,18 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:db24304873d3a69304589284"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1211d36bc8435d7e0cf55996","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md","source_digest":"16122b325eed3058f3800cf1682b610e6734948cdb240694c8edfc0d351e5d03","source_record_ids":["aoa:aoa-techniques:artifact:0cbfc31da990762d893d8446"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9c1c6563423966ae83e219b1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:121e7faf9dcd901182081355","label":"techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap/examples/minimal-cross-repo-resource-map-bootstrap.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/cross-repo-resource-map-bootstrap/examples/minimal-cross-repo-resource-map-bootstrap.md","source_digest":"7e425c84b2fc6abdfb9ad88d51d67166d168c3f286c028fc4619846b9ac3fb4e","source_record_ids":["aoa:aoa-techniques:artifact:4dcb0fa86ff3a4f33d77cc93"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:de0e330ef15d6ffdf84712bc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:12244aff2d8d81584961de11","label":"techniques/execution/runtime-truth-lifecycle/contextual-host-doctor/checks/contextual-host-doctor-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contextual-host-doctor/checks/contextual-host-doctor-checklist.md","source_digest":"620c4ea80129aa5e8320b23acd7c0d07853ec98af0717df1aa22367b75a93e61","source_record_ids":["aoa:aoa-techniques:artifact:7a5585c8985742ae1c2ec0c6"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:123735f3682043bff7a7e1b3","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-b-review.md","source_digest":"0a4c3fc28dab1fddeb0df82533996db8a77281bdf3ea81ce64ec001a07ac01c5","source_record_ids":["aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:123735f3682043bff7a7e1b3","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-b-review.md","source_digest":"9a39e8813742b0005c23a6e84bfd27869e2a882dc7b170e50b56bf1f0949e2ee","source_record_ids":["aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:415cd89d83e8c0e99b80ee5c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1257077b467b411d4a7bc0cc","label":"techniques/proof/skill-support/contract-test-design/checks/contract-test-design-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contract-test-design/checks/contract-test-design-checklist.md","source_digest":"9ccc1d80ed2a8d6b1f1e5db9712866d86ef46e7187b8d6b657ffa95e9edddb34","source_record_ids":["aoa:aoa-techniques:artifact:92582e86226a42808b829ebc"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:12a3067e9fb0968f455517c4","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-a-review.md","source_digest":"5173c7bdc3ed07254f5d3d0f7914493a1839809ce09c7f744fccae2180c3a06b","source_record_ids":["aoa:aoa-techniques:artifact:2353838de15b55284f3f2147"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:58e01a3fbf6a66fcdd246a67"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:12a608701279ca013e7d1f2a","label":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","source_digest":"ddd5fbcf5b1018ffd9de2c5ff8bc8e3a0c8b1f4725a07a3c79507799fc965715","source_record_ids":["aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:12a3067e9fb0968f455517c4","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-a-review.md","source_digest":"9bc1e57c29626827e1d9579d3d65f8c29ce351b160f3c0c77c8b8525daae8d33","source_record_ids":["aoa:aoa-techniques:artifact:2353838de15b55284f3f2147"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:58e01a3fbf6a66fcdd246a67"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:12a608701279ca013e7d1f2a","label":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","source_digest":"f8ad8b8672e6b9e1f55304683dba76ecec365e18c0cba1914c43085eb3ad332a","source_record_ids":["aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4fd371624979b57527ac199f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:12dc0bb2ecbf762374401d7f","label":"evals/suites/README.md","provenance_ref":"deterministic","semantic_key":"evals/suites/README.md","source_digest":"5217c0745c10b96447d3385e2bd20900de663577a94f404590ec898bf6204280","source_record_ids":["aoa:aoa-techniques:artifact:8611332c6fcbad7921c5cd0c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:72c4a22c66cdc98830ad45e1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:13546adf4c4308236610fffd","label":"techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/evidence-note-provenance-lift/notes/second-context-adaptation.md","source_digest":"47ff5a96e0c5cc4e76841d94020a32814398431599d027067d5282fcdb667362","source_record_ids":["aoa:aoa-techniques:artifact:a68947b3a5a15b49d800d9fc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:88163f45079ac3717b6d402f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:136f24cfe31639b5ce041872","label":"mechanics/distillation/parts/candidate-intake/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/candidate-intake/README.md","source_digest":"85031be8351950e5254510e4b35fa3a3c541ffa214d410d26d3247f7f084bd0d","source_record_ids":["aoa:aoa-techniques:artifact:35d77bf50f6518f4f2e625ff"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c07a35cc20cd0184c494043a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:13af548fd9ebbee484b49403","label":"docs/readers/selection/SELECTION_PATTERNS.md","provenance_ref":"deterministic","semantic_key":"docs/readers/selection/SELECTION_PATTERNS.md","source_digest":"3aa802c5cacd763692c2eeca9aeaabdff71508e781e1ec5f9d51065d7b038d6d","source_record_ids":["aoa:aoa-techniques:artifact:4dc53213bfebb42ffcab24a0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:648317e015fed35f7c03047c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:147281fdc980bda15d98673c","label":"techniques/history/history-artifacts/session-capture-as-repo-artifact/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/history/session-capture-as-repo-artifact/notes/external-import-review.md","source_digest":"a6647856f4140574373b1d4f86005a2a31e1971eeb0b214e1e9db9bf7bd50969","source_record_ids":["aoa:aoa-techniques:artifact:74ecf478b5dab85b758be703"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","label":"CHANGELOG.md","provenance_ref":"deterministic","semantic_key":"CHANGELOG.md","source_digest":"caaf21212ff13194c7dcfff254e3c18eec3039197c5d97afb55448a4f096a5f5","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","label":"CHANGELOG.md","provenance_ref":"deterministic","semantic_key":"CHANGELOG.md","source_digest":"7c49ca5d70522727e2c42ad30c6982df3e4b4664ce28319d0bb4b68117990a5a","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f381ca6590d7db58cb834d07"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1495d45e753e77d514a06c63","label":"techniques/instruction/docs-boundary/decision-rationale-recording/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/decision-rationale-recording/notes/second-context-adaptation.md","source_digest":"9f494d9cf4b465cf281cb25d8345e3e1938560a35ddbaf5a1eda9a247db6426c","source_record_ids":["aoa:aoa-techniques:artifact:0db3a09da673f5e520a120db"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7333d08c03ba0655284f67f7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:14990bdd782e37527e4dc0fc","label":"mechanics/recurrence/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence/LANDING_LOG.md","source_digest":"3da63d3c458ba51897cb3d84346c0eb534a87de44b1311259129111ee0477f31","source_record_ids":["aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7333d08c03ba0655284f67f7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:14990bdd782e37527e4dc0fc","label":"mechanics/recurrence/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence/LANDING_LOG.md","source_digest":"b1fe6fb1dcd52bf4bc47df24add2d4fbeb4028a0e399c86278505d3dd2329187","source_record_ids":["aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3557c248cf79a818bb6fde82"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:14bb6137976a329b896f8014","label":"techniques/continuity/review-compaction/compaction-resilient-skill-loading/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/continuity/review-compaction/compaction-resilient-skill-loading/notes/adverse-effects-review.md","source_digest":"1edbb28a39a7dc4806b6c28b22adf9c0fec28c4c214ec37edb9c52adb7f8cd4c","source_record_ids":["aoa:aoa-techniques:artifact:cf97fba43df543332979ff14"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6a3ba94fae364e83211e6acf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:14c9fbc0d7fc77bacc963136","label":"mechanics/recurrence/DIRECTION.md","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence/DIRECTION.md","source_digest":"aa9170e0b0b203d27a79dd56516c4c0ac5e89df0abfb57a5e216814f23709416","source_record_ids":["aoa:aoa-techniques:artifact:373d31bb4eefee2cd479babf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3604d947bacbd2a53d9ed83e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:14e1f4c96b48b7a2368c8f99","label":".agents/skills/aoa-session-route-forks/examples/runtime.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-session-route-forks/examples/runtime.md","source_digest":"5a510ddc0bbec84623232f7019b6375ab7bf64b21f2edc94ed9a77b980959da2","source_record_ids":["aoa:aoa-techniques:artifact:d848520b1b9a2cc3c2358c88"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1370,7 +1375,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:48c555cbec87d7b924e0e9b4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1526b92919ba3abf03c1f2ad","label":"quests/agon/README.md","provenance_ref":"deterministic","semantic_key":"quests/agon/README.md","source_digest":"620267570dc2149bd9c91ce2f1666548ab35f59a22004830cec46c7354f57c47","source_record_ids":["aoa:aoa-techniques:artifact:7490bf4c7cd92e9b1496b3f8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3741f1d59f0363477d7b9b11"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:152c2cfff705a76fdd50f036","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/0054-kind-destination-check.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/0054-kind-destination-check.md","source_digest":"08dbb9b2d98163d9c8afcac665031a8439ba1b91ddae0b139d8aeaed8f00585f","source_record_ids":["aoa:aoa-techniques:artifact:b598f0f95466968d1af36d7e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d4d0162479655530148090ae"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:153a4dfed0563f86f55cf63c","label":"mechanics/release-support/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/README.md","source_digest":"53e9144823499a671120765da136298ef42a5a58cc719c4657a628f9055a8570","source_record_ids":["aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:58b62cd5792c368706432d2a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1582611e0c1c87a53ebe38a5","label":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","source_digest":"107223ee55ca9e5043acc43d0615fe2191eaa931df4ba73151282034e11e6797","source_record_ids":["aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:58b62cd5792c368706432d2a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1582611e0c1c87a53ebe38a5","label":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","source_digest":"a15439bcfe87fbf78e6f2aa239c95e6b664b1417525d3b3082e2ce95668f5c3e","source_record_ids":["aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:42bf8b71bb8f51bb1fe034a3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:15a0aa35dbb7044f8ac982d1","label":"techniques/execution/agent-workflows-core/shell-composable-agent-invocation/examples/minimal-shell-composable-agent-invocation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/shell-composable-agent-invocation/examples/minimal-shell-composable-agent-invocation.md","source_digest":"06896fa735538a34954e8f838c5e71732e8bf5d85d7a9377aa674da48249f050","source_record_ids":["aoa:aoa-techniques:artifact:3add46bf0227913f27703481"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7b59db99bdb56ab741256410"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:15e519dd7aa577518080a5a8","label":"techniques/history/history-artifacts/local-first-session-index/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/history/local-first-session-index/notes/canonical-readiness.md","source_digest":"511a46980e20a89484479a9098c34fe792ce4e75fee70c40165f2edd0d84c76b","source_record_ids":["aoa:aoa-techniques:artifact:5538dbb7173dee1ab66293ca"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:94a71b097d7ea67301482cf9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:15f1de4c81110684e2bbfca8","label":"techniques/instruction/instruction-surface/cross-agent-skill-propagation/examples/minimal-cross-agent-skill-propagation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/cross-agent-skill-propagation/examples/minimal-cross-agent-skill-propagation.md","source_digest":"bcddb8a69bd394eb7266097029aad61cc019f02497071ebb4c1dee19972694e9","source_record_ids":["aoa:aoa-techniques:artifact:ca4dfe73a964e39ef6c99225"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1398,15 +1403,15 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:bf8f26c2da253c7556b9df24"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1b52724268e7f3e2306caa65","label":"techniques/proof/evaluation-chain/signal-first-gate-promotion/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/signal-first-gate-promotion/TECHNIQUE.md","source_digest":"52fd8b0059f1015248c3ef615bc0088d5a73db67a28f31137962113dc629261e","source_record_ids":["aoa:aoa-techniques:artifact:98a53b8158b65b6e4c5fd342"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ec3f84ef83aa834038b891f5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1b98535dc16ce46b9cbad5f6","label":"mechanics/rpg/DIRECTION.md","provenance_ref":"deterministic","semantic_key":"mechanics/rpg/DIRECTION.md","source_digest":"187067da38d8c48dab79a0d40192b8d5a0dd052a7032bc1af0c29aa5eec0611b","source_record_ids":["aoa:aoa-techniques:artifact:ec069fbc48c817d019b7b03b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:365cf84216c65d983b1c8220"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1ba45061fb00a533672afaae","label":"mechanics/boundary-bridge/legacy/INDEX.md","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge/legacy/INDEX.md","source_digest":"7e14aae83bd44a392741a85dd985594faed0dd864edd11127ab4e2ed8fff8b1d","source_record_ids":["aoa:aoa-techniques:artifact:7387ea10dd3c82a4487aa0d8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e249251728ad42de31f411bf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1bc4cd2f7f7f4e87d687a508","label":".agents/spark/scenarios/diff-review/README.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/diff-review/README.md","source_digest":"602cb7492ed0f1cc4d993d4bb7884c9d4c4f09062ad07c04bea4b27887dc98a7","source_record_ids":["aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e249251728ad42de31f411bf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1bc4cd2f7f7f4e87d687a508","label":".agents/spark/scenarios/diff-review/README.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/diff-review/README.md","source_digest":"a6eddd20f6d0711f310eec9abafdea31ba69a52dd4c1a41a2437d0ca3b373568","source_record_ids":["aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:457dbfcaf85357bf35a25481"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1bcb5b0fa7213e9db1331d48","label":".agents/skills/aoa-automation-opportunity-scan/checks/review.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-automation-opportunity-scan/checks/review.md","source_digest":"0141b043cdcdb448bdeb9fe91102f4b6d1ea9b8ada5af708998c56dd24b1cd8e","source_record_ids":["aoa:aoa-techniques:artifact:d1569a65da049e7f5ab4763e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fb8edd4e9dcb000601e5c7a1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1c07b1d40ec792ce28ac489b","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-wave-b-review.md","source_digest":"b92bb8cdd04ac99b62a0035743dfc6e387c4f60e122db53f4dca98ef02a05d27","source_record_ids":["aoa:aoa-techniques:artifact:020bb8fb4c97a84728f69dbd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:70a1fa1b329c6f7b61ecd645"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1c12274eb95f58986e02d0f6","label":"techniques/execution/agent-workflows-core/stateless-single-shot-agent/examples/confirmed-single-step-action.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/stateless-single-shot-agent/examples/confirmed-single-step-action.md","source_digest":"2b78b05cf8b0ab27342e1c5c494a7c04233caf760f15ad6a58ce96a621c0b7e2","source_record_ids":["aoa:aoa-techniques:artifact:6079419a2c5a100db952153c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:d4fc0c403c650e871a2cbda3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","label":"mechanics/distillation/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/LANDING_LOG.md","source_digest":"3d198be191b8c5b1d6c1b4fd77df8e90ebd3e5b738a8fc35f253065bd4236658","source_record_ids":["aoa:aoa-techniques:artifact:e2f11de3b127965c05321619"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d4fc0c403c650e871a2cbda3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","label":"mechanics/distillation/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/LANDING_LOG.md","source_digest":"81ff9d260064e3096c6287a536e4257c93482f7a507e42c8fe839e72fd78332d","source_record_ids":["aoa:aoa-techniques:artifact:e2f11de3b127965c05321619"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cd29ce0767efc9aad1a2d84b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1c9fe4ad96c818709e80daa9","label":"techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/perceptual-media-dedupe-with-threshold-review/notes/external-origin.md","source_digest":"b1956dbc4fac03b1dd27d80f8fbbba74ca82c8cb50c2d4f8dabd79801fd62bc3","source_record_ids":["aoa:aoa-techniques:artifact:fe89a5cdcdb58e392a5588f7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:61a13410933f0cb278b73b4e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1ccf9428c7284624474b4334","label":"techniques/proof/evaluation-chain/signal-first-gate-promotion/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/signal-first-gate-promotion/notes/adverse-effects-review.md","source_digest":"a5df994b793199da747b54af86b36da2a1fb88d9ea28b8b70c1acc8e742f8bf1","source_record_ids":["aoa:aoa-techniques:artifact:c96b85c59264a6b27c7a061b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bfd0781c321d696204707698"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1cdd981f55f8e1d8f3a2a503","label":"techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/local-pattern-adoption-gate/TECHNIQUE.md","source_digest":"f601914531188f6ad0592b0f422026bfe51b47382c7ef9db6e4b23a9d1493910","source_record_ids":["aoa:aoa-techniques:artifact:6bfd984550cc4925d5e797c6"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3c0668f6c03595e275f6ba06"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1ce284715733857350c1e8dc","label":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","source_digest":"91a4fe73eeed087ca075b35432e4af73822872a8b48a3d09abc6791754314b75","source_record_ids":["aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3c0668f6c03595e275f6ba06"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1ce284715733857350c1e8dc","label":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","source_digest":"956b390e870ca2924924c36c21e73b221077a53cae39a448740e2ecda41e1bc4","source_record_ids":["aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:236a2d90313a413b976fcc58"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1d18caa2bbfdfae792fcff9a","label":"techniques/knowledge-lift/kag-source-lift/bounded-relation-lift-for-kag/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/bounded-relation-lift-for-kag/notes/canonical-readiness.md","source_digest":"067045e882304717db627d7ca951e0f5ade90556568d3ae3736b578b15897b37","source_record_ids":["aoa:aoa-techniques:artifact:c530990cbcf12e0f9bd83c04"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a272571bce9aaa93601c60c6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1db2db415995987ff97964fe","label":"techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate/examples/minimal-local-pattern-adoption-gate.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/local-pattern-adoption-gate/examples/minimal-local-pattern-adoption-gate.md","source_digest":"1a00ef6ea3bfe9054456c4cad08ecb5d5a6bbbc984f56857a15bf4ae0c793221","source_record_ids":["aoa:aoa-techniques:artifact:f945e67d321277b2ecb10725"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:afdce17bc91f1e32f31d4ab6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1dc043b807aa02110b921961","label":"techniques/proof/evaluation-chain/context-report-for-ci/examples/minimal-context-report-for-ci.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/context-report-for-ci/examples/minimal-context-report-for-ci.md","source_digest":"36e1f1d54959ac3cb8bf11a95922b8274c2769af4b4bd9645567c7ae67ca47c2","source_record_ids":["aoa:aoa-techniques:artifact:c3666aeadfede51daa0815c6"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1418,7 +1423,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b197402282325a216cf433eb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1eea5bf4a6281db725fab100","label":"techniques/execution/intent-chain/new-intent-rollout-checklist/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/new-intent-rollout-checklist/notes/second-context-adaptation.md","source_digest":"debe26f913de1274196ad84f5e5d0e4114049a202542e76d1111742dfd953a6c","source_record_ids":["aoa:aoa-techniques:artifact:2e9afa7ac254b40d3d8a3a91"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:aa0eb5639c01d3172be8250c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1f44a71f8ae1b0bab9b7687b","label":"mechanics/agon/docs/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/agon/docs/README.md","source_digest":"2c9cdae4c7ed19f5951c76dd8e4ef00e4f72c2a6148426b78004cb483e0a6294","source_record_ids":["aoa:aoa-techniques:artifact:1f3c1cb0fb1b62d703a8c53a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5759d77aa5f590f92e569360"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1f450fb6befa62a5f630aa92","label":".agents/spark/scenarios/test-factory/PROMPT.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/test-factory/PROMPT.md","source_digest":"04efb76a0c222b0c050857ce2e00d9bbd09ecd4b1016006ec866dc6502a42c2e","source_record_ids":["aoa:aoa-techniques:artifact:0f6efa61982a73a1287839d9"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1f7a90548d69c31305a35363","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","source_digest":"d362558cbf7b444f360ffb33962852fdc6879e83010a131bec6a061901f0b1ad","source_record_ids":["aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1f7a90548d69c31305a35363","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","source_digest":"1b241312902605736060dcf513296a2f57768cd23f30e72c813cf3213f7d94a0","source_record_ids":["aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:10d61e38a30d55ef5467bc47"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1f9e81628bad783352605f34","label":"mechanics/rpg/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/rpg/README.md","source_digest":"5dd6ef8bd9f86ddfd462d1ea205894e5ae0e1765358a23c42f07f24fd632afbb","source_record_ids":["aoa:aoa-techniques:artifact:850e7b6f4f85c0ec893fb9c2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:22f5490926c48bfc591c1aa2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1fcd53cb0ebf078c6fb632a1","label":"techniques/governance/promotion-boundary/nearest-wrong-target-rejection/examples/minimal-nearest-wrong-target-rejection.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/nearest-wrong-target-rejection/examples/minimal-nearest-wrong-target-rejection.md","source_digest":"67064bacb31c3368cd5833a36f36c6deb9326b521ed6149d94bcfca4426f4005","source_record_ids":["aoa:aoa-techniques:artifact:099b762695376eef5c024351"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:343fb701152545ba0b2f6e21"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:1ff07f900dca921d4059bae1","label":"techniques/continuity/handoff-continuation/git-verified-handoff-claims/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/git-verified-handoff-claims/notes/external-import-review.md","source_digest":"d339601c4da7abe36a8cfd45d6263291b21b27e96fda718ce60f8c723ab5f381","source_record_ids":["aoa:aoa-techniques:artifact:b7e5708d6298b12f136eeedf"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1428,10 +1433,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e2e6307b95f8a0a360d272d8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:20863973f6c6e27fead0a760","label":"techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/checks/superseded-practice-obsolescence-route-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/superseded-practice-obsolescence-route/checks/superseded-practice-obsolescence-route-checklist.md","source_digest":"394b90cb7397e438279ec41cf5bf72e4d85199151a3d30e489fc50413dee5562","source_record_ids":["aoa:aoa-techniques:artifact:efcfc8862b7a27253fd2259b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:25636c6d7bd067d19ed7965d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:20f2ccba92f6b7a8715e9203","label":"techniques/proof/skill-support/contract-test-design/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contract-test-design/TECHNIQUE.md","source_digest":"91a14fe8a24f9df8a67103819dc85442b228ba82cc0e67027d475fbb4bd367a7","source_record_ids":["aoa:aoa-techniques:artifact:0097e6c200df4283b557c350"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d1b30fa2bfa886d409c47d24"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2113a019e9580a3a4e7abf01","label":"techniques/history/history-artifacts/session-capture-as-repo-artifact/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/history/session-capture-as-repo-artifact/notes/external-origin.md","source_digest":"7fa65a1cf47981163dbf241d668efd452df9354b7a0e571ca3e90b7e07502025","source_record_ids":["aoa:aoa-techniques:artifact:34ded0a9dd173093e7d4d32c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:bdf72dbfcf52af7e58e08a2a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2123285f7f2e00282bba41f4","label":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","source_digest":"71780ac414099a9a330fe886e2c758d3d6f3452ebbe107318c7e073d4df678df","source_record_ids":["aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:bdf72dbfcf52af7e58e08a2a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2123285f7f2e00282bba41f4","label":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","source_digest":"389e2b1b83e920060c147ce7ec589219e7da29f9d4f76f0d84ee7da7bbf0e18f","source_record_ids":["aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5b0298079118381b9a313910"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:21688db5abbdf791c040630d","label":"techniques/execution/agent-workflows-core/stateless-single-shot-agent/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/stateless-single-shot-agent/TECHNIQUE.md","source_digest":"d526781c9604d11a76ff7a6a79cc38cff9212e86a5fb91d15a61faa41802e7a3","source_record_ids":["aoa:aoa-techniques:artifact:65cd6364420b1b5166068044"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:702453fddaf0b64b0d5cc8ee"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:216d2a458e5767dec2674642","label":"techniques/proof/review-evidence/single-scoped-evidence-reference/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/proof/review-evidence/single-scoped-evidence-reference/notes/adverse-effects-review.md","source_digest":"575f27efeef434c0f3c10bd0c8c18e88f4086d2a8c2104b47202baea1ef42a1a","source_record_ids":["aoa:aoa-techniques:artifact:753d9ec59f5638e6554def3b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:21b387fc85ca839f6944feaa","label":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","source_digest":"6949f2c3ee81f1f0cea63b5eca96e8d1508cd9915403cefd95100874e708321d","source_record_ids":["aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:21b387fc85ca839f6944feaa","label":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","source_digest":"c4bea89ffbabcd2e5e1614a12fa7e0b808bd910ea7beaba5ae118741181f9ac1","source_record_ids":["aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:aa8fa8fa38ebe67b943de296"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:21cb296ec5661e6148ff8924","label":"techniques/governance/automation-readiness/approval-sensitivity-check/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/approval-sensitivity-check/notes/second-context-adaptation.md","source_digest":"9713dd420e60188baa3dad9f9525a69320742aa4536abdfe37151776a4a0b3cb","source_record_ids":["aoa:aoa-techniques:artifact:1370b2599c4ffe9026f4a330"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d93ae63f6605a8426e4531ea"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:21f0ed326e27bab2656d5460","label":"techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/history/witness-trace-as-reviewable-artifact/TECHNIQUE.md","source_digest":"f9722a79b1327852bd8acfda3dd05c3f6c5dd2eaef24f79c57a3c7546cad2621","source_record_ids":["aoa:aoa-techniques:artifact:eb21473f5358b4eee260ab9b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cfefbb491362bac257a30a14"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2257e7d967a4103b635ef2a4","label":"techniques/governance/decision-routing/owner-layer-triage/checks/owner-layer-triage-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/owner-layer-triage/checks/owner-layer-triage-checklist.md","source_digest":"c221667686b5ae4bec857bc6c97e58cb12f873c85735fa82980e0094b980ec0e","source_record_ids":["aoa:aoa-techniques:artifact:a64caec5b64873baeb0944dc"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1457,15 +1462,15 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:36574a31839b3113cfe3a1cd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:258f25763ec48d8aee6b69d2","label":"techniques/execution/runtime-truth-lifecycle/baseline-first-additive-profile-benchmarks/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/execution/runtime-truth-lifecycle/baseline-first-additive-profile-benchmarks/notes/adverse-effects-review.md","source_digest":"29c625182e68e0c50a878ababbdceaf2e75e184c24c1480c0337f7fb91ad55fe","source_record_ids":["aoa:aoa-techniques:artifact:2eb53341e502b0b2d73a3b17"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:de9e71447d2dfb38a1f5ee0a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2592a4132524d000228748b9","label":"quests/agon/captured/AOT-Q-AGON-0001-technique-binding-candidates.md","provenance_ref":"deterministic","semantic_key":"quests/agon/captured/AOT-Q-AGON-0001-technique-binding-candidates.md","source_digest":"18e3131e578ad162d3b5757bcde3ec178936444a2da4596dcc9ae84b59f9a20f","source_record_ids":["aoa:aoa-techniques:artifact:f2b7710357a26c3c3e222524"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8a51e9e74cd1141d34c549cf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:25a4cad2ae7f3272b5158967","label":"techniques/instruction/docs-boundary/decision-rationale-recording/checks/decision-rationale-recording-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/decision-rationale-recording/checks/decision-rationale-recording-checklist.md","source_digest":"39f7568890eea216f13d8e04eeb58b25d6673a98bc3cbccb153789457d62df8d","source_record_ids":["aoa:aoa-techniques:artifact:4ebf57b05d9ba338303c4ca5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:72622e0b7439398bf3e3c8db"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:25b43c8bd9bfd05019bf0595","label":".agents/spark/scenarios/technique-refinement/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/technique-refinement/examples/result.example.md","source_digest":"cea21afaa19f0a81635026f13c5081a3c77d01d10491e49f292263f6c34e9a60","source_record_ids":["aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:72622e0b7439398bf3e3c8db"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:25b43c8bd9bfd05019bf0595","label":".agents/spark/scenarios/technique-refinement/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/technique-refinement/examples/result.example.md","source_digest":"d2f8a2e2945feaf4c6956cfb4e23ee6bc38ca839b09d2b03981e7ceef5f192aa","source_record_ids":["aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1f8b8af58092484be17ce6b2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:25c51ff341ddd71949751517","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","source_digest":"d3a3c67b50e5d0455c127b82edcf79dcc8cd1f34ef2819c7bce44fea49737fa0","source_record_ids":["aoa:aoa-techniques:artifact:f444d5f6f7157618cd89c466"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:305866d803086f7e98a58e31"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2600f62cc3a5ae74ba95749d","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md","source_digest":"a6ae7cb78de7cc4f0a40b57470183257d99ebc90bc923141bd7469bf010da501","source_record_ids":["aoa:aoa-techniques:artifact:c7f5d25fc63cc0a96b9735c2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2614d690a8fb2d3224281a38","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","source_digest":"2e98b56919f2171c08e69ed66fdb1a94e601fcd0e837fba78e032b72e9172d5b","source_record_ids":["aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2614d690a8fb2d3224281a38","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","source_digest":"14f533154ed36de6eaacf6b71cc2c5c9134b9a0bf843d49d7e289fad6a227356","source_record_ids":["aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f52b31200117cf58f657747e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:262701b02718702b19d12dc1","label":"docs/readers/selection/TECHNIQUE_SELECTION.md","provenance_ref":"deterministic","semantic_key":"docs/readers/selection/TECHNIQUE_SELECTION.md","source_digest":"76de9ecd80ce853b58b7268472852daba8d2f54372d1bd200521b48c21bccd9b","source_record_ids":["aoa:aoa-techniques:artifact:20610439c4557ba0f419205b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:361103f961f909f4c123433e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2637bfd463598b21c5446ef8","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","source_digest":"c1b3d8fe070c521d338b55c678e93875fad51f8eac777bf682182eddbc2da5ce","source_record_ids":["aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:361103f961f909f4c123433e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2637bfd463598b21c5446ef8","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","source_digest":"0380930cc3287f72c5baa93881a8bcdb96cbaabdd357d0ce5cfdb08b23db1cec","source_record_ids":["aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2db3db3ac70b482a6abb1507"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2644449cff39ebce6930d7ca","label":".agents/skills/aoa-session-donor-harvest/references/rpg-reflection-posture.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-session-donor-harvest/references/rpg-reflection-posture.md#generation-2","source_digest":"a18802e0e6ebfc0b050a0327b0ebc75b47e2ae9d89b9ffd4edfa7fe7551518eb","source_record_ids":["aoa:aoa-techniques:artifact:ff148dc55e26911cc5b5d951"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d73db11d2378e7e9fe8eb8f7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:266d2fdfd3856d14df44b388","label":"techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/markdown-technique-section-lift/notes/adverse-effects-review.md","source_digest":"aec1ad3df10cad2c972ba5025af55ae74a3ed3ef8b58f7f9d1320045790aee6f","source_record_ids":["aoa:aoa-techniques:artifact:840364911d5ac8a0d0def451"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:89ce82b5d52747604ba56bd0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:267ef909bb8e8d2b46513bd4","label":".agents/spark/scenarios/release-prep/README.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/release-prep/README.md","source_digest":"33062d1b4084a1f615841659f31436e221f97e0044842416e3a5cd654db202fa","source_record_ids":["aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:89ce82b5d52747604ba56bd0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:267ef909bb8e8d2b46513bd4","label":".agents/spark/scenarios/release-prep/README.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/release-prep/README.md","source_digest":"6e138b83a1f0d06fe38f2a3a0bad77ebcfeccec93f13a41bcee788d121cca87b","source_record_ids":["aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:53530997e9663556b5f8e2f9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2734ce0fdc57a65f3226b50f","label":"techniques/proof/skill-support/property-invariants/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/property-invariants/TECHNIQUE.md","source_digest":"cf256fbe86035887c3bff9750eb468112177d92d80e44ae9d1a73e1439a25871","source_record_ids":["aoa:aoa-techniques:artifact:c72fce65f8f3a6a4c8a4aee7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:473b5a4b4ddf9826392b5050"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:276bc3096f65ccff2044edcc","label":"techniques/proof/owner-truth-closeout/canonical-owner-with-validated-mirror/checks/canonical-owner-with-validated-mirror-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/canonical-owner-with-validated-mirror/checks/canonical-owner-with-validated-mirror-checklist.md","source_digest":"2a38a8367ddbabce5ba93daa89fa3f8342fd4ccfa9dc7fd4ccb6bfcf448de05d","source_record_ids":["aoa:aoa-techniques:artifact:bbbc209358beaddf672faa0c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e9f1dd5d464c48513a795ac1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:27c0c9c1a3fed50a0ba2ade2","label":"mechanics/growth-cycle/legacy/raw/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/growth-cycle/legacy/raw/README.md","source_digest":"9afcdde7fa38a4fee2386b490162d86610a87e25114145a9843b16eb69bcb3cc","source_record_ids":["aoa:aoa-techniques:artifact:a5c71d3a62692c33b883e995"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1483,10 +1488,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:bc247cb6218eb25918ccaf4a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:294b9b419dd283b893d6b30f","label":"techniques/governance/practice-adoption-lifecycle/adopted-practice-retention-review/examples/minimal-adopted-practice-retention-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/adopted-practice-retention-review/examples/minimal-adopted-practice-retention-review.md","source_digest":"3bdff438343f7969c79cfe4ab0caf491899dfd39137c6e1212817dbfadb4eeab","source_record_ids":["aoa:aoa-techniques:artifact:0b9ae29640913fe1a62bfeff"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:94f5f69419c973f3c56f1155"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2971835fef7b021f790c388c","label":".agents/spark/scenarios/release-prep/PROMPT.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/release-prep/PROMPT.md","source_digest":"718f0ecadb2586743383739904ae996f3acc03ffa7e2b2c6be18428cb3819989","source_record_ids":["aoa:aoa-techniques:artifact:fb787d85b0f7f26229cbdd9a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:29f5f43c760adcf7d51a132c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:29bdd0ed888e9468a8d6a112","label":"mechanics/experience/ROADMAP.md","provenance_ref":"deterministic","semantic_key":"mechanics/experience/ROADMAP.md","source_digest":"3fcdb764c54640af147d9d63adcea66d90b718c2d346cb8d95b59f7366835299","source_record_ids":["aoa:aoa-techniques:artifact:651104716b1f0e9ba69af81e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:22275adf28216c001f24d12d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:29ef301538dc3572247490be","label":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","source_digest":"f9c53cb62142a9e17b953b34eedaa66eefcef2be3215c0ee4aec58aaee47e068","source_record_ids":["aoa:aoa-techniques:artifact:d78e6281094ff359502f1037"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:22275adf28216c001f24d12d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:29ef301538dc3572247490be","label":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","source_digest":"9deac499faaf44b894c626e60f7e4cbf56d8a5138d419ece6794d31fb7ef4352","source_record_ids":["aoa:aoa-techniques:artifact:d78e6281094ff359502f1037"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0e871eb3036bea3f36975118"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:29f38b069e4c835be8e550f9","label":".agents/skills/aoa-safe-infra-change/references/risk_surface_matrix.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-safe-infra-change/references/risk_surface_matrix.md","source_digest":"6e6e1387bde97f0b0a6aa8b2348698d1a2c0ff654231febe15210a2d38d9ee43","source_record_ids":["aoa:aoa-techniques:artifact:f9cdce9370068e51b80500ec"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b08d56465b2d9ededaf44c73"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:29f81ff040e5b36de7c8a65f","label":"mechanics/release-support/DIRECTION.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/DIRECTION.md","source_digest":"6ba8bf9ab1584882054e37c797529366624dad13ad86c34140970a3c3bd86c11","source_record_ids":["aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2a06fbddc0f325e4171e3631","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","source_digest":"52471bb8f9f5326b426b0bf89046f30f0f643af6c9578f16f2f1410171d43f72","source_record_ids":["aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2a06fbddc0f325e4171e3631","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","source_digest":"eac53b946219d71e3f3765fbd79c01e28e1fd450a918786b3c456f17db813be1","source_record_ids":["aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1e1c3ae0cc5665c824b45695"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2ae3b70c51f237092b2f66cc","label":"docs/readers/intelligence/README.md","provenance_ref":"deterministic","semantic_key":"docs/readers/intelligence/README.md","source_digest":"a38cbe5680ebc552f6184a8c1df3f12dc9e235e63cec26b5139a354061d12ee7","source_record_ids":["aoa:aoa-techniques:artifact:62ef3fd3f80f398994c57482"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:452e8e06956baf3e39635f01"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2af56b90c3269fcdc75587a0","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","source_digest":"e048d3e6c5d73278803c839a42a8f0afeb77612125cef69fda0d8a86e8213088","source_record_ids":["aoa:aoa-techniques:artifact:8de898f47e9e3b0854d71aba"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:53a716e226c924eb776bed5f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2b04fdb2cf42c47667128fdf","label":"techniques/knowledge-lift/kag-source-lift/repo-doc-surface-lift/checks/repo-doc-surface-lift-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/repo-doc-surface-lift/checks/repo-doc-surface-lift-checklist.md","source_digest":"978879d6b08a332f10a8919f7b076d7f55526b3dd757710cd9d76c90a9e3f69f","source_record_ids":["aoa:aoa-techniques:artifact:28b074006fa0dd239f7ba7e2"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1495,10 +1500,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:c1bf9b1328af5f4480f907fa"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2be3fea5566bb487e6814c07","label":"techniques/governance/decision-routing/owner-layer-triage/examples/minimal-owner-layer-triage.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/owner-layer-triage/examples/minimal-owner-layer-triage.md","source_digest":"9189745d41f67e3463142ec9a05d4529e2529e4a980f1deb1e2c92a2c451a7c4","source_record_ids":["aoa:aoa-techniques:artifact:1feebfdfc1ebfd0c891a3bb3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5139a67ed0ae280d8fd76dfc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2c10ee698b4b310058f028d6","label":"techniques/history/history-artifacts/transcript-replay-artifact/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-replay-artifact/notes/canonical-readiness.md","source_digest":"b9b1347be4f03fcd4515fcaa6d4d037f07c8987cffefea5ed51c1be8affbe80e","source_record_ids":["aoa:aoa-techniques:artifact:319ddeced39b3f1bdecd1d82"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1d0cbec714985887a30a5215"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2c425f61870e6cfbee547b2e","label":"techniques/proof/published-summary/required-vs-optional-source-rendering/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/required-vs-optional-source-rendering/notes/origin-evidence.md","source_digest":"e83fb8883e3e6b7f219cd6e150ab9b8644bfd090c1450ce03fb8dd1ae2bef8bf","source_record_ids":["aoa:aoa-techniques:artifact:5935dad3224fa5908e9b1dd2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","label":"README.md","provenance_ref":"deterministic","semantic_key":"README.md","source_digest":"5546bacae7c949fa8358ad1abbfcd74b4bd8c06f77239a456facb0d162e0de99","source_record_ids":["aoa:aoa-techniques:artifact:b335630551682c19a781afeb"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","label":"README.md","provenance_ref":"deterministic","semantic_key":"README.md","source_digest":"973df08abed27eb109f85dc678a9352a42f690076a06217fa13e0f0b424839d7","source_record_ids":["aoa:aoa-techniques:artifact:b335630551682c19a781afeb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1a8856d65deed56daaf42f88"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2cd494b293df5c51fb3a8133","label":"techniques/proof/skill-support/property-invariants/examples/minimal-invariant-check.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/property-invariants/examples/minimal-invariant-check.md","source_digest":"c280b1593aef25428d1db6fc4f0004ca52da883ce5c6d8ca178780ebfdd60f8a","source_record_ids":["aoa:aoa-techniques:artifact:bae0317783af7fe396e9eebd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:50395885d3cb114b521f79cc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2cda7c73dc2fa16b04bc18e6","label":"mechanics/checkpoint/DIRECTION.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/DIRECTION.md","source_digest":"198480d9505d0987aa75831243abd8ce685469e05a2dbca12b24342d5f6037cc","source_record_ids":["aoa:aoa-techniques:artifact:9cb002695be915bbf742d5bb"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:bee9642b3b3068cae0573c74"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2cdb2913cf7038b6fc1a0a5b","label":"docs/validation/SCRIPT_TOPOLOGY.md","provenance_ref":"deterministic","semantic_key":"docs/validation/SCRIPT_TOPOLOGY.md","source_digest":"2818d083299572fcc2217f20e0171ead9e8ab7100ffa87945b166d79825bd333","source_record_ids":["aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:bee9642b3b3068cae0573c74"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2cdb2913cf7038b6fc1a0a5b","label":"docs/validation/SCRIPT_TOPOLOGY.md","provenance_ref":"deterministic","semantic_key":"docs/validation/SCRIPT_TOPOLOGY.md","source_digest":"fea58f7d0ddcedc1cad42629737f2002492937907a20a9049d65b478d56b0b37","source_record_ids":["aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ddce0e9e8d4726d1c9ec7021"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2cf34877dec321fb22795d81","label":"techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/examples/minimal-risk-and-negative-effect-lift.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/risk-and-negative-effect-lift/examples/minimal-risk-and-negative-effect-lift.md","source_digest":"68f28800cea2e816e5a6a73f657eafd564d8f0534cab8eee56ff897552e6f48c","source_record_ids":["aoa:aoa-techniques:artifact:ec5ef4c560c378c40dc5b7c2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8a35df18e7e1cc29c99f4a63"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2cf48f1bce298494b756889a","label":"docs/readers/selection/README.md","provenance_ref":"deterministic","semantic_key":"docs/readers/selection/README.md","source_digest":"8c78523765e69fc0c1a3cb8e5609fc82ad4c1b604c989d0abb78ecfe51632b03","source_record_ids":["aoa:aoa-techniques:artifact:a4de10234622c8761c6dc5b6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8db33ef3a28b7af0575e5b9f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:2d0813790ea81fe2cda4c0d2","label":"techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/notes/adverse-effects-review.md","source_digest":"acf626065bf181af489b64c0aa0c818fd031d9c6605d3205ebe45a36c50e3379","source_record_ids":["aoa:aoa-techniques:artifact:0d38807192896ea16366c2df"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1537,7 +1542,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:f32633d53076e243d2c35453"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3183bbb4e1fa54792f2e4854","label":"mechanics/method-growth/parts/obsolescence/README.md","provenance_ref":"deterministic","semantic_key":"docs/TECHNIQUE_OBSOLESCENCE.md","source_digest":"47af347983b9abbcd911f7b8114f1b164417ba544717ab56c93570aabefae3c7","source_record_ids":["aoa:aoa-techniques:artifact:ee2fea54e2b7736e369daa9b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:09865bce58d3aac80cf94c03"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3243677b4c4cd13dbb96eb12","label":"techniques/history/history-artifacts/transcript-linked-code-lineage/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-linked-code-lineage/notes/second-context-adaptation.md","source_digest":"29e1a46bf401e2a0f0b9755bbac7baf09bbafeef97ac0068fafa65eea7d2e4e8","source_record_ids":["aoa:aoa-techniques:artifact:60bea46e7d1c57abb9bce7e4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8d09dd8641d5aadf934685e7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:326f405fc937246f6f475d27","label":"mechanics/boundary-bridge/DIRECTION.md","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge/DIRECTION.md","source_digest":"6813712ccfbdb417f8d6548bcb670dc0e7f9343c143ab68442b75f264d20ec2b","source_record_ids":["aoa:aoa-techniques:artifact:0a397c872e31eb43f190b7bd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ac98e5bd9ee73e4c09dc06c2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:32df8f0227aeba8f26282e34","label":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","source_digest":"2833492061476f6bad308f61d6e8a52b26a5ce4c4b768ab7b8b6448e2e2597e6","source_record_ids":["aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ac98e5bd9ee73e4c09dc06c2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:32df8f0227aeba8f26282e34","label":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","source_digest":"66e099336fabfcd8c16a94f2418deec363b4472e26a5b93e34738d2241f62c9d","source_record_ids":["aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b71482fe8e78df41de5ab006"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:331c1358c462dacbec8e6e31","label":"techniques/execution/intent-chain/new-intent-rollout-checklist/examples/minimal-intent-rollout.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/new-intent-rollout-checklist/examples/minimal-intent-rollout.md","source_digest":"a9a3dada51c0d486d7b80e1aab8e9d79cd97356685089b3fd76b06f091b056e0","source_record_ids":["aoa:aoa-techniques:artifact:7a1ed805b5bf63aa9aea65a5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4f2cd452f7ae94645c7e3b97"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:332edea05c6aba304013800c","label":".agents/skills/aoa-dry-run-first/references/dry_run_limitations.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-dry-run-first/references/dry_run_limitations.md","source_digest":"b131942c6b4bccf003eb946a9ba7abfb15d35bd9f817a3c9487e15831e3f6356","source_record_ids":["aoa:aoa-techniques:artifact:44483595f91163aba31ca13d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:91b348edfba7d8ba4eb2350f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:33d211478a831443de48e837","label":".agents/skills/aoa-adr-write/examples/example.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-adr-write/examples/example.md","source_digest":"1b58eaf246f2df4efbf4ad3dc4539e0543bcfcde7c9d4b2daf58a9f4f8ab0395","source_record_ids":["aoa:aoa-techniques:artifact:b72443edfd8656d5df0d41f9"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1547,7 +1552,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:952644c92cdcb3fd86ed2a8b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3429b21235ea4f8d3d63987b","label":"mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md","provenance_ref":"deterministic","semantic_key":"docs/AGON_WAVE15_TECHNIQUES_LANDING.md","source_digest":"1975128c24a822c1842988f1aec9765466c63c12be9d7b61491abc165c86784e","source_record_ids":["aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dc2df72e7c41c1b86f1de064"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3432d00d90d036ab328d45f9","label":"mechanics/recurrence/legacy/INDEX.md","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence/legacy/INDEX.md","source_digest":"e8bf097b28073aa21e9544b28e84b6cbdc2b2c2f7e104e8eb5585edc0c2ca412","source_record_ids":["aoa:aoa-techniques:artifact:4b7c35b36972bccd7b151b51"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:df28a205fe1d1ce628541498"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3438ed06611487e7ee5a0166","label":".agents/skills/aoa-bounded-context-map/examples/example.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-bounded-context-map/examples/example.md","source_digest":"064334ef81882500678dcc65615137ac0bd795480a901d687c9d2f4dfa2d9455","source_record_ids":["aoa:aoa-techniques:artifact:f98c34eb860dae39ef69f7ec"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3465ab9a1506164ec037eda1","label":"docs/validation/COMMAND_AUTHORITY.md","provenance_ref":"deterministic","semantic_key":"docs/validation/COMMAND_AUTHORITY.md","source_digest":"e27737474c8206af14ce868e5e383e1a9bf3f5f4a470509d76afb7ec139521bd","source_record_ids":["aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3465ab9a1506164ec037eda1","label":"docs/validation/COMMAND_AUTHORITY.md","provenance_ref":"deterministic","semantic_key":"docs/validation/COMMAND_AUTHORITY.md","source_digest":"2b137e52741c67f31bd43800da9394a611355c723bc1e482591e2c2fef1875e6","source_record_ids":["aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cb5517415ee3f11a717f7b0c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3488f703d97f4d6ad2f645c8","label":".agents/skills/aoa-commit-growth-seam/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-commit-growth-seam/SKILL.md","source_digest":"3579507656a9680c6448b8cb0798bef4c588574ead55c87a05a619c459aa3142","source_record_ids":["aoa:aoa-techniques:artifact:00205560f74370b22f5dd0f5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1c5460e251cd9c052e7eaea2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:349b99a20d3d9a658cfaefbc","label":"techniques/execution/runtime-truth-lifecycle/render-truth-before-startup/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/render-truth-before-startup/notes/canonical-readiness.md","source_digest":"9a1ce54050ae9e251449533909930c8d6918330e6616674970143819c345b9eb","source_record_ids":["aoa:aoa-techniques:artifact:7610be23f43ce8e28ebef194"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d54653655e7c53a8a1f998fb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:34a6084182137302fb5e2ec3","label":"techniques/instruction/docs-boundary/public-safe-artifact-sanitization/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/public-safe-artifact-sanitization/TECHNIQUE.md","source_digest":"5fc8ac66e48211487334a47daac53e3f620dce089af6796cb937d92ed410844b","source_record_ids":["aoa:aoa-techniques:artifact:ed0ec2ca603624cdd17008b2"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1569,10 +1574,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:c4fbfe50eaf222636761ecf4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3770c57733904d2582764d34","label":".agents/spark/scenarios/registry-sync/templates/handoff.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/registry-sync/templates/handoff.md","source_digest":"799652bb9309bc53af44b7e8dcfd4b9f81fb4275e75128ef5118eafae493d061","source_record_ids":["aoa:aoa-techniques:artifact:674bbb8aa8fc8c67dceccf36"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:eaec7a267f68d73feef387d1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:37d5a874db405c480c4fa69a","label":"techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/superseded-practice-obsolescence-route/notes/second-context-adaptation.md","source_digest":"f050b0f402d1a2276dab9ec912d952e40cdd73f5f7bed6e35f5790140a5cbe30","source_record_ids":["aoa:aoa-techniques:artifact:85312b8c87a586c1ef64501e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:41e8af4c9bbe6b060eeb83ae"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3804175e2ae97099a387185b","label":"techniques/execution/agent-workflows-core/shell-composable-agent-invocation/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/shell-composable-agent-invocation/notes/canonical-readiness.md","source_digest":"5e401041cf61ed178000689d1143eec1cd53ea2970b42acceb8aa308f9229b49","source_record_ids":["aoa:aoa-techniques:artifact:cc9bc19381798c5edf7fad47"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b050ef8987d40a362d8adff8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:38105d82290f28e8f9be53a3","label":".agents/spark/scenarios/registry-sync/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/registry-sync/examples/result.example.md","source_digest":"42611cb4028d8aa440519aad018747a1512ec0e70543e667dbe1e0b6ae8c82aa","source_record_ids":["aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b050ef8987d40a362d8adff8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:38105d82290f28e8f9be53a3","label":".agents/spark/scenarios/registry-sync/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/registry-sync/examples/result.example.md","source_digest":"7beee243f94f67632188a8503b6a7a6aae4b0533802d05dd026898649b7ee29d","source_record_ids":["aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6730f2ba972d7e4b6e8556e8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3851ea4955f891e206103e1e","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","source_digest":"08886e9737bee5a17028f4b218d515ab5bae8b73dcab00afd956860eff12bfdd","source_record_ids":["aoa:aoa-techniques:artifact:b77ebb6f44579ca40ca922fa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:04ffbdc94e5bec6fa3068db2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:38670460cada81367ee33525","label":"techniques/proof/published-summary/telemetry-integrity-snapshot/examples/object-store-telemetry-integrity-snapshot.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/telemetry-integrity-snapshot/examples/object-store-telemetry-integrity-snapshot.md","source_digest":"00507bbd57583d58660ff3634fbe395def4a3e0de1de56b4367a6ed8456b2577","source_record_ids":["aoa:aoa-techniques:artifact:beed97b222ffc5cb21c19fd8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:386f9cf85943129c6f30565b","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","source_digest":"2e66e32fe075f5d50f80f3035f4a7bf44f2eae975e8f5f91f0f7de668a7f4fae","source_record_ids":["aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:386f9cf85943129c6f30565b","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","source_digest":"57472290306e66fce766c46450557414ee04ef33f1e6af3137be49ab1ad02448","source_record_ids":["aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9edef3e6f2675ff4675a8a92"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:38d9f6fc8bfe6faea9a9d740","label":"techniques/execution/runtime-truth-lifecycle/contextual-host-doctor/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contextual-host-doctor/notes/origin-evidence.md","source_digest":"5acb6043e73ef447a65fce6a1e4c90aefbbc3a381f808aa9ef387873abcd8cbc","source_record_ids":["aoa:aoa-techniques:artifact:520eaee3aa96a652ca5ffae1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7d27d4f129c2fee2beaa3013"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:38e07c214b22460964dbb376","label":"techniques/proof/evaluation-chain/context-report-for-ci/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/context-report-for-ci/notes/external-import-review.md","source_digest":"803343c5c98a23979455257ef65294d846e46a029c46a04ef50748d9614ef77e","source_record_ids":["aoa:aoa-techniques:artifact:275d5e7198a8eaa91e2d1d6d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e46b7171998a352d73cb1e5e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:38e303eb6edcc8955921be7b","label":"techniques/history/history-artifacts/versionable-session-transcripts/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/history/versionable-session-transcripts/TECHNIQUE.md","source_digest":"baf8ff415543c49901bbcbabc3ab3d4628c7a64c0a2d7b78ccc435e7cdeb2ef7","source_record_ids":["aoa:aoa-techniques:artifact:61dee8118fa8dfa0f3992df5"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1595,7 +1600,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:30cccff75274bbb74bece333"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3bce5dd2a81d280db4b5346e","label":"techniques/history/history-artifacts/transcript-linked-code-lineage/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-linked-code-lineage/notes/external-origin.md","source_digest":"c4b183854cf5a490da9188360cd49eb378f2a375479fdffaace43d4ff4c5c6a3","source_record_ids":["aoa:aoa-techniques:artifact:5eb9ffcb1ccc40a3e44aa076"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:da336844c7917678561d915f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3bddcbde5bc81a6f82825983","label":".agents/spark/scenarios/technique-audit/templates/handoff.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/technique-audit/templates/handoff.md","source_digest":"fb9cf27741b3f44b703bc4e2d5b4d1464c262c049c526d1ab32ec32f5ff299ef","source_record_ids":["aoa:aoa-techniques:artifact:e7573ccc777897e914ac9e99"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:464e3076f2ed47344c738853"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3bf05d117d77096dd6e82747","label":".agents/skills/aoa-session-self-repair/references/checkpoint-bridge.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-session-self-repair/references/checkpoint-bridge.md#generation-2","source_digest":"bfebaf41e48822898d6f2d919e850949380b29addba0796fc49cae6a8a256ac4","source_record_ids":["aoa:aoa-techniques:artifact:f383a745c8a823e6721273e5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3c06088a56717b764407de68","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","source_digest":"e9226341a83b6b55ee868198e68f50d33bd8627f8d1dc33a315e54ccb4793e22","source_record_ids":["aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3c06088a56717b764407de68","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","source_digest":"16e9827badf2ebb2a1b039f9b566721f35a667da81b81b0175b59f12fe7f58e9","source_record_ids":["aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c85b21b288eb90c6d05cb1da"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3c46031647a7e84024913d6c","label":"techniques/history/history-artifacts/transcript-replay-artifact/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-replay-artifact/notes/second-context-adaptation.md","source_digest":"d98c5f64a3c46cdfba66da6b9f1a7956240601b44d04ae013b11f0708b92ce29","source_record_ids":["aoa:aoa-techniques:artifact:baca529ec4aa4c6097106f06"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:70e824b0cc31e64c19fce8cb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3c4df36f3e8de1e437c3a729","label":"techniques/execution/runtime-truth-lifecycle/baseline-first-additive-profile-benchmarks/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/baseline-first-additive-profile-benchmarks/notes/origin-evidence.md","source_digest":"7f9f670c705bd0acbacd2eeb1400ecf525faffb6be10560e0758a2d77a5e33a2","source_record_ids":["aoa:aoa-techniques:artifact:9ecd3378d6f6372b1047a9c0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9d467784ec3b60c8324903dd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3c6ce30ae4dcb4f84c9c793f","label":"techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/notes/adverse-effects-review.md","source_digest":"4543393983dc648fbf5856cc8b85759c9d94cdb244ee7e4095f233c05a5385a0","source_record_ids":["aoa:aoa-techniques:artifact:1bf05d6841c70a072980804b"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1630,7 +1635,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b2d429b7d320cb9bb279a0cd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3fb600c695fc227fcde86879","label":"techniques/instruction/capability-registry/versioned-agent-registry-contract/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/versioned-agent-registry-contract/TECHNIQUE.md","source_digest":"d3e6c075b764d5830d96c600123adce23bb071c9feb75f6b3f6b2408e260b8f9","source_record_ids":["aoa:aoa-techniques:artifact:64de3d3e1ece29c990f093c0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5a56cb880a3f1f1792e5a98a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:3fc743daf4d048f26629f2ab","label":"techniques/instruction/capability-registry/versioned-agent-registry-contract/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/versioned-agent-registry-contract/notes/external-import-review.md","source_digest":"55c8f0a452594eb64e2e07f9b5829539ed92eeae22a060492877c462b052b03a","source_record_ids":["aoa:aoa-techniques:artifact:7ec200d6bd05d7c2d8e9b959"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5ed8e9d28d68ec0d05dc2e74"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:401feb80609355a955367f40","label":"techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/risk-and-negative-effect-lift/notes/canonical-readiness.md","source_digest":"7dd7da013bbe602f104b9b90e3aa1eb6afcb87fd7d8b3440d497e77a841ed9c5","source_record_ids":["aoa:aoa-techniques:artifact:7a3e5925a43ccffd437c39f4"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:40232114b0905c8f074bfee8","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","source_digest":"3a0264d4534fc32835aa8e9e4a753a2b3d91fa3af24e30a8b796d90a23414975","source_record_ids":["aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:40232114b0905c8f074bfee8","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","source_digest":"91592e5879bf7a11976ceb94071e325a1e3fc75b58f590c18955b2fa7b44c0b4","source_record_ids":["aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cdac03ce1cf0089d93f0525a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:40347d57b8127b03d59f3985","label":"techniques/history/history-artifacts/versionable-session-transcripts/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/history/versionable-session-transcripts/notes/adverse-effects-review.md","source_digest":"157c2448dd996c9551f50435348a773739e3fe71824244964a6e2e45341f1598","source_record_ids":["aoa:aoa-techniques:artifact:b53fce9cf138e5a362f4349c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a4dd627485f7420c375bce01"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:405ed8d2ed48f6f946d058e8","label":"techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/receipt-confirmed-handoff-packet/notes/external-import-review.md","source_digest":"425e76b560e983551636ee0fadaa990407b3baf730c79c4a493e7d44d513c33e","source_record_ids":["aoa:aoa-techniques:artifact:d7d27b6cbcd378c0f4287f09"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6ba1ede483a37d3ab27cbd01"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:40d185f54dde5a44469ba5d6","label":"techniques/continuity/review-compaction/commit-triggered-background-review/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/commit-triggered-background-review/notes/external-origin.md","source_digest":"95dbb8110d2d4adcbfa6b7050935e78461877c4abcd0e6a77416eda7395c3627","source_record_ids":["aoa:aoa-techniques:artifact:8e34c082b049d2d37030712a"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1638,7 +1643,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:34b616755d185ca4c1fc926c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:40e5c2df6e3508b949ee2573","label":"techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/notes/adverse-effects-review.md","source_digest":"3bee2e81b4a16c187df4b0320952ab22f1df05aeeca4f67a7db61e6b7c729e8c","source_record_ids":["aoa:aoa-techniques:artifact:e32abeb3760a7357882425fd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d345db16b7b48ef19b23f521"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:413837bce372a5b53a59ade9","label":"techniques/execution/runtime-truth-lifecycle/one-command-service-lifecycle/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md","source_digest":"c35a23afcb9d982b65dbfbce72d210d8c68d3adbdc84b11ce0e0b7a4b7f4d07c","source_record_ids":["aoa:aoa-techniques:artifact:c348dabcca277760e5eeca99"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:add36d860b355204915abeeb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4156b8cab93e7897504a164b","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/evidence-notes/challenge-claim-gate-evidence-note.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/evidence-notes/challenge-claim-gate-evidence-note.md","source_digest":"11f81bac78a1c6beb79df4fb0ef4e63e84aceb13f6d5b0ee96bcb69d18cc2015","source_record_ids":["aoa:aoa-techniques:artifact:1ef01e20174005e6c1188987"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:41637e721fa8f037c82e2c92","label":"mechanics/agon/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/agon/LANDING_LOG.md","source_digest":"2dfcef0ee6ab6126565e3aadc124b253d8a4d7dcd2b7a4ce43cdb3cedd956239","source_record_ids":["aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:41637e721fa8f037c82e2c92","label":"mechanics/agon/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/agon/LANDING_LOG.md","source_digest":"91139047b155b864cd0aa942d363faed68f26c8d4078d2980ee49e26a34e0fc3","source_record_ids":["aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4c90d2731db9899463d26522"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:41765200ec10929aaa538251","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","source_digest":"361dd6be53218868a60a75d1c41d429bce89c9d2f8cc2d3b40b0b3056a9a7091","source_record_ids":["aoa:aoa-techniques:artifact:ed41d63e9981165c3bbc8857"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cc8e0cb3cef1639c0df82701"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:417a16c33f7ca1884e99c154","label":"techniques/instruction/instruction-surface/nested-rule-loading/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/instruction/instruction-surface/nested-rule-loading/notes/adverse-effects-review.md","source_digest":"e0764e0b5881435b8d980244f2467ab182211648168638fba93774ffe7ea1b12","source_record_ids":["aoa:aoa-techniques:artifact:a90bafd07c78f9228d92fa6a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:135bab607e767c1e4099fac6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:41ff5d6138922134bacf9a35","label":"mechanics/checkpoint/parts/technique-anchors/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/parts/technique-anchors/README.md","source_digest":"30bbc0e8ec5247c18cd155d4a6ca884b6d4dd6694aa0b8e266728565329f0c32","source_record_ids":["aoa:aoa-techniques:artifact:a62132a39ce37a95cb6ea63c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1650,12 +1655,12 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:9a832fd9956a7c36101d3fcf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4314b734a592264b9c2271f3","label":"techniques/continuity/handoff-continuation/session-opening-ritual-before-work/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/session-opening-ritual-before-work/notes/external-import-review.md","source_digest":"49b49171555ef928babba45eb2c766f2ce7de46d984098530c83c561a2b5fe38","source_record_ids":["aoa:aoa-techniques:artifact:d6b7371069c4cfdd137f0ebe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:082a5ef4d07a2dea7b4895b5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:431bb3e8662fb381dc4f5064","label":".agents/skills/aoa-checkpoint-closeout-bridge/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-checkpoint-closeout-bridge/SKILL.md","source_digest":"260727fa0b4bc4b83da0808cacd2947507f704e065d7971c8f0b50bdf54830e0","source_record_ids":["aoa:aoa-techniques:artifact:bcbdfcf802e35b7d6dca19d2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:04d36282d3edd9799abed77c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:43240a96745b88901c510429","label":"techniques/proof/owner-truth-closeout/canonical-owner-with-validated-mirror/examples/minimal-canonical-owner-with-validated-mirror.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/canonical-owner-with-validated-mirror/examples/minimal-canonical-owner-with-validated-mirror.md","source_digest":"a0d8790f2d5bd0b6aac2b1f49f27be15809cbca00b6b09d0c7e76d9a4e7148e4","source_record_ids":["aoa:aoa-techniques:artifact:bf09f746e4c91a228526b7bb"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:5049b1246255eab985c0f688"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:432641fd21fa6342d44e4603","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","source_digest":"53d8ac63f6d21d3d5bc0c420c055c6713ecacaa5c4f0f38f5b014adb23bdf99a","source_record_ids":["aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:5049b1246255eab985c0f688"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:432641fd21fa6342d44e4603","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","source_digest":"beaf6b6d0ab31069e8c2a154a3350f8370a7d7ed09bcc5967be720dd1905a664","source_record_ids":["aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5b995f4e6c1326398bdf4cd8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:433f1a62fd8f8a560e3d3710","label":".agents/skills/aoa-sanitized-share/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-sanitized-share/SKILL.md","source_digest":"fa79915fb03c1d58201da4057ccb9dc0ea82b154017ae2c5a3ec469b7722b68a","source_record_ids":["aoa:aoa-techniques:artifact:7f04becd7edf291aa2dcb601"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:a03763866eee8439045a5bba"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:43479c31effa1bcf64f88fc5","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","source_digest":"0f4c69a800e9679c0a8a85a19bbd0957e714a5a6f79e0b95ac47b572d870aa67","source_record_ids":["aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:a03763866eee8439045a5bba"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:43479c31effa1bcf64f88fc5","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","source_digest":"1d1aca7fad9880eae825d967d8bd9e0971b2e058628900b6c7e4da6b10ca01d2","source_record_ids":["aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:556368da8868e90bcb949c2d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:434aa314d2c36e27b208dbad","label":"techniques/execution/ready-work-graphs/dependency-aware-task-graph/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/dependency-aware-task-graph/notes/external-import-review.md","source_digest":"64a73919314ad0cd66fcf44a93794426faf85b6e82ea4ec439e8002ea987cd9c","source_record_ids":["aoa:aoa-techniques:artifact:b63c0a6d76e49b12bac4dd22"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:14c31a3b59bc072d9ed96e68"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:434ac4e0b7dbcdc3bebca5ba","label":"techniques/execution/ready-work-graphs/dependency-aware-task-graph/checks/dependency-aware-task-graph-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/dependency-aware-task-graph/checks/dependency-aware-task-graph-checklist.md","source_digest":"c793d4d0893a0b2e82e99c0f85dd14e6c46bc362738933a7770254c0ff8d445b","source_record_ids":["aoa:aoa-techniques:artifact:9f329f41db5440a32682a751"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:2ae69687807f0d4ebc46d32d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:437d2932ec6fecab1b3594fd","label":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","source_digest":"d8ab7f94744ba9275ebda2bb6de43a0009f1c8a4dd958d0dd71347ef58dae5b2","source_record_ids":["aoa:aoa-techniques:artifact:859893b447b67d299abff366"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:2ae69687807f0d4ebc46d32d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:437d2932ec6fecab1b3594fd","label":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","source_digest":"f5e04c6e0c7f2b809d4e1ec3327d0bc7f06d61c6093cd9f9c709a606413a9a2b","source_record_ids":["aoa:aoa-techniques:artifact:859893b447b67d299abff366"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:537361e02526bb363dcfd3b7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:437f30d8da5239942e1e66fb","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/evidence-notes/offer-evidence-reference-gate-evidence-note.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/evidence-notes/offer-evidence-reference-gate-evidence-note.md","source_digest":"6f02f3c7ff84ea996734a32fdacceb1a8bc2f6dc9d64dd67d37692ae9e6aa67c","source_record_ids":["aoa:aoa-techniques:artifact:ba2860101181a093316d8cba"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:aab58c157b74669997f79d98"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:43e9e6c200424ab7d261213b","label":"techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/intent-plan-dry-run-contract-chain/TECHNIQUE.md","source_digest":"def280c07f666e184ecbcbe06bf977f92e6d3d8ec22021830ddf1baa56ebcd90","source_record_ids":["aoa:aoa-techniques:artifact:99345668e24840d02a9c525e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8578b96d15aa2b7a20c0af02"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:440619f9b65c3d4e8dacd293","label":"mechanics/antifragility/PROVENANCE.md","provenance_ref":"deterministic","semantic_key":"mechanics/antifragility/PROVENANCE.md","source_digest":"1a497eb79fd452b73ad56a19ed9146c39d4e6235b4299c17df7ac7ed6e4b60c6","source_record_ids":["aoa:aoa-techniques:artifact:27d8e436efda8224fb79d3e5"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1664,7 +1669,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:12fb9f48ccd309a12cdcac81"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4477e59a4e5fa91ee663e87e","label":"kag/README.md","provenance_ref":"deterministic","semantic_key":"kag/README.md","source_digest":"164ff30ccac3c1dc65d3eb6f5a89c9d7922f161a2e881d394681d86bbb534138","source_record_ids":["aoa:aoa-techniques:artifact:213631cc86c1c0c7bdb579f5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:74dd2589c3cc7d31292f7d1a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:449f37b4eff6d053a4e3d58a","label":".agents/skills/aoa-quest-harvest/references/promotion-outcomes.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-quest-harvest/references/promotion-outcomes.md#generation-2","source_digest":"c64f8f359075097fec916aa13f27c9e9350b98a0ae836ea4b2980adf67607178","source_record_ids":["aoa:aoa-techniques:artifact:792e1fb3f6924a49033a12f9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e1fda7f4bc62f925528582d6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:44b97b396a9145c8b54f2f32","label":"techniques/governance/decision-routing/decision-fork-cards/checks/decision-fork-cards-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/decision-fork-cards/checks/decision-fork-cards-checklist.md","source_digest":"6157a4707cdc6a5ad8cf522074b4d4e5c67c68fd3657561afee998aa0e07917c","source_record_ids":["aoa:aoa-techniques:artifact:1c70efc01155267a1dfb580c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:44e8d6053832b132434d462d","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","source_digest":"eb48e205b734a6d826e125c7de0cfad41e1aed51f045f50ee15df7e3cf44af2d","source_record_ids":["aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:44e8d6053832b132434d462d","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","source_digest":"7bf7a93cdcca7cc58a21440cafc7feae1d8ec98dc64f86a2f20ddadccf2c43f9","source_record_ids":["aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e9c47aa668609e42fa69e19b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:45391faf1ce48851336b3399","label":"techniques/execution/agent-workflows-core/confirmation-gated-mutating-action/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/confirmation-gated-mutating-action/notes/second-context-adaptation.md","source_digest":"88359a0d87e817a46e872675f2ca2c560a119a12fa2fd2757065a39fe0a355fc","source_record_ids":["aoa:aoa-techniques:artifact:7f1444cb7f979b045779c2e9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8d00d5e6fc80437dcf62cf27"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:457fe1a9854d1270020f3fc9","label":"techniques/instruction/instruction-surface/nested-rule-loading/checks/nested-rule-loading-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/nested-rule-loading/checks/nested-rule-loading-checklist.md","source_digest":"1eb237add9336325a11e2841c2fb2f3623735c0d350dab14b60810e0fce8750f","source_record_ids":["aoa:aoa-techniques:artifact:a514db0f6e0960b77d9d6d5f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0760628f1c54e851dd39ee51"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4585d29ba23b6a655a4be50d","label":"techniques/continuity/handoff-continuation/git-verified-handoff-claims/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/git-verified-handoff-claims/TECHNIQUE.md","source_digest":"96275dd7c2cf98ad4b24fe98d2764e5335577b3f36ff77f2285a8bb70f1d0597","source_record_ids":["aoa:aoa-techniques:artifact:15487cdc20fb13c61b1c515a"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1672,7 +1677,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:a40f948a2f14880f5d3f23db"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:463d97ae532c17b9e549eb27","label":"techniques/knowledge-lift/kag-source-lift/frontmatter-metadata-spine/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/frontmatter-metadata-spine/notes/origin-evidence.md","source_digest":"b901945f9775cb7730a71b4d183d1a05e01d7438e0dd7041698ea5d55934a4c6","source_record_ids":["aoa:aoa-techniques:artifact:c5da8e93cf4f721fb78d38d5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3b48382ef11cc6cf18801df4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:46431cd8437d2d4a07ce3ee8","label":".agents/spark/scenarios/technique-audit/templates/result.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/technique-audit/templates/result.md","source_digest":"8dd0f1ba539016adbc23cdb704f707012c69b54fea8e7f6f32bd63e3fe903ba9","source_record_ids":["aoa:aoa-techniques:artifact:f6b137bbaa5d00fc24fd68d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:90ab32120d5c8a5f1dda48b5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:46c4553fda161491bbcb910c","label":"mechanics/agon/legacy/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/agon/legacy/README.md","source_digest":"09f23fd5562ed9e51b480029fae3ec65ba79ed8622cb88c4fa0eed0b2ec3484b","source_record_ids":["aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:46fc014dd39132d61757fb61","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","source_digest":"c7e8308d9b081a1f13a887efe35b599c4631ac8e6e19c43817d1581d128b5dc2","source_record_ids":["aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:46fc014dd39132d61757fb61","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","source_digest":"2ab73bc37df37241234b4abe64e5f43c99bfe465e473e6715ff92003be1c005b","source_record_ids":["aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e47a2aecdfcbf3038fbeeb3b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4713978e8bfb7a36a39b21c0","label":"mechanics/rpg/parts/owner-handoff-anchors/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/rpg/parts/owner-handoff-anchors/README.md","source_digest":"c4ed95f2debd5a68a67c21c811746514f2cbaa537eef27adddd95aa1546fb5c5","source_record_ids":["aoa:aoa-techniques:artifact:05bfa76197c6b7a0fb2cbb0d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8555262078750762d4a7e812"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:472e340aa2f30e654e533c83","label":"techniques/proof/evaluation-chain/context-report-for-ci/examples/concrete-context-composition-ci-report.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/context-report-for-ci/examples/concrete-context-composition-ci-report.md","source_digest":"6bfa9fad048a2018a72d32c8cad431348840b51864fe53303eb5cb395aa6711b","source_record_ids":["aoa:aoa-techniques:artifact:243e3e5d5c19c5d75a7e5784"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ed82507f14d624eaa260886f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:47b44bd2574f0d3a38a4d58e","label":"docs/source-lift/README.md","provenance_ref":"deterministic","semantic_key":"docs/source-lift/README.md","source_digest":"868535ab545fb627b339cab9956efdb1267f01332613c3cd7892fd3921f73d0f","source_record_ids":["aoa:aoa-techniques:artifact:66b027508d3e1b9068c42e5c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1690,18 +1695,18 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:6dd66c8fa43e683139bcbe66"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:496089968b9c1b3cc4b1463c","label":"techniques/proof/skill-support/contract-test-design/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contract-test-design/notes/second-context-adaptation.md","source_digest":"b17c57c47d734be01ddc26c530ca29d5d7434d3f1a078142f8e4689a4b874dd9","source_record_ids":["aoa:aoa-techniques:artifact:19f329d0a9b7f275244a7592"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a04bf10004e41075ddc7588e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:49a5ed9853c3428d19382720","label":"mechanics/distillation/legacy/archive/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/archive/README.md","source_digest":"d4b2cfdbf41e83a0a0a42ae84f5d81ccabb292603c04f95c5696f57002f62152","source_record_ids":["aoa:aoa-techniques:artifact:194b5a78b854a52aa669c1b9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5ec71f22754332e9ee623026"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:49a6d43259675ce6131e95da","label":"techniques/instruction/instruction-surface/profile-preset-composition/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/profile-preset-composition/notes/origin-evidence.md","source_digest":"a38f6870b10352abba933a5253394600a5dbe2ffa32ad9b0e5a3ba432641cb95","source_record_ids":["aoa:aoa-techniques:artifact:52f755fbc68414470da32f80"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:6b966256c7479bf115107f47"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:49ea107ec2f5bfc318b5f56f","label":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","source_digest":"49d924150590d97e962abfd63ad915e38880d34a7346fc9c1b7a4ff43f93d724","source_record_ids":["aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:6b966256c7479bf115107f47"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:49ea107ec2f5bfc318b5f56f","label":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","source_digest":"045b0427abb117284fbe109b83972fe0cc0536c51c0ad35fda9df844e9b4a283","source_record_ids":["aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a7fdbd6a59e9029a1a4fbd95"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4a0d71a32d486dae3c70ef2e","label":"docs/readers/runtime/TECHNIQUE_CAPSULES.md","provenance_ref":"deterministic","semantic_key":"docs/TECHNIQUE_CAPSULES.md","source_digest":"c233c17382dcfadfd5a4fbbd63d3b86a5d27c884928c95a05af21a8fb12a2033","source_record_ids":["aoa:aoa-techniques:artifact:f76039d0935f2763a73750eb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b29e3ff5d20392272196f244"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4a25072eb96883366d0a8111","label":"techniques/instruction/docs-boundary/public-safe-artifact-sanitization/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/public-safe-artifact-sanitization/notes/second-context-adaptation.md","source_digest":"e29d86e1e7760e1a678e2539f6b31f8c87f5c1caf065553756800668eed011f1","source_record_ids":["aoa:aoa-techniques:artifact:bc545dfbbcd7e67169a54265"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ff29aea45abfb3b4eef60ea8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4a49925c49ba12478b15b963","label":"mechanics/experience/parts/scope-boundary/README.md","provenance_ref":"deterministic","semantic_key":"docs/SCOPE_BOUNDARY_TECHNIQUE.md","source_digest":"b5065800cc6da01138b3b09266ffbc09108549cb2ed11f46a597706367604fa2","source_record_ids":["aoa:aoa-techniques:artifact:67e4c73358a0f5df220993b1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5d764320d10b5fd183ff6dab"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4a4d15517553022141a091df","label":"techniques/governance/automation-readiness/human-loop-to-first-landing/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/governance/automation-readiness/human-loop-to-first-landing/notes/adverse-effects-review.md","source_digest":"38b7368717aabfc571e16f09360b754135b98841331224a4c7ec2383fded5a12","source_record_ids":["aoa:aoa-techniques:artifact:4e5be85dcf04b91b6ae6a3e5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f351c6c5890df764875ac6c2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4a8d40cca0de86ae09d676f4","label":"techniques/instruction/capability-boundary/multi-source-primary-input-provenance/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/multi-source-primary-input-provenance/notes/canonical-readiness.md","source_digest":"abc770200123b7b0254c592ef8d2f463d6b475b9a180208206d383e59f164a98","source_record_ids":["aoa:aoa-techniques:artifact:8a4956fcb14aa396d0c996e1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2a07cb4837bb9e712e02c11a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4a91dfc89e76d7dfc4a53257","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-history-lineage-governed-actions/docs/EXTERNAL_TECHNIQUE_CANDIDATES_CHAT_HISTORY_LINEAGE_GOVERNED_ACTIONS.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-1c-history-lineage-governed-actions/docs/EXTERNAL_TECHNIQUE_CANDIDATES_CHAT_WAVE_1C.md","source_digest":"e27f96dd3d5d436f8c0de3ce436b93e6bb8b9ee1dc6c34cd5e282497f30359a6","source_record_ids":["aoa:aoa-techniques:artifact:5813f8d2d6a18e2344bfcbd1"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4aa87910b6f2211200a99e0a","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","source_digest":"c1165ed6258054eb957ab49918add9ccb6962ba7fd22a93fc1a228c5fcd97a38","source_record_ids":["aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4aa87910b6f2211200a99e0a","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","source_digest":"fc63dceb1fa3d0762c08ea646e50e95911bf5014b7713c15c1dbcf3ca4fefb4b","source_record_ids":["aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0753a33beb0bc935596315e3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4accd73b593e4d087b220950","label":"techniques/governance/automation-readiness/approval-sensitivity-check/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/approval-sensitivity-check/TECHNIQUE.md","source_digest":"4b70ba5c05ed04677f364c242e02fe7d38379f55d1f4a7b1b7945bcac4b47461","source_record_ids":["aoa:aoa-techniques:artifact:0b7944d5acf8ccee3eaf57ba"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4cb6c0cde5c509b8e1af52bf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4afc34b97d34b88d39287c40","label":"techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/examples/minimal-perceptual-media-dedupe-with-threshold-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/perceptual-media-dedupe-with-threshold-review/examples/minimal-perceptual-media-dedupe-with-threshold-review.md","source_digest":"acfbfdb0956549e02deffc068fe7768b6f5c92343553e0dfa1f94295bd834f6c","source_record_ids":["aoa:aoa-techniques:artifact:151c8e651e7dd00570f8319b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:33d028944a07bff50a3689bf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4affe9b6876b659d01da550c","label":"techniques/proof/skill-support/property-invariants/checks/property-invariants-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/property-invariants/checks/property-invariants-checklist.md","source_digest":"c157900dba0dfeacd6c645621dbcbbcf81c250e658c4bf41710f2a6a585ec83a","source_record_ids":["aoa:aoa-techniques:artifact:3ba1c0b439917b270bc79e86"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4b63e3c5db37fdcb9d53092f","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","source_digest":"32c302e003792ab1ee05c9ff712cf15895fe6d8e885089e1d51b99e42f69f436","source_record_ids":["aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4b63e3c5db37fdcb9d53092f","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","source_digest":"4f78eeee1f36066e00dc3ca7c78823a2ebd453fdefc6a1676c13ccae2902b3e0","source_record_ids":["aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0b102dae6de70e92d37a0fde"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4b68da0de4cd438a835e3391","label":"mechanics/agon/PROVENANCE.md","provenance_ref":"deterministic","semantic_key":"mechanics/agon/PROVENANCE.md","source_digest":"12fc8acc78b2e12e869e5e172fe36b4e4273346f00961eeeca5ee8ef013ee339","source_record_ids":["aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:94ddfef0148a80db3b88a1e7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4b6bc723502027ec75968c8a","label":".agents/spark/scenarios/registry-sync/PROMPT.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/registry-sync/PROMPT.md","source_digest":"30aa577c86c2ec10a35c030837063c82e93aec726550772d2e3c86c374fc3f17","source_record_ids":["aoa:aoa-techniques:artifact:aea204fadf73ee5718d5415b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e5d5ede33e38b868f572b2a6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:4b9c2e784968a005b9053ef6","label":"techniques/continuity/review-compaction/review-findings-compaction/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/review-findings-compaction/notes/second-context-adaptation.md","source_digest":"b4ced0a5b01c0b26d3a492b4c3d96cd67c31ddba5b8affad8f392163a750b48d","source_record_ids":["aoa:aoa-techniques:artifact:0277bd1953c8c480bf4514d1"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1731,7 +1736,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:d50fc4ccf2e9b9cd40301231"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:510974e11014989900366778","label":"techniques/governance/promotion-boundary/skill-proposal-handoff-packet/examples/minimal-skill-proposal-handoff-packet.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/skill-proposal-handoff-packet/examples/minimal-skill-proposal-handoff-packet.md","source_digest":"19486068b88dd3e2d574b13ce856e67eb023021b8b75072e1b5baf6b831aef71","source_record_ids":["aoa:aoa-techniques:artifact:9f94608ee6bce8c12b7f70ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4dab938da9e7173a8c88790c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:51411a87d027464481cf62a2","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md","provenance_ref":"deterministic","semantic_key":"incoming/personal-ingest-wave-2/support/DONOR_SOURCES.md","source_digest":"113c4edeb94ec2eb611d2e36973e0e29044b465a0c0a68c453c2baac68064744","source_record_ids":["aoa:aoa-techniques:artifact:99e4142d3dc6fa22b624e638"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f93709cbc940134b6d15fd93"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:51703958748892b401a5898a","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-graph-review-mailbox/docs/MARKDOWN_DEFINITION_OF_DONE_DEFAULTS_CLOSEOUT_MEMO.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-2-graph-review-mailbox/docs/MARKDOWN_DEFINITION_OF_DONE_DEFAULTS_NARROWING_MEMO.md","source_digest":"bd164a9bdeb158edb2c7a967da4b6174ace9967973ca3f54c2ec9a5eb795610f","source_record_ids":["aoa:aoa-techniques:artifact:fe7c6853ce01a2162a720948"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5172afd82029b33e591b5f3d","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/TEMP_TEMPLATE_MODERNIZATION_LONG_PASS_PLAN.md","source_digest":"babce1cbb81ec975387a54ddc2697ca8198cf62e62b36e0721bcd93006bdb90d","source_record_ids":["aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5172afd82029b33e591b5f3d","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/TEMP_TEMPLATE_MODERNIZATION_LONG_PASS_PLAN.md","source_digest":"53e126f72317bcef728f229c269b62ac131ab089a5559e108cddaa22e81b248e","source_record_ids":["aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8a4e0102fda4aee535c877ef"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:517702c977c70a0b6d0b5006","label":"mechanics/experience/PROVENANCE.md","provenance_ref":"deterministic","semantic_key":"mechanics/experience/PROVENANCE.md","source_digest":"1ab3863d95a3e795d233bc3f159d2a3dbdef8461f863225a323aa8457e1058b0","source_record_ids":["aoa:aoa-techniques:artifact:5e5a9beb1aec14ac44db6ef3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a658057f502887df6009c134"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:518b3bfbfdfd0d173ea71498","label":"mechanics/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/README.md","source_digest":"6d47c6ec84dbd6acafdbb7d5651febcfcb377635ff31471369305fec68d14f3f","source_record_ids":["aoa:aoa-techniques:artifact:c091f898d3cc5f78b75c94dc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e7b575cb9f1fbfd3ebe93e9a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:521d897394c13ee0856a4301","label":"mechanics/questbook/parts/source-index-anchors/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/questbook/parts/source-index-anchors/README.md","source_digest":"e4a4c33f9438513db210371d073059dc15424b1f1419ed27791141f31bdc8103","source_record_ids":["aoa:aoa-techniques:artifact:1f2c1342ee51b3ae60a27620"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1760,7 +1765,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:8089a0cde25c2d480a717f8e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:559d8c7db969c98faac60ed5","label":"techniques/instruction/capability-registry/capability-spec-versioning/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/capability-spec-versioning/TECHNIQUE.md","source_digest":"59715753b2fe6962e463f8c5e1360cb6c6d45fa29121b47081c1d5278017d240","source_record_ids":["aoa:aoa-techniques:artifact:17c7c1da437717448430cc3b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c11e7cff94d12e3a69b60e6d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:55c838f7d36e36dc8ef462e1","label":"techniques/continuity/handoff-continuation/git-verified-handoff-claims/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/git-verified-handoff-claims/notes/external-origin.md","source_digest":"811366c5773664ab94f14446be05b01d379b2ec1a74d0798ad1cd32c498e7b89","source_record_ids":["aoa:aoa-techniques:artifact:c8db22f75dfca2919eb1b99e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ecff337358ec01309662d780"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:55cd5948a648284952698427","label":".agents/skills/aoa-quest-harvest/checks/review.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-quest-harvest/checks/review.md","source_digest":"8cb4c20723825c569d513042290272d683743c7865b8ac6a49f62d87059921a3","source_record_ids":["aoa:aoa-techniques:artifact:6cfd5f15c4c3e63dfa41bb8f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:36df34fa9131c4f59b2eed93"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:55cfad45ca7ca1c3712e5ce3","label":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","source_digest":"73212bc54d8347967adb1af82d700510e16df77be51e3bd62a9eb6c16dd55eaf","source_record_ids":["aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:36df34fa9131c4f59b2eed93"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:55cfad45ca7ca1c3712e5ce3","label":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","source_digest":"fc3f802298ee6a9f8febd555b4f15ee4546e121061c661fb0a0254e01794579b","source_record_ids":["aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7e600921cf8ed59f7fe377f0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:55eedd1586459f4595cf8c9c","label":"techniques/continuity/donor-harvest/multi-axis-quest-overlay/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/multi-axis-quest-overlay/notes/second-context-adaptation.md","source_digest":"15a5e2f6a2170efcef84227ce86c4825df02d8c7f0d9cdd24702b6ed2c954eac","source_record_ids":["aoa:aoa-techniques:artifact:d93e2b6d5fa37e2135d7c516"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:72a969368dcbd0e1c7b42166"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:56163bad772dd22e28a3c714","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","source_digest":"da50a1f09fe358c82b1eb7ca6e79884bc01383475ab116c24246200720d09667","source_record_ids":["aoa:aoa-techniques:artifact:577c1d0e02c2508128663161"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:30061cd328bdf760025c9cad"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:561b2ceb2437e9139ca5bc64","label":"techniques/continuity/review-compaction/review-findings-compaction/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/review-findings-compaction/TECHNIQUE.md","source_digest":"79436325203e808e677ce94d3853c41e45b9b5c97258c7ba8fd6e8c354f6d0b7","source_record_ids":["aoa:aoa-techniques:artifact:52f3a0e65f6375c4909c9b5d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1771,7 +1776,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:c2063dae9abfd9c2f78fa016"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:56cd9c2ca9bd37b8a0642cdf","label":"techniques/proof/owner-truth-closeout/workspace-root-ingress-and-mutation-gate/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/workspace-root-ingress-and-mutation-gate/notes/origin-evidence.md","source_digest":"1e6742c967295f7f77dde55d84fc36e2ff0035b8f212fa22b6c57d40579e29a6","source_record_ids":["aoa:aoa-techniques:artifact:3e492ae605b4398556c84fbf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:24e6067fc216878dc60eec73"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:56dea4ea5b5b0d511f8ab990","label":"templates/TECHNIQUE.template.md","provenance_ref":"deterministic","semantic_key":"templates/TECHNIQUE.template.md","source_digest":"4f00c8ac80a8f27208233919a0428cd74c5a801c7a6f56ddc27b0c5acd37163e","source_record_ids":["aoa:aoa-techniques:artifact:b168f8e9730432213007a137"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8f233dc185acc109fbc9ea0a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:57029954a2a5336285ba6296","label":"techniques/governance/automation-readiness/automation-fit-matrix/examples/minimal-automation-fit-matrix.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/automation-fit-matrix/examples/minimal-automation-fit-matrix.md","source_digest":"ad068ba623e5da964edd5457ac3af51eabd35e75a5e955ed64a678cff6ea9572","source_record_ids":["aoa:aoa-techniques:artifact:502ada8107dbebd5923a23fe"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5706ed5840eecd037a020040","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","source_digest":"1fe896d68b0facdd97f48281901a4b06fee8f8b910e45410e6b27fbb85c24ea6","source_record_ids":["aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5706ed5840eecd037a020040","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","source_digest":"9890f5fed35ef6de4b6d75937a3b2dba04d8424fc730672b137166d58693b6ef","source_record_ids":["aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9f7d363cdbc292aecf9b81d3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:571aa200d6b8d051dd744680","label":"techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/evidence-note-provenance-lift/notes/origin-evidence.md","source_digest":"a534bb77254ea2295241f6398cdb3b18599b97bd9f5d35f5e15c6aea22e031fc","source_record_ids":["aoa:aoa-techniques:artifact:7242e910ab0062d0f7815df3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:239b4dcb1a7cd0a15a51b87a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:572bed275ec69349b189c2bb","label":".agents/skills/aoa-safe-infra-change/checks/review.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-safe-infra-change/checks/review.md","source_digest":"f279ebe32fcac7f3014b30f966c593886788025fd4d78a619eb9855a48776fcc","source_record_ids":["aoa:aoa-techniques:artifact:2e9787b238d9ce500b7f823b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8362dd13eca89ef7aec6020a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:574652db11c070771d97981e","label":"techniques/execution/agent-workflows-core/shell-composable-agent-invocation/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/shell-composable-agent-invocation/TECHNIQUE.md","source_digest":"31f8da05e1b50033e47d626a9c750bc7049982989874f2c8e92d5d135aaf5cd0","source_record_ids":["aoa:aoa-techniques:artifact:ffb1931a31ad88411d83233c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1792,9 +1797,9 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:71d7002a41c84c9989772397"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:597675d319334e604f2dc8df","label":"docs/readers/source-lift/EVIDENCE_NOTE_SURFACES.md","provenance_ref":"deterministic","semantic_key":"docs/readers/source-lift/EVIDENCE_NOTE_SURFACES.md","source_digest":"4b9d0a24ab1b818f39dd830a0c995031d2e61d583e7a9af29b5d65709d61fab1","source_record_ids":["aoa:aoa-techniques:artifact:2df195f2bcd5ac8dda239684"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5721655bd18e2c72bbe2fc6a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:59867b0c99cd46df9585040e","label":"techniques/recovery/diagnosis-repair/session-drift-taxonomy/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/session-drift-taxonomy/notes/second-context-adaptation.md","source_digest":"615bc29296154b9bb639caf2154d34b771564ddf33a25422708db5421b848eb8","source_record_ids":["aoa:aoa-techniques:artifact:87ebd372def846dafb500a45"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:11ae1687e9f4d20ed8df5b62"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5995fd25d5c570f10d3a5dc2","label":"techniques/recovery/antifragility-recovery/isolated-service-stop-on-shared-substrate/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/recovery/antifragility-recovery/isolated-service-stop-on-shared-substrate/notes/second-context-adaptation.md","source_digest":"d154e3b6445c0fb7157833b846cfa56627afea1cf6723af5fc21899ca5ed39e5","source_record_ids":["aoa:aoa-techniques:artifact:496cb42254b839bc2a752978"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8e9ab940d857973dc8c9fd6c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:59a9760ee7520eb0e8c79383","label":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","source_digest":"0649f1a2ded568d2761032d86790b9be543e2924c324cc48a5c88650f70eb45c","source_record_ids":["aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8e9ab940d857973dc8c9fd6c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:59a9760ee7520eb0e8c79383","label":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","source_digest":"8fba5f883fd2203f9642013d3d35c2327320c6c88c200b22b381d0669c70c628","source_record_ids":["aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f29e9b106bb64373784f27dd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:59bc51123a6e150b6b71b9fc","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/examples/offer-evidence-reference-minimal-public-safe.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/examples/offer-evidence-reference-minimal-public-safe.md","source_digest":"4234279392f7cf6d1aa59fdd2e27cb10419ac40c47d1f6455c8b6a08ae00ed86","source_record_ids":["aoa:aoa-techniques:artifact:d191a910615a6e7e27d60580"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1aa703ad0516dded2ed51aae"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:59e821ee425a4a7832c9b6b2","label":".agents/spark/scenarios/release-prep/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/release-prep/examples/result.example.md","source_digest":"5067555ba333636f8709254aff92abf1ed9ef2f5a33a779a9c921f63a870a90a","source_record_ids":["aoa:aoa-techniques:artifact:d2953f59029c3da963218542"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1aa703ad0516dded2ed51aae"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:59e821ee425a4a7832c9b6b2","label":".agents/spark/scenarios/release-prep/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/release-prep/examples/result.example.md","source_digest":"14ca72fc0d4f25848702f856c98efa5cb9013db0e8c21ae890c66bb7dc143905","source_record_ids":["aoa:aoa-techniques:artifact:d2953f59029c3da963218542"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5a1afa02408b659e02a598b1","label":"docs/README.md","provenance_ref":"deterministic","semantic_key":"docs/README.md","source_digest":"6ad5390bd12e01f8b4a1a5a166645a95639278fa4d5a49e71fe27a764383a7d7","source_record_ids":["aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8d8337f0c9a0b8d937e45563"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5a2b74a276cb56e76bc5b8ec","label":"techniques/proof/skill-support/contract-test-design/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contract-test-design/notes/canonical-readiness.md","source_digest":"cde13a9f5310a54471c0e49325652217d09b031114719c44ff5a061607ca5c6d","source_record_ids":["aoa:aoa-techniques:artifact:8ea56645f36dbe8b0e061eca"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4d94c35254ebfff4f25aab9c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5a32e6e7bd8389bd3f58b069","label":"mechanics/REQUEST_RECEIPTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/REQUEST_RECEIPTS.md","source_digest":"875cea0de2b95e93b79dd022a8c607a342ef2f7f599321e04506b445b5230cd4","source_record_ids":["aoa:aoa-techniques:artifact:c08e8155cee768788f062102"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1806,19 +1811,19 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:381fd9a08110d5e4e7ccd43f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5aaba49a475c716908926ba4","label":"techniques/governance/promotion-boundary/quest-unit-promotion-review/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/governance/promotion-boundary/quest-unit-promotion-review/notes/adverse-effects-review.md","source_digest":"5bedd5c7ecaa155a6177e7f0d9bc8198123aaac93b7b4e18b7fe26aa808ee09a","source_record_ids":["aoa:aoa-techniques:artifact:54d4089e8c738016cdc7085b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b0eda72355e473c4c93aa1a0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5ac2d3c4177c345d32eb6021","label":"techniques/instruction/capability-boundary/multi-source-primary-input-provenance/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/instruction/capability-boundary/multi-source-primary-input-provenance/notes/adverse-effects-review.md","source_digest":"42d6f6c4dda9306e016dfd8c3940bc5c3450a8093a09bda0dd3c4e0b60dd61b5","source_record_ids":["aoa:aoa-techniques:artifact:4a227da5cc01f0448606d3b2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e734dadeccf3c7e1d8c0c994"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5ae1549fa990778f4b41afcf","label":"techniques/recovery/diagnosis-repair/diagnosis-from-reviewed-evidence/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/diagnosis-from-reviewed-evidence/notes/second-context-adaptation.md","source_digest":"6d1c0d84efbcff507912270aafa41ab153b75cff281169e550bbc71c873f9c11","source_record_ids":["aoa:aoa-techniques:artifact:99185ad6c8933d00b445cb2a"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5b2056cb6a33d8aa69272d40","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","source_digest":"0f83ac2a237928fdd4fe3ce6f965e0412006c522ead11507bb100dc5961d8f99","source_record_ids":["aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5b2056cb6a33d8aa69272d40","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","source_digest":"4bfe8fbe11c48d1b0fa550d360ccb2f5fb1a2fce3d0503f38637f39d49d72d31","source_record_ids":["aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7c8c069e656545ea884b926b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5b5f8dd6fbf87d7c57800f47","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","source_digest":"fadeee9cab4f88b7f1d28be9f43f77b8f3b98fbada23a2a3ee77fb4534024966","source_record_ids":["aoa:aoa-techniques:artifact:826afccac9b1261d23f89f8d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5b77ed4a5dc24e48e2a49546","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","source_digest":"82d6e159b2dd36051911dd95b84a5e8d328614b4d1537636a2834e1c75f86a38","source_record_ids":["aoa:aoa-techniques:artifact:6677af326efe29ea927cc893"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5b77ed4a5dc24e48e2a49546","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","source_digest":"a9c80e99de63ecfb618753b6871729706e46ebf44c7e6fd515ace438303aace6","source_record_ids":["aoa:aoa-techniques:artifact:6677af326efe29ea927cc893"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c04822693c08464320df0a15"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5b80ab610f12b56034cf4eea","label":"techniques/history/history-artifacts/versionable-session-transcripts/checks/versionable-session-transcripts-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/history/versionable-session-transcripts/checks/versionable-session-transcripts-checklist.md","source_digest":"a11db1ef15245ac30c93cfa7f6eb8c292b558f403fc29b399ada03b1a099f658","source_record_ids":["aoa:aoa-techniques:artifact:94cbef610d385b14bab6cbf6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:89c7ba1b45aa6f792dbb4462"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5bcb21751daa7cc6dcda1cff","label":"mechanics/method-growth/legacy/DISTILLATION_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/legacy/DISTILLATION_LOG.md","source_digest":"f4e4c52bd3e37f85e1992b1fde2c56752d68b9b750e07563d11faaf5653c12aa","source_record_ids":["aoa:aoa-techniques:artifact:c65580c8b9ecefa5b9cf025a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:40040477e468c8d61a01ba26"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5bd4cdebdfa381a7ac351745","label":"techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/ready-work-from-blocker-graph/notes/canonical-readiness.md","source_digest":"05fa5d3d87502fdc6e3b4932e19352a575d2cd6dc69c48239c9f805b26a029d4","source_record_ids":["aoa:aoa-techniques:artifact:b1106584a87e00637cbaa512"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:678f8396ab115bc54c75ac78"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5bdc5541bcb6a68088eb1e32","label":"techniques/execution/agent-workflows-core/plan-diff-apply-verify-report/checks/review-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/plan-diff-apply-verify-report/checks/review-checklist.md","source_digest":"a9c2cf3ee0a0540893a12ba0b8b341b9c6627342e0a653f790dafe809362bd14","source_record_ids":["aoa:aoa-techniques:artifact:219c9412169388f071bb00b9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:daacf55144c3dff2f738cb23"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5bde163627e021134b4f7e50","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-governance-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-governance-review.md","source_digest":"70ca7eeed6cfb4dcb1fe4967f9ac325f3a62e24c09d186211fd4760f94b486c7","source_record_ids":["aoa:aoa-techniques:artifact:3faea6ec16c782a2552f82dc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7de2877f66a048362bc5fe24"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5be399fa86cc121fcca4223f","label":"techniques/instruction/instruction-surface/cross-agent-skill-propagation/checks/cross-agent-skill-propagation-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/cross-agent-skill-propagation/checks/cross-agent-skill-propagation-checklist.md","source_digest":"796e1c306380c51af18307fc472e553fcfd3c8276523a7f20e805349fc8f5de1","source_record_ids":["aoa:aoa-techniques:artifact:958c2e969ffe8a2e5f0e5d9e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:6fe38db7e6ebafe9de35f78c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5be580a3e4ac70e8b3a3c407","label":"docs/source-lift/artifact-bundles/README.md","provenance_ref":"deterministic","semantic_key":"docs/source-lift/artifact-bundles/README.md","source_digest":"6718fb54bfd047829a38bf5b0b0140f9b03fc041f1b8704b361252f19b33b0c8","source_record_ids":["aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:6fe38db7e6ebafe9de35f78c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5be580a3e4ac70e8b3a3c407","label":"docs/source-lift/artifact-bundles/README.md","provenance_ref":"deterministic","semantic_key":"docs/source-lift/artifact-bundles/README.md","source_digest":"05fb15e0f31be1726438d3962583c5d8b8533c15c6a5d23390be1eb1d4f52d6a","source_record_ids":["aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2516e5be2f531d015870a5cd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5bfff796ea325f0ddff9a6be","label":"techniques/continuity/review-compaction/commit-triggered-background-review/checks/commit-triggered-background-review-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/commit-triggered-background-review/checks/commit-triggered-background-review-checklist.md","source_digest":"53ccb1166443aee0950da815d2374bd4eb1c56c1069e9a38440f95fb2c6d7925","source_record_ids":["aoa:aoa-techniques:artifact:272e2b6911d814fa38e41ef2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1cc9ae928ab68350d7c7477d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5c38dae536f64f5d4c3c1653","label":"techniques/governance/approval-evidence/approval-bound-durable-jobs/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/approval-bound-durable-jobs/TECHNIQUE.md","source_digest":"18699e8f969aa5fa6cbd1bf23a324e4cfea53d529426db99befb10149cf25140","source_record_ids":["aoa:aoa-techniques:artifact:e5c248f6b61486cc4ccde448"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5c4511cb66dfd5469d94b17c","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","source_digest":"3bc406b50b37e1c1ae9923b54a50969d8b3bf178f27621b67aa637d8f243ab04","source_record_ids":["aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5c4511cb66dfd5469d94b17c","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","source_digest":"3e096a32b4fac9b0365a701665bbd385147226ae74a109c345d2874f9e3dd890","source_record_ids":["aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c72434d1f6747492c0818ad4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5cbf80b6e385052bb16fffa7","label":"techniques/recovery/antifragility-recovery/degrade-reground-recover/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/system-recovery/degrade-reground-recover/notes/second-context-adaptation.md","source_digest":"a09ac4f6a261357cdf076833a351ec08d8371bd749071018b308da7024dde531","source_record_ids":["aoa:aoa-techniques:artifact:d95a20b7d5b159c0ce6ad00e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d55f41575ba494ef7ff59a3b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5cc3bb943b41f64970dbfa2d","label":"mechanics/checkpoint/PARTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/PARTS.md","source_digest":"1a32eae703a3980046bd9ccd9d97c104c49959d82dad1af1ff02e8f54aa66370","source_record_ids":["aoa:aoa-techniques:artifact:cdd82edf1334fed2c0280ed2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f953d6f8abcae62fae0e40b0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5d5153fa0c1acf1ff32c21b2","label":"techniques/proof/owner-truth-closeout/canonical-owner-with-validated-mirror/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/canonical-owner-with-validated-mirror/notes/origin-evidence.md","source_digest":"1d965cbe42f3ab34bea502693d11f963ad27b5dd03669c98e47cce04cbcab1c9","source_record_ids":["aoa:aoa-techniques:artifact:6d14c791e5b79fccfffabcde"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1826,7 +1831,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e08e5530b3c8bf3f3e021969"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5dcf7b11fc2c2fa928ee0513","label":"techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/perceptual-media-dedupe-with-threshold-review/notes/second-context-adaptation.md","source_digest":"99591a8d2bc4fcd3f696a6029a908655cee01bba2939c3480dc0555979b71f85","source_record_ids":["aoa:aoa-techniques:artifact:e424aad1e63831ec85e17e49"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:675caa36db4c691a99fb1d7b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5e0c120b2df8b4c6cac3211d","label":"mechanics/distillation/parts/donor-refinery/README.md","provenance_ref":"deterministic","semantic_key":"docs/DONOR_REFINERY_RUBRIC.md","source_digest":"cee148f0b48a1548d01e037a3a3f3a7e02adcb8579bb22d9d9b496eda5db6d67","source_record_ids":["aoa:aoa-techniques:artifact:efad5c18022305012ddd5d4d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:357cb09da645db6ef7373392"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5e17701e6e9358262754a1ee","label":".agents/spark/scenarios/technique-audit/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/technique-audit/examples/result.example.md","source_digest":"b015034cd8fed590833116a8495bc514774af9a4d7cae877a0d8e68e92be8f41","source_record_ids":["aoa:aoa-techniques:artifact:f52e146564bb2b69ee6051fa"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5ea161ba1dd25921f6a57302","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","source_digest":"29bf98aaf3cfa0a1fb1d2f0dbf10fba15d57bd9c33b6fdeb181c6ffcb353b866","source_record_ids":["aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5ea161ba1dd25921f6a57302","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","source_digest":"2919ce69c349574cab1b81bf348800ccf1bec2c3666f078b791444dd72bae09b","source_record_ids":["aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:56e2b63fdd15ad84dc554982"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5f5b70cc986ca8541643140f","label":"techniques/continuity/donor-harvest/session-donor-harvest/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/session-donor-harvest/notes/origin-evidence.md","source_digest":"3c09acdc8f5295c3f2f55f2f96af8bfc618e2659647361f552c9458ecc978ebf","source_record_ids":["aoa:aoa-techniques:artifact:3e9aceb127132bf9b8322b77"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7aa97653c8b8d1cb9aca1f2b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5f6c885ba20949996618d9a2","label":".agents/skills/aoa-session-self-diagnose/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-session-self-diagnose/SKILL.md#generation-2","source_digest":"2234379cea3b5fc8de77598c090ee215a489c62d212482cb289544b64bbec260","source_record_ids":["aoa:aoa-techniques:artifact:0679b61b4ab20f1c64477c0a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a87aeab7ae40331d01996f23"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:5fb044ae81a20d6af79e5a71","label":".agents/skills/aoa-dry-run-first/checks/review.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-dry-run-first/checks/review.md","source_digest":"6db3f939b7b19e4ba8d91673eae4e8ea74bf4e0df298ef660c869a2a302944fd","source_record_ids":["aoa:aoa-techniques:artifact:b3e3649b3a1bfd5ddff777a7"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1836,11 +1841,11 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:21fb041775366b802482f596"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:610ba936895482fe11c6a6dc","label":"techniques/proof/evaluation-chain/context-report-for-ci/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/context-report-for-ci/notes/canonical-readiness.md","source_digest":"5d47f5115f23554674892d7f2d69f7bf13b9cd9509660ba8d55772af4053dd9a","source_record_ids":["aoa:aoa-techniques:artifact:191c9d2a98c01eab39bfbac1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4be4737b32f0951bda54be60"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:615e082a10f89f0b828f4115","label":"techniques/recovery/antifragility-recovery/receipt-first-failure-analysis/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/recovery/antifragility-recovery/receipt-first-failure-analysis/notes/adverse-effects-review.md","source_digest":"3fc834bc938b8bed0f494b24a291b3bcf9d2147f7a9cd0c15ed852949b181e6a","source_record_ids":["aoa:aoa-techniques:artifact:e6bb3d601152c0ca7a285d5a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cd8a47caca59dd6dea1a7d6a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:618ff81190f27e582f78dbd8","label":"techniques/instruction/capability-registry/capability-spec-versioning/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/capability-spec-versioning/notes/external-origin.md","source_digest":"fd0911b32b8b1b4ab6389d398474c436b56ecb93fe00a6f9d1e2f946fa234606","source_record_ids":["aoa:aoa-techniques:artifact:8a8dc18aad5c4d8a689a8c9d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8170645b250cdd8d938c44bd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:61a19d776f7acc1b4af76681","label":"docs/guardrails/CURRENT_SURFACE_INDEX.md","provenance_ref":"deterministic","semantic_key":"docs/guardrails/CURRENT_SURFACE_INDEX.md","source_digest":"d76a43910177f6de0c3f8b93d47cca0ce234af19d60e9f94d6e5037d110d7f3f","source_record_ids":["aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8170645b250cdd8d938c44bd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:61a19d776f7acc1b4af76681","label":"docs/guardrails/CURRENT_SURFACE_INDEX.md","provenance_ref":"deterministic","semantic_key":"docs/guardrails/CURRENT_SURFACE_INDEX.md","source_digest":"c28b0a8baa97184edf468daf205de9432dae826108c27db41ec5c40de3ea9233","source_record_ids":["aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0883c1c56dc9a1452bf91a21"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:61b5bd8c8e797b2282612d80","label":"techniques/instruction/capability-registry/versioned-agent-registry-contract/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/versioned-agent-registry-contract/notes/second-context-adaptation.md","source_digest":"885c1c8ef43bc27a596951704849c5441ed38b617c79efbed8d0a631bc268d70","source_record_ids":["aoa:aoa-techniques:artifact:2f82614be3965beacc014376"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e01f9be9d69000f340dd0e8b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:61f4230a5cab543d6adc97b7","label":"techniques/instruction/capability-registry/capability-discovery/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/capability-discovery/notes/external-origin.md","source_digest":"764080e35e1bc7b6d9856beb036caf223cdda2580b47784a0fc738c86b5cccf7","source_record_ids":["aoa:aoa-techniques:artifact:0d01fe846fbaefe4f33240a7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:33501c32c26cd3f46be7abf0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:621c102a51402c2c25c04fed","label":"techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/examples/minimal-repair-shape-from-diagnosis.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/repair-shape-from-diagnosis/examples/minimal-repair-shape-from-diagnosis.md","source_digest":"e89e6b4d262e7760d149398460fe72060f8a88bbcc04ddb5c956fe5354cec8a5","source_record_ids":["aoa:aoa-techniques:artifact:4ab9a51f11c86a649f96ff02"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6254cc9f91f2712470ee7724","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","source_digest":"6689e5533962862e42f1a11af7da5ac1233a1d1dbc549cc4850947ebae8225bf","source_record_ids":["aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6254cc9f91f2712470ee7724","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","source_digest":"3365169d47987a78b40dbd810103a9483e8a8da9523bdd3ab918346c386ad3dd","source_record_ids":["aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bd15688fd11d8865397fc358"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6264d58e5158ea30d70ed44a","label":"techniques/execution/agent-workflows-core/tdd-slice/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/tdd-slice/notes/origin-evidence.md","source_digest":"520cdf0b0aeb881738d4f2841cc5dd56fe9881d866899673aeb41ec86f8c2316","source_record_ids":["aoa:aoa-techniques:artifact:8ff5a9f5173769725321540e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6a8a176dee051700abbd3529"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:629f0e5b4f454829005886db","label":"techniques/proof/skill-support/contract-test-design/examples/minimal-contract-boundary.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contract-test-design/examples/minimal-contract-boundary.md","source_digest":"2735110512ed0afe8de1291dfb88c805664314c3bdccc32f516146127e9dd597","source_record_ids":["aoa:aoa-techniques:artifact:1a6a55dac727ba44504278d7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:72bcdafabd38e433719b15fa"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:62a55213df50e5823d965183","label":"techniques/proof/skill-support/bounded-context-map/examples/minimal-context-boundary-map.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/bounded-context-map/examples/minimal-context-boundary-map.md","source_digest":"91deb7a02a3ecc2f838bdda4205512282b8af3d23125bdec5b74552bbc5cb191","source_record_ids":["aoa:aoa-techniques:artifact:abefe122ff46fefdb8f0d9a0"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1872,13 +1877,13 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:5866bc41bfd4c9b180205e5a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:675efd5f0f81909343ecbb05","label":"mechanics/checkpoint/parts/phase-handoff-candidate/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/parts/phase-handoff-candidate/README.md","source_digest":"83d51e4657ec5aa2d489159bc3d5a15b2341e4a0b40409069ce351b9d6be38ef","source_record_ids":["aoa:aoa-techniques:artifact:fe15ec3b947093c39d4485db"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f3e47ff60e896eb181128238"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:67670cc11db10998339db91f","label":"docs/readers/intelligence/TECHNIQUE_INTELLIGENCE.md","provenance_ref":"deterministic","semantic_key":"docs/readers/intelligence/TECHNIQUE_INTELLIGENCE.md","source_digest":"4c29cbf949c27d674854e3b4cc887776d176d4fc49639c91847f18e0e7419ad2","source_record_ids":["aoa:aoa-techniques:artifact:c51ba5a615e120261340d2d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f1d7ae0a82af9cceeddd4b55"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:67926dbe293809b60620e2d6","label":"techniques/continuity/review-compaction/review-findings-compaction/examples/minimal-review-findings-compaction.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/review-findings-compaction/examples/minimal-review-findings-compaction.md","source_digest":"9f0d556bea0ec626516819acc4cfa6748207300a1057e57392ecdddc9fb06a63","source_record_ids":["aoa:aoa-techniques:artifact:e429cfc507ae70b6db1dd79f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c673c8c5f6f2e21753f48ba9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:67ea9f8824ef5c42f5bd67da","label":"mechanics/checkpoint/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/LANDING_LOG.md","source_digest":"2419ea5c33002c310272e8b51028fbd78b9658f90b51e3a5084607e065b89f51","source_record_ids":["aoa:aoa-techniques:artifact:a091893937b854517373eaea"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c673c8c5f6f2e21753f48ba9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:67ea9f8824ef5c42f5bd67da","label":"mechanics/checkpoint/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/LANDING_LOG.md","source_digest":"353f2733930bd88c9861727bfc2973b16c42da8a66e50936e8b0866bcfc7924e","source_record_ids":["aoa:aoa-techniques:artifact:a091893937b854517373eaea"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:01df9ef6fb64fb43b42f54de"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:680d5ad93737d14f0a98ec27","label":"techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/semantic-media-bucketing-with-vision-plus-ocr/notes/canonical-readiness.md","source_digest":"71b4412c7ade12823631549bcf8e5f86f0f409622e2bac09bd092c2aea28b051","source_record_ids":["aoa:aoa-techniques:artifact:ef242215d0c0cb6a4c5f3ffa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:53dfebd8df81ed1ae411f67d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:680e31e0c994491d93eecee3","label":"mechanics/audit/PARTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/PARTS.md","source_digest":"aa015457f86e990e4f1283f77b509f8a040b273fb2983e2ce92eab880aa32aff","source_record_ids":["aoa:aoa-techniques:artifact:7f54be3138b924b6fbfa62f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7d0274677e27b3ec6286e4be"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:682ca6f65ff96cb5be0ed932","label":".agents/skills/aoa-local-stack-bringup/checks/review.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-local-stack-bringup/checks/review.md","source_digest":"765995cb6df99aec197beb6db4cf168f7a13a3ec418a217790b63ca83c384f4c","source_record_ids":["aoa:aoa-techniques:artifact:cdae2c350dc6e5f74bf38bff"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c35d0c2e782d37cc9ce6b6c1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:68e17813ea0beae037cee30c","label":"mechanics/distillation/legacy/raw/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/raw/README.md","source_digest":"a819862229ef5d186620aa9d2128f2419ff4a19eabba61f40ea63d9ae3f4703d","source_record_ids":["aoa:aoa-techniques:artifact:12b9435bf6e909efd884670d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:13c99825ee0580eae1624696"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:692b079e79c1f13c43caf9aa","label":"techniques/governance/automation-readiness/automation-fit-matrix/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/automation-fit-matrix/notes/canonical-readiness.md","source_digest":"c3fde1b8715e7bad8f3cb822b8b8ae0e26a5c9c814dc8cf2a1d5fea504c52d2e","source_record_ids":["aoa:aoa-techniques:artifact:42e9856a429747620be84ee3"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:116da7a2029997226c834014"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:692ba48cde3868840529ff08","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","source_digest":"9c3cf6c51cbef4379290615dabf85d9a106428911a8de5b06cdd9de7f4605118","source_record_ids":["aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:116da7a2029997226c834014"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:692ba48cde3868840529ff08","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","source_digest":"7581e9c59a74e1c290e99169df70c5b0302f66d1f4763b3c24c6db0e7884f0c4","source_record_ids":["aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a666000cb117e8287914d4f6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6982c4b84a807e548fe86d3f","label":"techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/checks/section-lift-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/markdown-technique-section-lift/checks/section-lift-checklist.md","source_digest":"55ef4f46b6a730d864145c285050d2d0ee2369f8c6fc80e13b36f6d7c7bf4725","source_record_ids":["aoa:aoa-techniques:artifact:a829baa589e85c03b4ca3b3b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8f3f5e1f21dc6819f11a60c4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6a0bdc1c601f705ed8ab1516","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","source_digest":"1d4bfb2393d75845825962d3274af902aa0c66ee8a8315791c398dc600f02097","source_record_ids":["aoa:aoa-techniques:artifact:fde64b8930329509292434ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:995dd7656467e68f9ff726c7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6a4e51cc6ed4dacb5a1e7b80","label":".agents/skills/aoa-dry-run-first/references/confirmation_seam.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-dry-run-first/references/confirmation_seam.md","source_digest":"e4b614e2654a77cb7e67cb8f1348cd7d20aaed8a930b4fd8e503cd2166ebe614","source_record_ids":["aoa:aoa-techniques:artifact:4ee27d8375a18a9444d2acbd"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1890,13 +1895,13 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:54f71638aa206fddf12b1f68"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6bf0b54e6c00c438536f5b82","label":"techniques/governance/automation-readiness/approval-sensitivity-check/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/approval-sensitivity-check/notes/canonical-readiness.md","source_digest":"57436def535e60649f0a8eceaf60a7ea2704c3bd266c3292376178dc99081de9","source_record_ids":["aoa:aoa-techniques:artifact:2cfa23f4afaa2e91dfe3cec2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a32a568bace29f4c3a70980d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6c32052d516b51041d42d077","label":"techniques/continuity/donor-harvest/multi-axis-quest-overlay/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/continuity/donor-harvest/multi-axis-quest-overlay/notes/adverse-effects-review.md","source_digest":"abcbf76fef4c94a02c93e0ebc8b2e720fbd61d380f8c543cd4e392eb7c84bdb6","source_record_ids":["aoa:aoa-techniques:artifact:0ec158eca81a9246a6899adc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:329f6ffb482f2fe17a5d7077"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6c480be5d2990cc8c7780803","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md","source_digest":"1013c81048a39b31fc270f5cdba96332416b0766e418bda78a112c1be945cd63","source_record_ids":["aoa:aoa-techniques:artifact:c69089469604c6b4ee8aeb2b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0d34436075ac53cb4a60780e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6c5f7e202e260f0981d0487a","label":".agents/spark/scenarios/diff-review/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/diff-review/examples/result.example.md","source_digest":"b18915aba07163261af3351ae10ccfbb7df2784ef5db0446fd511f31a3c4755d","source_record_ids":["aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0d34436075ac53cb4a60780e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6c5f7e202e260f0981d0487a","label":".agents/spark/scenarios/diff-review/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/diff-review/examples/result.example.md","source_digest":"51d5a51874760f902efcbb3ff7981e22d7b8ca21fefd1b77f9051df884a8f3d9","source_record_ids":["aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:64eb500dcbaf7ca620553a74"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6cbbffe6ae87c38262659353","label":"techniques/instruction/capability-registry/versioned-agent-registry-contract/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/versioned-agent-registry-contract/notes/external-origin.md","source_digest":"30713ee7b531c417e351c376749617c9ba637fc18f71d09f99fb9314ef3cda21","source_record_ids":["aoa:aoa-techniques:artifact:c9c3ccef94c626ddbe178f9a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:02de9512beb35560af9f78a4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6cca8659abf7a42704d3d03a","label":"techniques/history/history-artifacts/transcript-linked-code-lineage/examples/minimal-transcript-linked-code-lineage.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-linked-code-lineage/examples/minimal-transcript-linked-code-lineage.md","source_digest":"eb764b3a59c160469b3578ecbff5858765519a73e243919121be2add2e6ab262","source_record_ids":["aoa:aoa-techniques:artifact:d3e322d3c489f57c22a8d3b4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3244762985bbdcc7c654de26"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6ccb575a2a80a60093c3e422","label":"techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/intent-plan-dry-run-contract-chain/notes/canonical-readiness.md","source_digest":"611d9479dbb6bc464e5a1489717d59e8281dec995ba9565a7454592e23ba3429","source_record_ids":["aoa:aoa-techniques:artifact:8312b808ceb9990ab7edb71e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:95f5f984f5c497e55d07ec2d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6cf1e24fc026dd7a5243e7d0","label":"techniques/governance/practice-adoption-lifecycle/adopted-practice-retention-review/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/adopted-practice-retention-review/notes/second-context-adaptation.md","source_digest":"5d0ac3606cb07c9f85433423a422856164b392f46726805218f49e61fca9c705","source_record_ids":["aoa:aoa-techniques:artifact:49fb8f23e2aa902a77cdbc28"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f22700c2654bfad3237d8ca3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6d127739eaa3ebfaf9eae26e","label":"techniques/execution/ready-work-graphs/dependency-aware-task-graph/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/dependency-aware-task-graph/notes/canonical-readiness.md","source_digest":"14a0bb8737d8963dbd573fab76fd3db30957ba5babd01cac1bc15000de508eec","source_record_ids":["aoa:aoa-techniques:artifact:185816dac7870d4646d8fe8c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8dd763b83ac5927ba12152ed"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6d32267430e11e6dfc95a69c","label":"mechanics/growth-cycle/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/growth-cycle/LANDING_LOG.md","source_digest":"e61c8385b2376f3233d2afbea4ed1b6581c054274c914e68169372e1aeeb0276","source_record_ids":["aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8dd763b83ac5927ba12152ed"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6d32267430e11e6dfc95a69c","label":"mechanics/growth-cycle/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/growth-cycle/LANDING_LOG.md","source_digest":"be5a16710cfe637b7592164c782e3bebaf0ec5b71580eeb46a3bb73cfb4c6c62","source_record_ids":["aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d01d63beaa907db04f7dfa46"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6d4ab280cca55c5818aa9e23","label":".agents/skills/aoa-local-stack-bringup/references/render_truth_before_start.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-local-stack-bringup/references/render_truth_before_start.md","source_digest":"44d74089c50f419080661c9bdc4d5cc0fb10a1960f32a7322ecd6cda463f0183","source_record_ids":["aoa:aoa-techniques:artifact:e379b806739f12704dccc1db"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a84010e011d5cbdec1625bb6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6d51aa7afa33c82b90921f39","label":"mechanics/boundary-bridge/parts/proof-claim-anchors/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge/parts/proof-claim-anchors/README.md","source_digest":"5793f06e0dc99682a2292d78a369906a55846c7fb0983fb032cc19c65c1bcb10","source_record_ids":["aoa:aoa-techniques:artifact:a694fe764a34559d55786e26"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5adc20b99e640d5f96358158"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6d825b98d952104bfc8b0b39","label":"techniques/execution/runtime-truth-lifecycle/contextual-host-doctor/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contextual-host-doctor/TECHNIQUE.md","source_digest":"078e6517c9298185abb9e048174fac6b816021b0198611b02c102c3ded9cfeef","source_record_ids":["aoa:aoa-techniques:artifact:97ec55a68c3b722552006414"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1907,7 +1912,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:1d3393930a228f83b6a40cc7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6e3ea3be3f61443ce3a9eeec","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/post-0054-kind-audit-hold-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/post-0054-kind-audit-hold-review.md","source_digest":"989a1f1b33bb6bbf3b4981373f1e76500aad8d74d0387e3a25b459fe650f8479","source_record_ids":["aoa:aoa-techniques:artifact:275c69fea6f4ed237e677ba6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f92b95cb9d792310a0ec10cc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6e682a486bea0873f853a9fb","label":"techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/ready-work-from-blocker-graph/notes/second-context-adaptation.md","source_digest":"b35b276a7fdaebc4d0845f6d43cb8e1b405dbfe64f2dbb973c8a9ae0e1621d48","source_record_ids":["aoa:aoa-techniques:artifact:9a0b70fad3625d6a872e45ba"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8e3ee10826a2f68489e7eda0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6eb148c0ac89124115db5b24","label":".agents/spark/scenarios/registry-sync/templates/result.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/registry-sync/templates/result.md","source_digest":"a5e5a905d14bc953eb123e19f7701e4eafa4047666c4244cb242596bb5b8d2aa","source_record_ids":["aoa:aoa-techniques:artifact:40e8a6bc4b95a6ec0a50833b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:058215019ecb3946710363e2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6ebe6d1f36f9d82ed4c3bbe5","label":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","source_digest":"3f18d3cdd580f34d3c3a158d3c6adebe36d40ba65b8c3eb8c6b33390108bb3b5","source_record_ids":["aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:058215019ecb3946710363e2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6ebe6d1f36f9d82ed4c3bbe5","label":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","source_digest":"5203d51aa0ccac45022ab3d2c00995cfa75ee671799bea0d33897fba56906b2f","source_record_ids":["aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ad598899c0fc70c0a2266350"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6ec9f12ae08d9bea6f1a05d9","label":"techniques/governance/promotion-boundary/skill-proposal-handoff-packet/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/skill-proposal-handoff-packet/notes/origin-evidence.md","source_digest":"578639fa2956161d3ac29cf779d74f4086d01e16201b79356e8012310bc198ae","source_record_ids":["aoa:aoa-techniques:artifact:33b2328b6747dddafe3f2af6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:83da5cee21583ecd0e65febb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6efa353ccf3f558735aafb12","label":"techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/checks/receipt-confirmed-handoff-packet-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/receipt-confirmed-handoff-packet/checks/receipt-confirmed-handoff-packet-checklist.md","source_digest":"adda8b81b20ac35f6f5f678b6b023726214698f8befd40c22fb74451e33a75b1","source_record_ids":["aoa:aoa-techniques:artifact:f666fea48999485b9c693816"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5a3c7a8e5ec6967b4e10277e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:6f0a5d3beadd4fcfe4906b34","label":"techniques/execution/agent-workflows-core/plan-diff-apply-verify-report/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/plan-diff-apply-verify-report/TECHNIQUE.md","source_digest":"24c438db01bc9547987c21470a060443dad29d550fe777ac789648696a88bd81","source_record_ids":["aoa:aoa-techniques:artifact:c9e4a50d242ec9c1a9253330"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1975,9 +1980,9 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:3ed2c8e88dec55357b5fef74"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a4120fa4771b31ba99b0166","label":"mechanics/growth-cycle/legacy/INDEX.md","provenance_ref":"deterministic","semantic_key":"mechanics/growth-cycle/legacy/INDEX.md","source_digest":"c95db90ce979266b9b358b7c61972b06109bc7085c8901a4b155a9a3cff5d5ae","source_record_ids":["aoa:aoa-techniques:artifact:1163ce67a84231d6fe4449ac"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a7ca6a2ba423fa66e23600f2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a4402b2abb49889470ce163","label":"mechanics/distillation/PARTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/PARTS.md","source_digest":"ef76cb7363ba8d77b25ddba04ff15df4230fa060841ea5d600c2fc1af8bdafed","source_record_ids":["aoa:aoa-techniques:artifact:8b81ac42d11c2733c2f20418"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d70740b766f3ce0b887c5360"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a60607cb0c354d8acfbe6aa","label":"techniques/governance/decision-routing/risk-passport-lift/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/risk-passport-lift/notes/canonical-readiness.md","source_digest":"ec7b9ed18167b9200964cf64009326bdc33d827feecb7219dfec9539629cd805","source_record_ids":["aoa:aoa-techniques:artifact:9514bee0581fa398d68a2ea7"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a684728c0c20234a72fa80b","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","source_digest":"a9acba67e5e7545ad290f7212ad9c723b509219691f9699502a50d64a601d5f1","source_record_ids":["aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a684728c0c20234a72fa80b","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","source_digest":"69eb22b5eb6e435d37ec067279143b14990854d7cc4167feb2a8ad55a5613191","source_record_ids":["aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a9eef9d75a1e65f76d972ab0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a7167822e1c716be81feb6f","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/semantic/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/semantic/README.md","source_digest":"79a35757c0a6abef9a002cd8a0ecc316a9dd35b11628dae3705ec0f772bcb5d7","source_record_ids":["aoa:aoa-techniques:artifact:3bb431257748a1b661f025a1"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:784eb112e9cd463e306d27d9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a87da2714e7e05c02ffeaeb","label":"mechanics/experience/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/experience/LANDING_LOG.md","source_digest":"f8a501b6d3c0d5f55cd8094e70a6c7898b79de9eebe28f169840c1b155637034","source_record_ids":["aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:784eb112e9cd463e306d27d9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a87da2714e7e05c02ffeaeb","label":"mechanics/experience/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/experience/LANDING_LOG.md","source_digest":"84b32899506adde58b349bda6bd535f5f4b20dc25f8288dd1da51d1d029d6861","source_record_ids":["aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7201dbb1a2959ba551b4f915"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7a937a14f025b21b0d1b8d71","label":"techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/superseded-practice-obsolescence-route/TECHNIQUE.md","source_digest":"25445888c1cf762d698ef33fd67a006442bf3d912349deb50bc67b6e88f365c8","source_record_ids":["aoa:aoa-techniques:artifact:332ea68de8fa28c783d9a17e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c98e619ff12f56812448116b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7b4ea1876121b218d5217998","label":"mechanics/questbook/parts/technique-obligation-anchors/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/questbook/parts/technique-obligation-anchors/README.md","source_digest":"323a70e20afe3898ff25411627ffcbd3d97f09d07ef12f8e33965fb70dbd4769","source_record_ids":["aoa:aoa-techniques:artifact:fffca88edd30a13a11063690"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:09b1cea3497b2ec282b013e3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7b603a8c1454fe614ae40466","label":"techniques/instruction/capability-boundary/recommendation-truth-vs-host-actionability/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/recommendation-truth-vs-host-actionability/notes/second-context-adaptation.md","source_digest":"d4ea08f4b7c5461c84f0b7aba1e76ca9303c22ec3106d6766dc0094339cfb4f7","source_record_ids":["aoa:aoa-techniques:artifact:7782fcf2f7c69de4b5f102a9"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1985,7 +1990,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:f3ac8599fab26aa000ceaad4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7b953c6af8cafa0777bcfc54","label":"mechanics/rpg/legacy/INDEX.md","provenance_ref":"deterministic","semantic_key":"mechanics/rpg/legacy/INDEX.md","source_digest":"86ce7295df116fcce92371c694b4425dc64c7f67bbcafde7db71046c8bdd136e","source_record_ids":["aoa:aoa-techniques:artifact:25a04726002c4fdd5cde3da7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9e8adeaf3f1936078bd6d242"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7bc1392a874550c96b345c55","label":"techniques/execution/agent-workflows-core/tdd-slice/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/tdd-slice/TECHNIQUE.md","source_digest":"1932c305b285c63350260a8f7b5f6cdcf8f6ee0bf9ee143b1c1a16b01cc8c128","source_record_ids":["aoa:aoa-techniques:artifact:e59a48e03681994b19cb91df"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:61d6f695ca2f1b2f94491c55"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7c77fd4fe49ccb7f27134e2f","label":"techniques/instruction/docs-boundary/source-of-truth-layout/checks/doc-role-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/source-of-truth-layout/checks/doc-role-checklist.md","source_digest":"3b709db23986fc53baaaf0c4bb8386903125189014fb375cc4f3d6144ff3becd","source_record_ids":["aoa:aoa-techniques:artifact:f19431936325e0b14f830cb2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7c84a182a52039173d6f24f3","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","source_digest":"859e38b8bb12800863e6cf04edbcafb2abd3d42c6ab22aa8672501394ad71967","source_record_ids":["aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7c84a182a52039173d6f24f3","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","source_digest":"f3177aaa3110c396c73066ceba8af6b069accb1b850e86131c4f824b567d3182","source_record_ids":["aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:75aac53f355e3317514874b7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7c8666de7151f18044d1fdab","label":"techniques/execution/runtime-truth-lifecycle/one-command-service-lifecycle/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/one-command-service-lifecycle/notes/canonical-readiness.md","source_digest":"7d8c67f8d681214046f819e361049f4a613628f50bde7a7199bbff8620c4cebe","source_record_ids":["aoa:aoa-techniques:artifact:00e178bcdf3dd84ade599378"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ed00e47b023ae2b78b6db184"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7c9aba53cd41043d807d2cc3","label":"techniques/instruction/instruction-surface/fragmented-agent-context/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/fragmented-agent-context/notes/second-context-adaptation.md","source_digest":"76dd641e7b30853106fffeb5c8fd10f0bb303b55f9ca85942c4f498270526904","source_record_ids":["aoa:aoa-techniques:artifact:4af94223d5ac80b912d5a525"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:08147cb257934daaa6a0a80b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7cbd98fb1f4b2a1c1570fbea","label":"docs/guardrails/README.md","provenance_ref":"deterministic","semantic_key":"docs/guardrails/README.md","source_digest":"8f4ea7b14ab0226f6ca1abf6a2c0ed93acd48ab6afbf4f6698a8b53f77584568","source_record_ids":["aoa:aoa-techniques:artifact:c4f6e9b2c3b7d9fc746c9018"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -1994,7 +1999,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:4aa11805bf2d7bb9ced2119e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7cd8d5c04e575c0ffb0dd0d0","label":"techniques/history/history-artifacts/local-first-session-index/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/history/local-first-session-index/notes/second-context-adaptation.md","source_digest":"2118eac1452ba867061a3e43107a394ceb8ef54d10d358089a50940d8e89e7f3","source_record_ids":["aoa:aoa-techniques:artifact:9c8a03a6c207734246aa0e10"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:99e0c392c315e584232392ce"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7cdaf5f0df61dc036782c6e5","label":"mechanics/recurrence/ROADMAP.md","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence/ROADMAP.md","source_digest":"14c5b6d14ca2abfcf4d863dfccd84c422136a271c41aae68bd0b027c7992d979","source_record_ids":["aoa:aoa-techniques:artifact:46ad8877bd4594a4a27cd1b6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e59b2b40078eeef86eb33dcf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7d258572d939a1bacaa7f282","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","source_digest":"1704aafccf970536db83477cc32158ddf24c5d13fe7db0817c33dbc3ef8933d9","source_record_ids":["aoa:aoa-techniques:artifact:33de82121c5e5c731af967ab"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","label":"docs/ROOT_SURFACE_LAW.md","provenance_ref":"deterministic","semantic_key":"docs/ROOT_SURFACE_LAW.md","source_digest":"33ae3abf6584777520fd3127af969ab0d04348bc937f0f9731205316988a5715","source_record_ids":["aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","label":"docs/ROOT_SURFACE_LAW.md","provenance_ref":"deterministic","semantic_key":"docs/ROOT_SURFACE_LAW.md","source_digest":"36f32c805587a141ec7c36dca39a5835ac1de130bc6136dbc77f671e33c34ccb","source_record_ids":["aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:45133b63935581e72ef1883d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7d74809679ed17ace7b1a82d","label":"mechanics/distillation/legacy/INDEX.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/INDEX.md","source_digest":"479abd04c3a0337c3a3705a351f8136b6dbb0aefd7e38f9a0993ed92e87a4b0a","source_record_ids":["aoa:aoa-techniques:artifact:8fe1cc67ad985fde2d27aa57"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e5ae60ce8a8ace7810877563"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7d9d16bf0563c180e8713bd5","label":"docs/readers/kind/README.md","provenance_ref":"deterministic","semantic_key":"docs/readers/kind/README.md","source_digest":"aa957d0db62120bf3755528df02078ef196753cf8c0dd01c4ba481edfbe28c87","source_record_ids":["aoa:aoa-techniques:artifact:4aa88dc0162e458e182c97dd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:72668b0ed9a050cf6dab9b00"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7da61aebb3873abc442c27c5","label":"techniques/instruction/instruction-surface/nested-rule-loading/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/nested-rule-loading/TECHNIQUE.md","source_digest":"98b6ffa6a3847536454cddf886cf32909cad43a17c143bc404e9770b59057231","source_record_ids":["aoa:aoa-techniques:artifact:7ae7e0fb8a52550682ac1b54"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2010,7 +2015,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:6fcb3f855023211cf00d6abe"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7f636ba99dbd7e37474150b3","label":"techniques/instruction/skill-discovery/skill-marketplace-curation/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/skill-marketplace-curation/notes/second-context-adaptation.md","source_digest":"da77b6ffd7b146c06ed854bba8346432ceeb7ff27f0ec6b8cf2e8068d19d6bc0","source_record_ids":["aoa:aoa-techniques:artifact:130cec572429effc40a63aa0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d007b12507d20e024679d537"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7fb2343177e315ac9a062203","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md","source_digest":"62b607fa85d65585ada915e55a9fd83e95225b51b4842badd7e554cd9a6abe5f","source_record_ids":["aoa:aoa-techniques:artifact:068f1b1e753aadb4ac7af2fc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b4fc9193eeb8bec23196d74a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7fbfa182c0cb967030f16a6a","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","source_digest":"692c44af4a48c49e04602b01cbad37cbeecc4459495828accf1a8456357459d9","source_record_ids":["aoa:aoa-techniques:artifact:a97d8942d149af1b82453153"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7fd5395420884cbb17e3dd78","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","source_digest":"bd0f1d73fb26f434143e7e240a59777aef7754bed569541f69e30d374f76a719","source_record_ids":["aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7fd5395420884cbb17e3dd78","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","source_digest":"53338ef2e0bd69ec2f40cd15397334ce49e384a5d056617cdf3fd2dcf6f622d8","source_record_ids":["aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:622c2ed87bf3e15beced45f4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:7fe6f5dbea3d9400a3b1d527","label":"techniques/history/history-artifacts/session-capture-as-repo-artifact/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/history/session-capture-as-repo-artifact/TECHNIQUE.md","source_digest":"972d9433a4e2cd0ca0e0162a1b0084be2c88236cba82dcd01955f8c8e24bcd79","source_record_ids":["aoa:aoa-techniques:artifact:cd9981b6c3fb400a556d5263"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bb1d83635c4533aab88be0db"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8035a1b28d3ba5ab1a310a01","label":"techniques/proof/published-summary/latest-alias-plus-history-copy/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/latest-alias-plus-history-copy/notes/origin-evidence.md","source_digest":"451960b4dec24fc90d53809b249a66e234925cf7b9b798a796d16e37a11cdd2e","source_record_ids":["aoa:aoa-techniques:artifact:6a350d904740b759ade9c5d3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:80a04183934ea85953ddfdd4","label":"techniques/proof/evaluation-chain/context-report-for-ci/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/context-report-for-ci/TECHNIQUE.md","source_digest":"99081ccb47321ff4724cdb3f8877dd9cfc43c7dffdc9b72408ecb12215c387d6","source_record_ids":["aoa:aoa-techniques:artifact:b201939184aea82e2cd16c8c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2024,7 +2029,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:dc71a1befa1b9ff17558d26f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:812f85cd7969b9e661f12fcd","label":"mechanics/audit/PROVENANCE.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/PROVENANCE.md","source_digest":"bef79182be240b6969d8f94f127075698e1456c5fd51e70b8446b3bccfa4ebbe","source_record_ids":["aoa:aoa-techniques:artifact:f27efcdcafc548616fa6ed83"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d8ae8ccaebf78acbf700bc36"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8138191e95225660b17bf766","label":"techniques/recovery/antifragility-recovery/stress-receipt-reground-closeout/examples/minimal-stress-closeout-lane.md","provenance_ref":"deterministic","semantic_key":"techniques/system-recovery/stress-receipt-reground-closeout/examples/minimal-stress-closeout-lane.md","source_digest":"e7500f1c08b0548c784356f94efc6f57f1ac561c22494b733de838aba86d54b9","source_record_ids":["aoa:aoa-techniques:artifact:4d9263474a89434fd36a7fee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:69b605d67753b11dbd164f0b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8162c247bb1af711727110e2","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md","source_digest":"575a69f402b8cd0134615cc18e10d5fccceebc3c125d2ef687c10186eda19f90","source_record_ids":["aoa:aoa-techniques:artifact:4e66fdff1d365acd57cbf978"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b3b64446b1e26086f3bdc5b9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:81c3d2079238bac80d9a5102","label":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","source_digest":"57e04b039373f2c0cda093a24c67b0090260d03f25c1229f66a233f05fc9d98a","source_record_ids":["aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b3b64446b1e26086f3bdc5b9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:81c3d2079238bac80d9a5102","label":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","source_digest":"517761df924168ee7c8d3a756489cc3663a05e2d167ed3d86cf7edee2b8ea0f1","source_record_ids":["aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7dcb479290dfe9b75868f1db"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:82215ee809c02ced08645567","label":"techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/two-stage-document-ocr-pipeline/notes/external-origin.md","source_digest":"b18c063c1ea668435d817f5763636465cdc70447c4cb3679c976432b55d48802","source_record_ids":["aoa:aoa-techniques:artifact:6edbd89453a60d0eac643395"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:59444a2ca3b50c1062309d27"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:82458a541bd8751c4ea57750","label":"techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/checks/repair-shape-from-diagnosis-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/repair-shape-from-diagnosis/checks/repair-shape-from-diagnosis-checklist.md","source_digest":"0307cee9eb449beacde5d47c453339dbbcea1faa0015b960b22a21f170f04c3e","source_record_ids":["aoa:aoa-techniques:artifact:7c63d46303d9a2a5bbaff428"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e2854390f9b258e859202bfe"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:825858671793718856331298","label":"techniques/instruction/skill-discovery/upstream-skill-health-checking/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/upstream-skill-health-checking/notes/canonical-readiness.md","source_digest":"37bd58765ae656bd88a50d7e8adf6ec5d80657d6f77c1242cd525d366c5f95b9","source_record_ids":["aoa:aoa-techniques:artifact:3d61653df5ce17e8bece11d5"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2036,7 +2041,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:6863f0a0e8bff2710df4b562"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:82fa6dc648adcf9594dbeadc","label":"techniques/instruction/docs-boundary/lightweight-status-snapshot/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/lightweight-status-snapshot/notes/canonical-readiness.md","source_digest":"d3fc94189922a6a1c947e2b851730e3fdb0de18ac9f2c9568f90d3182fe72b6f","source_record_ids":["aoa:aoa-techniques:artifact:11ab2a997c94c45df6c2a8a2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:35f572e564c2ca2e9ab09660"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:82fda4d9fab844922fe314dd","label":"mechanics/growth-cycle/parts/mastery-harvest/README.md","provenance_ref":"deterministic","semantic_key":"docs/MASTERY_HARVEST_POSTURE.md","source_digest":"b9ca9f2b7036b44460f01a336ece96a53eae4676c23699de435f28392f094cb1","source_record_ids":["aoa:aoa-techniques:artifact:76651b92fe24f30a4158e2a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2c2cc9805c1175ef0354d157"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8346f006abfe5f2e5c9b23fd","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/bundle-reviews/offer-evidence-reference-bundle-readiness-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/bundle-reviews/offer-evidence-reference-bundle-readiness-review.md","source_digest":"4e146eab98be2b40ac3c9ac6b9c1f008ac9b858a7c7022b33a2f883a9fc29aea","source_record_ids":["aoa:aoa-techniques:artifact:1788e513b903c1b1de5a7b5e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3add0f3393aa4e334f672284"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:834d427dbb710d0ed27d54d1","label":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","source_digest":"5ff0b48881be6f849a6516809d6adcfa03a2faf6d7d14a00ffbd0c2a7b1ec4ad","source_record_ids":["aoa:aoa-techniques:artifact:6105204715b11f5a45523076"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3add0f3393aa4e334f672284"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:834d427dbb710d0ed27d54d1","label":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","source_digest":"cc0ae5d635e229a9cbec272606178112459d517f1287761ca67ccb49182b2372","source_record_ids":["aoa:aoa-techniques:artifact:6105204715b11f5a45523076"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:017d8a7330e59ba21ae315da"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8353b73d1c84c56a570ce501","label":"techniques/governance/promotion-boundary/nearest-wrong-target-rejection/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/nearest-wrong-target-rejection/notes/canonical-readiness.md","source_digest":"739d0bf466a875710da64ba333f57958b453e27c1449200f476c079c6380801a","source_record_ids":["aoa:aoa-techniques:artifact:2796b88a26f788cd9c06d675"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5c3a078108bf6ce0c08e9941"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:83566428e59ce56e3fb4b7f3","label":"techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/repair-shape-from-diagnosis/TECHNIQUE.md","source_digest":"f958425c6f431ab580f80965b2428a67596f539e89565c93f072427428547b98","source_record_ids":["aoa:aoa-techniques:artifact:2582772682b81dbd459f9518"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1ecb1d8d5300616209ae26d5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:836cd3cfecab71c5c05ab2cd","label":"techniques/instruction/instruction-surface/fragmented-agent-context/examples/concrete-fragment-first-assembly.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/fragmented-agent-context/examples/concrete-fragment-first-assembly.md","source_digest":"d5bbb688b8b91f1820e27cc48d70de613d273d2c0214499f7f9451e5a0abdbcd","source_record_ids":["aoa:aoa-techniques:artifact:3e44ec8be46ceb8637f989a0"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2062,14 +2067,14 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:55b57fc1f478d0e631675468"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:87592e61fcb81b72f80eb4e7","label":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md","provenance_ref":"deterministic","semantic_key":"docs/EXTERNAL_EVIDENCE_SPRINT_RUNBOOK.md","source_digest":"f7dd22b4e1a4a09435e376f5c322cb8ce7e726d258439a9fcfa06d3cbfe0a089","source_record_ids":["aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a7770e3fa7d78ebd58db5d38"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:875a2a4c351103e540f1e005","label":"techniques/instruction/instruction-surface/deterministic-context-composition/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/deterministic-context-composition/notes/external-import-review.md","source_digest":"5e1b4aa93507c57c80a9501d04740d2fd1550564e98d1f35e53fad05ffc76b9b","source_record_ids":["aoa:aoa-techniques:artifact:aecf3a2f534285bc2942494a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:811339fa0d75fe34a3c581eb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:87951ae2cf23601991d8ce8d","label":"docs/readers/runtime/README.md","provenance_ref":"deterministic","semantic_key":"docs/readers/runtime/README.md","source_digest":"cb3779c7978bac0801d4c440ef913feb437874c3cab311c7247181e992edc56e","source_record_ids":["aoa:aoa-techniques:artifact:d4a0b24d2de5cb4110da1bdd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:fef8cb4d3585806764129a54"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:87c8a90ac918737b0acd5dce","label":"mechanics/audit/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/LANDING_LOG.md","source_digest":"8e33eb173d681ff950a70e281a10566efb3f1f721b9ace114099e7b269ab47ca","source_record_ids":["aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:fef8cb4d3585806764129a54"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:87c8a90ac918737b0acd5dce","label":"mechanics/audit/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/LANDING_LOG.md","source_digest":"4186668e9f1b918e1e5a6288ff97a170241cdd6e9cd77b831d1ba5068c9777e5","source_record_ids":["aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:987d69794dcc38a5249522f8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:87f31f3d277260ca163a2550","label":"mechanics/method-growth/parts/retention-checks/README.md","provenance_ref":"deterministic","semantic_key":"docs/TECHNIQUE_RETENTION_CHECKS.md","source_digest":"312ba3219f308e2abfa5e055fd4fde5031c252b392a0fdf55afd28485a939a25","source_record_ids":["aoa:aoa-techniques:artifact:024ba0619d7d56baa3746f63"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:49824a6f3f7bf084a6a71d4a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:88193a6ac221a23b2403b433","label":"techniques/history/history-artifacts/transcript-linked-code-lineage/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-linked-code-lineage/notes/external-import-review.md","source_digest":"6d86479aa2a86044bb74b4ec5b8a73feb9362a50238b2a753c7d6069ace8c8bd","source_record_ids":["aoa:aoa-techniques:artifact:01aca2dcc2bf9581a9625a8c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f9ba7404f68690c34453e3a4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:88384669d7fe8238c3f54740","label":"docs/testing/TEST_TOPOLOGY.md","provenance_ref":"deterministic","semantic_key":"docs/testing/TEST_TOPOLOGY.md","source_digest":"49500bf154c68251fed8fd7934beb498c7ee4673a6f8429dc4bba00286f20968","source_record_ids":["aoa:aoa-techniques:artifact:aecbbf32b8d43d6cf8d19a2b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9c390dc53a650c47a06e6e3c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:886ccd11a93a6b81a25a88d5","label":"techniques/recovery/antifragility-recovery/degrade-reground-recover/checks/degrade-reground-recover-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/system-recovery/degrade-reground-recover/checks/degrade-reground-recover-checklist.md","source_digest":"e74cde3516b2f271e887be4c7c83e081757297c24090b13915b5764f0ccc741e","source_record_ids":["aoa:aoa-techniques:artifact:9bca86108757ca4ce43e5edb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7b50c8f4e8068bf09fe06818"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:887ac3efc9047711cd0f1734","label":"techniques/history/history-artifacts/local-first-session-index/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/history/local-first-session-index/notes/external-origin.md","source_digest":"3b24e99364d54b2cc8e05d11e8f540cbdee19ff2834b33ab42c1060c9985073f","source_record_ids":["aoa:aoa-techniques:artifact:9f0ec1d1bfdc47f6a2365bdb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f1615a3346f961e904a56fae"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:888957a3e589ca9d2e121d7c","label":"techniques/history/history-artifacts/transcript-linked-code-lineage/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-linked-code-lineage/TECHNIQUE.md","source_digest":"646599e7c60a18ea986f971db0cd07d401e77757dd0b51e02e2e7b53087b9512","source_record_ids":["aoa:aoa-techniques:artifact:44722698e85b27aa1d6af548"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8897aec679f58300ee1bbe06","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","source_digest":"47c73a4708c0369de8ba74cbc243e041d1979de29aee757f04f47b7942f165e8","source_record_ids":["aoa:aoa-techniques:artifact:183461d99a40009516486c0e"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8897aec679f58300ee1bbe06","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","source_digest":"d48775d5f3ffa6ccb41de4d118fb650b12772d042dc60f34223dea5d1310e15e","source_record_ids":["aoa:aoa-techniques:artifact:183461d99a40009516486c0e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b521ba8b77b361ce0a567769"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:88b1914ed8fdf50102880c8f","label":"techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/semantic-media-bucketing-with-vision-plus-ocr/notes/second-context-adaptation.md","source_digest":"9bf1c2064feb0b2c2021aca9e8ea48142e47886a525eb0983478ec8578c8e2f3","source_record_ids":["aoa:aoa-techniques:artifact:065c9dd7b95c9b26a5bd313c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:23f6ab7a9657dd024034517c"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:88b1de5aedd7bfbcf53198e6","label":"techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/perceptual-media-dedupe-with-threshold-review/TECHNIQUE.md","source_digest":"ddd899c732ec9e7642426b9f3d62a91ae3712348d24c191d1aca8496aad60b42","source_record_ids":["aoa:aoa-techniques:artifact:1f075c343588762780b816f9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:33fdc294f9a086fef0b51fd4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:88c90f6622a6ece9c80416a8","label":"techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/checks/ready-work-from-blocker-graph-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/ready-work-from-blocker-graph/checks/ready-work-from-blocker-graph-checklist.md","source_digest":"5220221d624a0dab60f3e47b42bc65db4bf3ad81904fb0f4d4a3cf2fb8d503db","source_record_ids":["aoa:aoa-techniques:artifact:07a822b245abe80d3e88549d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2101,7 +2106,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:c8e761cb64670b22bf947ebb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8d214c218e73d5e5fd2b3755","label":"techniques/knowledge-lift/kag-source-lift/frontmatter-metadata-spine/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/frontmatter-metadata-spine/notes/adverse-effects-review.md","source_digest":"188c389e51ce517209091de0f623bfc4180651a523d15bbd9be11eacee416c51","source_record_ids":["aoa:aoa-techniques:artifact:07ce8632e7a82fab3b4d585f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:82634a7721aa2c2e5b9a5117"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8d229390c5838392843c4564","label":"templates/ORIGIN_EVIDENCE.template.md","provenance_ref":"deterministic","semantic_key":"templates/ORIGIN_EVIDENCE.template.md","source_digest":"b3bbfcc525319f920b20dc912f74d10d27cdb43dbb66c732ec279fa0c5d5e57e","source_record_ids":["aoa:aoa-techniques:artifact:19a95b5703325bdf7db53c9a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8d2975090a79e65ac55c1bc4","label":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","provenance_ref":"deterministic","semantic_key":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","source_digest":"aae3f60876e0fea81fe34cd57b7fa4b9626a2633aa56429f672b1fa414ca0830","source_record_ids":["aoa:aoa-techniques:artifact:9f5122ba6b49b003ce4d99e8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:00c61e6409abd64cea21273a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8d9339f83a3d5331376109c7","label":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","source_digest":"54345a1781aa8b95b29913fa39731853d8da14ebd0fb8165286ed8f6a463547e","source_record_ids":["aoa:aoa-techniques:artifact:8436895251001fc44adad2b2"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:00c61e6409abd64cea21273a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8d9339f83a3d5331376109c7","label":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","source_digest":"3b46ad830ab9118e0ee300963009fe7e6e1485a35b4d326f119738525c00e56d","source_record_ids":["aoa:aoa-techniques:artifact:8436895251001fc44adad2b2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7aaf5296b3966381481500c1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8d933c54442572743bb67c72","label":"docs/readers/repo/REPO_DOC_SURFACES.md","provenance_ref":"deterministic","semantic_key":"docs/readers/repo/REPO_DOC_SURFACES.md","source_digest":"d5d99ae314733549e7592d2aac60b85cc0605214e78781812c0ada42300deae0","source_record_ids":["aoa:aoa-techniques:artifact:940d59d9f62194485f676afc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:83729c28bb45671496728d93"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8dcff3d04e84a898341b5c9d","label":"techniques/tool-use/tool-gateway/mcp-gateway-proxy/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/tool-use/tool-gateway/mcp-gateway-proxy/notes/adverse-effects-review.md","source_digest":"7181b9ba388fa995b6c090e2be286393419667fd3f4bb2a90cca5aa7e9315df8","source_record_ids":["aoa:aoa-techniques:artifact:593b87520798a1beb754a261"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2792e777e5688ad51226131f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:8dd44729074f06fc47409964","label":"techniques/execution/ready-work-graphs/dependency-aware-task-graph/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/dependency-aware-task-graph/TECHNIQUE.md","source_digest":"69f626181f63dd4f64fc8d4a979660fe75e9449908bd992c11c454b7ab9ab50e","source_record_ids":["aoa:aoa-techniques:artifact:8d203d23eef6ff47e8bd6755"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2150,7 +2155,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:f2c9fbd758995bbbd5acbbba"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:95483633753867cbb006bb85","label":"techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/examples/minimal-two-stage-document-ocr-pipeline.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/two-stage-document-ocr-pipeline/examples/minimal-two-stage-document-ocr-pipeline.md","source_digest":"80edf5409a5bb65fadebdc5708d99ddad0c53cf63b0046d596b75f39730eef87","source_record_ids":["aoa:aoa-techniques:artifact:c93a23226c6e8a5c002e4bfe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1aecae6fb2e66d86841e4ce3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:955508d0599c6d30c86ea7c4","label":"mechanics/distillation/parts/agon-candidate-handoff/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/README.md","source_digest":"5cf3e09a719bdcc336c35d13a64fa7a406c3f1fea0b7fa95453c66b177a89557","source_record_ids":["aoa:aoa-techniques:artifact:b4e84d31cd8d486d071969d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:19e989a0150447da22d57d3b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:95b3f840fd40ed151b21be46","label":"techniques/history/history-artifacts/versionable-session-transcripts/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/history/versionable-session-transcripts/notes/canonical-readiness.md","source_digest":"d4b258e22a9702aedb5d50dcc795188f1a24f1b4f65ffafb9fc6972271f5272f","source_record_ids":["aoa:aoa-techniques:artifact:54d364b4d0b1d29da70a2919"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:95ec8a5d6bbcf8f914db9687","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","source_digest":"9c04accb2d92e021c5334e9b24dc2de6b1480e1ded34abcf84953592d324c42a","source_record_ids":["aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:95ec8a5d6bbcf8f914db9687","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","source_digest":"a4093dd20c27c4910b20168075830a915d1d7abac6ddd645164c51f662628558","source_record_ids":["aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:20dd5930048f63df41aa78d9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:964c8a0997f5285f0539f57c","label":"techniques/knowledge-lift/kag-source-lift/repo-doc-surface-lift/examples/minimal-repo-doc-surface-lift.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/repo-doc-surface-lift/examples/minimal-repo-doc-surface-lift.md","source_digest":"71c344520141312292d4c894d71cb8c08703dd5844a42102739f03053d41d7bf","source_record_ids":["aoa:aoa-techniques:artifact:58d19e21db61f98b73bcd99d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e6b95507566e68b3d9dea079"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:96b92e2402eff06f5d756752","label":".agents/skills/aoa-session-donor-harvest/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-session-donor-harvest/SKILL.md#generation-2","source_digest":"9a884a6a0dff07a3b0b831c2f504aba202706609d9138203cbdea01c114f4cde","source_record_ids":["aoa:aoa-techniques:artifact:04995a0d00837ddf3325b7fd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1bae7da365b39d0b65c274e9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:970adbdb9d6f0231ef08f0f7","label":"mechanics/method-growth/parts/pattern-adoption/README.md","provenance_ref":"deterministic","semantic_key":"docs/TECHNIQUE_PATTERN_ADOPTION.md","source_digest":"673ccaab13ed4e806903f2750bcb27815f90d8daed6dfd2e2cb05e99ba1cfdf7","source_record_ids":["aoa:aoa-techniques:artifact:e6e48cb33fdd2273db0fe1ce"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2162,7 +2167,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:4060afa0d3bdefb2aaba1ec6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:983f5430816b3edc9db26b90","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-graph-review-mailbox/README.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-2-graph-review-mailbox/README.md","source_digest":"8cb990be44a47b670792d45fd47b5e55e8a9e214b167c00ac6cd15652fae5a01","source_record_ids":["aoa:aoa-techniques:artifact:80a3b09df4e3867a6924b1c7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0db1fc349b2322bc5f808497"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9843717523aee8cc201bc436","label":"mechanics/agon/ROADMAP.md","provenance_ref":"deterministic","semantic_key":"mechanics/agon/ROADMAP.md","source_digest":"f30b54a06f9a9820ac326fb016c9e7b01cbbc5205a0735cf0e4c1e6230d1fee3","source_record_ids":["aoa:aoa-techniques:artifact:2536580a957dfaf70af217e1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f0d2165525908c661bf5542b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:99218f5ed95a7e88767bb5da","label":"techniques/continuity/handoff-continuation/session-opening-ritual-before-work/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/session-opening-ritual-before-work/TECHNIQUE.md","source_digest":"1ad2b9d1cfb64b873bc0fef9661b6a10d2619d6227c564649fd91e37dcdc0f23","source_record_ids":["aoa:aoa-techniques:artifact:d3e15110717eb260d222ad7f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9990da58a4107a58cebafa79","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","source_digest":"8d10595f1a474ae2949f22e6eee481383defdbea894adc88514e18450f5da144","source_record_ids":["aoa:aoa-techniques:artifact:5814487e6018709779f12bb7"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9990da58a4107a58cebafa79","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","source_digest":"a28d23b1b002bd71261f5fc598ca01e6da6a27b11ec338bbce17006f4c0554aa","source_record_ids":["aoa:aoa-techniques:artifact:5814487e6018709779f12bb7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:faabba6a1a7809c96a39d8a6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:99b60c5e3b19391534dc776f","label":"techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/markdown-technique-section-lift/TECHNIQUE.md","source_digest":"9ff0423be9a333bd24341e13e7ba643140aa438916c678fc633f59c096851905","source_record_ids":["aoa:aoa-techniques:artifact:0ee990eead6a7da08971259b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:037add6c8c55fe4dd0767e97"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9a19e7651f0af39c8386ce9d","label":".agents/spark/scenarios/release-prep/templates/result.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/release-prep/templates/result.md","source_digest":"54e1d549e4c067af70c285378f869058a6107d37bf7d641a6ba74dec848c9f19","source_record_ids":["aoa:aoa-techniques:artifact:65d22157cb3e19f21f274b8c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:78724c573b450996535cbdb3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9a247c2d3291e778b546e41b","label":"techniques/proof/review-evidence/single-missing-evidence-request/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/proof/review-evidence/single-missing-evidence-request/notes/second-context-adaptation.md","source_digest":"245b9dd6f9ee853f5d5cd7738da2ac1b5a128c0350ffe0f125baf94c397b1b2b","source_record_ids":["aoa:aoa-techniques:artifact:20cb44c3e7cf94b5cdca3de3"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2172,7 +2177,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:5dc1021730de907dc8367cc5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9ab8f68a2d9144336f783e60","label":"mechanics/audit/DIRECTION.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/DIRECTION.md","source_digest":"dc197d25856be3ae2ab4899e4958b3629607562b423687005f3f4ec03e6bdfae","source_record_ids":["aoa:aoa-techniques:artifact:eb6c24d59a47db9050ba9877"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:14693034249e48a79c564cc9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9ab93d79aab2d99a78ff67e8","label":"mechanics/questbook/parts/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/questbook/parts/README.md","source_digest":"f1094d5e6aac9f2fd47b4478d215e312fe51678f54c6bb93ce947480c5802782","source_record_ids":["aoa:aoa-techniques:artifact:22832d0538584eb3a49c3964"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a32eaa6335966eec7b1a1e2d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9add4912ae92cf85c20961aa","label":".agents/skills/aoa-commit-growth-seam/checks/review.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-commit-growth-seam/checks/review.md","source_digest":"06791eb6ddefda2908c52b17f2e796bcdaf82ea7e7f8e6244f5a887140ff9c47","source_record_ids":["aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:de382c146bb929514e50bc73"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9b7c8fc3300af2d4cec8e1f7","label":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","source_digest":"ea2e89184fc9655cdaf91aa5ff0032288bb35426b35e703f2aa3a7677ccc1dbe","source_record_ids":["aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:de382c146bb929514e50bc73"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9b7c8fc3300af2d4cec8e1f7","label":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","source_digest":"b1ef62b9d8210e575d265b989caa2c7d5ce299d40e0223f8c96dbf9328f945af","source_record_ids":["aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b5b106e71d323cbf28c76a0e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9ba9fb4290b7da458352a48c","label":"techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/notes/adverse-effects-review.md","source_digest":"31baf96e7a78790f2a4c1a605543e1f62d29d88a70e41c9aa83b1e4370333fc2","source_record_ids":["aoa:aoa-techniques:artifact:103b587717e7a88551b13655"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6c171549dd243fddc47e6de8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9bdc89bf607fa611fcf87e0a","label":"mechanics/method-growth/parts/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/parts/README.md","source_digest":"0a872c32f1a7606d43e6e66da1e0104165582ec21e118d68bf7897117b7d08f5","source_record_ids":["aoa:aoa-techniques:artifact:42afdfcc23e587466bcbd77f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3195de7ba2422399682c6f68"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9befd504388d7f5efbcfeb4d","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/bundle-reviews/request-evidence-bundle-readiness-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/bundle-reviews/request-evidence-bundle-readiness-review.md","source_digest":"a9ecffb7fcf5760dc40a494374603e2abbf9f783ee401db94b32e4702f944bbc","source_record_ids":["aoa:aoa-techniques:artifact:7456cccdf9125526fac126b2"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2189,13 +2194,13 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:15a499fac37dc1fcded9d740"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9d1f0a98855c6db661ac6214","label":"techniques/knowledge-lift/kag-source-lift/github-review-template-lift/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/knowledge-lift/kag-source-lift/github-review-template-lift/notes/canonical-readiness.md","source_digest":"8790213618975c70a948b37eb4e274f7f6d32944379749723cf4741aaac104f4","source_record_ids":["aoa:aoa-techniques:artifact:0b077def2400952252b8064c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1e3ba8b6a110c4f7491b449a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9d652b866039b968df6ce62e","label":"techniques/governance/promotion-boundary/quest-unit-promotion-review/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/quest-unit-promotion-review/notes/second-context-adaptation.md","source_digest":"26efdd062af80d6a9575aa0f8aaf56e9252018b96cd7b7cbc6805d8770f7b543","source_record_ids":["aoa:aoa-techniques:artifact:04b66b88ff12ad6c3b3ca6f1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3451385aaf7fe495cd288462"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9d776100f81000fc44a6d055","label":"mechanics/experience/parts/authority-resolution/README.md","provenance_ref":"deterministic","semantic_key":"docs/AUTHORITY_RESOLUTION_TECHNIQUES.md","source_digest":"eba585eac4c12744a6e71a2bb246b5495597da59057e5f515e8236edc6169562","source_record_ids":["aoa:aoa-techniques:artifact:b06f4f620e0692b0c9a33d83"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:2013fe9a2f06a3d450011a01"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9d899bcef9a718a168799d94","label":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","source_digest":"6453c36716943771818ff99b00f63a87e801be7998e4f3f274b4b97aecc346fc","source_record_ids":["aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:2013fe9a2f06a3d450011a01"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9d899bcef9a718a168799d94","label":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","source_digest":"572a49695d3bed703207e056b1d4e47636950c78eb2e74f4beaf3f270e2dcdf0","source_record_ids":["aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:245a40727d3b790aba9d44af"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9d9e5a2d721758e6616bb621","label":"techniques/instruction/instruction-surface/cross-agent-skill-propagation/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/cross-agent-skill-propagation/notes/canonical-readiness.md","source_digest":"cb005c4262566581b1be6685cef7a5db51929c4e2a90bf8a2b76de261fc33bfc","source_record_ids":["aoa:aoa-techniques:artifact:e3c7e02b034f43534d39f926"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:393a2cf7946fe71edfd5d55b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9dc7798ac81f5a33f2872529","label":"techniques/recovery/antifragility-recovery/degrade-reground-recover/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/recovery/antifragility-recovery/degrade-reground-recover/notes/canonical-readiness.md","source_digest":"494b98585d368f9461266366c7925437f1ceb5ef7816afb8bd3ca8fc7bedd022","source_record_ids":["aoa:aoa-techniques:artifact:4ffd1030d979025809e8e74d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6256447064a5390ad917f264"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9dda4baf73d4166714e78715","label":"techniques/ingest/media-ingest/semantic-media-bucketing-with-vision-plus-ocr/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/semantic-media-bucketing-with-vision-plus-ocr/TECHNIQUE.md","source_digest":"dc73c42d3dbab5097bd5ce943da03e46bb70a2d53226e491652fd85a2ad6fd84","source_record_ids":["aoa:aoa-techniques:artifact:6bf1198ee1d45a0c07f61b49"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:de4a4283c738e97083aa9841"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9df2f4f32364a6d1c850b5a9","label":"mechanics/checkpoint/parts/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/parts/README.md","source_digest":"96d6b891d5cdbaafb0a8607dee44364df23d4c77b6996f499536dc6fe2edfea7","source_record_ids":["aoa:aoa-techniques:artifact:bbd408f411a09604ee023356"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bcb3c179f9ebc59fc6771835"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9df55af9eb697e9523e781b7","label":"docs/review/CANONICAL_REVIEW_GUIDE.md","provenance_ref":"deterministic","semantic_key":"docs/CANONICAL_REVIEW_GUIDE.md","source_digest":"c1090b96c10f8c0944e6523762b4a81a88f5b07eba7bf544ff4e9da9a291e774","source_record_ids":["aoa:aoa-techniques:artifact:4ac7da18a129100dac72e35a"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9e0bba3ccb8c28ae7e2dff16","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","source_digest":"ff51a82efbeff849b7159430b0915a703285a6eddc34c2ccedce5ec420af1a92","source_record_ids":["aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9e0bba3ccb8c28ae7e2dff16","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","source_digest":"88441d03a6ef8a5bdd37137dc9b58f48e4cb8c9ba07810c348071551184492c4","source_record_ids":["aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:901d79ba1a78e90eda4180af"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9e1e3482c83e4f727f3b1f3c","label":".agents/spark/scenarios/technique-refinement/templates/handoff.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/technique-refinement/templates/handoff.md","source_digest":"b86b21330b0da44a8826eea65d99d3c1ce24f2e192df00bdf07914453c93dfca","source_record_ids":["aoa:aoa-techniques:artifact:65aab6e00bd219449f8e0604"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:79196c966016f369c330aea3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9e9701806eb0c77b7a5b4fed","label":".agents/skills/aoa-automation-opportunity-scan/references/stats-event-envelope.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-automation-opportunity-scan/references/stats-event-envelope.md","source_digest":"4a83bd53c13f34d8355fdf7dfaf6266aa99c4e90c63e227dc426600de738f7bb","source_record_ids":["aoa:aoa-techniques:artifact:e1abb90e5533e52f000412fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:eb797fd1dcf3ee059fc56ecb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9ee363a6cbfacb65a229f638","label":"techniques/instruction/instruction-surface/deterministic-context-composition/checks/deterministic-context-composition-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/deterministic-context-composition/checks/deterministic-context-composition-checklist.md","source_digest":"5890e351db82c5f352282c025755bb3ad6df668790060e8725b84306673dc8b8","source_record_ids":["aoa:aoa-techniques:artifact:b4699b964a4c82406078b167"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2208,7 +2213,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:401eee461517107be51ea0ac"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:9fe1a06fc0062134e4fb05ab","label":"techniques/knowledge-lift/kag-source-lift/repo-doc-surface-lift/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/knowledge-lift/kag-source-lift/repo-doc-surface-lift/notes/second-context-adaptation.md","source_digest":"73afa045fab5f6c41dc9ed86ac0ab25b57960b3b5671636c4edc801428a77a0e","source_record_ids":["aoa:aoa-techniques:artifact:546282426a259a82d02eb975"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:96fba1c5a54973c7cb44ce25"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a0710fe0cb5c83009e9d84ea","label":"techniques/execution/agent-workflows-core/tdd-slice/examples/minimal-tdd-slice.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/tdd-slice/examples/minimal-tdd-slice.md","source_digest":"edd0648f939957726756c1b666e478264699d5a95d9027f75131223bb30699be","source_record_ids":["aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:44f41aa22a73f1f9acf5cee9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a098fbdca22f28ce74685d7a","label":"techniques/instruction/capability-boundary/skill-vs-command-boundary/examples/minimal-skill-vs-command-boundary.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/skill-vs-command-boundary/examples/minimal-skill-vs-command-boundary.md","source_digest":"eca80c3ef23f62676632a0d5dcce3ea0cc7060b044a18d66ff2213d4098b66b6","source_record_ids":["aoa:aoa-techniques:artifact:47cebddd9dcfd9250e9dea8c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a0b3b92f14adb49b1655abee","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","source_digest":"69264fcf2439cdebcd52885eb148f5ecd49703c663825f55b6a9e8ec7e5f0fc3","source_record_ids":["aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a0b3b92f14adb49b1655abee","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","source_digest":"e01b0438cd29418b269a4271ff3dfc5d7fa4daf64f93bb03395c8df6d21b2293","source_record_ids":["aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bfafad588a1405e61b53c363"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a0e48d6ed72c663edf2b35ce","label":"techniques/proof/owner-truth-closeout/github-only-owner-endcap-with-reality-sync/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/github-only-owner-endcap-with-reality-sync/notes/origin-evidence.md","source_digest":"85c1f132ed926ae236dbcf28649de919ff004dc11c98377155e101b261f5e530","source_record_ids":["aoa:aoa-techniques:artifact:1fc6bada6f15b8b85ee226d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d03a1bef68bd7c36ae10aa08"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a10f2141fc9cdc9b73901603","label":"legacy/receipts/README.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/README.md","source_digest":"0337ea9df85d7af4e81860e4b9d181f7e9ce31ccba34794fb79ab3b8f6e0644f","source_record_ids":["aoa:aoa-techniques:artifact:47ec2120ab466efaae32de89"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4ead9cf657de60c2517d354f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a1457a835f5e2d57e21f42c5","label":"mechanics/growth-cycle/parts/questbook-integration/README.md","provenance_ref":"deterministic","semantic_key":"docs/QUESTBOOK_TECHNIQUE_INTEGRATION.md","source_digest":"c08dc4bd17e1235e6ab9466a03b412a4465254da12a2414034e5bcf2a8db6eef","source_record_ids":["aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2237,7 +2242,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:6549e1bb6fd958ae3bcda27e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a54b8ff5a11070a015a85db1","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-history-lineage-governed-actions/docs/AGENT_READINESS_TELEMETRY_CLOSEOUT_MEMO.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-1c-history-lineage-governed-actions/docs/AGENT_READINESS_TELEMETRY_NARROWING_MEMO.md","source_digest":"efb04557b84aaab0823988d0ac29e8143d258be04aa8f5a6434ecb4c1a61c33e","source_record_ids":["aoa:aoa-techniques:artifact:ce5d65b52ab4cbe348412f72"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ae1adb0c57c9b0d09d25e1ae"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a5536651c2d8e599c61e9421","label":"techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/two-stage-document-ocr-pipeline/notes/second-context-adaptation.md","source_digest":"67c5ea63a890fcef22b461a0ffb5e694f0cf004a4825433706aa1d8a98b000b2","source_record_ids":["aoa:aoa-techniques:artifact:339c4cd09bf4a9cb40880968"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:21cb757f92ee0136a08c2047"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a579daf272b90d5c48f34374","label":".agents/skills/aoa-automation-opportunity-scan/references/session-harvest-integration.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-automation-opportunity-scan/references/session-harvest-integration.md#generation-2","source_digest":"4a9a11cb9e40c6b15a5f01a352b65a1efc07722f1b077388c3b2b31a56f9af8d","source_record_ids":["aoa:aoa-techniques:artifact:a66dfa3569b8867c20f371a5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a5901189d2b6b4c224a7e7fa","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","source_digest":"d080c82418befed9d9eb94561508b48a8ce61dc9fcada5940f311587d218b764","source_record_ids":["aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a5901189d2b6b4c224a7e7fa","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","source_digest":"57bf526e82680fd90418cc27e0c0181d3f6bc7985d63cf4444d5e47dde7cffea","source_record_ids":["aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:290e5cce6055430cedfe9a03"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a5e28b83e43d1a888d0bb4d8","label":"techniques/proof/skill-support/bounded-context-map/checks/bounded-context-map-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/bounded-context-map/checks/bounded-context-map-checklist.md","source_digest":"f8270a5ec89b6109b8a6e6b0cb9638719f44c37a786753461d56b03b0ff23fcc","source_record_ids":["aoa:aoa-techniques:artifact:8ec810295d7d053b6370e87e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:005096cd4e6228fade0533a5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a5ef38fed8257250e339eb07","label":"techniques/instruction/capability-boundary/recommendation-truth-vs-host-actionability/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/recommendation-truth-vs-host-actionability/TECHNIQUE.md","source_digest":"ae909ea7edd92c2c24555e9d2aa950f24deccb8630297cd99524f82fa7f8afa6","source_record_ids":["aoa:aoa-techniques:artifact:12763a5e338d0d0d120816f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:853c96f02db71730e6e3a659"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:a5f99949da5b0e33e3507b81","label":"techniques/instruction/docs-boundary/lightweight-status-snapshot/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/lightweight-status-snapshot/notes/second-context-adaptation.md","source_digest":"6d9d27c8a83a07d022448e7be076804b04a902add27cee91073e8511e67aef2b","source_record_ids":["aoa:aoa-techniques:artifact:98245da973eb9a03f9967734"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2305,7 +2310,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b7d22ca17504d16b23c2a050"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b23a3e7f1ac7ed4f24f8d847","label":"techniques/knowledge-lift/kag-source-lift/risk-and-negative-effect-lift/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/risk-and-negative-effect-lift/TECHNIQUE.md","source_digest":"7357593aff49912c88a67ddf447ece6bddb18cb6957f8b4fb874c5ed18da3e46","source_record_ids":["aoa:aoa-techniques:artifact:e36af3e27730df5170f44391"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1026725b5bea6260fc97d10b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b24a371b1dc145b49c104fa4","label":"techniques/governance/promotion-boundary/quest-unit-promotion-review/checks/quest-unit-promotion-review-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/quest-unit-promotion-review/checks/quest-unit-promotion-review-checklist.md","source_digest":"7dca4bf37ad62c9f79c9c134f323949aa6477c2e686425fa4c5285129f02c2ce","source_record_ids":["aoa:aoa-techniques:artifact:3d389d14ff46312d03690f42"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fbe51c1758e1b5fb3e53b942"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b2c739f164adf9e30a950201","label":".agents/skills/aoa-core-logic-boundary/references/core-boundary-shapes.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-core-logic-boundary/references/core-boundary-shapes.md","source_digest":"df825d59dbbc4ab5e1cf28c913d68ff5aaeecaab7761e48edaf951dd32b0aae1","source_record_ids":["aoa:aoa-techniques:artifact:afdf4ede162d60fda61abf63"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:772724fd1c1e57faedf82e6f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b2ca276ff5e9cb3866bb4a43","label":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","source_digest":"12ce7c7b420106808af53451c4eab9bc58808e8e832a554b745a7735abacf9ae","source_record_ids":["aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:772724fd1c1e57faedf82e6f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b2ca276ff5e9cb3866bb4a43","label":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","source_digest":"05907f250389dc2504dad84845ecad8104a01f9680cdef596fd1b6fed672bb96","source_record_ids":["aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3d1245e206db99ac1ee66dd1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b30e9324b004b320ffdbcd1b","label":"techniques/instruction/capability-boundary/multi-source-primary-input-provenance/examples/minimal-multi-source-primary-input-provenance.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/multi-source-primary-input-provenance/examples/minimal-multi-source-primary-input-provenance.md","source_digest":"798164895808e93799efcf7b733678cbea504f5f9e0ecc8246b632636351a7c6","source_record_ids":["aoa:aoa-techniques:artifact:e2abb53218a5ad6a828e6d1f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:43d64f1d5e247f9d6c5428cf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b33c378252fc311c7ae95ee7","label":"techniques/knowledge-lift/kag-source-lift/evidence-note-provenance-lift/examples/evidence-note-to-manifest.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/evidence-note-provenance-lift/examples/evidence-note-to-manifest.md","source_digest":"0c54bb6fae0b0815e182d52bd7229b2c973401e93494ed94bee9cefabb5c2073","source_record_ids":["aoa:aoa-techniques:artifact:182f726c5cbb10dbf61c2767"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f91073f609c8ed98eecdd4c8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b379a193e7b17554441d8441","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","source_digest":"228337077fd8756deebcf80f0f16872aec4b10865aa84078631e9e2333d9dad8","source_record_ids":["aoa:aoa-techniques:artifact:c378e0bb4347b59a1244c35a"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2320,6 +2325,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:9169e99fd07cee3ae37c01ba"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b5354bc1c0a03f5e3f2a5fb8","label":".agents/skills/aoa-adr-write/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-adr-write/SKILL.md","source_digest":"34c277591506b9e7903914096c9cfe946ea089dd2687d04c441d54c14b2e29aa","source_record_ids":["aoa:aoa-techniques:artifact:f8e8f5a0e7f833c07d527673"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a49e9cb33e1091d62de9a3b6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b588f810799afb0b546bcf0b","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","source_digest":"0cf49dbdf7ab8773c384477edd2a3089e2e1dfc21537fae526f7fd64bfcfb4e3","source_record_ids":["aoa:aoa-techniques:artifact:331fb050b9ee7573ef318347"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b594d991a60209828f71fd83","label":"docs/TECHNIQUE_TREE_CONTRACT.md","provenance_ref":"deterministic","semantic_key":"docs/TECHNIQUE_TREE_CONTRACT.md","source_digest":"d4d9287e572fc65d394cd11363fd3090bad145dd1239ee207b6cde3d31a1984d","source_record_ids":["aoa:aoa-techniques:artifact:79eeacf6b8500c3529e09a8e"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b598581a0af3f1b0bcccf026","label":"stats/README.md","provenance_ref":"deterministic","semantic_key":"stats/README.md","source_digest":"9a0b05cbf14fe7e7ba41cacb323f1c6c2efd15c352bd5dda296d698eabaa0242","source_record_ids":["aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:239b0cafa33bcf86998a07c0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b59a4c8a88a298b99b222360","label":"mechanics/distillation/parts/technique-reform-ingress/reports/kind_ambiguity_audit.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reports/kind_ambiguity_audit.md","source_digest":"ca255a11787bd4fb46a15c1ea95cf6255149722f44aeac49dddfe680d60456ab","source_record_ids":["aoa:aoa-techniques:artifact:306109b542eff7632f136b0e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ebee5db9437b04c0e0c91221"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b5d7711b214f928055e504d1","label":"techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/recovery/diagnosis-repair/repair-shape-from-diagnosis/notes/adverse-effects-review.md","source_digest":"c2397f6b79b7374d72c5db8fa124166ec6cf02b90e6112d48370bf171de1d003","source_record_ids":["aoa:aoa-techniques:artifact:89899b65b60f44b17e78c61c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:74f1af7d2ccbb29253557c43"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b5e1266da1b63df054bc9ac4","label":"techniques/history/history-artifacts/transcript-replay-artifact/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-replay-artifact/notes/external-import-review.md","source_digest":"d9ce52abe6fca8e7271276f0f5c9e6c406c29dcb61a8cedd961149c178c1fa84","source_record_ids":["aoa:aoa-techniques:artifact:346aa90ec07f18a3ced15b33"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2333,7 +2339,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:1e4e372760e8208a37bff405"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b7286e118d8d057e3cf7f231","label":"techniques/proof/published-summary/published-summary-remediation-snapshot/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/published-summary-remediation-snapshot/notes/adverse-effects-review.md","source_digest":"03893d2898e429ad52dffc3e2de51c62b616a080b6efd03b785dcc4011d6f676","source_record_ids":["aoa:aoa-techniques:artifact:327ed5df5e3202c006a7b91b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fef34c0da72fb4b1756e21b5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b753693defd093f758d46677","label":"mechanics/method-growth/PARTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/PARTS.md","source_digest":"8ed2df6970c0a8636eef2dd0b6c2a4f03d05ec310eee2b8390529da74d36e4fc","source_record_ids":["aoa:aoa-techniques:artifact:bd75897649933a8becf9cd74"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f2a158e1b6e06c662dd98dd0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b75f45afc3f491146a575033","label":"techniques/history/history-artifacts/session-capture-as-repo-artifact/examples/concrete-local-first-session-history.md","provenance_ref":"deterministic","semantic_key":"techniques/history/session-capture-as-repo-artifact/examples/concrete-local-first-session-history.md","source_digest":"bff5c0fef6ded158f7cd2fb55a803ee5426fb6cdb4b411a3ecdcbb8f56d1a424","source_record_ids":["aoa:aoa-techniques:artifact:381102996117b40acf995692"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b7b71d821c61385c9a31c0da","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","source_digest":"94b6d2995b045005e7fdd093526bbb84244aa5beb415b71855ccf9ced1120c22","source_record_ids":["aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b7b71d821c61385c9a31c0da","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","source_digest":"0de6fe97c9901c26f3dc952da00a2acdcd2832583c91559ef7d8209d884b0d28","source_record_ids":["aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3123404e74cd90edb5d20568"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b7bea576aa2d82d367825fa5","label":"mechanics/checkpoint/PROVENANCE.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/PROVENANCE.md","source_digest":"cb1d57990211e7effd209355bda96d2b62db9a54c2b74e6e0c83e975b91a6d48","source_record_ids":["aoa:aoa-techniques:artifact:0f645191e875f5883b5c4d1d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3b8b2a6656fc3942f16dd3ad"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b7da5c0c26c8f320a0bc65f6","label":"techniques/execution/runtime-truth-lifecycle/contextual-host-doctor/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contextual-host-doctor/notes/second-context-adaptation.md","source_digest":"a3932a3a2b9eb93b4a875d880f13acaf6646560c2dfd8e93a75e3fe2cf18493b","source_record_ids":["aoa:aoa-techniques:artifact:87137534501699d3996deb07"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:24e77ca8d3306512fb3773da"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:b81bbb5890791ba49991b95b","label":"techniques/instruction/skill-discovery/skill-marketplace-curation/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/instruction/skill-discovery/skill-marketplace-curation/notes/adverse-effects-review.md","source_digest":"11fb4c2503cfd524e2e1bafe22cfedd216a001e1c1d9508519891c1aed082d62","source_record_ids":["aoa:aoa-techniques:artifact:b488473b4fcb2197bc083bd4"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2404,7 +2410,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:59148a9670299f1eb178d983"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c4bb759ec8c0e441f8f9115e","label":"mechanics/release-support/PARTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/PARTS.md","source_digest":"9c6577a71eda6d2943da35a445f56fc2cd627dec0c8728836cc4c78e8c0e55e9","source_record_ids":["aoa:aoa-techniques:artifact:07208cf1e5f67b4a2e115f21"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b9dfdfe971b2ee39a6d8ba40"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c4cfc24dfa3f35c99fe906a2","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/checklists/offer-evidence-reference-gate-checklist.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/checklists/offer-evidence-reference-gate-checklist.md","source_digest":"343f2318a3e04dbfb20281bd89c875f25cdde1a1a2da52b8e4851249f2640cf6","source_record_ids":["aoa:aoa-techniques:artifact:55a3cf5db6d14c8baffb2ed8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:155bb5877b5dc616aac7396d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c4fe448569f88f16c517a7b0","label":"techniques/continuity/donor-harvest/session-donor-harvest/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/continuity/donor-harvest/session-donor-harvest/notes/adverse-effects-review.md","source_digest":"4013ec0186544efde87fd8a9c3a8438b17d69b045cdd5eb889d737ad932566ff","source_record_ids":["aoa:aoa-techniques:artifact:8e4ad786b0c525539393c1db"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c50435c16b804afbd1898c1e","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","source_digest":"98bcdb629f5518a0ab53a6a80625e7b5d39301dddb9ee136d678210ae792bd40","source_record_ids":["aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c50435c16b804afbd1898c1e","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","source_digest":"fb775ce0cc66c45f6eb9cdaa8b3d279d745c172ec4a6d06c0e8e7ec8f40c4d7e","source_record_ids":["aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9c3935def28297bf3576ec50"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c524d5278dd2cea2b259fe48","label":"techniques/execution/runtime-truth-lifecycle/one-command-service-lifecycle/examples/minimal-one-command-service-lifecycle.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/one-command-service-lifecycle/examples/minimal-one-command-service-lifecycle.md","source_digest":"046335278751bb20404da1910f4c22f38d0b81e9853ec216ceb8779488b0196f","source_record_ids":["aoa:aoa-techniques:artifact:bd84c9fe581febe98c182d78"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:25db7022958d13fb31f8a653"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c579277bae8953c2dc36f448","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/README.md","source_digest":"a4c220ee64b2e17f7959812d9125b4c48d8551fe505f2e576ae255b2f5f352f7","source_record_ids":["aoa:aoa-techniques:artifact:f12c2b5c72013647234339d9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0c013ce8584170bb598a8712"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c58eaf37e2e2b5fd1ebbfd28","label":"techniques/instruction/instruction-surface/deterministic-context-composition/examples/minimal-deterministic-context-composition.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/deterministic-context-composition/examples/minimal-deterministic-context-composition.md","source_digest":"49a38501d7b0687d2e89c67bea225c963b792cb45befc9bb4111ca007dd5aa27","source_record_ids":["aoa:aoa-techniques:artifact:0a857f8ac82ba284f6216d14"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2434,15 +2440,15 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:8d7ae5d4e8127302b195db45"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c98f6194393d574501a93037","label":"techniques/execution/ready-work-graphs/requirements-design-tasks-ladder/examples/minimal-requirements-design-tasks-ladder.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/requirements-design-tasks-ladder/examples/minimal-requirements-design-tasks-ladder.md","source_digest":"9731083a1e592dac037427a96c60b6e31021e208564db44ce4bdcefcdbb66799","source_record_ids":["aoa:aoa-techniques:artifact:ddb6bac620811a3c85ccf4a4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1b6718007454639bf9cdd071"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c9e47bb044c710aee1b831fd","label":"techniques/ingest/media-ingest/template-backed-field-extraction-after-ocr/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/template-backed-field-extraction-after-ocr/notes/second-context-adaptation.md","source_digest":"7dc7a662d3c7684acee8a6332e4bc8044ab99cdcb4e7b3f748484f3cf8d1e625","source_record_ids":["aoa:aoa-techniques:artifact:a76c231fba7c6f26d153da5e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:27c6c1f262bc0528e814b9fa"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:c9f4d40981f87db98814d2a7","label":"techniques/instruction/instruction-surface/deterministic-context-composition/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/deterministic-context-composition/notes/canonical-readiness.md","source_digest":"031c87d593c291c06f7ea99c43833818dae1e0da16b70c2366e069037b515e66","source_record_ids":["aoa:aoa-techniques:artifact:fc075b045a5308c01e4b53af"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:010f1a833244b035a3e127f4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ca03bc31613a44c38f07cbf5","label":"mechanics/method-growth/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/LANDING_LOG.md","source_digest":"e875f78557e154a8d247b716f5ddd79749e4bab8e8718bd5a4cc738de43afb40","source_record_ids":["aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:010f1a833244b035a3e127f4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ca03bc31613a44c38f07cbf5","label":"mechanics/method-growth/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/LANDING_LOG.md","source_digest":"90583f33c372afb1d6547a3d7c71247e938d6c610962febd423c215d8dcd9ebb","source_record_ids":["aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e1667361e286f80c72e4a3bd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ca5ae9a85b4e47c188039872","label":"techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/history/witness-trace-as-reviewable-artifact/notes/second-context-adaptation.md","source_digest":"44bb1b0475672c8004f58617953daec6c30fd5f0bfd599608b46bb629d3b9f83","source_record_ids":["aoa:aoa-techniques:artifact:d4618aab113442cb809c675c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cd7aa78cd08df9b305f86628"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ca6ed2b50f354d9ee0e1c314","label":"techniques/ingest/media-ingest/template-backed-field-extraction-after-ocr/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/template-backed-field-extraction-after-ocr/notes/external-import-review.md","source_digest":"a3f922c40572f086bded67563240a4baa92101d1d1ae251f1470c90fff21dc65","source_record_ids":["aoa:aoa-techniques:artifact:7c4158a807d03e8b332141dc"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ca76dbee88f5813f3e7a84e9","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","source_digest":"bb52bfe732a869da475cb05e2c2d09f71c19d51b5613de5a593b22083c317fd1","source_record_ids":["aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ca76dbee88f5813f3e7a84e9","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","source_digest":"ce6c71bd9745a92ac845b85ce5f86fa6f9e8bd3b174226e33e42b4e5fde6b1f3","source_record_ids":["aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3860cc0bf7793562d42e15a4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:caa54dc9c6df95cb17c38ded","label":"techniques/governance/practice-adoption-lifecycle/superseded-practice-obsolescence-route/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/superseded-practice-obsolescence-route/notes/origin-evidence.md","source_digest":"446c4f6016af1ff81515c230487245fbed7dac877902d714ec289ff98080ac58","source_record_ids":["aoa:aoa-techniques:artifact:328daf3ed9769bfa1dac846c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:145d4bef911b536c5b9521ec"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cad37cec47b166764fc807ad","label":"techniques/instruction/capability-boundary/skill-vs-command-boundary/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/skill-vs-command-boundary/notes/second-context-adaptation.md","source_digest":"3cb6d64413bbb8645af5670496160e6b4cd7ec95f3ef08015c519cc27199a766","source_record_ids":["aoa:aoa-techniques:artifact:1beebf8f1585e9f8f287dffb"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9995f1644e399ee461162783"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cb0e8760ce454ba1e7a983bb","label":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","source_digest":"080eb8f77966af5e34097d6a7b8fcf4455be44d82d413ec6084709006cbef2e9","source_record_ids":["aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9995f1644e399ee461162783"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cb0e8760ce454ba1e7a983bb","label":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","source_digest":"438a0f08fbb9c8b4ca5d899993c35b59340b07b791cf234ab196c5536edc7cf3","source_record_ids":["aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9bb555e5edc3739ccb297b87"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cb157ccc7781717fa563a66e","label":"techniques/recovery/antifragility-recovery/stress-receipt-reground-closeout/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/system-recovery/stress-receipt-reground-closeout/TECHNIQUE.md","source_digest":"214775fdb2447654c2c631bc86aa8bf0d80edb1cf84dfffa528764d72f06bb76","source_record_ids":["aoa:aoa-techniques:artifact:2cb5af8a68242b1e3c187f3f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:fbd467901feb694385c7163a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cb3ecd358588e31232f68210","label":"mechanics/release-support/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/LANDING_LOG.md","source_digest":"947565c6126d54bed011d2d94d28276109bfb2e7802432d51e1a87267ab099fb","source_record_ids":["aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:fbd467901feb694385c7163a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cb3ecd358588e31232f68210","label":"mechanics/release-support/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/LANDING_LOG.md","source_digest":"b10c39b9cfc44721c74fa62900dd3d3e9adb372a63063fdfef58f4887fe98672","source_record_ids":["aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e149c66942cf4a3849902e23"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cb564dc7df03996c4249be30","label":"techniques/governance/approval-evidence/fail-closed-evidence-gate/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/fail-closed-evidence-gate/TECHNIQUE.md","source_digest":"ad13a807404e2b016e0851c35d69d757d36df91a66d8ee7c5518527b585ec681","source_record_ids":["aoa:aoa-techniques:artifact:f452271ce0b41ea2499f9a3a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:64947c8dca361f2aa5e50b93"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cb656b24ad84543ed885a627","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/semantic/SKILL_SUPPORT_SEMANTIC_REVIEW.md","provenance_ref":"deterministic","semantic_key":"docs/SKILL_SUPPORT_SEMANTIC_REVIEW.md","source_digest":"17cfe73bfa4b6a8424351c2f842c7862cc18aae34d216564cd0e44d44dc7c47a","source_record_ids":["aoa:aoa-techniques:artifact:e66619707ba54a89aa714842"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:deed7f8749125ba10207f02d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cb74d41b37ba3a7ce977b299","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","source_digest":"a95513813a68317bb38f73b94efad3a59f1fb6c5c230aca5593bff757220c02c","source_record_ids":["aoa:aoa-techniques:artifact:ff3eb7e7bed98dc8dc74ff0d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2454,7 +2460,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:4bc426b41811b9f2c9fa0264"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cd2aff36f58163e0ca0f77e5","label":"techniques/governance/decision-routing/decision-fork-cards/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/decision-fork-cards/notes/origin-evidence.md","source_digest":"cc8a766b66d1245f7d8b19f54ce81332a99636e9f48310f1a4558abdb5e3763e","source_record_ids":["aoa:aoa-techniques:artifact:fed07009388e07ceef11d5ea"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bfd6bf0940cb6a03986a88f1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cd68cea2a95ebfb41db11f5b","label":"techniques/governance/practice-adoption-lifecycle/local-pattern-adoption-gate/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/local-pattern-adoption-gate/notes/origin-evidence.md","source_digest":"2dceb7105c0f36070770efdd56f48d16b8eb79992588cc8bf279c252d3200eab","source_record_ids":["aoa:aoa-techniques:artifact:713beaf47767f8ddeda5bb50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1ae8c6a765b3fa1e9f5736c6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cd862827153afa9bd5985504","label":"techniques/continuity/donor-harvest/session-donor-harvest/examples/minimal-session-donor-harvest.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/session-donor-harvest/examples/minimal-session-donor-harvest.md","source_digest":"ce08e9884357ce8cda63ec1c91a43fe691e3c8928b35ef2f89141e74c84637a8","source_record_ids":["aoa:aoa-techniques:artifact:598b031bfa584deece302698"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:15d71e441d19f9b40aacd7c0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cdabfaa85591302fa2aecde4","label":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","source_digest":"bf579b40668ef5dae847ddf4699afad6e0133be7d7823928ef2187a82b61a1fb","source_record_ids":["aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:15d71e441d19f9b40aacd7c0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:cdabfaa85591302fa2aecde4","label":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","source_digest":"091a6c18363c208b8e4c711d2b0f60491b1fd6413a8574e803e11bf3dd42bc41","source_record_ids":["aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bbc10d00a81b44502e34f378"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ce565a98680ca1fa2f596797","label":".agents/skills/aoa-source-of-truth-check/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-source-of-truth-check/SKILL.md","source_digest":"a73f84a7e75fbe3b94d62c2da394d87b11bf085a1540647dca507e2e66072b60","source_record_ids":["aoa:aoa-techniques:artifact:8daa7aa5b33b3b058404b8f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1c669e9afd690688d1454271"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ce6243f785868bad13123d1d","label":"docs/source-lift/KAG_EXPORT.md","provenance_ref":"deterministic","semantic_key":"docs/KAG_EXPORT.md","source_digest":"7c87ca6ecada0a83f2148513ed809303d816c35234a5c360bf211f8760db7d26","source_record_ids":["aoa:aoa-techniques:artifact:824946171e82d0b0cf7a6c9e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0865aee371f403821c89bc2f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ce6c9463951faaee83bfe87f","label":"techniques/execution/ready-work-graphs/requirements-design-tasks-ladder/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/requirements-design-tasks-ladder/notes/canonical-readiness.md","source_digest":"2dbdda32d575980374f548f45d686935831e7e6e79400f81f63441e18687f052","source_record_ids":["aoa:aoa-techniques:artifact:0a2765c29f9db5f40c2640be"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2472,8 +2478,8 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:a15b555991f1d0b8aa4d87d8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d067f9283b7e58b58ed26c49","label":"templates/ADVERSE_EFFECTS_REVIEW.template.md","provenance_ref":"deterministic","semantic_key":"templates/ADVERSE_EFFECTS_REVIEW.template.md","source_digest":"bcb9daaf6f4144b26deb26ec652cb18b6f5a18d5dbcb45da6ef8584c1aae699a","source_record_ids":["aoa:aoa-techniques:artifact:0f6ecae19ba0d2152c5dbf1f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:eb3d7fc9164dc018d04b4122"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d0abc42424ba64715454c8cb","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/docs/EXTERNAL_TECHNIQUE_CANDIDATES_PERSONAL_MEDIA_INGEST.md","provenance_ref":"deterministic","semantic_key":"incoming/personal-ingest-wave-2/docs/EXTERNAL_TECHNIQUE_CANDIDATES_PERSONAL_INGEST_WAVE_2.md","source_digest":"b83fe5faec368b3091dc504a5563448f7e139cbd24d2d88dfd3518ea57e18b6d","source_record_ids":["aoa:aoa-techniques:artifact:3feef2dd8124efaaf88da3ac"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5aed49dee483b72c8b8c5271"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d0f00423a0e67d395df39c68","label":"techniques/recovery/antifragility-recovery/degrade-reground-recover/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/system-recovery/degrade-reground-recover/notes/origin-evidence.md","source_digest":"a55d658d7ad23f859dd3da45b05d41b1ef6e8ec7f39e36b593656b94d71bb46f","source_record_ids":["aoa:aoa-techniques:artifact:a66988f50dae52b2644c3666"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d0fa37ada7931d89e16717af","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","source_digest":"9de3b73ba4197d44738132db355d6ed656c9cd52efe24ea7e1a1d2440d419192","source_record_ids":["aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","label":"DESIGN.md","provenance_ref":"deterministic","semantic_key":"DESIGN.md","source_digest":"8b75f6fd8315e0ad560286be23a5b1bcdbd13473e3841ce9c1fc8b06375efbf8","source_record_ids":["aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d0fa37ada7931d89e16717af","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","source_digest":"195edc833440680ce5b8f3603599cf604319b6715bace30940a4c07948c109fa","source_record_ids":["aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","label":"DESIGN.md","provenance_ref":"deterministic","semantic_key":"DESIGN.md","source_digest":"d0beb1c14e292bcb38af7f015e592b61dba7dae9f066892e999e873b61ac1127","source_record_ids":["aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:221ac0588f5be5f82fa9d4c4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d105ea0df9ab357f95d0241a","label":"mechanics/experience/PARTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/experience/PARTS.md","source_digest":"f32c0cb242b4ca7bdbbf62b880f29c9ca94b081282ce37d52bef459ca1b69604","source_record_ids":["aoa:aoa-techniques:artifact:66fbb26dd96eaa4473a83948"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bbe3c968658bbc47df7eb131"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d118e3ad194721c4bfeaf7ff","label":"mechanics/checkpoint/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint/README.md","source_digest":"9052bf44e8cc3f93c21a170a6b05be928fc7f7289df5722df219ff4b57ae0fb7","source_record_ids":["aoa:aoa-techniques:artifact:b0e9ecf9b03e64ab947c2a82"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c25c1a92122af796072b8399"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d1214eebc5085a8f343338eb","label":"mechanics/method-growth/parts/technique-to-skill-handoff/README.md","provenance_ref":"deterministic","semantic_key":"docs/TECHNIQUE_TO_SKILL_HANDOFF.md","source_digest":"d32437d158dfac5205c193f5d3361deb8dcc227db2770617cfcf71ef16f83b43","source_record_ids":["aoa:aoa-techniques:artifact:bc9ba6ee2fae3c974c4258b4"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2492,7 +2498,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:33f982a5fd6f4b032b13bcba"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d22a2f986e7f53463fd2ce62","label":"techniques/recovery/diagnosis-repair/session-drift-taxonomy/examples/minimal-session-drift-taxonomy.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/session-drift-taxonomy/examples/minimal-session-drift-taxonomy.md","source_digest":"5eccdeddd1f1a36ccedd2a59a99a0dccd452e4de0ee9e8a98148d9604bafa1ad","source_record_ids":["aoa:aoa-techniques:artifact:7dbfd7b41561838a4056976a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ab321b78dbed0e87977a2313"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d2926be7946dba8fe98a6e27","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/docs/TELEGRAM_ACCOUNT_AUTH_AND_SESSION_BRIDGE_CLOSEOUT_MEMO.md","provenance_ref":"deterministic","semantic_key":"incoming/personal-ingest-wave-2/docs/TELEGRAM_ACCOUNT_AUTH_AND_SESSION_BRIDGE_NARROWING_MEMO.md","source_digest":"54f9d53c9557352308bdcf6226ad77169314976049821be487d677874d33f0c5","source_record_ids":["aoa:aoa-techniques:artifact:f1b7059f6f816e45a7172594"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5c139b8eb3bd10f4b176b2ef"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d299e80d057b871dd080d219","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/examples/challenge-claim-minimal-public-safe.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/examples/challenge-claim-minimal-public-safe.md","source_digest":"630e097024621871ae616acfb46c4aef414aa9a6d64013628e7152a4157fbc5f","source_record_ids":["aoa:aoa-techniques:artifact:d9c7cd37a67204b5d368f8b6"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:011977f7749984902d88b61f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d2d809135eeab320d2d4b3ae","label":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","source_digest":"d853bfe094387817f42619edb7f248865f547190d6cf8c26a03f0d6fe5097dd3","source_record_ids":["aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:011977f7749984902d88b61f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d2d809135eeab320d2d4b3ae","label":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","source_digest":"30c158aba4928224c96162bf753599528da1f3ab8262cacda5f4f8c7a083cbc4","source_record_ids":["aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:511d972ef535e0a597b3a39f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d2d93bc4035761c4d33b4767","label":"techniques/proof/owner-truth-closeout/github-only-owner-endcap-with-reality-sync/checks/github-only-owner-endcap-with-reality-sync-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/github-only-owner-endcap-with-reality-sync/checks/github-only-owner-endcap-with-reality-sync-checklist.md","source_digest":"07b93b7d6b7d05e6c80385b3b264cee2ef187d0b94b14290445fbeb86729be21","source_record_ids":["aoa:aoa-techniques:artifact:746363f505b01275e1e01c8e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:226261849f5c856a80b95557"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d334b831cdb202fe0ff6f2ef","label":"techniques/instruction/instruction-surface/profile-preset-composition/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/profile-preset-composition/notes/second-context-adaptation.md","source_digest":"86001316a0dc482cf0a88784e4bd8c57e70a9f3b77429fad6106b33b7296adf1","source_record_ids":["aoa:aoa-techniques:artifact:a0f92c08d01d95501b7118c7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:77dd3e829108b1464f95adfb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d3b24d96b3df1ea2ff215fd9","label":".agents/skills/aoa-dry-run-first/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-dry-run-first/SKILL.md","source_digest":"fef64c9479e51af6abcb096ae402d11dcb0946c828f95ace08d077cff3f0b1f0","source_record_ids":["aoa:aoa-techniques:artifact:a328f835b84f584d2051c0e1"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2500,10 +2506,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:889ad7ebdabf117573af5efb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d3cb71f240e081edd1559ae5","label":"techniques/execution/agent-workflows-core/stateless-single-shot-agent/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/stateless-single-shot-agent/notes/adverse-effects-review.md","source_digest":"2201ca73997f59d3a583394a73c69d4e3281616a937074b32a7bd794e21c8eff","source_record_ids":["aoa:aoa-techniques:artifact:1311f386d418afffaf0f9ff3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0627bb341f2d4e6097d71062"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d3e34de8a811310efee88021","label":"techniques/proof/owner-truth-closeout/audit-to-closeout-proof-loop/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/proof/owner-truth-closeout/audit-to-closeout-proof-loop/notes/adverse-effects-review.md","source_digest":"7739ddb78a6c5ebff62e38e32db3a535d4039c32b23673cce76d58dafe242528","source_record_ids":["aoa:aoa-techniques:artifact:db835dab8287847fd7fdc6b6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:10319f0d5abde4e48bb16d3d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d407bb1647c258e4d3451ca9","label":"techniques/proof/published-summary/telemetry-integrity-snapshot/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/telemetry-integrity-snapshot/notes/adverse-effects-review.md","source_digest":"0213baee11e89ee0e76a0b370db37705206d12fc1470303dac780f751427631d","source_record_ids":["aoa:aoa-techniques:artifact:18a15ed29dddfa298f96e2d9"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d492d05e4ff6a9abedccb09a","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","source_digest":"d8b0fce9b5596e6c853317ddf2329d536274be1dcdc189e5daf00dbc519e972d","source_record_ids":["aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3f5cb9568cb25ef8b53f78a6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d49879fcb96aca50a3682838","label":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","source_digest":"9be239bae17d2fa5fb7202749468cf4f57a8b9355f442b3d02501aeb314cc53c","source_record_ids":["aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d492d05e4ff6a9abedccb09a","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","source_digest":"3a2c6c5337139cefc16df79972f2dee84af1f6e6649143c17fa483eb18b9404c","source_record_ids":["aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3f5cb9568cb25ef8b53f78a6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d49879fcb96aca50a3682838","label":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","source_digest":"15ceebdfd5fb29bcb87960b56df44e3acdf8f9b7d17f78d5bf4ba2d5d1d4f234","source_record_ids":["aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5d36ed9a80c6b5ef3346805f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d4b986c2218164a7d0b0f248","label":"mechanics/antifragility/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/antifragility/README.md","source_digest":"83289aaeb26d0407ceeb6282965532dbcde4597c3c48cd90b9329574fc8aeccb","source_record_ids":["aoa:aoa-techniques:artifact:94c417f46da3ddf6faa96e11"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c6b2609cd638322b05944583"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d4ce949485167816a874ef28","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","source_digest":"c6b0db7f8c31612d204b07c63d6384e421b8772445a57b5f68f16fe582b6535a","source_record_ids":["aoa:aoa-techniques:artifact:c9107011968421971fabafeb"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c6b2609cd638322b05944583"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d4ce949485167816a874ef28","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","source_digest":"9789eda1aa58ec86d62e45426b8652502815d80c5bc172730abb013a33fad6d0","source_record_ids":["aoa:aoa-techniques:artifact:c9107011968421971fabafeb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cbea0846087a6cef8f4976da"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d549f7c566aecbe4ca9901df","label":"techniques/instruction/skill-discovery/upstream-skill-health-checking/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md","source_digest":"03f9688cc68bbf6180c4091417b769275a61499e3d3aa33db86065a74ee69167","source_record_ids":["aoa:aoa-techniques:artifact:a46ee9677af6f31767497cfc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a37842b81607adc982125720"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d5777210eb4a39aabc1015ea","label":"techniques/execution/intent-chain/new-intent-rollout-checklist/examples/concrete-non-ui-intent-rollout.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/new-intent-rollout-checklist/examples/concrete-non-ui-intent-rollout.md","source_digest":"7f0e80e9455efdad77b42fb9640b40dd918bee4f786395e46da5f78e2fd088cd","source_record_ids":["aoa:aoa-techniques:artifact:bfe7ff500da630d67d766435"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:76ee444acc2db68916f3ecd1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d59b6f6ffc8182f5fd0dd240","label":"techniques/continuity/review-compaction/compaction-resilient-skill-loading/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/compaction-resilient-skill-loading/notes/second-context-adaptation.md","source_digest":"b477c45b037ccafe980206510961e00d6945706fe80de5cfe0e1416b18a6ea18","source_record_ids":["aoa:aoa-techniques:artifact:1305b90ef18e3683235d07be"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2526,14 +2532,14 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:00cc17a7f6c71a874299a932"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d87c8e8076e0ae1d27eda84b","label":"techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/intent-plan-dry-run-contract-chain/notes/origin-evidence.md","source_digest":"480e38bb44f614e23822df817c9d10e4bf28a42298df68d82fe8ab2fde9f2bc6","source_record_ids":["aoa:aoa-techniques:artifact:a0138fdf1ac12aabdb029c8a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:864d928255cd13bb2b34caa0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d88ab7dee029576028604ca1","label":"techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/examples/minimal-intent-chain.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/intent-plan-dry-run-contract-chain/examples/minimal-intent-chain.md","source_digest":"2cd742d4fea4f6793135727429381441771aefbd000284f5117b68b70ef37436","source_record_ids":["aoa:aoa-techniques:artifact:6a8e3af2a7fdbc00fa9cfa38"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bc04e40893ffcb9d51ce614e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d8cd6bc72cb4de8fb30bfa60","label":"techniques/execution/ready-work-graphs/dependency-aware-task-graph/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/execution/ready-work-graphs/dependency-aware-task-graph/notes/adverse-effects-review.md","source_digest":"40981023a644bf82629e6566d60e9de03caf6f9e3501d07aa56f652efc22e1c6","source_record_ids":["aoa:aoa-techniques:artifact:1efa616703bb773f6eb47e00"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0a7d45d25ac918469a7c202b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d8dc62a22d2c8d0275d9717c","label":".agents/spark/scenarios/test-factory/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/test-factory/examples/result.example.md","source_digest":"6846832d4d8535375c3efd95d930776fb3a525d9a64294f836f830ccd44e9c51","source_record_ids":["aoa:aoa-techniques:artifact:97d951cd0207080221b62d57"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0a7d45d25ac918469a7c202b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d8dc62a22d2c8d0275d9717c","label":".agents/spark/scenarios/test-factory/examples/result.example.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/test-factory/examples/result.example.md","source_digest":"945a7915d73a82734836f2545364c5c13d9ccaa25b9e45de201ce0156eed09cb","source_record_ids":["aoa:aoa-techniques:artifact:97d951cd0207080221b62d57"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:397ee57afcd203d06ed446f4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d8de4fd2cd28d5368a632c84","label":"techniques/proof/review-evidence/single-scoped-evidence-reference/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/single-scoped-evidence-reference/notes/canonical-readiness.md","source_digest":"56d844baf456af38b93f018d78c408585b6935df167877047489549dd6f67b54","source_record_ids":["aoa:aoa-techniques:artifact:1fc0f910d9f01a8bc586a3d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ecfc554f689beac13b8db5bc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d957ba6aecb8a2ccff1e622c","label":"techniques/history/history-artifacts/versionable-session-transcripts/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/history/versionable-session-transcripts/notes/external-import-review.md","source_digest":"f824fee2b4d3685d57cc220c7163305c33ef4fbde6a33c7fbeef8821543532fa","source_record_ids":["aoa:aoa-techniques:artifact:fdd9a3537320fce34f4518fb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:460b687597965f9957007646"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d95c6581314925e656c29518","label":"docs/readers/source-lift/README.md","provenance_ref":"deterministic","semantic_key":"docs/readers/source-lift/README.md","source_digest":"be53015360b32aa00eb88d59f64bebe306dfae2f6dae3307bf3c7fa825e658c6","source_record_ids":["aoa:aoa-techniques:artifact:0af7b827a80d1aac246e172d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0766969695a59702ee0e8b47"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d983f78c434212446eaf200b","label":".agents/skills/aoa-session-self-repair/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-session-self-repair/SKILL.md#generation-2","source_digest":"2fdc2159700fa50547277af53047cbdd6f04618c517d703577c4c09e98a83644","source_record_ids":["aoa:aoa-techniques:artifact:2d146c79330d6387c38ca15e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:10ffe417d9576d306b725276"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d98fdbbabf6c6406b752dc19","label":"techniques/governance/automation-readiness/automation-fit-matrix/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/automation-fit-matrix/notes/origin-evidence.md","source_digest":"5de79536927e540790d7440adbcb7edff84345e8a921bf538737c3be732c990b","source_record_ids":["aoa:aoa-techniques:artifact:6e41d72465a46e639793641a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dbc9a338828d881346ca8692"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d99bf70c88dcbbe772417960","label":"techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/checkpoint-bound-self-repair/notes/canonical-readiness.md","source_digest":"17ddb734a31bc876d81dc3877bf0d9a4e4042bc53fa7da6959507d55592de888","source_record_ids":["aoa:aoa-techniques:artifact:314954ac1748b9101fead3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:80675f891dbdb2d4b9dfe4e4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d9cab808f1508473a016100b","label":"mechanics/questbook/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/questbook/LANDING_LOG.md","source_digest":"784ee888bad83a3357f52a74278ac5189655c71f7454c95024658762772886d9","source_record_ids":["aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:80675f891dbdb2d4b9dfe4e4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d9cab808f1508473a016100b","label":"mechanics/questbook/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/questbook/LANDING_LOG.md","source_digest":"1f26b74709cb90876b3fae70a5be5b1e29b41192eb3f5c7f1d121eed809a8d89","source_record_ids":["aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:971d80591934dab19f7f8908"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d9dd9f555d6cdbd56e79a558","label":"techniques/ingest/media-ingest/two-stage-document-ocr-pipeline/checks/two-stage-document-ocr-pipeline-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/two-stage-document-ocr-pipeline/checks/two-stage-document-ocr-pipeline-checklist.md","source_digest":"564257857076693c73cb6999389b7116d5121b998d6232556a4a91feea7780a8","source_record_ids":["aoa:aoa-techniques:artifact:d14d382a9e6e3ffd075b8f4c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d3e6fd6d6d7243d719941d63"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:d9fc96d004a6621c97812e47","label":"techniques/continuity/review-compaction/compaction-resilient-skill-loading/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/compaction-resilient-skill-loading/notes/external-import-review.md","source_digest":"d07d5e81fe9273976c0e183b5b9738ca97cea6eec026f51b2cbb9015e567669b","source_record_ids":["aoa:aoa-techniques:artifact:3214b651b89bdd7e8a5f6467"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b39961a80e3e86daf30828aa"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:da847ef79967778b937b0dae","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-c-execution-owner-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-c-execution-owner-review.md","source_digest":"28f832461e6ccb529a34218dfe0fc666050eed4f85113f51cd253f1295fd07d3","source_record_ids":["aoa:aoa-techniques:artifact:890889554e1cec9079f72f86"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2551,11 +2557,11 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:fd47261ae69f50158f266544"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dbd6ba9b5735e010effb4761","label":".agents/skills/aoa-quest-harvest/examples/runtime.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-quest-harvest/examples/runtime.md","source_digest":"771713c03cdb2d6277f2491ef74e8038bf43b13f050c7cc3793e323405e66592","source_record_ids":["aoa:aoa-techniques:artifact:94cae84c32987edd9538d6fa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4a265c97c7a9faca1d98e672"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dbe19415f5394abe7beaea26","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","source_digest":"2e481c9e6fc06d77e3e29d6daa211c4a6ac30a557a981f892afd3041cf996660","source_record_ids":["aoa:aoa-techniques:artifact:31bd9ed4776744c6bee438e4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d6be44c1cdc9148d418a323f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dbecf4bea9b01d589df435fc","label":"techniques/ingest/media-ingest/telegram-export-normalization-to-local-store/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/telegram-export-normalization-to-local-store/notes/external-import-review.md","source_digest":"3a80f577d8cc40642d51826afdc818fe4309ce0c7e877ba59b27685ce823033b","source_record_ids":["aoa:aoa-techniques:artifact:1ad3864abfff4fd72f6b2cc2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c22c249c88b41751271e550e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dc1f978b94b27c21942addd5","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","source_digest":"c8b3f55058e9cb439298cf4eb7465ccdb1907cb05d3f427325658a201a17a2aa","source_record_ids":["aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c22c249c88b41751271e550e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dc1f978b94b27c21942addd5","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","source_digest":"102ba42a94616ff76d6d4c3887c758193a37c8da4def3b8de1db8f337b310228","source_record_ids":["aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d933b894b739c95285bc2006"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dc50a36a3953dbd24546bfd3","label":".agents/skills/aoa-source-of-truth-check/references/authority-surface-shapes.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-source-of-truth-check/references/authority-surface-shapes.md","source_digest":"cb293a3c0910a6ff0921e49fb3de1c4fdbb06e66bd4de19cbcb445bb87af769c","source_record_ids":["aoa:aoa-techniques:artifact:59a12300c1bb3b52ad26a3e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a449f3c6fc5141bc9c76748d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dc740402e01a21e1699375d7","label":"mechanics/distillation/parts/technique-reform-ingress/reports/technique_family_scout.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reports/technique_family_scout.md","source_digest":"40d08c99e7b8c43b5fcdb8d5d341d978f09c1dc74c5e483c9a5baf0d6841c78b","source_record_ids":["aoa:aoa-techniques:artifact:8340c564c99b04b2d2bc9d0a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0b850f2205124f90996d1ed5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dc90347e2639b1a90d9bdb10","label":"techniques/execution/intent-chain/new-intent-rollout-checklist/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/new-intent-rollout-checklist/notes/canonical-readiness.md","source_digest":"6d021e3cf90e40fbdcf0b6ce2afe6ee57b9f24f9e41a60392348a351c15d43f5","source_record_ids":["aoa:aoa-techniques:artifact:0b514ec0f40107f2d5885231"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c073f923084e3be188dc6970"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","label":"docs/validation/VALIDATOR_TOPOLOGY.md","provenance_ref":"deterministic","semantic_key":"docs/validation/VALIDATOR_TOPOLOGY.md","source_digest":"ca9aa01e9968591774aed184b0476fe5caa869b62204dd913091c1ae2e080716","source_record_ids":["aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c073f923084e3be188dc6970"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","label":"docs/validation/VALIDATOR_TOPOLOGY.md","provenance_ref":"deterministic","semantic_key":"docs/validation/VALIDATOR_TOPOLOGY.md","source_digest":"d741cfc8f9001411bf595b8e61f82308c5adbe7063e4bceddbd5f32e589c23f4","source_record_ids":["aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:61741115aadeff15c496af2d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dd31367448650bbfcb0efbbc","label":"techniques/instruction/instruction-surface/single-source-rule-distribution/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/single-source-rule-distribution/notes/adverse-effects-review.md","source_digest":"e039f2f1dd620ea48cc9cf64c5b5de201318e5d98c6a8539f94682859bcd3813","source_record_ids":["aoa:aoa-techniques:artifact:1aff5de6da719f00a6b52451"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f20d173e0089aba8f4d5f5ca"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dd4bce8ab05c554941108ec0","label":"techniques/governance/approval-evidence/fail-closed-evidence-gate/checks/fail-closed-evidence-gate-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/fail-closed-evidence-gate/checks/fail-closed-evidence-gate-checklist.md","source_digest":"45e23ba6d274b11ac9093707df7298da633a7d4dda2cdd9ef62e131249f5480d","source_record_ids":["aoa:aoa-techniques:artifact:ea74f3c9a143c34fa99dfde8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c4345f68a768f506fbe470f7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dd4d37937ebc8f434af99190","label":"docs/readers/source-lift/TECHNIQUE_EXAMPLES.md","provenance_ref":"deterministic","semantic_key":"docs/readers/source-lift/TECHNIQUE_EXAMPLES.md","source_digest":"f2330f9e01ebb8d5455ce79b967b37d2061d166093810d1d5abea3ecb1869d98","source_record_ids":["aoa:aoa-techniques:artifact:97795523eabb9f2398d3d564"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2566,7 +2572,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:8fd506b90aee538356b1d5dc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ddc21b5ae0b14f29d05e3029","label":"techniques/execution/runtime-truth-lifecycle/one-command-service-lifecycle/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/one-command-service-lifecycle/notes/external-origin.md","source_digest":"25d8ddeeb0e9ed93004302399ed31b2545475c952902ca438555b5fc66f33f02","source_record_ids":["aoa:aoa-techniques:artifact:b3300e2dfe4e69b2fc21ebbf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:07d2283661b6173af8df0399"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ddd032bc0e4c7bbd774a178a","label":"docs/readers/README.md","provenance_ref":"deterministic","semantic_key":"docs/readers/README.md","source_digest":"da12f273c243fefe83cbadfdd28c24a70b2852183d5f2f896d5175829b3cd291","source_record_ids":["aoa:aoa-techniques:artifact:6be2d5a266f8a31f35dafc6f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d10c426ecb2c56a7e520e1b4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:dded1f80acccc751b90a8a7f","label":"techniques/knowledge-lift/kag-source-lift/bounded-relation-lift-for-kag/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/bounded-relation-lift-for-kag/notes/origin-evidence.md","source_digest":"24c41df2568e79e9c766ec6e2b82521e54751e06c059d7a5b68ba246cc9f2622","source_record_ids":["aoa:aoa-techniques:artifact:cf7769c0a68698ba56b756e0"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:de20efc7278f576569a9167e","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","source_digest":"c1d6a27422718eae59ed695ee761638c906db837a1451bb60a11bb47437928c2","source_record_ids":["aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:de20efc7278f576569a9167e","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","source_digest":"e1b2a2bcc7b614993dad96389e1752e6cd96aa7022f23cb141307d3b11ebcb64","source_record_ids":["aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:48c3cb38b0dd177cee09d535"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:de699d7e8d7fa60c8fd36b28","label":"techniques/instruction/capability-registry/capability-discovery/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/capability-discovery/notes/second-context-adaptation.md","source_digest":"5234b1031d407a050dd9d4062844f7cf7b8ec33851a85d3cd72ef10578f72810","source_record_ids":["aoa:aoa-techniques:artifact:406588cf17f70970170103ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8dc829e2b83e630c483a2a81"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:de7f07d86f6ddd88d25b2fec","label":"techniques/execution/runtime-truth-lifecycle/one-command-service-lifecycle/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/one-command-service-lifecycle/notes/external-import-review.md","source_digest":"4060e3feb432b5f1bb2a3911041bc0ccd4111de7ca1fc57968be92859e666cfb","source_record_ids":["aoa:aoa-techniques:artifact:6619541374acff8a5d7ce30f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:88a4d6ff5e4be16355b80233"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:de8c88a306ddf74db4482a4e","label":"techniques/proof/published-summary/required-vs-optional-source-rendering/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/required-vs-optional-source-rendering/notes/second-context-adaptation.md","source_digest":"e45d8be6bd2d3ba2557f5288afe86636aba7c95865fd9fd73a64010a7af0de02","source_record_ids":["aoa:aoa-techniques:artifact:1225a2a36eb697a3b3e9062b"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2590,16 +2596,16 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:dbd6d6f449f971a6303e3bc0"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e2901ed04916b4b2aded8dec","label":".github/ISSUE_TEMPLATE/canonical-promotion.md","provenance_ref":"deterministic","semantic_key":".github/ISSUE_TEMPLATE/canonical-promotion.md","source_digest":"bcdd6efa3b08b2343d993b6ae746f81160b5dc1e78a86448b0d34f69f7086b28","source_record_ids":["aoa:aoa-techniques:artifact:5ea6a99ea509e9210150d813"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:209b2b50b0258b3e83397784"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e2a1a5fd88e032cc97c93711","label":"techniques/proof/owner-truth-closeout/workspace-root-ingress-and-mutation-gate/checks/workspace-root-ingress-and-mutation-gate-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/workspace-root-ingress-and-mutation-gate/checks/workspace-root-ingress-and-mutation-gate-checklist.md","source_digest":"ada365d096437b4210525b9d223ee9a85bead07f43f1ed1526d4da30ef9c789c","source_record_ids":["aoa:aoa-techniques:artifact:12c86482e6d0b465bfce895b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ae2b87fa0b9f0dd26ac2db30"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e2c037fc08f460af5b98f65f","label":".agents/skills/aoa-session-progression-lift/references/stats-event-envelope.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-session-progression-lift/references/stats-event-envelope.md","source_digest":"4a83bd53c13f34d8355fdf7dfaf6266aa99c4e90c63e227dc426600de738f7bb","source_record_ids":["aoa:aoa-techniques:artifact:5cd7be6ce919eaae11a9f553"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","label":"mechanics/audit/parts/promotion-readiness-matrix/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/parts/promotion-readiness-matrix/README.md","source_digest":"08ffe0eded90cc5605649ccbc6598a166a85a70a4980ec965d1f2856a27104c0","source_record_ids":["aoa:aoa-techniques:artifact:939587694ad1459c4120bb30"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","label":"mechanics/audit/parts/promotion-readiness-matrix/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/audit/parts/promotion-readiness-matrix/README.md","source_digest":"38d84f2ccbc77f772da420de543747b02bb46f4320e99a6fa361231c258db473","source_record_ids":["aoa:aoa-techniques:artifact:939587694ad1459c4120bb30"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a20636241a8dc5adffe6d7b1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e3cb48f37e8bfa1aaab9fd0f","label":"docs/review/CANONICAL_RUBRIC.md","provenance_ref":"deterministic","semantic_key":"docs/CANONICAL_RUBRIC.md","source_digest":"b46192a56a5656b4845abe9782910fb8ccf3f37c857737bf1d2d9cd3db89e1d1","source_record_ids":["aoa:aoa-techniques:artifact:b2612e9335e498d648ec4fb5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e421d7e64513bbb97477d9b2","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","source_digest":"3b630289df6edfe51439f372312f94d403cff664eff5d0c0ce2e67711a7d4185","source_record_ids":["aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:951f052a3c46f816fecc2f3b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e44bfb55f56e312551f91113","label":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","source_digest":"b5ef24d6e3877bf40d3ec1fa663fdb44d8cf38a38b5763e0b471fdea549f662b","source_record_ids":["aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e421d7e64513bbb97477d9b2","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","source_digest":"1647146c2720f5c822d9e6ec80f27db33bd57aa5d2120b29517e32c004168ba2","source_record_ids":["aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:951f052a3c46f816fecc2f3b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e44bfb55f56e312551f91113","label":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","source_digest":"2646a47a8231225156bb3ff4a545589fe5b58fbbffa4cd80403ed3fa034b28e3","source_record_ids":["aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4b9425834f3efcfe254951d5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e44decf53b5296c23a6dc7ff","label":"mechanics/experience/legacy/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/experience/legacy/README.md","source_digest":"3b29856f899f9d927a930789c8c274cbe85e3ac890320a6094ec28d27e9be391","source_record_ids":["aoa:aoa-techniques:artifact:eb62b607c7d30d10699c6443"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f578516548354d5981eb1844"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e48d3d71c07b6a1bed5df215","label":"docs/review/README.md","provenance_ref":"deterministic","semantic_key":"docs/review/README.md","source_digest":"d7b4739bca3e8c736defdb89c9be47c908808d757407dca5bd7bc583933261a9","source_record_ids":["aoa:aoa-techniques:artifact:e708b577669fbd578dee31d3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:08b9cbbc688a1f382cb4a26b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e5012aecf268b31104cca41e","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-tool-proxy-runtime/support/CODEX_HANDOFF.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-1b-tool-proxy-runtime/support/CODEX_HANDOFF.md","source_digest":"e7df3b0002c5181b6571c4507d86b9b0cd3135df15846f31ab0ec5c43b73b5ea","source_record_ids":["aoa:aoa-techniques:artifact:135790aad8ff2a807d02701c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0bc0dc0a96b74bd1b64768ed"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e53cf46f32c489e6b7be7eaa","label":"techniques/execution/runtime-truth-lifecycle/render-truth-before-startup/examples/minimal-render-truth-before-startup.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/render-truth-before-startup/examples/minimal-render-truth-before-startup.md","source_digest":"15063d331bdf131400b7c55179aaf36201bb3a7e929482d507de4edc2953db2d","source_record_ids":["aoa:aoa-techniques:artifact:bcd6ec85336f979f0d4caa74"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4675faf4d6dc0270ee000fb7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e54aee82c9cd40aca983df2d","label":"techniques/continuity/handoff-continuation/channelized-agent-mailbox/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/channelized-agent-mailbox/notes/external-import-review.md","source_digest":"6aee81d48c9610fab4f843a4a47d915d2efc9b24a85f5360c0fed183bc6d40df","source_record_ids":["aoa:aoa-techniques:artifact:615db5d657b85c0442c8a0c1"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:164e0f08224d4f30287120e6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e5665bedfd947c760e60fde0","label":".agents/spark/scenarios/test-factory/README.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/test-factory/README.md","source_digest":"35e117dcb1aeae9779f54b228dcc67c8c462887ba09dd23557fa32be01c2afd2","source_record_ids":["aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:164e0f08224d4f30287120e6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e5665bedfd947c760e60fde0","label":".agents/spark/scenarios/test-factory/README.md","provenance_ref":"deterministic","semantic_key":".agents/spark/scenarios/test-factory/README.md","source_digest":"fa82f0e7f6b0a395dc378bcbaa822d13dc39b923ff730951a5a0e1f95b26a288","source_record_ids":["aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:076c166e9bb8dbcce0381f3a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e585ea06fea1df27bad01eac","label":"techniques/knowledge-lift/kag-source-lift/bounded-relation-lift-for-kag/examples/direct-relation-to-selection-hint.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/bounded-relation-lift-for-kag/examples/direct-relation-to-selection-hint.md","source_digest":"ca0b52f167824283ae2fccd694a7f18d82432b0e2a0b16fa0b1ee55f140efab9","source_record_ids":["aoa:aoa-techniques:artifact:4955a0c83358c661ce06cd3d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6402a1a49413d4b59b28c467"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e6026b65095c85f156fd0371","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-registry-discovery/support/CODEX_HANDOFF.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-1a-registry-discovery/support/CODEX_HANDOFF.md","source_digest":"37749bd7aa95da1ae5ed331b9958af830191c807f1f756cd0c5f2c4115a6f12b","source_record_ids":["aoa:aoa-techniques:artifact:d9ac278f5b81c5f2137bffc2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8f12d665e6b23f8bb3bc52ea"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e609175e88db0d1da19f2553","label":"mechanics/rpg/PARTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/rpg/PARTS.md","source_digest":"a4f67672bdee3b1210d073ef334d8e21a467cffa77778bc2adb518cc65c16477","source_record_ids":["aoa:aoa-techniques:artifact:da1e4d646a243e773637436c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2608,24 +2614,24 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:7e8536a61f170cb5c433425f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e6746744760e48434e74e24b","label":"mechanics/experience/parts/service-clarity/README.md","provenance_ref":"deterministic","semantic_key":"docs/SERVICE_CLARITY_TECHNIQUE.md","source_digest":"18204be013756f0488739a81270ff6ad8501b9cdd84844181cb8935649f5e9b4","source_record_ids":["aoa:aoa-techniques:artifact:1c37503ae1788cd2ed048c6c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0fcf55ff126a56b2535ef545"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e691abd7c9f0a0d9ae816191","label":"mechanics/antifragility/legacy/DISTILLATION_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/antifragility/legacy/DISTILLATION_LOG.md","source_digest":"6800d8b7e6aa372f26796838ecc09715f194581d7a7b74870f58ee7cea10b72a","source_record_ids":["aoa:aoa-techniques:artifact:67f46f80ddd75239beef1ce8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e97086c30ae980769943e4ea"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e6de5072e04106d8f8dc53db","label":"techniques/continuity/donor-harvest/progression-evidence-lift/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/progression-evidence-lift/notes/canonical-readiness.md","source_digest":"97206b3aff0fb54f5dafcde49eb5ee1befed7258c6a1dbfdf6822310aab51dcb","source_record_ids":["aoa:aoa-techniques:artifact:bcc6b9308c7b94d25953428e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e77b807f9c16e3132e831fec","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","source_digest":"c220d2949f35eddd0213555aa33b60c3844d8951d67a5d04857b9a9b6ccae3e0","source_record_ids":["aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e77b807f9c16e3132e831fec","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","source_digest":"7bd01c8951ad1936185f8fa38e1bb0f65595f759cb942e88dc0dc775c7a01032","source_record_ids":["aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:08a3a6e0d1a9376a233b10b5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e78070bd37c5c2564e7f1d11","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md","source_digest":"ea73ff37b816cc1490b701b7a043cd0cddafe7a7e73b52ed3781b63dc815d612","source_record_ids":["aoa:aoa-techniques:artifact:b152a0b98d3754afb662dffa"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:049b437d9cb9f0424555278f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e8076dce6a297ef4205d5b11","label":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","source_digest":"2fa071aa7dff8f207178a5eea0c0d7fa375d6ea6d9250f8ab948c89095dcf22a","source_record_ids":["aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:049b437d9cb9f0424555278f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e8076dce6a297ef4205d5b11","label":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","source_digest":"fa3d510b5c442ed61f1509e4eaf90c39ed2a160862f758d45596e24949b26a4f","source_record_ids":["aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0c5da5ed548db71b5ac0e7d1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e893d8628d90c19d730918d9","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-c-owner-governance-knowledge-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-c-owner-governance-knowledge-review.md","source_digest":"f644b1df01e7981f955781888107e8e58e43f8cee89437d05104c636065b737d","source_record_ids":["aoa:aoa-techniques:artifact:521faaaf800f3eca7f1968d7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:230ccd6b97439f8e668e242d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e895d17e3245eee5870fbba2","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md","source_digest":"96606f264cf74a8de815bac9f73847684e3a4fa1e7e4d8a0f14bad2842f19f88","source_record_ids":["aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:45fcb59871f870767d4579f1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e8c982fce5be115da5cf2feb","label":"techniques/ingest/media-ingest/perceptual-media-dedupe-with-threshold-review/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/perceptual-media-dedupe-with-threshold-review/notes/canonical-readiness.md","source_digest":"ab914b872021aceeeb20a4478cb85dec1024d9377e1045a914f149ab2df61701","source_record_ids":["aoa:aoa-techniques:artifact:41d67ac8b66668035b22c04a"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e8cd86a296c5731712ea4db5","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","source_digest":"a06581dd1041c83a899497d7086a09684f98c68fb205f90cf887e4d3a724d706","source_record_ids":["aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e8cd86a296c5731712ea4db5","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","source_digest":"1925eb1e60452a7ce8cbac0eaacae18d8c6b2b017d1126b68304179b0b639b8f","source_record_ids":["aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c78eb9c374d893f5715c2096"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e91d207e26f688d51ff08dd8","label":"techniques/continuity/handoff-continuation/cross-repo-resource-map-bootstrap/checks/cross-repo-resource-map-bootstrap-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/cross-repo-resource-map-bootstrap/checks/cross-repo-resource-map-bootstrap-checklist.md","source_digest":"6280bbf25a5deda3376837b1d9801e7be5d09c1dfd05d92c2b190e089b87cc0b","source_record_ids":["aoa:aoa-techniques:artifact:bf6364cf7be892c0a45b476d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2ae4bfdcf2f16f238d8d2abf"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e93cb5734540e6d585e6224c","label":"techniques/governance/decision-routing/decision-fork-cards/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/decision-fork-cards/TECHNIQUE.md","source_digest":"335a6dda8d9e294c95e4757fe6d696f2deea4a7a02247bfed669eba55bb5aca1","source_record_ids":["aoa:aoa-techniques:artifact:8c7bde31d34cfc557f300250"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:969b10609f4d9ba79818e2be"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e93d0d7e5354af7c9ddf6aa6","label":"techniques/continuity/donor-harvest/session-donor-harvest/checks/session-donor-harvest-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/session-donor-harvest/checks/session-donor-harvest-checklist.md","source_digest":"2b1e7caf8322290319a01fa75d42c898cde2f30fd6acdfc1500c597208d98e9d","source_record_ids":["aoa:aoa-techniques:artifact:ae8b6245fbdc06f4346c901b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:26bfbabf2fc754ad2c803c62"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e9670890ee8d204a04d78094","label":"mechanics/rpg/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/rpg/LANDING_LOG.md","source_digest":"42712a2597a56a9985b4a5f282535879ea3864d0b963fb1680c56a6f15cfa236","source_record_ids":["aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:26bfbabf2fc754ad2c803c62"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e9670890ee8d204a04d78094","label":"mechanics/rpg/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/rpg/LANDING_LOG.md","source_digest":"1223fda4383e0ac682b924b97b1af5351220aa574d7c33dfa67a9e63fc46ac4e","source_record_ids":["aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:debfa51d2c8530d11cc3a5d3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:e9ffe050d9f4f1d7b901edc6","label":".github/ISSUE_TEMPLATE/technique-proposal.md","provenance_ref":"deterministic","semantic_key":".github/ISSUE_TEMPLATE/technique-proposal.md","source_digest":"155e65f100ed61414b709a8fe74dcb393050a716a67c7caee8dcc5459cc6ac53","source_record_ids":["aoa:aoa-techniques:artifact:a238084f3b16092d1ec2e4bb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:67c2d2b9210e1d611a82d64a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ea11b1d649b5d1bd9261ab6b","label":"techniques/governance/decision-routing/decision-fork-cards/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/decision-fork-cards/notes/canonical-readiness.md","source_digest":"4c7c44f9f43384aeabba95b068f77b4a6f708675699a6ff8a91364b17041af2d","source_record_ids":["aoa:aoa-techniques:artifact:395db01b03dd495d2cc8e3ff"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c3bf39c7f8e0bac309a87c5d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ea3a0843cd6555423b5424cc","label":"techniques/instruction/docs-boundary/source-of-truth-layout/examples/minimal-doc-routing.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/source-of-truth-layout/examples/minimal-doc-routing.md","source_digest":"ad7dc92f3c049b1da35d7e63f214d3e2d213203d3b7e9ad4b2b97f883d264125","source_record_ids":["aoa:aoa-techniques:artifact:d1d3ce5c7f2ea3e82ef57330"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9aebb395ecaa3e4d508d1a22"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ea487940ca0cb0dabcf80b4d","label":"mechanics/distillation/parts/technique-reform-ingress/reports/technique_kind_counts.md","provenance_ref":"deterministic","semantic_key":"reports/wave1_kind_counts.md","source_digest":"5b22d115ebe3162ddb9995d5725d73fd87b0d19f17888b0f4a656f5542fc0e83","source_record_ids":["aoa:aoa-techniques:artifact:72f600253b504da6dac9194e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a4aedfcfc1f2d1fb2d1e2c53"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:eac16ea1c67fc6255a33a97d","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md","source_digest":"d3386d41c014882c2bf35202f723becc1b1c62a01955da468d8208e23d84da69","source_record_ids":["aoa:aoa-techniques:artifact:4cd7f4f448c2b0321fa9fdad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6a88af64c8e45340280b2a04"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ead245cab7fc7cc39babeec9","label":"techniques/instruction/instruction-surface/fragmented-agent-context/examples/minimal-fragmented-agent-context.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/fragmented-agent-context/examples/minimal-fragmented-agent-context.md","source_digest":"b1242056e67e97c40a4f4e8efb64db882840652df7b4bb6e444a97e74864a666","source_record_ids":["aoa:aoa-techniques:artifact:909e4fe4fa9bc2df58bac18a"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3c6ac78d870074a3c61cef9a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:eb22baf4e13e98148c969189","label":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","source_digest":"c7eee2b62e324d5b3907b85cf2219d2179ebd3c99e24997b0c72ff6427cc6cfd","source_record_ids":["aoa:aoa-techniques:artifact:06d31990926be878929aa81d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3c6ac78d870074a3c61cef9a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:eb22baf4e13e98148c969189","label":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","source_digest":"6cc8b97924cccbf3c59ca38d97c45a87ead9fbbb17fd411b004d3884a6bf6d6d","source_record_ids":["aoa:aoa-techniques:artifact:06d31990926be878929aa81d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e58a756cc935a2795ee351e2"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:eb5db6321be066a6cd21a205","label":".agents/skills/aoa-approval-gate-check/checks/review.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-approval-gate-check/checks/review.md","source_digest":"6bd41343b8785544de83766f90bd21b93b896aa87949c476c7a417b9d5ed2001","source_record_ids":["aoa:aoa-techniques:artifact:5284bcd566341941dcafd934"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b79981e29c93214ded3ab44e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:eb8190211c53e6e87f466e3d","label":"techniques/recovery/diagnosis-repair/checkpoint-bound-self-repair/checks/checkpoint-bound-self-repair-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/checkpoint-bound-self-repair/checks/checkpoint-bound-self-repair-checklist.md","source_digest":"39f533b3fd20f95c7fb49a5fc209fdcbe99c09bb307e631e6f6eb3ca67a27577","source_record_ids":["aoa:aoa-techniques:artifact:239c388b05081615ac1d4a95"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bc7596fa5f86b2b9921bc0cc"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:eb92c61d4cc6712fd28831f6","label":"techniques/proof/published-summary/required-vs-optional-source-rendering/examples/non-ui-required-vs-optional-rendering.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/required-vs-optional-source-rendering/examples/non-ui-required-vs-optional-rendering.md","source_digest":"c59c3879df778a3112d8ea4da7873812d5db8ac65e3a266e0e33e5e0bc1fbbdc","source_record_ids":["aoa:aoa-techniques:artifact:d526b202b0d9a036a60f24c1"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2637,16 +2643,16 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:c2fa6e9160ac26bbb3390efa"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ec5957b7e04f1a2bd500cd91","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md","source_digest":"359631feebdc4ac2ef3882c9603bd28cea7a90283c17067ffe632b9366681f14","source_record_ids":["aoa:aoa-techniques:artifact:fec3dc23de4553ec2e819b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c93e6ecea8a8b364d103fc64"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ec719fabf7d0d2c9b4835800","label":".agents/skills/aoa-port-adapter-refactor/references/adapter-seam-shapes.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-port-adapter-refactor/references/adapter-seam-shapes.md","source_digest":"be01e48b90776d71cf194b70d1bbaf2bc56bb291523d3162a0c4e451de64e9ce","source_record_ids":["aoa:aoa-techniques:artifact:de93cd2aeddb4f11aa1ba559"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0561437660c51420b0ec28c1"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ec9d5ff80d84bf582dd7093c","label":"mechanics/method-growth/legacy/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/legacy/README.md","source_digest":"faf6ce2e4dd36220652d5ff4920416926a992dbdb8553e7f3b9fa2487532e76d","source_record_ids":["aoa:aoa-techniques:artifact:7df0d9c81bb529fbbaf9d494"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:2914a4a235947730804edc19"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:eced3dfbf83ad00b50d29899","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/TEMP_OWNER_BOUNDARY_BRIDGE_LONG_PASS_PLAN.md","source_digest":"2bf7d48674e975d523c038f4ebc47ae2c8cb55b37fff60ec3a2a4a0ab58a3ad7","source_record_ids":["aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:2914a4a235947730804edc19"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:eced3dfbf83ad00b50d29899","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/TEMP_OWNER_BOUNDARY_BRIDGE_LONG_PASS_PLAN.md","source_digest":"5625a74c7f40b24e835a2c5837aaed63c3c2ed619dc3f3c25f323ae2037efb11","source_record_ids":["aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1d8a578d637ce806b419c2fa"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ecf67c3797921321e0a25c30","label":"mechanics/release-support/ROADMAP.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/ROADMAP.md","source_digest":"c543266fd9e548c6b8a007d772198bbad008644d6b74de77fac49e5973e9355e","source_record_ids":["aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4fe36c7dd7093f65d8114e3b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ed7bdd471ffc0d520966af34","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","source_digest":"22b974e104379a27c0a2ee9ca404bd687358565e9ac5e0e6d51def2b580d1b3a","source_record_ids":["aoa:aoa-techniques:artifact:01a70f8ddd540893b5a82d72"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d4f1d99b0989a322b8da7196"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ed7d7946cd0c74ae92a40c6b","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-registry-discovery/docs/SEMANTIC_LINKAGE_RECORDS_CLOSEOUT_MEMO.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-1a-registry-discovery/docs/SEMANTIC_LINKAGE_RECORDS_NARROWING_MEMO.md","source_digest":"515f8aee618ddeda8bcfb8743265e3c7a87a6b2b69b9ef96e32a66f2f6087c2f","source_record_ids":["aoa:aoa-techniques:artifact:f35d0c120acc61a2ba2a4849"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ed820a53000ebb6d452776e8","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","source_digest":"87538d528730ecc8c8b2488989f3efc958866c114feb4c85f748a836443e5810","source_record_ids":["aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ed820a53000ebb6d452776e8","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","source_digest":"35fcbbf7a51b3e5704819b0373d00933a55085e8e35c4a35bfb728dbe514026f","source_record_ids":["aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f4aeb2c49767d551d245372f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ed946a9352d65e491d92199d","label":"techniques/governance/decision-routing/owner-layer-triage/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/owner-layer-triage/notes/canonical-readiness.md","source_digest":"f0ea6fc241dca26621ef99a22abecb87213db6efc99677cb3b2398c9bde9548c","source_record_ids":["aoa:aoa-techniques:artifact:83fbeefb957308e0d37ddd39"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f03a5c8a5d1739fa0ad05200"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ee0cc3c47347b24382314354","label":"mechanics/boundary-bridge/parts/derived-projection-anchors/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge/parts/derived-projection-anchors/README.md","source_digest":"4d4247695a7d798f11a626e4317aa34cc1cac83374d986be34487625761605d2","source_record_ids":["aoa:aoa-techniques:artifact:2da7fee81d15fb0159639ca2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9ce8d37ee8935dc1114be391"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ee27a8a4bfc1e394a6b3a9d9","label":"techniques/instruction/docs-boundary/public-safe-artifact-sanitization/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/public-safe-artifact-sanitization/notes/origin-evidence.md","source_digest":"dcb3080f223cc64b8290161f2d31a137f68a2c2d69d6bbba8c278828d14d6211","source_record_ids":["aoa:aoa-techniques:artifact:e44ac2cf2f959c094f218bc5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3bc884dfe49fe1caa724bd74"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ee2e85b3497a719bac327614","label":"techniques/governance/automation-readiness/automation-fit-matrix/checks/automation-fit-matrix-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/automation-fit-matrix/checks/automation-fit-matrix-checklist.md","source_digest":"3e070f501f95bf70b4e3b7ecad45915602d47feb0aa3874470060a118c78ba32","source_record_ids":["aoa:aoa-techniques:artifact:d3f1e4387137e076111f31b5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ee35862d7151e67650e0c77c","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","source_digest":"87244db585a1d8c988ae76c7509a0590cb5fe16b5dae520d0bef84051c92233a","source_record_ids":["aoa:aoa-techniques:artifact:fcebf684504ec852058428c6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ee35862d7151e67650e0c77c","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","source_digest":"f5824a60743b3079aae2e1ffdffae83d53498f949ed6b696f2101b55d777e7ef","source_record_ids":["aoa:aoa-techniques:artifact:fcebf684504ec852058428c6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0c45dff3e34d0964ce0687f5"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ee379350f9ebdbc9cb246742","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/archive/closed-incoming-packets/README.md","source_digest":"005f1903480efbedbc63e1f405072c180c99ba0985f1bf0c721ade3da7127f66","source_record_ids":["aoa:aoa-techniques:artifact:012afc0f60d47e2156e11e7c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5c9bcf8f4673755e0aa1c6f9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ee636a7bdf9fc8985eb98ab6","label":"techniques/continuity/handoff-continuation/structured-handoff-before-compaction/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/continuity/handoff-continuation/structured-handoff-before-compaction/notes/adverse-effects-review.md","source_digest":"afd8c0314b2439b25897a3b546d5985148a38c9a1f85a773d9c4d925225589da","source_record_ids":["aoa:aoa-techniques:artifact:1c31676c06066ad24cbcdfe7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dac60489a0693d187b3e450a"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ee69a34ec7af17076f70b22f","label":"techniques/continuity/handoff-continuation/session-opening-ritual-before-work/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/session-opening-ritual-before-work/notes/canonical-readiness.md","source_digest":"89179ca25c815925e05e5d5aa7d19ef1e645d33980a193d398c90f0c69c4ab74","source_record_ids":["aoa:aoa-techniques:artifact:54730a2c0b7993125f1a97d7"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2663,7 +2669,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:06b67e6454f303e071c45d93"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f02b9b1a43688dc4a29bba78","label":"techniques/proof/skill-support/bounded-context-map/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/bounded-context-map/TECHNIQUE.md","source_digest":"9c49a86b23f53fd53f5104ef21b1542136901f286ba4cbb8b585f71ca00804b4","source_record_ids":["aoa:aoa-techniques:artifact:bb3734d408850908df3fb61b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4eb9d4e709b70261952becb9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f036753b7a80e36ead34e1f2","label":"mechanics/distillation/legacy/DISTILLATION_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/legacy/DISTILLATION_LOG.md","source_digest":"84e45224889c04a7d5b16888c2472db6972b7c15e189c75a7944ba52e6323a01","source_record_ids":["aoa:aoa-techniques:artifact:4d310869dd2e62ecdcd12672"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5a3963e28b598ec2a61424f7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f04fba7e0a48fc2dcb0b97d2","label":"techniques/proof/evaluation-chain/context-report-for-ci/notes/external-origin.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/context-report-for-ci/notes/external-origin.md","source_digest":"55d11e7762e7242deb712c75a85a8d338827cbd56a83f5de3ca1d105c8f2cfb0","source_record_ids":["aoa:aoa-techniques:artifact:d4a0bbf7899b8af55401578f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f0554ffbd44ab077b62f19f6","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","source_digest":"4cf40d87cb91e821279cdfe1328927395ea12b178ac08e81bd95ca3ce02a1fa1","source_record_ids":["aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f0554ffbd44ab077b62f19f6","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","source_digest":"6af2cfb4c3bbd1f61689215bc8f097464edbe363d859dc4879e3f1703afbed97","source_record_ids":["aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ae4807e19f6670bc65b0a54f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f0e2ef5fa5b6d759f13742f1","label":"techniques/governance/promotion-boundary/quest-unit-promotion-review/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/quest-unit-promotion-review/notes/origin-evidence.md","source_digest":"e200972f4383552871783dab11d9ea6afae352d04e09165d4dae256a814101b3","source_record_ids":["aoa:aoa-techniques:artifact:74c397b167e8b06b003978d3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2dc907164db4a67784ae516b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f10134c5086c71644b4f74af","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/examples/request-evidence-minimal-public-safe.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/examples/request-evidence-minimal-public-safe.md","source_digest":"9d4c28534cc1afa3a991d120863a16ac0740a62485424657f774bbc9b6489b82","source_record_ids":["aoa:aoa-techniques:artifact:f9c1ca6c39d2e37a29f697e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:941ca3f162c38ce3a00947a7"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f102fc8700d1a54e42095768","label":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md","provenance_ref":"deterministic","semantic_key":"docs/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md","source_digest":"555a77a4fc4a03d564c9bc89a3adde7f6e332f92af72bf8956ce1b01437e54fd","source_record_ids":["aoa:aoa-techniques:artifact:f0f2da3459f55832608c73b4"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2688,10 +2694,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e2d2656ebd70ba8f987c4e0d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f51095e4e594fd178afb2940","label":"docs/source-lift/RISK_AND_NEGATIVE_EFFECT_LIFT_GUIDE.md","provenance_ref":"deterministic","semantic_key":"docs/RISK_AND_NEGATIVE_EFFECT_LIFT_GUIDE.md","source_digest":"7d1d24c035396a7802e8a3c1eee42556b7ebbc984ef30102a5a30eaa541ddd3e","source_record_ids":["aoa:aoa-techniques:artifact:b35aa5eb0153d5e706f8dcd5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8498edfdad97b4406fa606bb"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f53ebb6a50117b071ef6530d","label":"mechanics/distillation/parts/agon-candidate-handoff/gates/bundle-reviews/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/agon-candidate-handoff/gates/bundle-reviews/README.md","source_digest":"487a022e691cb25c3039dc31efd2c6d8965e425eea865ceb003d7661fc33dcd7","source_record_ids":["aoa:aoa-techniques:artifact:90135325c6273a19345e4fa8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:71d78ab7716a8fcc2f5c1304"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f56834d88c315f279aba6fdc","label":"templates/ADAPTATION_NOTE.template.md","provenance_ref":"deterministic","semantic_key":"templates/ADAPTATION_NOTE.template.md","source_digest":"6689aadd5ceaff682f41d1f1cc0e96f83af118957a06a9437af43ccd78899273","source_record_ids":["aoa:aoa-techniques:artifact:75bd320fbea74d598abbf2cd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f598d0c18a11875884a0801c","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","source_digest":"a32b0d084f49f9a28789ca867f4a96dda499da939578ba7316a566ac00fa6151","source_record_ids":["aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f598d0c18a11875884a0801c","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","source_digest":"111a0575428bbbb4b514cb153661758778fc3faa6e4ad272f691edde33bb8db9","source_record_ids":["aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:16e27d3f880108a2270124ee"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f5c6eebcd1d03919edf7a09b","label":".agents/skills/aoa-sanitized-share/checks/review.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-sanitized-share/checks/review.md","source_digest":"0a1194b2a1d6650b85412d9efcc01483ed20baaf9197730196313913b69578d6","source_record_ids":["aoa:aoa-techniques:artifact:1dcbc79df784f130fde464f6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:26c99fda896db84e75fc8009"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f6460759657bd803594ee2d7","label":"techniques/continuity/review-compaction/compaction-resilient-skill-loading/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/compaction-resilient-skill-loading/notes/canonical-readiness.md","source_digest":"f5a5b8a594d5f2e3026fdb9933cf1c5db28ba82926afe8c28af0a8412145fea5","source_record_ids":["aoa:aoa-techniques:artifact:f284d8538bf3370df939087d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f6957ebcf837575be12fd924","label":"legacy/archive/AGENTS_ROOT_REFERENCE.md","provenance_ref":"deterministic","semantic_key":"docs/AGENTS_ROOT_REFERENCE.md","source_digest":"768491d067556eed0bec9009bc4b62d56efce85b1ed2974398f0e37b9873af37","source_record_ids":["aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f6957ebcf837575be12fd924","label":"legacy/archive/AGENTS_ROOT_REFERENCE.md","provenance_ref":"deterministic","semantic_key":"docs/AGENTS_ROOT_REFERENCE.md","source_digest":"149a24efd75b17aa8b34d50e89a1fccd4bd5259814fc4195c51e4798c4c73010","source_record_ids":["aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7dd14803c610a7cf72b7ccd9"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f6971238493f92a0539dd659","label":"mechanics/method-growth/PROVENANCE.md","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/PROVENANCE.md","source_digest":"c867cf566ed1e2d68bf6274cb0121add7c403ada32e679e51d1e2d152096c46e","source_record_ids":["aoa:aoa-techniques:artifact:cd0307e0636674574235aebf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:505ca391ac1507d95a92ca44"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f69d6739c3047dbe94304bb6","label":"techniques/proof/evaluation-chain/contract-first-smoke-summary/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contract-first-smoke-summary/TECHNIQUE.md","source_digest":"3352b7321bf4d2b3ee33b25c72ac01ef10f1d4179f0e265be453aba6c35f7ec1","source_record_ids":["aoa:aoa-techniques:artifact:9d13ecde0912299ed3aaf2e2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5169fa4934223be05134b570"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f69f41ee941ef0609eb23580","label":".agents/skills/aoa-quest-harvest/SKILL.md","provenance_ref":"deterministic","semantic_key":".agents/skills/aoa-quest-harvest/SKILL.md#generation-2","source_digest":"8ff631f4df15ea3966df4108fd03171525629c37b9fe894c7af606b90097d43d","source_record_ids":["aoa:aoa-techniques:artifact:00a1e1588511c1a3d44b5564"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2699,7 +2705,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:277e4f256fa17791c766f7c3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f6b0f1537e50189cc68e3b65","label":"techniques/instruction/capability-registry/capability-spec-versioning/notes/external-import-review.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/capability-spec-versioning/notes/external-import-review.md","source_digest":"a827bb8d894e430b44bc19681c2c353b00c787eb7693b77fe288f43b16892df1","source_record_ids":["aoa:aoa-techniques:artifact:447b17f5237437ff47887861"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:73d6e655cdd42c12629bd5d4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f6dbeee636db3112c28dad0f","label":"techniques/history/history-artifacts/transcript-linked-code-lineage/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/history/transcript-linked-code-lineage/notes/canonical-readiness.md","source_digest":"9277057e20859d22a333ed6a0ee5219565d5d13ca71f6cdbd899a8ceb718399f","source_record_ids":["aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2262df384d5adb4e539c50e6"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f6f6ad2ce7d86a87e89d2cfe","label":"techniques/instruction/capability-registry/capability-discovery/TECHNIQUE.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/capability-discovery/TECHNIQUE.md","source_digest":"ef50dca50237d9cceb5a1cc398678528dce80c9830e0a7d3c69c34dc72a88ec2","source_record_ids":["aoa:aoa-techniques:artifact:e3df85a81eedc494f3a8e9ed"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f7174c84d0d3b6f9ed8af747","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","source_digest":"97aff5be5121d5e130feb1df0e6f151782bd7f812a8df2a7c62bad5257a84a90","source_record_ids":["aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f7174c84d0d3b6f9ed8af747","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","source_digest":"5c4890c47062410ec446b2cad3ee4558e8e859eb16b6b8f4bbedee77ad14899d","source_record_ids":["aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b7167d4fffb7f26a86cc57a3"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f7528b8ed45e8daf36d41262","label":"techniques/governance/promotion-boundary/quest-unit-promotion-review/examples/minimal-quest-unit-promotion-review.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/quest-unit-promotion-review/examples/minimal-quest-unit-promotion-review.md","source_digest":"a550e07de5eb4b06deb47b7dd0b8b2a7e0c3cb2f07b6a42f6f8affc3d823d56c","source_record_ids":["aoa:aoa-techniques:artifact:2ddb0a8416db61cfa384979d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:99c63f9e628cbcefde05d8bd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f789a914ff2e5b4b3efcad5e","label":"techniques/proof/owner-truth-closeout/github-only-owner-endcap-with-reality-sync/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/github-only-owner-endcap-with-reality-sync/notes/second-context-adaptation.md","source_digest":"86018b1274aeaae49553715e93d997ee2b64642de7d8829857cafd59f0bec0db","source_record_ids":["aoa:aoa-techniques:artifact:83a6c75252f240d20eb9954a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:50d4281e79d8b7720c07628f"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:f7e5d5ec4e9dd6c5f34dc88a","label":"techniques/continuity/review-compaction/review-findings-compaction/checks/review-findings-compaction-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/review-findings-compaction/checks/review-findings-compaction-checklist.md","source_digest":"eca9d38ed37b25894062be87ce0c6bef58fb9744ff91644890eaa0ff32b81173","source_record_ids":["aoa:aoa-techniques:artifact:687ec2669295f2f9268737d0"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2734,20 +2740,20 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:82e056053da13e3c9f070f6e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fc735c4bb28663dd7191830e","label":"techniques/execution/intent-chain/new-intent-rollout-checklist/notes/origin-evidence.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/new-intent-rollout-checklist/notes/origin-evidence.md","source_digest":"101d472375cd486d68366404367e161ac945855539a2c5e98ba344a76cf2b8f3","source_record_ids":["aoa:aoa-techniques:artifact:572468bdefc891cec8037f4b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c546830b92d574e43f03c22d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fc93fc92dcb2f894f2473f85","label":"techniques/instruction/docs-boundary/public-safe-artifact-sanitization/checks/public-safe-artifact-sanitization-checklist.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/public-safe-artifact-sanitization/checks/public-safe-artifact-sanitization-checklist.md","source_digest":"742ba1261bb6bfb310a7143c2957155ae2073b177257515eb556ea69f077bbbd","source_record_ids":["aoa:aoa-techniques:artifact:9d4831e0ee1b2706ac364a4c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0b7666ef2104d232a3d6d0da"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fc9878fb1d98bc02e8ef61e0","label":"techniques/proof/evaluation-chain/contract-first-smoke-summary/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/evaluation/contract-first-smoke-summary/notes/adverse-effects-review.md","source_digest":"b33eea5ed69a488e5b9bc1ddf4fe9a8428a107c07988c1f5268b0f9b970deae8","source_record_ids":["aoa:aoa-techniques:artifact:8fa5e1eaf4444e59608238e5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ed985c4b7c6d3135db170fcd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fcf97b638b24997c88b9645e","label":"mechanics/boundary-bridge/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge/LANDING_LOG.md","source_digest":"abd31204d369e49a6d04e31198b69ec4eccefe59fad63d79d9fa901d8eaa7af0","source_record_ids":["aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ed985c4b7c6d3135db170fcd"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fcf97b638b24997c88b9645e","label":"mechanics/boundary-bridge/LANDING_LOG.md","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge/LANDING_LOG.md","source_digest":"f0686cd4050bfb34bf2955a9d8e9223321a88d9e3aca600e2fbf230bacd1fb5e","source_record_ids":["aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c4af81ae3e0489a11ef0a168"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fd0716391ebd36c29d20b30b","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-handoff-bounded-continuation/README.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-3-handoff-bounded-continuation/README.md","source_digest":"d9cbbed5a0e45ce0942572e99a1d8195c2d629ed530b69f9d350e32e1d6117d8","source_record_ids":["aoa:aoa-techniques:artifact:5b44d82869b0c323d47f407b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:49c34b0d89122f54e9fcd02d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fd09fe8b8001a1803cb1037b","label":"mechanics/boundary-bridge/parts/owner-boundary-anchors/README.md","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge/parts/owner-boundary-anchors/README.md","source_digest":"07882ebddadf37fb373a83473aa1e8e1ba5de85fd4505086143ce1a50cf6d673","source_record_ids":["aoa:aoa-techniques:artifact:421b2ff25f00e355af6bb4e6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2ed583d921b9e943d2c7d9f8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fd329c85fed999620c6535c7","label":"techniques/knowledge-lift/kag-source-lift/markdown-technique-section-lift/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/markdown-technique-section-lift/notes/second-context-adaptation.md","source_digest":"9cac87a9b8e1015601c978cd4bf55d0ae4d55ca715f0eab99ac0994ff56fac73","source_record_ids":["aoa:aoa-techniques:artifact:c3132bb263ffc20fcb339c56"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:44403101a0b4493f183c55a4"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fdc64222c435ae4a408bd6a2","label":"docs/readers/source-lift/TECHNIQUE_CHECKLISTS.md","provenance_ref":"deterministic","semantic_key":"docs/readers/source-lift/TECHNIQUE_CHECKLISTS.md","source_digest":"2b8a3ea363f15b19f79ad66e7304bb91f262effb18f1c2a875b0597c910a56fa","source_record_ids":["aoa:aoa-techniques:artifact:5d2a59443e9e2ee7f8b1e13a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:69dd03e435274a0a50ae4c52"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fe2919760dd943ecdbe4133d","label":"docs/selection/TECHNIQUE_INTELLIGENCE_GUIDE.md","provenance_ref":"deterministic","semantic_key":"docs/selection/TECHNIQUE_INTELLIGENCE_GUIDE.md","source_digest":"dba549e4c37a358f3c50b77d12c75923a764ee0120ecc3da2c226a0926a6ff90","source_record_ids":["aoa:aoa-techniques:artifact:00457b4e465a7692e6a12f06"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d8c0409c8749cea5ebda6620"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:fe3af8a7fd2f3c7b08bd0cc9","label":"techniques/execution/intent-chain/new-intent-rollout-checklist/notes/rollout-failure-triage.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/new-intent-rollout-checklist/notes/rollout-failure-triage.md","source_digest":"742352e197cef549e9e2aeabf1a99893f98cc50cbf235e5f6352cd431ac5765e","source_record_ids":["aoa:aoa-techniques:artifact:cb2669d7e4d932901786ae3f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:5d6307958f34495030c651a8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:feba3e4aaaa57d5c3386003c","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","source_digest":"3fd432b492a458c3cfd7a67f8892f95fdaa198aca78062413719631f07ceeff5","source_record_ids":["aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:5d6307958f34495030c651a8"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:feba3e4aaaa57d5c3386003c","label":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","source_digest":"9dca2eaed91c55471f9de083a25c3021485a88209f3a64692f95c0808239888f","source_record_ids":["aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d41e21a6368b04ed1c083206"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ff5247d03564229f40f9a407","label":"techniques/continuity/handoff-continuation/episode-bounded-agent-loop/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/continuity/handoff-continuation/episode-bounded-agent-loop/notes/adverse-effects-review.md","source_digest":"5d061bab7fb7e5937bbdc4ddae84edfe77414e7b900bfa08ae46575930ff1636","source_record_ids":["aoa:aoa-techniques:artifact:be8edae27d92b7d79db001d3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:15dfa9d0970e249b35dfbb7e"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ff585f5906645c94957a26b7","label":"techniques/continuity/handoff-continuation/receipt-confirmed-handoff-packet/notes/canonical-readiness.md","provenance_ref":"deterministic","semantic_key":"techniques/agent-workflows/receipt-confirmed-handoff-packet/notes/canonical-readiness.md","source_digest":"1559020d96dcc5102f23ca2579e3ab57d0caafdd2ad15046cd829390f19586e5","source_record_ids":["aoa:aoa-techniques:artifact:6777374a660806a4c9d30d33"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0a6b1e36a9bb825f326d7c5d"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ff758f78f2008d3ab12b03fd","label":"techniques/instruction/docs-boundary/public-safe-artifact-sanitization/notes/adverse-effects-review.md","provenance_ref":"deterministic","semantic_key":"techniques/docs/public-safe-artifact-sanitization/notes/adverse-effects-review.md","source_digest":"cf3a11776c885aca3a33c8255b1546ab118a730a183cd3a3137d06a59797975b","source_record_ids":["aoa:aoa-techniques:artifact:1a98078cacce08b047d4253f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:d55fbdeb288ee0d5beeaa771"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ff7fd0281d67ee6c57f4bbdd","label":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","source_digest":"9baf0e4d2eaa2c5478574ff53bdc8d2414cb8da44c7924e9ddcd1c5310aed6b0","source_record_ids":["aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d55fbdeb288ee0d5beeaa771"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ff7fd0281d67ee6c57f4bbdd","label":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","source_digest":"8d8a69c8a49fda9f670e9281f2091a820046c72367633e50aff17f1bd86d3898","source_record_ids":["aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7818af5514e47af7b6532832"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ff81aa868d05006218c3e47f","label":"techniques/knowledge-lift/kag-source-lift/github-review-template-lift/notes/second-context-adaptation.md","provenance_ref":"deterministic","semantic_key":"techniques/knowledge-lift/kag-source-lift/github-review-template-lift/notes/second-context-adaptation.md","source_digest":"a2fb85be8d1163e39b1844c608ced32582ccbcd40130bdfac67785577ea2ed4a","source_record_ids":["aoa:aoa-techniques:artifact:917654affae3815055b1803b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3c947829b4afad176790de88"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ff8ffba5e2bb5db12bc8fd0a","label":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","source_digest":"9f7c9b7c032cfc95ba66c7aa6c0fcda122f8c128c2489ec5f8c50d0fce3ccbee","source_record_ids":["aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3c947829b4afad176790de88"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ff8ffba5e2bb5db12bc8fd0a","label":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","provenance_ref":"deterministic","semantic_key":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","source_digest":"410b32f623b9c92c617acca01faf4f01d858148b1e9d4b2bfa16e3cb1076ffdc","source_record_ids":["aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9c0aa1dfdea588476ebdea88"],"entity_kind":"document","id":"aoa:aoa-techniques:entity:ffaa52b61473ff52ca324a05","label":"mechanics/distillation/legacy/archive/closed-incoming-packets/chat-registry-discovery/README.md","provenance_ref":"deterministic","semantic_key":"incoming/chat-wave-1a-registry-discovery/README.md","source_digest":"4bcac2540b67d71dd8e3b550d781de912dfaeb8b4edbb2d2b36e26b98cf69605","source_record_ids":["aoa:aoa-techniques:artifact:24c5f3398d058bb26c34e573"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5c410ee8c7ec61769e175820"],"entity_kind":"manifest","id":"aoa:aoa-techniques:entity:1cfd426cf84d0c2cb77714bc","label":"mechanics/agon/parts/recurrence-adapter/manifests/recurrence/hooks/component.agon.epistemic-technique-candidates.hooks.json","provenance_ref":"deterministic","semantic_key":"manifests/recurrence/hooks/component.agon.epistemic-technique-candidates.hooks.json","source_digest":"d83535870f3799c65ebd51c6256dc22c5c839d09e63e45e9442d4349cf4a4aea","source_record_ids":["aoa:aoa-techniques:artifact:dcd1b6a5ec9e1073dd336427"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:41b9498a50c8fd67ded8543d"],"entity_kind":"manifest","id":"aoa:aoa-techniques:entity:7d1430c645f07a411e982e01","label":"mechanics/recurrence/parts/live-observation-producers/manifests/recurrence/component.techniques.canon-and-intake-beacons.json","provenance_ref":"deterministic","semantic_key":"manifests/recurrence/component.techniques.canon-and-intake-beacons.json","source_digest":"4916bba8273863a3f76dec36d4439c6237f8f1d9e71e8830f5b55595fce78ec4","source_record_ids":["aoa:aoa-techniques:artifact:ca65c5ca4122e08cd0775072"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2755,23 +2761,23 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:1c34dc0ad73cd87fbca87741"],"entity_kind":"manifest","id":"aoa:aoa-techniques:entity:bd8dd86940d6fc5246c630b7","label":"mechanics/agon/parts/recurrence-adapter/manifests/recurrence/component.agon.epistemic-technique-candidates.json","provenance_ref":"deterministic","semantic_key":"manifests/recurrence/component.agon.epistemic-technique-candidates.json","source_digest":"539f484203e65864e18860b0783cba872fd8d57822e15c0554761659ef22af7b","source_record_ids":["aoa:aoa-techniques:artifact:1e22bf2e2d9400f9a9c7e737"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9a1d1ba2d61ab0e41d9ee969"],"entity_kind":"manifest","id":"aoa:aoa-techniques:entity:d9b42e1dc9650b676250772b","label":"mechanics/recurrence/parts/live-observation-producers/manifests/recurrence/hooks/component.techniques.canon-and-intake-beacons.hooks.json","provenance_ref":"deterministic","semantic_key":"manifests/recurrence/hooks/component.techniques.canon-and-intake-beacons.hooks.json","source_digest":"49ae17f77b8a9040b993be69d77ac9e57dff8f81f36a475a17bdaf10a0a07c62","source_record_ids":["aoa:aoa-techniques:artifact:9f02735456e72657870c4158"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:06b13a0eb1406e48dd64b57a"],"entity_kind":"manifest","id":"aoa:aoa-techniques:entity:db38241aef6e4af3c9100def","label":"mechanics/agon/parts/recurrence-adapter/manifests/recurrence/hooks/component.agon.technique-binding-surfaces.hooks.json","provenance_ref":"deterministic","semantic_key":"manifests/recurrence/hooks/component.agon.technique-binding-surfaces.hooks.json","source_digest":"690347912c22769bd5dbe987d6f745722da5886eaf046f99aec157bf8c6540c6","source_record_ids":["aoa:aoa-techniques:artifact:cb65da24d55aa43e3f7a3c0d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:011f49430d6fef6fc3394ea0","aoa:aoa-techniques:anchor:3300dbb24d5bf0e5a69cd79f","aoa:aoa-techniques:anchor:365cf84216c65d983b1c8220","aoa:aoa-techniques:anchor:49c34b0d89122f54e9fcd02d","aoa:aoa-techniques:anchor:5b4facc9c704d5b87f5e34da","aoa:aoa-techniques:anchor:720155dd6502ec3f28139454","aoa:aoa-techniques:anchor:7db875d04e9ba784cf2f77aa","aoa:aoa-techniques:anchor:89612ded628571616957e0a3","aoa:aoa-techniques:anchor:8d09dd8641d5aadf934685e7","aoa:aoa-techniques:anchor:8d3985e152027b2feb03ed79","aoa:aoa-techniques:anchor:a84010e011d5cbdec1625bb6","aoa:aoa-techniques:anchor:b13a821c41cc18894908df36","aoa:aoa-techniques:anchor:babd79e89e287c54b43c5e82","aoa:aoa-techniques:anchor:bb071000a4560add16e2a228","aoa:aoa-techniques:anchor:bc328b701bf14aca1db48b1c","aoa:aoa-techniques:anchor:cd2c630839a64eaee4605c3c","aoa:aoa-techniques:anchor:ed985c4b7c6d3135db170fcd","aoa:aoa-techniques:anchor:f03a5c8a5d1739fa0ad05200"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:0ba38d6b1f1d9b92f7218dfb","label":"boundary-bridge","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge","source_digest":"c27eb04655f7bad020de3b4bdef9f28b397f26a1afbf4c6fa72018b241b0d876","source_record_ids":["aoa:aoa-techniques:artifact:03ab6d31c240dd6da06db6c6","aoa:aoa-techniques:artifact:0a397c872e31eb43f190b7bd","aoa:aoa-techniques:artifact:1fcf12b8829a2e1590d8674f","aoa:aoa-techniques:artifact:2da7fee81d15fb0159639ca2","aoa:aoa-techniques:artifact:39d80cd0cc651d75f6360531","aoa:aoa-techniques:artifact:421b2ff25f00e355af6bb4e6","aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f","aoa:aoa-techniques:artifact:4a189f110e5f9dbbeda0af88","aoa:aoa-techniques:artifact:533d63d24a42b446f9686034","aoa:aoa-techniques:artifact:68d15c50ddebed3b86c4c4a8","aoa:aoa-techniques:artifact:7387ea10dd3c82a4487aa0d8","aoa:aoa-techniques:artifact:7b2260a83613041a4b540d95","aoa:aoa-techniques:artifact:8100325d6414a7b5cd2dcd4b","aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","aoa:aoa-techniques:artifact:92a8c606225ec60a84f0fda0","aoa:aoa-techniques:artifact:a694fe764a34559d55786e26","aoa:aoa-techniques:artifact:ed4ace301e7714a0fa443e06","aoa:aoa-techniques:artifact:fe08f92726a50caed1d8bcd2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:004d346cb7aafa1f58fb86ae","aoa:aoa-techniques:anchor:008d3a311fb737f85981af0c","aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","aoa:aoa-techniques:anchor:017cbd2f4868c2b183418b92","aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","aoa:aoa-techniques:anchor:0330aece16af444c2f7e39cb","aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","aoa:aoa-techniques:anchor:07f71955d8f514dadfa726d7","aoa:aoa-techniques:anchor:08461cb1fec5568a19d91878","aoa:aoa-techniques:anchor:08a3a6e0d1a9376a233b10b5","aoa:aoa-techniques:anchor:08b9cbbc688a1f382cb4a26b","aoa:aoa-techniques:anchor:09d36f42cc56bb63868eb07c","aoa:aoa-techniques:anchor:0a225f0f13fca2586c011374","aoa:aoa-techniques:anchor:0a58ef71ee17c1ccb7701f25","aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","aoa:aoa-techniques:anchor:0b253a863340466491b1b23a","aoa:aoa-techniques:anchor:0c45dff3e34d0964ce0687f5","aoa:aoa-techniques:anchor:0c5da5ed548db71b5ac0e7d1","aoa:aoa-techniques:anchor:0eac6758d1787e0dc33ecdd7","aoa:aoa-techniques:anchor:0f15e80c000c8f5d22d6d178","aoa:aoa-techniques:anchor:0f43e73b5767455afd6bb9a1","aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","aoa:aoa-techniques:anchor:116da7a2029997226c834014","aoa:aoa-techniques:anchor:11cac66ef107d693a8c44ff7","aoa:aoa-techniques:anchor:13802c71a291ca6540806ce4","aoa:aoa-techniques:anchor:15b4a56f5feb8566c0c35adb","aoa:aoa-techniques:anchor:16e431f327930deab13b43a9","aoa:aoa-techniques:anchor:17ffa9045deefa31c5ce000f","aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","aoa:aoa-techniques:anchor:193caff3a74985d607c06d49","aoa:aoa-techniques:anchor:19c9ce4ad6f333348a0442c6","aoa:aoa-techniques:anchor:1aecae6fb2e66d86841e4ce3","aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03","aoa:aoa-techniques:anchor:1d3393930a228f83b6a40cc7","aoa:aoa-techniques:anchor:1d896485a992c9aba72be467","aoa:aoa-techniques:anchor:1e70455e1ec38c8975f9395c","aoa:aoa-techniques:anchor:1edd9e314c354ccc5d3e03e7","aoa:aoa-techniques:anchor:1f8b8af58092484be17ce6b2","aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","aoa:aoa-techniques:anchor:216038c047d7be92f24c9bf3","aoa:aoa-techniques:anchor:219fa43a6db9eb01fa6b53e3","aoa:aoa-techniques:anchor:21bc81b24a07839b611f6c6b","aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab","aoa:aoa-techniques:anchor:230ccd6b97439f8e668e242d","aoa:aoa-techniques:anchor:2323e38403362d29e033deae","aoa:aoa-techniques:anchor:239b0cafa33bcf86998a07c0","aoa:aoa-techniques:anchor:23d685dd4d27d0361dbf33c4","aoa:aoa-techniques:anchor:25db7022958d13fb31f8a653","aoa:aoa-techniques:anchor:2662df2da298c6d1818f461c","aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd","aoa:aoa-techniques:anchor:28f35886132515eda8358e4e","aoa:aoa-techniques:anchor:2914a4a235947730804edc19","aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4","aoa:aoa-techniques:anchor:2a07cb4837bb9e712e02c11a","aoa:aoa-techniques:anchor:2bec5bdf7f5bb94a14c386ba","aoa:aoa-techniques:anchor:2c234357d93af3aa108a0e07","aoa:aoa-techniques:anchor:2c2cc9805c1175ef0354d157","aoa:aoa-techniques:anchor:2cdd3281212bb6970aca3b9a","aoa:aoa-techniques:anchor:2dc907164db4a67784ae516b","aoa:aoa-techniques:anchor:2deaf6df24b0862dafa6faf8","aoa:aoa-techniques:anchor:2f7f49780021b6d3615f4baa","aoa:aoa-techniques:anchor:2ffd9bc452bea451dbe1ae70","aoa:aoa-techniques:anchor:305866d803086f7e98a58e31","aoa:aoa-techniques:anchor:318ef01638e5882d339d13b4","aoa:aoa-techniques:anchor:3195de7ba2422399682c6f68","aoa:aoa-techniques:anchor:31ac322df2356c18fece2db7","aoa:aoa-techniques:anchor:327bacfdf78f5d37e985a9f8","aoa:aoa-techniques:anchor:329f6ffb482f2fe17a5d7077","aoa:aoa-techniques:anchor:35b718f92aa8648b6c366472","aoa:aoa-techniques:anchor:361103f961f909f4c123433e","aoa:aoa-techniques:anchor:3741f1d59f0363477d7b9b11","aoa:aoa-techniques:anchor:3a2c13172c42ad91d8454f06","aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e","aoa:aoa-techniques:anchor:3b2d233f15714b0a091488cd","aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","aoa:aoa-techniques:anchor:3cc172e274ccbfdaf3dc2a61","aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","aoa:aoa-techniques:anchor:3fbaf7c4d3fd1375f9ccd6d5","aoa:aoa-techniques:anchor:4035531165582a1dc864a388","aoa:aoa-techniques:anchor:4060afa0d3bdefb2aaba1ec6","aoa:aoa-techniques:anchor:43cf53fe511bc93ae4a2a19a","aoa:aoa-techniques:anchor:43cfb1aab829162898397ea6","aoa:aoa-techniques:anchor:43feb3daee9310f782143af7","aoa:aoa-techniques:anchor:45133b63935581e72ef1883d","aoa:aoa-techniques:anchor:452e8e06956baf3e39635f01","aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","aoa:aoa-techniques:anchor:471a955a2e179944eb322f79","aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","aoa:aoa-techniques:anchor:49869e1b92146765f59c96ff","aoa:aoa-techniques:anchor:49b39e0d7f8569f514e63c0f","aoa:aoa-techniques:anchor:4a265c97c7a9faca1d98e672","aoa:aoa-techniques:anchor:4b4976023e495c834125bfcd","aoa:aoa-techniques:anchor:4c90d2731db9899463d26522","aoa:aoa-techniques:anchor:4c935cc0efe688cb971338d9","aoa:aoa-techniques:anchor:4dab938da9e7173a8c88790c","aoa:aoa-techniques:anchor:4eb9d4e709b70261952becb9","aoa:aoa-techniques:anchor:4f92b0dba7435da64117d54a","aoa:aoa-techniques:anchor:4fe36c7dd7093f65d8114e3b","aoa:aoa-techniques:anchor:5049b1246255eab985c0f688","aoa:aoa-techniques:anchor:537361e02526bb363dcfd3b7","aoa:aoa-techniques:anchor:54bc439cc8ef8ad690f3f6d8","aoa:aoa-techniques:anchor:54efb8b453b96c315bd05fcd","aoa:aoa-techniques:anchor:5778a57423333c5456deea8a","aoa:aoa-techniques:anchor:5810c155ece164ad55c6dac3","aoa:aoa-techniques:anchor:5aebd19b24796bf16d32f3be","aoa:aoa-techniques:anchor:5b8396a6858a1166a9c11e47","aoa:aoa-techniques:anchor:5bc91fceca9739150de32c64","aoa:aoa-techniques:anchor:5c0d602f4f53bec3d3a5f111","aoa:aoa-techniques:anchor:5c139b8eb3bd10f4b176b2ef","aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb","aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","aoa:aoa-techniques:anchor:5de62024144aa64132cf9713","aoa:aoa-techniques:anchor:600c582f43a21dc7a3c09ef5","aoa:aoa-techniques:anchor:613461552c83841bed52c351","aoa:aoa-techniques:anchor:6402a1a49413d4b59b28c467","aoa:aoa-techniques:anchor:64947c8dca361f2aa5e50b93","aoa:aoa-techniques:anchor:6549e1bb6fd958ae3bcda27e","aoa:aoa-techniques:anchor:657896c747cf94f687706905","aoa:aoa-techniques:anchor:663d13e30152989cea785444","aoa:aoa-techniques:anchor:669654784ff3aacf80d98cbd","aoa:aoa-techniques:anchor:66a80e4be71018e2727a452c","aoa:aoa-techniques:anchor:66b233e3c4caf7bf4e5998f8","aoa:aoa-techniques:anchor:6730f2ba972d7e4b6e8556e8","aoa:aoa-techniques:anchor:675caa36db4c691a99fb1d7b","aoa:aoa-techniques:anchor:6849c1c95ccc92fdd41c98b1","aoa:aoa-techniques:anchor:699ad6faae43c4f3b7ec0053","aoa:aoa-techniques:anchor:69b605d67753b11dbd164f0b","aoa:aoa-techniques:anchor:69f5f2a199b57ef4168c6276","aoa:aoa-techniques:anchor:6a4ac1d91e5712e6accbb303","aoa:aoa-techniques:anchor:6a8178209fb899ebd08acacd","aoa:aoa-techniques:anchor:6c226d4e8b71f30f920b2fdd","aoa:aoa-techniques:anchor:6ce9de08c4ee5a53e1f590ac","aoa:aoa-techniques:anchor:6db5ccf3712b976ec835aabc","aoa:aoa-techniques:anchor:6dc336494775ac3a4e2cdfe3","aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05","aoa:aoa-techniques:anchor:6ea51c6712643e400a0286ac","aoa:aoa-techniques:anchor:6ecda435fefca8bca0c2297b","aoa:aoa-techniques:anchor:6f22f4f13a7a236cf6aab6d6","aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821","aoa:aoa-techniques:anchor:706c86a7a45ad63e22fabdec","aoa:aoa-techniques:anchor:71631681fd5cc24d750f7469","aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b","aoa:aoa-techniques:anchor:72a969368dcbd0e1c7b42166","aoa:aoa-techniques:anchor:73b0b4ae94897ba720da53f9","aoa:aoa-techniques:anchor:74123619244129f4ee04644d","aoa:aoa-techniques:anchor:774ead182fcb89de9e19254a","aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b","aoa:aoa-techniques:anchor:780715be6297dd7326ae69a4","aoa:aoa-techniques:anchor:7983499fe9dfb4f426b20b13","aoa:aoa-techniques:anchor:7b91d3196b2d38fed0fd951e","aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","aoa:aoa-techniques:anchor:7c8c069e656545ea884b926b","aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","aoa:aoa-techniques:anchor:7dce8bfc8960bd3892a90057","aoa:aoa-techniques:anchor:7e0d131a67a4e95746c07b5f","aoa:aoa-techniques:anchor:7e9d6e7ce191f8dcf2ef4694","aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc","aoa:aoa-techniques:anchor:818a9121d3852ead651d89cd","aoa:aoa-techniques:anchor:82f90d940e3522e1df53473f","aoa:aoa-techniques:anchor:83c9cee2518e7ca5bc94929c","aoa:aoa-techniques:anchor:8475f8137710c4c5036abd82","aoa:aoa-techniques:anchor:8498edfdad97b4406fa606bb","aoa:aoa-techniques:anchor:85ff385f53da5901b0de1ab2","aoa:aoa-techniques:anchor:86cd8c8cba03b51bec82f742","aoa:aoa-techniques:anchor:88163f45079ac3717b6d402f","aoa:aoa-techniques:anchor:8881ebeb5356f155b1bde376","aoa:aoa-techniques:anchor:89490bb2dd8701620225599e","aoa:aoa-techniques:anchor:894938dd69460a2ff444602f","aoa:aoa-techniques:anchor:8a646592548b7bbee8eb3962","aoa:aoa-techniques:anchor:8ac05377990a318920ef648a","aoa:aoa-techniques:anchor:8b28806d9c009243e81e2aad","aoa:aoa-techniques:anchor:8b9fa3f67cc6cc007b878f0a","aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67","aoa:aoa-techniques:anchor:8ce7aec5aa70c36407699fa0","aoa:aoa-techniques:anchor:8cf8a41dc609dd2cc698e451","aoa:aoa-techniques:anchor:8cffae3dd67a16902fdb3e69","aoa:aoa-techniques:anchor:8f3f5e1f21dc6819f11a60c4","aoa:aoa-techniques:anchor:907d2c8ffe54ac1d43eae978","aoa:aoa-techniques:anchor:92db231c800c61f3503df8f2","aoa:aoa-techniques:anchor:93ef0ebf5a33bb20ad038cda","aoa:aoa-techniques:anchor:9653ec36aabc5160baccf4ac","aoa:aoa-techniques:anchor:97200fe0fcbac7f59a33d65f","aoa:aoa-techniques:anchor:978e7a003effb0fd6154307c","aoa:aoa-techniques:anchor:98a81ababa7897be12db4864","aoa:aoa-techniques:anchor:9995f1644e399ee461162783","aoa:aoa-techniques:anchor:9a2ab01879b8826a731fbfe4","aoa:aoa-techniques:anchor:9ad08765b70f5485cac9d76a","aoa:aoa-techniques:anchor:9aebb395ecaa3e4d508d1a22","aoa:aoa-techniques:anchor:9c0aa1dfdea588476ebdea88","aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","aoa:aoa-techniques:anchor:9c98aa48b4723abaa35ef21f","aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","aoa:aoa-techniques:anchor:a04bf10004e41075ddc7588e","aoa:aoa-techniques:anchor:a0c310c067e722660d722e4d","aoa:aoa-techniques:anchor:a24137ed4f39b13cf69ac833","aoa:aoa-techniques:anchor:a449f3c6fc5141bc9c76748d","aoa:aoa-techniques:anchor:a49e9cb33e1091d62de9a3b6","aoa:aoa-techniques:anchor:a4aedfcfc1f2d1fb2d1e2c53","aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","aoa:aoa-techniques:anchor:a7ca6a2ba423fa66e23600f2","aoa:aoa-techniques:anchor:a8aadf942643495c9581c021","aoa:aoa-techniques:anchor:a9eef9d75a1e65f76d972ab0","aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","aoa:aoa-techniques:anchor:ab321b78dbed0e87977a2313","aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628","aoa:aoa-techniques:anchor:add36d860b355204915abeeb","aoa:aoa-techniques:anchor:ae98c9a44df514475a5ef1bd","aoa:aoa-techniques:anchor:aea99a3bcd6d92d7f4cb2697","aoa:aoa-techniques:anchor:b01099645b513ed12cfa2d21","aoa:aoa-techniques:anchor:b07d1392c7862697dbbeca08","aoa:aoa-techniques:anchor:b39961a80e3e86daf30828aa","aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","aoa:aoa-techniques:anchor:b4fc9193eeb8bec23196d74a","aoa:aoa-techniques:anchor:b560daa43cd9d3f6ef1e48a5","aoa:aoa-techniques:anchor:b5d92cbab7afe9625db16ae5","aoa:aoa-techniques:anchor:b5f74f05e602b52f685325b5","aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44","aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e","aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","aoa:aoa-techniques:anchor:b9dfdfe971b2ee39a6d8ba40","aoa:aoa-techniques:anchor:bb01040578683f99cd6e58cb","aoa:aoa-techniques:anchor:bba30a00ff5e4aa048049df2","aoa:aoa-techniques:anchor:bc263ab13bb1f335bdbf20aa","aoa:aoa-techniques:anchor:bc6d13accbe0a13deb572ee6","aoa:aoa-techniques:anchor:beebfbe62f129484bf6104ba","aoa:aoa-techniques:anchor:bef23c786e5b925769fe94d0","aoa:aoa-techniques:anchor:bf297467bd18e3f905f8cded","aoa:aoa-techniques:anchor:c060a0aa80f595d95d16d9d6","aoa:aoa-techniques:anchor:c22c249c88b41751271e550e","aoa:aoa-techniques:anchor:c2fa6e9160ac26bbb3390efa","aoa:aoa-techniques:anchor:c35d0c2e782d37cc9ce6b6c1","aoa:aoa-techniques:anchor:c35f2c4604d83d6c8d0aa525","aoa:aoa-techniques:anchor:c37ddaa8897053b49c9bb296","aoa:aoa-techniques:anchor:c48b6d6e49417c76506e009b","aoa:aoa-techniques:anchor:c4af81ae3e0489a11ef0a168","aoa:aoa-techniques:anchor:c4f6c00ae3db9159a1cb91c7","aoa:aoa-techniques:anchor:c61a75458d2f3a13f025e16e","aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","aoa:aoa-techniques:anchor:c7432410ae936f696ca8c3ca","aoa:aoa-techniques:anchor:c776ec5b2e0d95daef8773cf","aoa:aoa-techniques:anchor:ca0e1dc55b4a47f9d121ae86","aoa:aoa-techniques:anchor:ca408d4c593b6987048c78c8","aoa:aoa-techniques:anchor:cae0e1336bb3f7bfd4f449fc","aoa:aoa-techniques:anchor:cc8233a385a1e427f9e22955","aoa:aoa-techniques:anchor:cc911416c8bcf0fd15c22f83","aoa:aoa-techniques:anchor:cd05f673c2a9291152f5a561","aoa:aoa-techniques:anchor:cd0b8b5317ff4e79a76b843e","aoa:aoa-techniques:anchor:cd28e8d8ec9d4c6812cffca1","aoa:aoa-techniques:anchor:ce0e28e0fc99f6c2f58946fb","aoa:aoa-techniques:anchor:cfcebbd33ed49d6091ce82fc","aoa:aoa-techniques:anchor:d007b12507d20e024679d537","aoa:aoa-techniques:anchor:d0869f2520c586735a1e3ec6","aoa:aoa-techniques:anchor:d0a678f1411d5ec7284adb24","aoa:aoa-techniques:anchor:d0e1c4a664f5b79b973bc63d","aoa:aoa-techniques:anchor:d4489bb0c4a4fbde366d5e04","aoa:aoa-techniques:anchor:d4df5ac720c1168c777e2a9f","aoa:aoa-techniques:anchor:d4e069f39ea81dfb2bd8b3d7","aoa:aoa-techniques:anchor:d4f1d99b0989a322b8da7196","aoa:aoa-techniques:anchor:d4fc0c403c650e871a2cbda3","aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52","aoa:aoa-techniques:anchor:d7f73ad093a923457abe4476","aoa:aoa-techniques:anchor:daacf55144c3dff2f738cb23","aoa:aoa-techniques:anchor:db24304873d3a69304589284","aoa:aoa-techniques:anchor:deed7f8749125ba10207f02d","aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","aoa:aoa-techniques:anchor:e2d905475a1e1b31afb5976c","aoa:aoa-techniques:anchor:e3e7f084f5b636a4723cacf2","aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","aoa:aoa-techniques:anchor:e59b2b40078eeef86eb33dcf","aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355","aoa:aoa-techniques:anchor:e6d87899b6753650739c098f","aoa:aoa-techniques:anchor:e70bf4851d8e35a142be7212","aoa:aoa-techniques:anchor:e7934f42394dc6299c4db126","aoa:aoa-techniques:anchor:e89d928907573215e9f16372","aoa:aoa-techniques:anchor:e9410b122cca054a4cddbe9a","aoa:aoa-techniques:anchor:ea052ffb8264f4b390cc75d3","aoa:aoa-techniques:anchor:eb3d7fc9164dc018d04b4122","aoa:aoa-techniques:anchor:ee2cba83c030386284042171","aoa:aoa-techniques:anchor:ee3573cbf43c02a6c53a76c3","aoa:aoa-techniques:anchor:eea898fb94871ed85902ab69","aoa:aoa-techniques:anchor:eee0d726c786b872d1d9b4ac","aoa:aoa-techniques:anchor:ef077b0e56f1f8d6972e05cf","aoa:aoa-techniques:anchor:ef27f5a40bb3eefbd3162863","aoa:aoa-techniques:anchor:ef644b1e48e790cc73017fb9","aoa:aoa-techniques:anchor:ef8acdfe43c6c1fa0edf27e6","aoa:aoa-techniques:anchor:f0dee75f40aa051e58a5c9a2","aoa:aoa-techniques:anchor:f29e9b106bb64373784f27dd","aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","aoa:aoa-techniques:anchor:f3fbac540e0009f5027f61cc","aoa:aoa-techniques:anchor:f603f2d584d5ab76a1877ff6","aoa:aoa-techniques:anchor:f624522a9f1d82cd0ee722f3","aoa:aoa-techniques:anchor:f718dc802df90e923913707f","aoa:aoa-techniques:anchor:f795248e3df57fb362b32e5f","aoa:aoa-techniques:anchor:f91073f609c8ed98eecdd4c8","aoa:aoa-techniques:anchor:f93709cbc940134b6d15fd93","aoa:aoa-techniques:anchor:f96be22bbfa558dcf4c52c14","aoa:aoa-techniques:anchor:f9dd423e96335d688bf33d4e","aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","aoa:aoa-techniques:anchor:fb8edd4e9dcb000601e5c7a1","aoa:aoa-techniques:anchor:fdd86ac3dedd571c779f0062","aoa:aoa-techniques:anchor:fef88c03c0bd2ffd010a2904"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:1c18253908518a67d7767e77","label":"distillation","provenance_ref":"deterministic","semantic_key":"mechanics/distillation","source_digest":"5d4c6ee2061213be28406b7b7c7098245d862da9eecb17f4345a885cbeb9ff5c","source_record_ids":["aoa:aoa-techniques:artifact:012afc0f60d47e2156e11e7c","aoa:aoa-techniques:artifact:01a70f8ddd540893b5a82d72","aoa:aoa-techniques:artifact:020bb8fb4c97a84728f69dbd","aoa:aoa-techniques:artifact:02725fe911d71d32505fc6ad","aoa:aoa-techniques:artifact:02b9d67150122bff94236586","aoa:aoa-techniques:artifact:03af0081d66bb1e661ffd36f","aoa:aoa-techniques:artifact:0435b1a7c020c61732614001","aoa:aoa-techniques:artifact:068f1b1e753aadb4ac7af2fc","aoa:aoa-techniques:artifact:0743b697bf64bec5988908f4","aoa:aoa-techniques:artifact:07ce689f08cf16f3527fc4f7","aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","aoa:aoa-techniques:artifact:0978b56480c7657711436219","aoa:aoa-techniques:artifact:0a9f7c2533329b5cc3f569dc","aoa:aoa-techniques:artifact:0b7d8520f2e4a183b2db8372","aoa:aoa-techniques:artifact:0cbfc31da990762d893d8446","aoa:aoa-techniques:artifact:0d087cce4b634d96e2d9653d","aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","aoa:aoa-techniques:artifact:12b9435bf6e909efd884670d","aoa:aoa-techniques:artifact:135790aad8ff2a807d02701c","aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","aoa:aoa-techniques:artifact:162b12067e96cd5aec11d4f3","aoa:aoa-techniques:artifact:171083c92df90597b8c6d473","aoa:aoa-techniques:artifact:17887a255a778da6f8fe0313","aoa:aoa-techniques:artifact:1788e513b903c1b1de5a7b5e","aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","aoa:aoa-techniques:artifact:183461d99a40009516486c0e","aoa:aoa-techniques:artifact:194b5a78b854a52aa669c1b9","aoa:aoa-techniques:artifact:19a81dcd26d390428c646806","aoa:aoa-techniques:artifact:19ad5940ccc2d23e9da0c7f6","aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","aoa:aoa-techniques:artifact:1bd931ce32fb23c3d04421f5","aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","aoa:aoa-techniques:artifact:1cf45f2e2c63ab79c81880c9","aoa:aoa-techniques:artifact:1e72edac7e28cf4da4792196","aoa:aoa-techniques:artifact:1e96bc1426c8950259835bb7","aoa:aoa-techniques:artifact:1ef01e20174005e6c1188987","aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","aoa:aoa-techniques:artifact:230300f5c93c60553a3b11d8","aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","aoa:aoa-techniques:artifact:241181e6d015c4e81ed89494","aoa:aoa-techniques:artifact:243f21054759c33a660563f2","aoa:aoa-techniques:artifact:24c5f3398d058bb26c34e573","aoa:aoa-techniques:artifact:24f952fceed043566fc03f8b","aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8","aoa:aoa-techniques:artifact:275c69fea6f4ed237e677ba6","aoa:aoa-techniques:artifact:276241f8b398d6731e4f727a","aoa:aoa-techniques:artifact:28d2e503ac2d2a27e1a10092","aoa:aoa-techniques:artifact:29ba22ffb17eb05350a6c5d8","aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf","aoa:aoa-techniques:artifact:2bf761cf21e5b4d6e862bd33","aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","aoa:aoa-techniques:artifact:302bfdd03b2d5e324a5c69c4","aoa:aoa-techniques:artifact:306109b542eff7632f136b0e","aoa:aoa-techniques:artifact:30beb9906bb62b4db5c4db13","aoa:aoa-techniques:artifact:31a6a3ce9244beba872569d3","aoa:aoa-techniques:artifact:31bd9ed4776744c6bee438e4","aoa:aoa-techniques:artifact:31ed7dd71c79aef53c081c9d","aoa:aoa-techniques:artifact:321896c1b1f5171091b5cdf3","aoa:aoa-techniques:artifact:3228705e4b99b2befda7d6e4","aoa:aoa-techniques:artifact:331fb050b9ee7573ef318347","aoa:aoa-techniques:artifact:33de82121c5e5c731af967ab","aoa:aoa-techniques:artifact:34627f21196e425b7edb4a68","aoa:aoa-techniques:artifact:357fc16504ccf5afe89c3226","aoa:aoa-techniques:artifact:35d77bf50f6518f4f2e625ff","aoa:aoa-techniques:artifact:366b800f4b86c83ca4fc1323","aoa:aoa-techniques:artifact:36efec87ded6f5b069e4f084","aoa:aoa-techniques:artifact:37320dfab9c549cded5b4f65","aoa:aoa-techniques:artifact:3894d1e5250d4d85c25b793a","aoa:aoa-techniques:artifact:395a124445c66f20adae62e0","aoa:aoa-techniques:artifact:3ae93e5f7a23c58f7dfb0031","aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","aoa:aoa-techniques:artifact:3bb431257748a1b661f025a1","aoa:aoa-techniques:artifact:3c885d152cd68ff4d23d5dc4","aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","aoa:aoa-techniques:artifact:3ed1bb127f65309292d92079","aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075","aoa:aoa-techniques:artifact:3faea6ec16c782a2552f82dc","aoa:aoa-techniques:artifact:3feef2dd8124efaaf88da3ac","aoa:aoa-techniques:artifact:4009d2ba51883ad244865419","aoa:aoa-techniques:artifact:406d0a2cdc8e2dd75bccb45d","aoa:aoa-techniques:artifact:40e0f556a68266a4c2fefe82","aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee","aoa:aoa-techniques:artifact:42e944264062ef4190bd102e","aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","aoa:aoa-techniques:artifact:485e376b48dfea26d1b0c4d2","aoa:aoa-techniques:artifact:4aba082c98932530e04ed537","aoa:aoa-techniques:artifact:4bd7e049d0c871f8d832ce7d","aoa:aoa-techniques:artifact:4c17dc0212be77d7d67bc39f","aoa:aoa-techniques:artifact:4c5d4278022a41717ba005dd","aoa:aoa-techniques:artifact:4cd7f4f448c2b0321fa9fdad","aoa:aoa-techniques:artifact:4d310869dd2e62ecdcd12672","aoa:aoa-techniques:artifact:4e66fdff1d365acd57cbf978","aoa:aoa-techniques:artifact:50268f67ec3c1db46073779c","aoa:aoa-techniques:artifact:502ad961e0c7d61ded6ee74a","aoa:aoa-techniques:artifact:50ff6e7647104f2158343fac","aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","aoa:aoa-techniques:artifact:521faaaf800f3eca7f1968d7","aoa:aoa-techniques:artifact:528bbfab601636d0cce5d714","aoa:aoa-techniques:artifact:5291f1cdb3efaddd81d020a9","aoa:aoa-techniques:artifact:52e73841d94c6e5347a66d5f","aoa:aoa-techniques:artifact:5374bda42b1a16346071489a","aoa:aoa-techniques:artifact:538a4458db4e8a9435f20f9b","aoa:aoa-techniques:artifact:538bb41b40470989ae774aa1","aoa:aoa-techniques:artifact:53b5a894bcdc854168397bb3","aoa:aoa-techniques:artifact:53efc8b55bbb771b99eb5bc0","aoa:aoa-techniques:artifact:54881ed6fc5ab576a23108ad","aoa:aoa-techniques:artifact:55a3cf5db6d14c8baffb2ed8","aoa:aoa-techniques:artifact:577c1d0e02c2508128663161","aoa:aoa-techniques:artifact:57e29e91d362cfc1ba48774f","aoa:aoa-techniques:artifact:5813f8d2d6a18e2344bfcbd1","aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","aoa:aoa-techniques:artifact:59396c5568d110a761dffa9c","aoa:aoa-techniques:artifact:5a427c584fa1429f11e93829","aoa:aoa-techniques:artifact:5b1bcb5d2dcb811d429f67c5","aoa:aoa-techniques:artifact:5b44d82869b0c323d47f407b","aoa:aoa-techniques:artifact:5b5175da19a378fea73fbebb","aoa:aoa-techniques:artifact:5b933ec3dff555bc66577052","aoa:aoa-techniques:artifact:5c1073429c3a0b92540ff9b5","aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","aoa:aoa-techniques:artifact:610f4b559b944866885cd4dc","aoa:aoa-techniques:artifact:630e46489e51b6cdba85601d","aoa:aoa-techniques:artifact:6350baca8fc603ed8315477f","aoa:aoa-techniques:artifact:647cc87cbeaaa43064efaee4","aoa:aoa-techniques:artifact:64d8f386eaf8b807e19f5935","aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","aoa:aoa-techniques:artifact:678720844c1ec95a7e08b228","aoa:aoa-techniques:artifact:6ac36b8893b6395918e45cfa","aoa:aoa-techniques:artifact:6bf6b62a56d7affb222fb3fd","aoa:aoa-techniques:artifact:6d5675828e06a9dbd9ea4488","aoa:aoa-techniques:artifact:6d639d0fa8f0902c2e18bf90","aoa:aoa-techniques:artifact:6e2f5bf08ca1f82980fef902","aoa:aoa-techniques:artifact:6ee274eb66234bef97bd1ad6","aoa:aoa-techniques:artifact:71201fec2eec509ba55b62ee","aoa:aoa-techniques:artifact:725d04e0beb9e29e171d02cc","aoa:aoa-techniques:artifact:72f600253b504da6dac9194e","aoa:aoa-techniques:artifact:72fb3850cf1510716518706a","aoa:aoa-techniques:artifact:738280b93c94398fbd150d50","aoa:aoa-techniques:artifact:7407303c3d88ba654f200fed","aoa:aoa-techniques:artifact:7456cccdf9125526fac126b2","aoa:aoa-techniques:artifact:74641082b6240b36e234ede7","aoa:aoa-techniques:artifact:751a8fb315e31b4d762f980f","aoa:aoa-techniques:artifact:75425832416fde31fbae2931","aoa:aoa-techniques:artifact:758e29efb65b54b21c9debb1","aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c","aoa:aoa-techniques:artifact:765906c4c54c46b0c4898ce0","aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","aoa:aoa-techniques:artifact:77f9b1a62560dc090494f849","aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a","aoa:aoa-techniques:artifact:80a3b09df4e3867a6924b1c7","aoa:aoa-techniques:artifact:8150cef8632840038231233a","aoa:aoa-techniques:artifact:81589e47eeee0fb4a6ea6d43","aoa:aoa-techniques:artifact:826afccac9b1261d23f89f8d","aoa:aoa-techniques:artifact:82e028210399ae4428247f3c","aoa:aoa-techniques:artifact:8340c564c99b04b2d2bc9d0a","aoa:aoa-techniques:artifact:84277125c03ab930a4b7252f","aoa:aoa-techniques:artifact:846991a7ef35d6a98475f6d6","aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","aoa:aoa-techniques:artifact:87521d3395d01ec0fe08f1ea","aoa:aoa-techniques:artifact:887d4a0e7d480a04b5217873","aoa:aoa-techniques:artifact:890889554e1cec9079f72f86","aoa:aoa-techniques:artifact:8a6542641b3e9209ba03e08d","aoa:aoa-techniques:artifact:8b007b9088ad3591e58db226","aoa:aoa-techniques:artifact:8b81ac42d11c2733c2f20418","aoa:aoa-techniques:artifact:8b9b6b7d4d614b345ae84a1f","aoa:aoa-techniques:artifact:8de898f47e9e3b0854d71aba","aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","aoa:aoa-techniques:artifact:8fe1cc67ad985fde2d27aa57","aoa:aoa-techniques:artifact:90067aff1a4f98e3aff450cb","aoa:aoa-techniques:artifact:90135325c6273a19345e4fa8","aoa:aoa-techniques:artifact:9021102da097414437a68d4f","aoa:aoa-techniques:artifact:94221beed9e75626c26fa5f0","aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","aoa:aoa-techniques:artifact:958b553e812d7a61f5670eba","aoa:aoa-techniques:artifact:9671af65d12915bba6df468c","aoa:aoa-techniques:artifact:96df5459a7f604aaafa8ef9b","aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2","aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae","aoa:aoa-techniques:artifact:99758dab04fd48b9c22c8134","aoa:aoa-techniques:artifact:998ba212c6a82e2f08d7b6df","aoa:aoa-techniques:artifact:99e4142d3dc6fa22b624e638","aoa:aoa-techniques:artifact:99e7743c0f71b084bf613ec2","aoa:aoa-techniques:artifact:9b3627e44c3737426b0a9555","aoa:aoa-techniques:artifact:9bd5382d28ff305374d89d34","aoa:aoa-techniques:artifact:9be1ca9680a3adf4cf38e13a","aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27","aoa:aoa-techniques:artifact:a1368b52e87f2aa01ddbc24f","aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","aoa:aoa-techniques:artifact:a309ed4b54dd6bf2d57add14","aoa:aoa-techniques:artifact:a490f9083c061742442c76f1","aoa:aoa-techniques:artifact:a5d8ccba85d0a3c70b399526","aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b","aoa:aoa-techniques:artifact:a7008b04ee25596f485c2f99","aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","aoa:aoa-techniques:artifact:a82a2d1eff854a5b62a3f523","aoa:aoa-techniques:artifact:a8315cfef92666bc3dbed5ef","aoa:aoa-techniques:artifact:a97d8942d149af1b82453153","aoa:aoa-techniques:artifact:a9c949d3ec8753d6c9e15610","aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","aoa:aoa-techniques:artifact:aaedc8232c27c8b4d75da32f","aoa:aoa-techniques:artifact:ab54375914c6a23ced573aa9","aoa:aoa-techniques:artifact:aba405c32b985c0a2fa81085","aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","aoa:aoa-techniques:artifact:b152a0b98d3754afb662dffa","aoa:aoa-techniques:artifact:b4e84d31cd8d486d071969d4","aoa:aoa-techniques:artifact:b598f0f95466968d1af36d7e","aoa:aoa-techniques:artifact:b5d54a6ff1bb9331d0c891ab","aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","aoa:aoa-techniques:artifact:b77ebb6f44579ca40ca922fa","aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","aoa:aoa-techniques:artifact:b8752e2dfab43b33fff12bfc","aoa:aoa-techniques:artifact:ba2860101181a093316d8cba","aoa:aoa-techniques:artifact:bac359db4375a051d784ce67","aoa:aoa-techniques:artifact:bf297ada0523627a02099015","aoa:aoa-techniques:artifact:bf559feafdd8788466d987e4","aoa:aoa-techniques:artifact:c00bb1a986ec29d86f8448ef","aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","aoa:aoa-techniques:artifact:c378e0bb4347b59a1244c35a","aoa:aoa-techniques:artifact:c38f953d407fda8093621250","aoa:aoa-techniques:artifact:c54de120089eef1a6853667a","aoa:aoa-techniques:artifact:c59f4287b9e3a72be88c9eaa","aoa:aoa-techniques:artifact:c69089469604c6b4ee8aeb2b","aoa:aoa-techniques:artifact:c7008657e0ae2e93ff9f9bcf","aoa:aoa-techniques:artifact:c7c83102096d7ba5b4584308","aoa:aoa-techniques:artifact:c7f5d25fc63cc0a96b9735c2","aoa:aoa-techniques:artifact:c81e9a9b6ca47a71a2ad94ac","aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7","aoa:aoa-techniques:artifact:c89f324a2cf376e8069cf5c3","aoa:aoa-techniques:artifact:c9107011968421971fabafeb","aoa:aoa-techniques:artifact:cadcc7a2abfabc4524e945c7","aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6","aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","aoa:aoa-techniques:artifact:cd86ffaf0ac8b5ffb3d7d7cb","aoa:aoa-techniques:artifact:ce5d65b52ab4cbe348412f72","aoa:aoa-techniques:artifact:ce8ca6e1f0f910e839bf7ede","aoa:aoa-techniques:artifact:ced7185b3e1ab4e5f1d322d1","aoa:aoa-techniques:artifact:d1724b1d0fcb3bd4e94adfd5","aoa:aoa-techniques:artifact:d191a910615a6e7e27d60580","aoa:aoa-techniques:artifact:d1a9d831ec2524b5d37880b4","aoa:aoa-techniques:artifact:d28a9f0415aee8fa14596dbe","aoa:aoa-techniques:artifact:d32e043b423d755ae391a13f","aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","aoa:aoa-techniques:artifact:d6d89bc629ac65cb08f10b90","aoa:aoa-techniques:artifact:d96368a93dd5c19b08e5401d","aoa:aoa-techniques:artifact:d9ac278f5b81c5f2137bffc2","aoa:aoa-techniques:artifact:d9c7cd37a67204b5d368f8b6","aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","aoa:aoa-techniques:artifact:db92dedb125d092a31235918","aoa:aoa-techniques:artifact:dbb8e1c98462d2210a69cafe","aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","aoa:aoa-techniques:artifact:dcca45fa1ecaebce1e627100","aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","aoa:aoa-techniques:artifact:ddfcab62cbcdce5b474f6b6c","aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e","aoa:aoa-techniques:artifact:df3dedeb399280a688945489","aoa:aoa-techniques:artifact:dfc8e88cf15e7b4696445460","aoa:aoa-techniques:artifact:e0fdabb85c8668f75f6b7d80","aoa:aoa-techniques:artifact:e1c51c7c70802edcbfd3c1c4","aoa:aoa-techniques:artifact:e29466ab9b68d140321f6d74","aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e","aoa:aoa-techniques:artifact:e5099efe04874e260d36b86a","aoa:aoa-techniques:artifact:e52c67e9b12aaf97098c94d1","aoa:aoa-techniques:artifact:e66619707ba54a89aa714842","aoa:aoa-techniques:artifact:e68b4f8f3db02cf31cb0e74b","aoa:aoa-techniques:artifact:e6e030549802f6421035903e","aoa:aoa-techniques:artifact:e8b51cf0ee49407040e14967","aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6","aoa:aoa-techniques:artifact:ed41d63e9981165c3bbc8857","aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","aoa:aoa-techniques:artifact:efad5c18022305012ddd5d4d","aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","aoa:aoa-techniques:artifact:f12c2b5c72013647234339d9","aoa:aoa-techniques:artifact:f13c07926dfa7da5d3b19c63","aoa:aoa-techniques:artifact:f1809ca0b4d7229ef7127047","aoa:aoa-techniques:artifact:f1b7059f6f816e45a7172594","aoa:aoa-techniques:artifact:f35d0c120acc61a2ba2a4849","aoa:aoa-techniques:artifact:f444d5f6f7157618cd89c466","aoa:aoa-techniques:artifact:f55d59c8f6dcecf868fa3c37","aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","aoa:aoa-techniques:artifact:f9c1ca6c39d2e37a29f697e0","aoa:aoa-techniques:artifact:fbd78a9245a822f5022ef2a3","aoa:aoa-techniques:artifact:fc6f339d7ee1db8e0558772d","aoa:aoa-techniques:artifact:fc97414a501927ba15cf1b1d","aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","aoa:aoa-techniques:artifact:fd36d2f41a5814b215a3d848","aoa:aoa-techniques:artifact:fde64b8930329509292434ad","aoa:aoa-techniques:artifact:fe7c6853ce01a2162a720948","aoa:aoa-techniques:artifact:fec3dc23de4553ec2e819b55","aoa:aoa-techniques:artifact:ff3eb7e7bed98dc8dc74ff0d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:011f49430d6fef6fc3394ea0","aoa:aoa-techniques:anchor:3300dbb24d5bf0e5a69cd79f","aoa:aoa-techniques:anchor:365cf84216c65d983b1c8220","aoa:aoa-techniques:anchor:49c34b0d89122f54e9fcd02d","aoa:aoa-techniques:anchor:5b4facc9c704d5b87f5e34da","aoa:aoa-techniques:anchor:720155dd6502ec3f28139454","aoa:aoa-techniques:anchor:7db875d04e9ba784cf2f77aa","aoa:aoa-techniques:anchor:89612ded628571616957e0a3","aoa:aoa-techniques:anchor:8d09dd8641d5aadf934685e7","aoa:aoa-techniques:anchor:8d3985e152027b2feb03ed79","aoa:aoa-techniques:anchor:a84010e011d5cbdec1625bb6","aoa:aoa-techniques:anchor:b13a821c41cc18894908df36","aoa:aoa-techniques:anchor:babd79e89e287c54b43c5e82","aoa:aoa-techniques:anchor:bb071000a4560add16e2a228","aoa:aoa-techniques:anchor:bc328b701bf14aca1db48b1c","aoa:aoa-techniques:anchor:cd2c630839a64eaee4605c3c","aoa:aoa-techniques:anchor:ed985c4b7c6d3135db170fcd","aoa:aoa-techniques:anchor:f03a5c8a5d1739fa0ad05200"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:0ba38d6b1f1d9b92f7218dfb","label":"boundary-bridge","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge","source_digest":"f0f6d652b5ae3f6b95743b2220484d479b1754490a469ed9b8907a40d7119663","source_record_ids":["aoa:aoa-techniques:artifact:03ab6d31c240dd6da06db6c6","aoa:aoa-techniques:artifact:0a397c872e31eb43f190b7bd","aoa:aoa-techniques:artifact:1fcf12b8829a2e1590d8674f","aoa:aoa-techniques:artifact:2da7fee81d15fb0159639ca2","aoa:aoa-techniques:artifact:39d80cd0cc651d75f6360531","aoa:aoa-techniques:artifact:421b2ff25f00e355af6bb4e6","aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f","aoa:aoa-techniques:artifact:4a189f110e5f9dbbeda0af88","aoa:aoa-techniques:artifact:533d63d24a42b446f9686034","aoa:aoa-techniques:artifact:68d15c50ddebed3b86c4c4a8","aoa:aoa-techniques:artifact:7387ea10dd3c82a4487aa0d8","aoa:aoa-techniques:artifact:7b2260a83613041a4b540d95","aoa:aoa-techniques:artifact:8100325d6414a7b5cd2dcd4b","aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","aoa:aoa-techniques:artifact:92a8c606225ec60a84f0fda0","aoa:aoa-techniques:artifact:a694fe764a34559d55786e26","aoa:aoa-techniques:artifact:ed4ace301e7714a0fa443e06","aoa:aoa-techniques:artifact:fe08f92726a50caed1d8bcd2"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:004d346cb7aafa1f58fb86ae","aoa:aoa-techniques:anchor:008d3a311fb737f85981af0c","aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","aoa:aoa-techniques:anchor:017cbd2f4868c2b183418b92","aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","aoa:aoa-techniques:anchor:0330aece16af444c2f7e39cb","aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","aoa:aoa-techniques:anchor:07f71955d8f514dadfa726d7","aoa:aoa-techniques:anchor:08461cb1fec5568a19d91878","aoa:aoa-techniques:anchor:08a3a6e0d1a9376a233b10b5","aoa:aoa-techniques:anchor:08b9cbbc688a1f382cb4a26b","aoa:aoa-techniques:anchor:09d36f42cc56bb63868eb07c","aoa:aoa-techniques:anchor:0a225f0f13fca2586c011374","aoa:aoa-techniques:anchor:0a58ef71ee17c1ccb7701f25","aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","aoa:aoa-techniques:anchor:0b253a863340466491b1b23a","aoa:aoa-techniques:anchor:0c45dff3e34d0964ce0687f5","aoa:aoa-techniques:anchor:0c5da5ed548db71b5ac0e7d1","aoa:aoa-techniques:anchor:0eac6758d1787e0dc33ecdd7","aoa:aoa-techniques:anchor:0f15e80c000c8f5d22d6d178","aoa:aoa-techniques:anchor:0f43e73b5767455afd6bb9a1","aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","aoa:aoa-techniques:anchor:116da7a2029997226c834014","aoa:aoa-techniques:anchor:11cac66ef107d693a8c44ff7","aoa:aoa-techniques:anchor:13802c71a291ca6540806ce4","aoa:aoa-techniques:anchor:15b4a56f5feb8566c0c35adb","aoa:aoa-techniques:anchor:16e431f327930deab13b43a9","aoa:aoa-techniques:anchor:17ffa9045deefa31c5ce000f","aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","aoa:aoa-techniques:anchor:193caff3a74985d607c06d49","aoa:aoa-techniques:anchor:19c9ce4ad6f333348a0442c6","aoa:aoa-techniques:anchor:1aecae6fb2e66d86841e4ce3","aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03","aoa:aoa-techniques:anchor:1d3393930a228f83b6a40cc7","aoa:aoa-techniques:anchor:1d896485a992c9aba72be467","aoa:aoa-techniques:anchor:1e70455e1ec38c8975f9395c","aoa:aoa-techniques:anchor:1edd9e314c354ccc5d3e03e7","aoa:aoa-techniques:anchor:1f8b8af58092484be17ce6b2","aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","aoa:aoa-techniques:anchor:216038c047d7be92f24c9bf3","aoa:aoa-techniques:anchor:219fa43a6db9eb01fa6b53e3","aoa:aoa-techniques:anchor:21bc81b24a07839b611f6c6b","aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab","aoa:aoa-techniques:anchor:230ccd6b97439f8e668e242d","aoa:aoa-techniques:anchor:2323e38403362d29e033deae","aoa:aoa-techniques:anchor:239b0cafa33bcf86998a07c0","aoa:aoa-techniques:anchor:23d685dd4d27d0361dbf33c4","aoa:aoa-techniques:anchor:25db7022958d13fb31f8a653","aoa:aoa-techniques:anchor:2662df2da298c6d1818f461c","aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd","aoa:aoa-techniques:anchor:28f35886132515eda8358e4e","aoa:aoa-techniques:anchor:2914a4a235947730804edc19","aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4","aoa:aoa-techniques:anchor:2a07cb4837bb9e712e02c11a","aoa:aoa-techniques:anchor:2bec5bdf7f5bb94a14c386ba","aoa:aoa-techniques:anchor:2c234357d93af3aa108a0e07","aoa:aoa-techniques:anchor:2c2cc9805c1175ef0354d157","aoa:aoa-techniques:anchor:2cdd3281212bb6970aca3b9a","aoa:aoa-techniques:anchor:2dc907164db4a67784ae516b","aoa:aoa-techniques:anchor:2deaf6df24b0862dafa6faf8","aoa:aoa-techniques:anchor:2f7f49780021b6d3615f4baa","aoa:aoa-techniques:anchor:2ffd9bc452bea451dbe1ae70","aoa:aoa-techniques:anchor:305866d803086f7e98a58e31","aoa:aoa-techniques:anchor:318ef01638e5882d339d13b4","aoa:aoa-techniques:anchor:3195de7ba2422399682c6f68","aoa:aoa-techniques:anchor:31ac322df2356c18fece2db7","aoa:aoa-techniques:anchor:327bacfdf78f5d37e985a9f8","aoa:aoa-techniques:anchor:329f6ffb482f2fe17a5d7077","aoa:aoa-techniques:anchor:35b718f92aa8648b6c366472","aoa:aoa-techniques:anchor:361103f961f909f4c123433e","aoa:aoa-techniques:anchor:3741f1d59f0363477d7b9b11","aoa:aoa-techniques:anchor:3a2c13172c42ad91d8454f06","aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e","aoa:aoa-techniques:anchor:3b2d233f15714b0a091488cd","aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","aoa:aoa-techniques:anchor:3cc172e274ccbfdaf3dc2a61","aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","aoa:aoa-techniques:anchor:3fbaf7c4d3fd1375f9ccd6d5","aoa:aoa-techniques:anchor:4035531165582a1dc864a388","aoa:aoa-techniques:anchor:4060afa0d3bdefb2aaba1ec6","aoa:aoa-techniques:anchor:43cf53fe511bc93ae4a2a19a","aoa:aoa-techniques:anchor:43cfb1aab829162898397ea6","aoa:aoa-techniques:anchor:43feb3daee9310f782143af7","aoa:aoa-techniques:anchor:45133b63935581e72ef1883d","aoa:aoa-techniques:anchor:452e8e06956baf3e39635f01","aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","aoa:aoa-techniques:anchor:471a955a2e179944eb322f79","aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","aoa:aoa-techniques:anchor:49869e1b92146765f59c96ff","aoa:aoa-techniques:anchor:49b39e0d7f8569f514e63c0f","aoa:aoa-techniques:anchor:4a265c97c7a9faca1d98e672","aoa:aoa-techniques:anchor:4b4976023e495c834125bfcd","aoa:aoa-techniques:anchor:4c90d2731db9899463d26522","aoa:aoa-techniques:anchor:4c935cc0efe688cb971338d9","aoa:aoa-techniques:anchor:4dab938da9e7173a8c88790c","aoa:aoa-techniques:anchor:4eb9d4e709b70261952becb9","aoa:aoa-techniques:anchor:4f92b0dba7435da64117d54a","aoa:aoa-techniques:anchor:4fe36c7dd7093f65d8114e3b","aoa:aoa-techniques:anchor:5049b1246255eab985c0f688","aoa:aoa-techniques:anchor:537361e02526bb363dcfd3b7","aoa:aoa-techniques:anchor:54bc439cc8ef8ad690f3f6d8","aoa:aoa-techniques:anchor:54efb8b453b96c315bd05fcd","aoa:aoa-techniques:anchor:5778a57423333c5456deea8a","aoa:aoa-techniques:anchor:5810c155ece164ad55c6dac3","aoa:aoa-techniques:anchor:5aebd19b24796bf16d32f3be","aoa:aoa-techniques:anchor:5b8396a6858a1166a9c11e47","aoa:aoa-techniques:anchor:5bc91fceca9739150de32c64","aoa:aoa-techniques:anchor:5c0d602f4f53bec3d3a5f111","aoa:aoa-techniques:anchor:5c139b8eb3bd10f4b176b2ef","aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb","aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","aoa:aoa-techniques:anchor:5de62024144aa64132cf9713","aoa:aoa-techniques:anchor:600c582f43a21dc7a3c09ef5","aoa:aoa-techniques:anchor:613461552c83841bed52c351","aoa:aoa-techniques:anchor:6402a1a49413d4b59b28c467","aoa:aoa-techniques:anchor:64947c8dca361f2aa5e50b93","aoa:aoa-techniques:anchor:6549e1bb6fd958ae3bcda27e","aoa:aoa-techniques:anchor:657896c747cf94f687706905","aoa:aoa-techniques:anchor:663d13e30152989cea785444","aoa:aoa-techniques:anchor:669654784ff3aacf80d98cbd","aoa:aoa-techniques:anchor:66a80e4be71018e2727a452c","aoa:aoa-techniques:anchor:66b233e3c4caf7bf4e5998f8","aoa:aoa-techniques:anchor:6730f2ba972d7e4b6e8556e8","aoa:aoa-techniques:anchor:675caa36db4c691a99fb1d7b","aoa:aoa-techniques:anchor:6849c1c95ccc92fdd41c98b1","aoa:aoa-techniques:anchor:699ad6faae43c4f3b7ec0053","aoa:aoa-techniques:anchor:69b605d67753b11dbd164f0b","aoa:aoa-techniques:anchor:69f5f2a199b57ef4168c6276","aoa:aoa-techniques:anchor:6a4ac1d91e5712e6accbb303","aoa:aoa-techniques:anchor:6a8178209fb899ebd08acacd","aoa:aoa-techniques:anchor:6c226d4e8b71f30f920b2fdd","aoa:aoa-techniques:anchor:6ce9de08c4ee5a53e1f590ac","aoa:aoa-techniques:anchor:6db5ccf3712b976ec835aabc","aoa:aoa-techniques:anchor:6dc336494775ac3a4e2cdfe3","aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05","aoa:aoa-techniques:anchor:6ea51c6712643e400a0286ac","aoa:aoa-techniques:anchor:6ecda435fefca8bca0c2297b","aoa:aoa-techniques:anchor:6f22f4f13a7a236cf6aab6d6","aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821","aoa:aoa-techniques:anchor:706c86a7a45ad63e22fabdec","aoa:aoa-techniques:anchor:71631681fd5cc24d750f7469","aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b","aoa:aoa-techniques:anchor:72a969368dcbd0e1c7b42166","aoa:aoa-techniques:anchor:73b0b4ae94897ba720da53f9","aoa:aoa-techniques:anchor:74123619244129f4ee04644d","aoa:aoa-techniques:anchor:774ead182fcb89de9e19254a","aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b","aoa:aoa-techniques:anchor:780715be6297dd7326ae69a4","aoa:aoa-techniques:anchor:7983499fe9dfb4f426b20b13","aoa:aoa-techniques:anchor:7b91d3196b2d38fed0fd951e","aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","aoa:aoa-techniques:anchor:7c8c069e656545ea884b926b","aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","aoa:aoa-techniques:anchor:7dce8bfc8960bd3892a90057","aoa:aoa-techniques:anchor:7e0d131a67a4e95746c07b5f","aoa:aoa-techniques:anchor:7e9d6e7ce191f8dcf2ef4694","aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc","aoa:aoa-techniques:anchor:818a9121d3852ead651d89cd","aoa:aoa-techniques:anchor:82f90d940e3522e1df53473f","aoa:aoa-techniques:anchor:83c9cee2518e7ca5bc94929c","aoa:aoa-techniques:anchor:8475f8137710c4c5036abd82","aoa:aoa-techniques:anchor:8498edfdad97b4406fa606bb","aoa:aoa-techniques:anchor:85ff385f53da5901b0de1ab2","aoa:aoa-techniques:anchor:86cd8c8cba03b51bec82f742","aoa:aoa-techniques:anchor:88163f45079ac3717b6d402f","aoa:aoa-techniques:anchor:8881ebeb5356f155b1bde376","aoa:aoa-techniques:anchor:89490bb2dd8701620225599e","aoa:aoa-techniques:anchor:894938dd69460a2ff444602f","aoa:aoa-techniques:anchor:8a646592548b7bbee8eb3962","aoa:aoa-techniques:anchor:8ac05377990a318920ef648a","aoa:aoa-techniques:anchor:8b28806d9c009243e81e2aad","aoa:aoa-techniques:anchor:8b9fa3f67cc6cc007b878f0a","aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67","aoa:aoa-techniques:anchor:8ce7aec5aa70c36407699fa0","aoa:aoa-techniques:anchor:8cf8a41dc609dd2cc698e451","aoa:aoa-techniques:anchor:8cffae3dd67a16902fdb3e69","aoa:aoa-techniques:anchor:8f3f5e1f21dc6819f11a60c4","aoa:aoa-techniques:anchor:907d2c8ffe54ac1d43eae978","aoa:aoa-techniques:anchor:92db231c800c61f3503df8f2","aoa:aoa-techniques:anchor:93ef0ebf5a33bb20ad038cda","aoa:aoa-techniques:anchor:9653ec36aabc5160baccf4ac","aoa:aoa-techniques:anchor:97200fe0fcbac7f59a33d65f","aoa:aoa-techniques:anchor:978e7a003effb0fd6154307c","aoa:aoa-techniques:anchor:98a81ababa7897be12db4864","aoa:aoa-techniques:anchor:9995f1644e399ee461162783","aoa:aoa-techniques:anchor:9a2ab01879b8826a731fbfe4","aoa:aoa-techniques:anchor:9ad08765b70f5485cac9d76a","aoa:aoa-techniques:anchor:9aebb395ecaa3e4d508d1a22","aoa:aoa-techniques:anchor:9c0aa1dfdea588476ebdea88","aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","aoa:aoa-techniques:anchor:9c98aa48b4723abaa35ef21f","aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","aoa:aoa-techniques:anchor:a04bf10004e41075ddc7588e","aoa:aoa-techniques:anchor:a0c310c067e722660d722e4d","aoa:aoa-techniques:anchor:a24137ed4f39b13cf69ac833","aoa:aoa-techniques:anchor:a449f3c6fc5141bc9c76748d","aoa:aoa-techniques:anchor:a49e9cb33e1091d62de9a3b6","aoa:aoa-techniques:anchor:a4aedfcfc1f2d1fb2d1e2c53","aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","aoa:aoa-techniques:anchor:a7ca6a2ba423fa66e23600f2","aoa:aoa-techniques:anchor:a8aadf942643495c9581c021","aoa:aoa-techniques:anchor:a9eef9d75a1e65f76d972ab0","aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","aoa:aoa-techniques:anchor:ab321b78dbed0e87977a2313","aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628","aoa:aoa-techniques:anchor:add36d860b355204915abeeb","aoa:aoa-techniques:anchor:ae98c9a44df514475a5ef1bd","aoa:aoa-techniques:anchor:aea99a3bcd6d92d7f4cb2697","aoa:aoa-techniques:anchor:b01099645b513ed12cfa2d21","aoa:aoa-techniques:anchor:b07d1392c7862697dbbeca08","aoa:aoa-techniques:anchor:b39961a80e3e86daf30828aa","aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","aoa:aoa-techniques:anchor:b4fc9193eeb8bec23196d74a","aoa:aoa-techniques:anchor:b560daa43cd9d3f6ef1e48a5","aoa:aoa-techniques:anchor:b5d92cbab7afe9625db16ae5","aoa:aoa-techniques:anchor:b5f74f05e602b52f685325b5","aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44","aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e","aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","aoa:aoa-techniques:anchor:b9dfdfe971b2ee39a6d8ba40","aoa:aoa-techniques:anchor:bb01040578683f99cd6e58cb","aoa:aoa-techniques:anchor:bba30a00ff5e4aa048049df2","aoa:aoa-techniques:anchor:bc263ab13bb1f335bdbf20aa","aoa:aoa-techniques:anchor:bc6d13accbe0a13deb572ee6","aoa:aoa-techniques:anchor:beebfbe62f129484bf6104ba","aoa:aoa-techniques:anchor:bef23c786e5b925769fe94d0","aoa:aoa-techniques:anchor:bf297467bd18e3f905f8cded","aoa:aoa-techniques:anchor:c060a0aa80f595d95d16d9d6","aoa:aoa-techniques:anchor:c22c249c88b41751271e550e","aoa:aoa-techniques:anchor:c2fa6e9160ac26bbb3390efa","aoa:aoa-techniques:anchor:c35d0c2e782d37cc9ce6b6c1","aoa:aoa-techniques:anchor:c35f2c4604d83d6c8d0aa525","aoa:aoa-techniques:anchor:c37ddaa8897053b49c9bb296","aoa:aoa-techniques:anchor:c48b6d6e49417c76506e009b","aoa:aoa-techniques:anchor:c4af81ae3e0489a11ef0a168","aoa:aoa-techniques:anchor:c4f6c00ae3db9159a1cb91c7","aoa:aoa-techniques:anchor:c61a75458d2f3a13f025e16e","aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","aoa:aoa-techniques:anchor:c7432410ae936f696ca8c3ca","aoa:aoa-techniques:anchor:c776ec5b2e0d95daef8773cf","aoa:aoa-techniques:anchor:ca0e1dc55b4a47f9d121ae86","aoa:aoa-techniques:anchor:ca408d4c593b6987048c78c8","aoa:aoa-techniques:anchor:cae0e1336bb3f7bfd4f449fc","aoa:aoa-techniques:anchor:cc8233a385a1e427f9e22955","aoa:aoa-techniques:anchor:cc911416c8bcf0fd15c22f83","aoa:aoa-techniques:anchor:cd05f673c2a9291152f5a561","aoa:aoa-techniques:anchor:cd0b8b5317ff4e79a76b843e","aoa:aoa-techniques:anchor:cd28e8d8ec9d4c6812cffca1","aoa:aoa-techniques:anchor:ce0e28e0fc99f6c2f58946fb","aoa:aoa-techniques:anchor:cfcebbd33ed49d6091ce82fc","aoa:aoa-techniques:anchor:d007b12507d20e024679d537","aoa:aoa-techniques:anchor:d0869f2520c586735a1e3ec6","aoa:aoa-techniques:anchor:d0a678f1411d5ec7284adb24","aoa:aoa-techniques:anchor:d0e1c4a664f5b79b973bc63d","aoa:aoa-techniques:anchor:d4489bb0c4a4fbde366d5e04","aoa:aoa-techniques:anchor:d4df5ac720c1168c777e2a9f","aoa:aoa-techniques:anchor:d4e069f39ea81dfb2bd8b3d7","aoa:aoa-techniques:anchor:d4f1d99b0989a322b8da7196","aoa:aoa-techniques:anchor:d4fc0c403c650e871a2cbda3","aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52","aoa:aoa-techniques:anchor:d7f73ad093a923457abe4476","aoa:aoa-techniques:anchor:daacf55144c3dff2f738cb23","aoa:aoa-techniques:anchor:db24304873d3a69304589284","aoa:aoa-techniques:anchor:deed7f8749125ba10207f02d","aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","aoa:aoa-techniques:anchor:e2d905475a1e1b31afb5976c","aoa:aoa-techniques:anchor:e3e7f084f5b636a4723cacf2","aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","aoa:aoa-techniques:anchor:e59b2b40078eeef86eb33dcf","aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355","aoa:aoa-techniques:anchor:e6d87899b6753650739c098f","aoa:aoa-techniques:anchor:e70bf4851d8e35a142be7212","aoa:aoa-techniques:anchor:e7934f42394dc6299c4db126","aoa:aoa-techniques:anchor:e89d928907573215e9f16372","aoa:aoa-techniques:anchor:e9410b122cca054a4cddbe9a","aoa:aoa-techniques:anchor:ea052ffb8264f4b390cc75d3","aoa:aoa-techniques:anchor:eb3d7fc9164dc018d04b4122","aoa:aoa-techniques:anchor:ee2cba83c030386284042171","aoa:aoa-techniques:anchor:ee3573cbf43c02a6c53a76c3","aoa:aoa-techniques:anchor:eea898fb94871ed85902ab69","aoa:aoa-techniques:anchor:eee0d726c786b872d1d9b4ac","aoa:aoa-techniques:anchor:ef077b0e56f1f8d6972e05cf","aoa:aoa-techniques:anchor:ef27f5a40bb3eefbd3162863","aoa:aoa-techniques:anchor:ef644b1e48e790cc73017fb9","aoa:aoa-techniques:anchor:ef8acdfe43c6c1fa0edf27e6","aoa:aoa-techniques:anchor:f0dee75f40aa051e58a5c9a2","aoa:aoa-techniques:anchor:f29e9b106bb64373784f27dd","aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","aoa:aoa-techniques:anchor:f3fbac540e0009f5027f61cc","aoa:aoa-techniques:anchor:f603f2d584d5ab76a1877ff6","aoa:aoa-techniques:anchor:f624522a9f1d82cd0ee722f3","aoa:aoa-techniques:anchor:f718dc802df90e923913707f","aoa:aoa-techniques:anchor:f795248e3df57fb362b32e5f","aoa:aoa-techniques:anchor:f91073f609c8ed98eecdd4c8","aoa:aoa-techniques:anchor:f93709cbc940134b6d15fd93","aoa:aoa-techniques:anchor:f96be22bbfa558dcf4c52c14","aoa:aoa-techniques:anchor:f9dd423e96335d688bf33d4e","aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","aoa:aoa-techniques:anchor:fb8edd4e9dcb000601e5c7a1","aoa:aoa-techniques:anchor:fdd86ac3dedd571c779f0062","aoa:aoa-techniques:anchor:fef88c03c0bd2ffd010a2904"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:1c18253908518a67d7767e77","label":"distillation","provenance_ref":"deterministic","semantic_key":"mechanics/distillation","source_digest":"d88a52d29529ce35e1bca1552b4ba0c1c9b15b379848653cfa83fa09489c9d10","source_record_ids":["aoa:aoa-techniques:artifact:012afc0f60d47e2156e11e7c","aoa:aoa-techniques:artifact:01a70f8ddd540893b5a82d72","aoa:aoa-techniques:artifact:020bb8fb4c97a84728f69dbd","aoa:aoa-techniques:artifact:02725fe911d71d32505fc6ad","aoa:aoa-techniques:artifact:02b9d67150122bff94236586","aoa:aoa-techniques:artifact:03af0081d66bb1e661ffd36f","aoa:aoa-techniques:artifact:0435b1a7c020c61732614001","aoa:aoa-techniques:artifact:068f1b1e753aadb4ac7af2fc","aoa:aoa-techniques:artifact:0743b697bf64bec5988908f4","aoa:aoa-techniques:artifact:07ce689f08cf16f3527fc4f7","aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","aoa:aoa-techniques:artifact:0978b56480c7657711436219","aoa:aoa-techniques:artifact:0a9f7c2533329b5cc3f569dc","aoa:aoa-techniques:artifact:0b7d8520f2e4a183b2db8372","aoa:aoa-techniques:artifact:0cbfc31da990762d893d8446","aoa:aoa-techniques:artifact:0d087cce4b634d96e2d9653d","aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","aoa:aoa-techniques:artifact:12b9435bf6e909efd884670d","aoa:aoa-techniques:artifact:135790aad8ff2a807d02701c","aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","aoa:aoa-techniques:artifact:162b12067e96cd5aec11d4f3","aoa:aoa-techniques:artifact:171083c92df90597b8c6d473","aoa:aoa-techniques:artifact:17887a255a778da6f8fe0313","aoa:aoa-techniques:artifact:1788e513b903c1b1de5a7b5e","aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","aoa:aoa-techniques:artifact:183461d99a40009516486c0e","aoa:aoa-techniques:artifact:194b5a78b854a52aa669c1b9","aoa:aoa-techniques:artifact:19a81dcd26d390428c646806","aoa:aoa-techniques:artifact:19ad5940ccc2d23e9da0c7f6","aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","aoa:aoa-techniques:artifact:1bd931ce32fb23c3d04421f5","aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","aoa:aoa-techniques:artifact:1cf45f2e2c63ab79c81880c9","aoa:aoa-techniques:artifact:1e72edac7e28cf4da4792196","aoa:aoa-techniques:artifact:1e96bc1426c8950259835bb7","aoa:aoa-techniques:artifact:1ef01e20174005e6c1188987","aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","aoa:aoa-techniques:artifact:230300f5c93c60553a3b11d8","aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","aoa:aoa-techniques:artifact:241181e6d015c4e81ed89494","aoa:aoa-techniques:artifact:243f21054759c33a660563f2","aoa:aoa-techniques:artifact:24c5f3398d058bb26c34e573","aoa:aoa-techniques:artifact:24f952fceed043566fc03f8b","aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8","aoa:aoa-techniques:artifact:275c69fea6f4ed237e677ba6","aoa:aoa-techniques:artifact:276241f8b398d6731e4f727a","aoa:aoa-techniques:artifact:28d2e503ac2d2a27e1a10092","aoa:aoa-techniques:artifact:29ba22ffb17eb05350a6c5d8","aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf","aoa:aoa-techniques:artifact:2bf761cf21e5b4d6e862bd33","aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","aoa:aoa-techniques:artifact:302bfdd03b2d5e324a5c69c4","aoa:aoa-techniques:artifact:306109b542eff7632f136b0e","aoa:aoa-techniques:artifact:30beb9906bb62b4db5c4db13","aoa:aoa-techniques:artifact:31a6a3ce9244beba872569d3","aoa:aoa-techniques:artifact:31bd9ed4776744c6bee438e4","aoa:aoa-techniques:artifact:31ed7dd71c79aef53c081c9d","aoa:aoa-techniques:artifact:321896c1b1f5171091b5cdf3","aoa:aoa-techniques:artifact:3228705e4b99b2befda7d6e4","aoa:aoa-techniques:artifact:331fb050b9ee7573ef318347","aoa:aoa-techniques:artifact:33de82121c5e5c731af967ab","aoa:aoa-techniques:artifact:34627f21196e425b7edb4a68","aoa:aoa-techniques:artifact:357fc16504ccf5afe89c3226","aoa:aoa-techniques:artifact:35d77bf50f6518f4f2e625ff","aoa:aoa-techniques:artifact:366b800f4b86c83ca4fc1323","aoa:aoa-techniques:artifact:36efec87ded6f5b069e4f084","aoa:aoa-techniques:artifact:37320dfab9c549cded5b4f65","aoa:aoa-techniques:artifact:3894d1e5250d4d85c25b793a","aoa:aoa-techniques:artifact:395a124445c66f20adae62e0","aoa:aoa-techniques:artifact:3ae93e5f7a23c58f7dfb0031","aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","aoa:aoa-techniques:artifact:3bb431257748a1b661f025a1","aoa:aoa-techniques:artifact:3c885d152cd68ff4d23d5dc4","aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","aoa:aoa-techniques:artifact:3ed1bb127f65309292d92079","aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075","aoa:aoa-techniques:artifact:3faea6ec16c782a2552f82dc","aoa:aoa-techniques:artifact:3feef2dd8124efaaf88da3ac","aoa:aoa-techniques:artifact:4009d2ba51883ad244865419","aoa:aoa-techniques:artifact:406d0a2cdc8e2dd75bccb45d","aoa:aoa-techniques:artifact:40e0f556a68266a4c2fefe82","aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee","aoa:aoa-techniques:artifact:42e944264062ef4190bd102e","aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","aoa:aoa-techniques:artifact:485e376b48dfea26d1b0c4d2","aoa:aoa-techniques:artifact:4aba082c98932530e04ed537","aoa:aoa-techniques:artifact:4bd7e049d0c871f8d832ce7d","aoa:aoa-techniques:artifact:4c17dc0212be77d7d67bc39f","aoa:aoa-techniques:artifact:4c5d4278022a41717ba005dd","aoa:aoa-techniques:artifact:4cd7f4f448c2b0321fa9fdad","aoa:aoa-techniques:artifact:4d310869dd2e62ecdcd12672","aoa:aoa-techniques:artifact:4e66fdff1d365acd57cbf978","aoa:aoa-techniques:artifact:50268f67ec3c1db46073779c","aoa:aoa-techniques:artifact:502ad961e0c7d61ded6ee74a","aoa:aoa-techniques:artifact:50ff6e7647104f2158343fac","aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","aoa:aoa-techniques:artifact:521faaaf800f3eca7f1968d7","aoa:aoa-techniques:artifact:528bbfab601636d0cce5d714","aoa:aoa-techniques:artifact:5291f1cdb3efaddd81d020a9","aoa:aoa-techniques:artifact:52e73841d94c6e5347a66d5f","aoa:aoa-techniques:artifact:5374bda42b1a16346071489a","aoa:aoa-techniques:artifact:538a4458db4e8a9435f20f9b","aoa:aoa-techniques:artifact:538bb41b40470989ae774aa1","aoa:aoa-techniques:artifact:53b5a894bcdc854168397bb3","aoa:aoa-techniques:artifact:53efc8b55bbb771b99eb5bc0","aoa:aoa-techniques:artifact:54881ed6fc5ab576a23108ad","aoa:aoa-techniques:artifact:55a3cf5db6d14c8baffb2ed8","aoa:aoa-techniques:artifact:577c1d0e02c2508128663161","aoa:aoa-techniques:artifact:57e29e91d362cfc1ba48774f","aoa:aoa-techniques:artifact:5813f8d2d6a18e2344bfcbd1","aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","aoa:aoa-techniques:artifact:59396c5568d110a761dffa9c","aoa:aoa-techniques:artifact:5a427c584fa1429f11e93829","aoa:aoa-techniques:artifact:5b1bcb5d2dcb811d429f67c5","aoa:aoa-techniques:artifact:5b44d82869b0c323d47f407b","aoa:aoa-techniques:artifact:5b5175da19a378fea73fbebb","aoa:aoa-techniques:artifact:5b933ec3dff555bc66577052","aoa:aoa-techniques:artifact:5c1073429c3a0b92540ff9b5","aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","aoa:aoa-techniques:artifact:610f4b559b944866885cd4dc","aoa:aoa-techniques:artifact:630e46489e51b6cdba85601d","aoa:aoa-techniques:artifact:6350baca8fc603ed8315477f","aoa:aoa-techniques:artifact:647cc87cbeaaa43064efaee4","aoa:aoa-techniques:artifact:64d8f386eaf8b807e19f5935","aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","aoa:aoa-techniques:artifact:678720844c1ec95a7e08b228","aoa:aoa-techniques:artifact:6ac36b8893b6395918e45cfa","aoa:aoa-techniques:artifact:6bf6b62a56d7affb222fb3fd","aoa:aoa-techniques:artifact:6d5675828e06a9dbd9ea4488","aoa:aoa-techniques:artifact:6d639d0fa8f0902c2e18bf90","aoa:aoa-techniques:artifact:6e2f5bf08ca1f82980fef902","aoa:aoa-techniques:artifact:6ee274eb66234bef97bd1ad6","aoa:aoa-techniques:artifact:71201fec2eec509ba55b62ee","aoa:aoa-techniques:artifact:725d04e0beb9e29e171d02cc","aoa:aoa-techniques:artifact:72f600253b504da6dac9194e","aoa:aoa-techniques:artifact:72fb3850cf1510716518706a","aoa:aoa-techniques:artifact:738280b93c94398fbd150d50","aoa:aoa-techniques:artifact:7407303c3d88ba654f200fed","aoa:aoa-techniques:artifact:7456cccdf9125526fac126b2","aoa:aoa-techniques:artifact:74641082b6240b36e234ede7","aoa:aoa-techniques:artifact:751a8fb315e31b4d762f980f","aoa:aoa-techniques:artifact:75425832416fde31fbae2931","aoa:aoa-techniques:artifact:758e29efb65b54b21c9debb1","aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c","aoa:aoa-techniques:artifact:765906c4c54c46b0c4898ce0","aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","aoa:aoa-techniques:artifact:77f9b1a62560dc090494f849","aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","aoa:aoa-techniques:artifact:7c2ca2d07ae9813385dfbc1a","aoa:aoa-techniques:artifact:80a3b09df4e3867a6924b1c7","aoa:aoa-techniques:artifact:8150cef8632840038231233a","aoa:aoa-techniques:artifact:81589e47eeee0fb4a6ea6d43","aoa:aoa-techniques:artifact:826afccac9b1261d23f89f8d","aoa:aoa-techniques:artifact:82e028210399ae4428247f3c","aoa:aoa-techniques:artifact:8340c564c99b04b2d2bc9d0a","aoa:aoa-techniques:artifact:84277125c03ab930a4b7252f","aoa:aoa-techniques:artifact:846991a7ef35d6a98475f6d6","aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","aoa:aoa-techniques:artifact:87521d3395d01ec0fe08f1ea","aoa:aoa-techniques:artifact:887d4a0e7d480a04b5217873","aoa:aoa-techniques:artifact:890889554e1cec9079f72f86","aoa:aoa-techniques:artifact:8a6542641b3e9209ba03e08d","aoa:aoa-techniques:artifact:8b007b9088ad3591e58db226","aoa:aoa-techniques:artifact:8b81ac42d11c2733c2f20418","aoa:aoa-techniques:artifact:8b9b6b7d4d614b345ae84a1f","aoa:aoa-techniques:artifact:8de898f47e9e3b0854d71aba","aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","aoa:aoa-techniques:artifact:8fe1cc67ad985fde2d27aa57","aoa:aoa-techniques:artifact:90067aff1a4f98e3aff450cb","aoa:aoa-techniques:artifact:90135325c6273a19345e4fa8","aoa:aoa-techniques:artifact:9021102da097414437a68d4f","aoa:aoa-techniques:artifact:94221beed9e75626c26fa5f0","aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","aoa:aoa-techniques:artifact:958b553e812d7a61f5670eba","aoa:aoa-techniques:artifact:9671af65d12915bba6df468c","aoa:aoa-techniques:artifact:96df5459a7f604aaafa8ef9b","aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2","aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae","aoa:aoa-techniques:artifact:99758dab04fd48b9c22c8134","aoa:aoa-techniques:artifact:998ba212c6a82e2f08d7b6df","aoa:aoa-techniques:artifact:99e4142d3dc6fa22b624e638","aoa:aoa-techniques:artifact:99e7743c0f71b084bf613ec2","aoa:aoa-techniques:artifact:9b3627e44c3737426b0a9555","aoa:aoa-techniques:artifact:9bd5382d28ff305374d89d34","aoa:aoa-techniques:artifact:9be1ca9680a3adf4cf38e13a","aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27","aoa:aoa-techniques:artifact:a1368b52e87f2aa01ddbc24f","aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","aoa:aoa-techniques:artifact:a309ed4b54dd6bf2d57add14","aoa:aoa-techniques:artifact:a490f9083c061742442c76f1","aoa:aoa-techniques:artifact:a5d8ccba85d0a3c70b399526","aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b","aoa:aoa-techniques:artifact:a7008b04ee25596f485c2f99","aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","aoa:aoa-techniques:artifact:a82a2d1eff854a5b62a3f523","aoa:aoa-techniques:artifact:a8315cfef92666bc3dbed5ef","aoa:aoa-techniques:artifact:a97d8942d149af1b82453153","aoa:aoa-techniques:artifact:a9c949d3ec8753d6c9e15610","aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","aoa:aoa-techniques:artifact:aaedc8232c27c8b4d75da32f","aoa:aoa-techniques:artifact:ab54375914c6a23ced573aa9","aoa:aoa-techniques:artifact:aba405c32b985c0a2fa81085","aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","aoa:aoa-techniques:artifact:b152a0b98d3754afb662dffa","aoa:aoa-techniques:artifact:b4e84d31cd8d486d071969d4","aoa:aoa-techniques:artifact:b598f0f95466968d1af36d7e","aoa:aoa-techniques:artifact:b5d54a6ff1bb9331d0c891ab","aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","aoa:aoa-techniques:artifact:b77ebb6f44579ca40ca922fa","aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","aoa:aoa-techniques:artifact:b8752e2dfab43b33fff12bfc","aoa:aoa-techniques:artifact:ba2860101181a093316d8cba","aoa:aoa-techniques:artifact:bac359db4375a051d784ce67","aoa:aoa-techniques:artifact:bf297ada0523627a02099015","aoa:aoa-techniques:artifact:bf559feafdd8788466d987e4","aoa:aoa-techniques:artifact:c00bb1a986ec29d86f8448ef","aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","aoa:aoa-techniques:artifact:c378e0bb4347b59a1244c35a","aoa:aoa-techniques:artifact:c38f953d407fda8093621250","aoa:aoa-techniques:artifact:c54de120089eef1a6853667a","aoa:aoa-techniques:artifact:c59f4287b9e3a72be88c9eaa","aoa:aoa-techniques:artifact:c69089469604c6b4ee8aeb2b","aoa:aoa-techniques:artifact:c7008657e0ae2e93ff9f9bcf","aoa:aoa-techniques:artifact:c7c83102096d7ba5b4584308","aoa:aoa-techniques:artifact:c7f5d25fc63cc0a96b9735c2","aoa:aoa-techniques:artifact:c81e9a9b6ca47a71a2ad94ac","aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7","aoa:aoa-techniques:artifact:c89f324a2cf376e8069cf5c3","aoa:aoa-techniques:artifact:c9107011968421971fabafeb","aoa:aoa-techniques:artifact:cadcc7a2abfabc4524e945c7","aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6","aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","aoa:aoa-techniques:artifact:cd86ffaf0ac8b5ffb3d7d7cb","aoa:aoa-techniques:artifact:ce5d65b52ab4cbe348412f72","aoa:aoa-techniques:artifact:ce8ca6e1f0f910e839bf7ede","aoa:aoa-techniques:artifact:ced7185b3e1ab4e5f1d322d1","aoa:aoa-techniques:artifact:d1724b1d0fcb3bd4e94adfd5","aoa:aoa-techniques:artifact:d191a910615a6e7e27d60580","aoa:aoa-techniques:artifact:d1a9d831ec2524b5d37880b4","aoa:aoa-techniques:artifact:d28a9f0415aee8fa14596dbe","aoa:aoa-techniques:artifact:d32e043b423d755ae391a13f","aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","aoa:aoa-techniques:artifact:d6d89bc629ac65cb08f10b90","aoa:aoa-techniques:artifact:d96368a93dd5c19b08e5401d","aoa:aoa-techniques:artifact:d9ac278f5b81c5f2137bffc2","aoa:aoa-techniques:artifact:d9c7cd37a67204b5d368f8b6","aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","aoa:aoa-techniques:artifact:db92dedb125d092a31235918","aoa:aoa-techniques:artifact:dbb8e1c98462d2210a69cafe","aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","aoa:aoa-techniques:artifact:dcca45fa1ecaebce1e627100","aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","aoa:aoa-techniques:artifact:ddfcab62cbcdce5b474f6b6c","aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e","aoa:aoa-techniques:artifact:df3dedeb399280a688945489","aoa:aoa-techniques:artifact:dfc8e88cf15e7b4696445460","aoa:aoa-techniques:artifact:e0fdabb85c8668f75f6b7d80","aoa:aoa-techniques:artifact:e1c51c7c70802edcbfd3c1c4","aoa:aoa-techniques:artifact:e29466ab9b68d140321f6d74","aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e","aoa:aoa-techniques:artifact:e5099efe04874e260d36b86a","aoa:aoa-techniques:artifact:e52c67e9b12aaf97098c94d1","aoa:aoa-techniques:artifact:e66619707ba54a89aa714842","aoa:aoa-techniques:artifact:e68b4f8f3db02cf31cb0e74b","aoa:aoa-techniques:artifact:e6e030549802f6421035903e","aoa:aoa-techniques:artifact:e8b51cf0ee49407040e14967","aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6","aoa:aoa-techniques:artifact:ed41d63e9981165c3bbc8857","aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","aoa:aoa-techniques:artifact:efad5c18022305012ddd5d4d","aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","aoa:aoa-techniques:artifact:f12c2b5c72013647234339d9","aoa:aoa-techniques:artifact:f13c07926dfa7da5d3b19c63","aoa:aoa-techniques:artifact:f1809ca0b4d7229ef7127047","aoa:aoa-techniques:artifact:f1b7059f6f816e45a7172594","aoa:aoa-techniques:artifact:f35d0c120acc61a2ba2a4849","aoa:aoa-techniques:artifact:f444d5f6f7157618cd89c466","aoa:aoa-techniques:artifact:f55d59c8f6dcecf868fa3c37","aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","aoa:aoa-techniques:artifact:f9c1ca6c39d2e37a29f697e0","aoa:aoa-techniques:artifact:fbd78a9245a822f5022ef2a3","aoa:aoa-techniques:artifact:fc6f339d7ee1db8e0558772d","aoa:aoa-techniques:artifact:fc97414a501927ba15cf1b1d","aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","aoa:aoa-techniques:artifact:fd36d2f41a5814b215a3d848","aoa:aoa-techniques:artifact:fde64b8930329509292434ad","aoa:aoa-techniques:artifact:fe7c6853ce01a2162a720948","aoa:aoa-techniques:artifact:fec3dc23de4553ec2e819b55","aoa:aoa-techniques:artifact:ff3eb7e7bed98dc8dc74ff0d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0fcf55ff126a56b2535ef545","aoa:aoa-techniques:anchor:0fd99d3b1dd6ac9c3b7832fc","aoa:aoa-techniques:anchor:2418a8dbcf2d45101d7c65da","aoa:aoa-techniques:anchor:29253b842fc7766d13788f65","aoa:aoa-techniques:anchor:462e9e2f4825c2289ed67d08","aoa:aoa-techniques:anchor:56e4546d9253f9be29186d81","aoa:aoa-techniques:anchor:5d36ed9a80c6b5ef3346805f","aoa:aoa-techniques:anchor:74cf29b6048656e74ed9fb3b","aoa:aoa-techniques:anchor:8578b96d15aa2b7a20c0af02","aoa:aoa-techniques:anchor:8b2203dee7df3cd1d8df3f75","aoa:aoa-techniques:anchor:a5e82ccceff15a40dd66c1c0","aoa:aoa-techniques:anchor:ae5cdde629e419932a1efb33","aoa:aoa-techniques:anchor:ae763ebe886d560e9a128289","aoa:aoa-techniques:anchor:b8e2aa0a89912e1006d5580d","aoa:aoa-techniques:anchor:c97da99dbf2a16460b78be19","aoa:aoa-techniques:anchor:e11527fa3a3abd6e85e5599d","aoa:aoa-techniques:anchor:e6583ddca8787e6110a9aa33","aoa:aoa-techniques:anchor:f4f7aea888856f7b8f62d662"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:241b4be4d1ee1172ad983bd1","label":"antifragility","provenance_ref":"deterministic","semantic_key":"mechanics/antifragility","source_digest":"30e2823de56cb011d3399cb6fac687af362a557125438b58962e49773e3e860b","source_record_ids":["aoa:aoa-techniques:artifact:207d028a244119d51928639b","aoa:aoa-techniques:artifact:26934b4cadfdfeeafdec0254","aoa:aoa-techniques:artifact:277789b5aff360f3f5e53d85","aoa:aoa-techniques:artifact:27d8e436efda8224fb79d3e5","aoa:aoa-techniques:artifact:2b08f0c6958c0ae36c1b3653","aoa:aoa-techniques:artifact:43ea1a5d6f8f5300e3b0b289","aoa:aoa-techniques:artifact:5b00df740809b23874e59462","aoa:aoa-techniques:artifact:5d6353ee9b342f7f9e4bb51e","aoa:aoa-techniques:artifact:67f46f80ddd75239beef1ce8","aoa:aoa-techniques:artifact:7936bd49062f1b9f7fcc4840","aoa:aoa-techniques:artifact:7ef8f036363e74378f8caf00","aoa:aoa-techniques:artifact:87df2f9f4b2c95a41b2395ff","aoa:aoa-techniques:artifact:94c417f46da3ddf6faa96e11","aoa:aoa-techniques:artifact:bd66423ecfd73b7225df0bd5","aoa:aoa-techniques:artifact:c9adb406913b554d45288650","aoa:aoa-techniques:artifact:d100a1447f716e5c2da0f480","aoa:aoa-techniques:artifact:e21165f3317d43921909da96","aoa:aoa-techniques:artifact:e2d518093804df9a0f379301"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:135bab607e767c1e4099fac6","aoa:aoa-techniques:anchor:19c5675557f7ca07c5b7175f","aoa:aoa-techniques:anchor:1e84808e185920b271684dfd","aoa:aoa-techniques:anchor:3123404e74cd90edb5d20568","aoa:aoa-techniques:anchor:50395885d3cb114b521f79cc","aoa:aoa-techniques:anchor:54f1c1f485a4f924760e75b2","aoa:aoa-techniques:anchor:5866bc41bfd4c9b180205e5a","aoa:aoa-techniques:anchor:5ddeac9e9e4e87d227a4f1db","aoa:aoa-techniques:anchor:74b7f79a3378f62558d1af40","aoa:aoa-techniques:anchor:83e3d6e7c15d17a3511ed3f7","aoa:aoa-techniques:anchor:b468584d9a09ecdd134146e2","aoa:aoa-techniques:anchor:b6d38ef0501f3bbd0a5dbd21","aoa:aoa-techniques:anchor:bbe3c968658bbc47df7eb131","aoa:aoa-techniques:anchor:c673c8c5f6f2e21753f48ba9","aoa:aoa-techniques:anchor:d55f41575ba494ef7ff59a3b","aoa:aoa-techniques:anchor:de4a4283c738e97083aa9841","aoa:aoa-techniques:anchor:ff51524e26f0d47f824cd142"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:5f1187e95b41c10f80350256","label":"checkpoint","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint","source_digest":"a190fec21ac6e5e1238427222b3e28823440996bbea63d6c859ff1e7bcff846c","source_record_ids":["aoa:aoa-techniques:artifact:0f645191e875f5883b5c4d1d","aoa:aoa-techniques:artifact:13fa736e001dfaf859f13456","aoa:aoa-techniques:artifact:550ab2a04a7e853406390620","aoa:aoa-techniques:artifact:59a00873d5dc847da1ee0db7","aoa:aoa-techniques:artifact:5ee7b85c2fb14866e3819122","aoa:aoa-techniques:artifact:702481da184f07f5e5d7f9b6","aoa:aoa-techniques:artifact:9cb002695be915bbf742d5bb","aoa:aoa-techniques:artifact:9d9a61c7ab9e1b45a0c0a6ee","aoa:aoa-techniques:artifact:a091893937b854517373eaea","aoa:aoa-techniques:artifact:a62132a39ce37a95cb6ea63c","aoa:aoa-techniques:artifact:b0e9ecf9b03e64ab947c2a82","aoa:aoa-techniques:artifact:bbd408f411a09604ee023356","aoa:aoa-techniques:artifact:cc4a61a4cb72286efc062e32","aoa:aoa-techniques:artifact:cdd82edf1334fed2c0280ed2","aoa:aoa-techniques:artifact:d4e7488a5d191b4e3a14f4a9","aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5","aoa:aoa-techniques:artifact:fe15ec3b947093c39d4485db"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:10d61e38a30d55ef5467bc47","aoa:aoa-techniques:anchor:26bfbabf2fc754ad2c803c62","aoa:aoa-techniques:anchor:32eeed55b47e3395c38abeef","aoa:aoa-techniques:anchor:4bc4e8abdf130baad4ea9609","aoa:aoa-techniques:anchor:662e24a17b433b28c7d04cbf","aoa:aoa-techniques:anchor:66e44c3112cdaf117a959584","aoa:aoa-techniques:anchor:743074a5338fa59e3763f36a","aoa:aoa-techniques:anchor:81473efd0359cc95cc560a5d","aoa:aoa-techniques:anchor:8f12d665e6b23f8bb3bc52ea","aoa:aoa-techniques:anchor:9277af0f47ef68aaea1953f6","aoa:aoa-techniques:anchor:94030699205bb607bfe4eb2c","aoa:aoa-techniques:anchor:9bb98c284f4f80ccbc19a7e6","aoa:aoa-techniques:anchor:9f717dbb332cee68ef3dcdef","aoa:aoa-techniques:anchor:a2fe13c4c906a63c18dd603a","aoa:aoa-techniques:anchor:bc828c64ce483f11d396878c","aoa:aoa-techniques:anchor:e47a2aecdfcbf3038fbeeb3b","aoa:aoa-techniques:anchor:ec3f84ef83aa834038b891f5","aoa:aoa-techniques:anchor:eef895c2844923eb68e32f11","aoa:aoa-techniques:anchor:f3ac8599fab26aa000ceaad4"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:6211446b319c164f3a41fe81","label":"rpg","provenance_ref":"deterministic","semantic_key":"mechanics/rpg","source_digest":"4bedbc3d04c8250a3f867788833d75fcadb7c17493c98766e6f36e3301b09372","source_record_ids":["aoa:aoa-techniques:artifact:05bfa76197c6b7a0fb2cbb0d","aoa:aoa-techniques:artifact:08d66ae01ec67a2db0eda0d8","aoa:aoa-techniques:artifact:1bea40a4f33d56ec3110ebf3","aoa:aoa-techniques:artifact:25a04726002c4fdd5cde3da7","aoa:aoa-techniques:artifact:296de615c38bb185a6e9d89a","aoa:aoa-techniques:artifact:37ea7080e0eb0ee0cdecc149","aoa:aoa-techniques:artifact:4110021710a3254ee59f1eda","aoa:aoa-techniques:artifact:695fcf0256bfb75cc8039476","aoa:aoa-techniques:artifact:7588ea6bb490641e5760e5cf","aoa:aoa-techniques:artifact:850e7b6f4f85c0ec893fb9c2","aoa:aoa-techniques:artifact:8ca7b06b8f4566ae93fc27ab","aoa:aoa-techniques:artifact:98a4d14e0dc54ba32ba9958e","aoa:aoa-techniques:artifact:a0165932bf371745501ba04c","aoa:aoa-techniques:artifact:a9cd7cf6fa46aa3e2ec978f9","aoa:aoa-techniques:artifact:b8f9c5c7c089a1d57f3eadaa","aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","aoa:aoa-techniques:artifact:c1a4e98f1d1d92eb729e83f1","aoa:aoa-techniques:artifact:da1e4d646a243e773637436c","aoa:aoa-techniques:artifact:ec069fbc48c817d019b7b03b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:35f572e564c2ca2e9ab09660","aoa:aoa-techniques:anchor:3ed2c8e88dec55357b5fef74","aoa:aoa-techniques:anchor:418b953fd27c43c884d9b2a4","aoa:aoa-techniques:anchor:4542faaec0b9f84893bba941","aoa:aoa-techniques:anchor:4ead9cf657de60c2517d354f","aoa:aoa-techniques:anchor:530c14d154f7bdd37a54acee","aoa:aoa-techniques:anchor:5ad33e6207efb0741486e279","aoa:aoa-techniques:anchor:62e1f6ee0e746ecba57b5555","aoa:aoa-techniques:anchor:710bf8b34332b642c78dda4b","aoa:aoa-techniques:anchor:8dd763b83ac5927ba12152ed","aoa:aoa-techniques:anchor:901efaec6547f40d411dc3e0","aoa:aoa-techniques:anchor:90c4dfe155106869deff84d8","aoa:aoa-techniques:anchor:91bdb086c46493618d29f389","aoa:aoa-techniques:anchor:9672982db4824bb0de4dbbd0","aoa:aoa-techniques:anchor:a57cae85502fb3447e347621","aoa:aoa-techniques:anchor:b6c5cf60936a620da4f55c74","aoa:aoa-techniques:anchor:c27e746bf5f60346108340a0","aoa:aoa-techniques:anchor:c88586b483781722424b47ef","aoa:aoa-techniques:anchor:c9a8eaecac36231a7a08d73b","aoa:aoa-techniques:anchor:e9f1dd5d464c48513a795ac1"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:6455d7f243d143bd74a2f236","label":"growth-cycle","provenance_ref":"deterministic","semantic_key":"mechanics/growth-cycle","source_digest":"7b5378ecbe9cf36c97af927373aeac7efc839cda07a06416a0109e4313485f8b","source_record_ids":["aoa:aoa-techniques:artifact:0005dd1f769882e57df585ef","aoa:aoa-techniques:artifact:042291052ecdb2eec59b0a6a","aoa:aoa-techniques:artifact:1163ce67a84231d6fe4449ac","aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","aoa:aoa-techniques:artifact:4a4d4efd2e0cab699702c406","aoa:aoa-techniques:artifact:6e3059427c8a74ae93739ef2","aoa:aoa-techniques:artifact:702c9e7346b7cb0cce3d4950","aoa:aoa-techniques:artifact:76651b92fe24f30a4158e2a8","aoa:aoa-techniques:artifact:8035fbe88a8dfa16ce1b9f83","aoa:aoa-techniques:artifact:816e4319f265b3c23653839d","aoa:aoa-techniques:artifact:9be0d3a9ff402ae88e6df24d","aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c","aoa:aoa-techniques:artifact:a5c71d3a62692c33b883e995","aoa:aoa-techniques:artifact:ac0fbb989bdb0fc797cd718d","aoa:aoa-techniques:artifact:b55f83bb51ac6656d4d45bf3","aoa:aoa-techniques:artifact:b8ceb02d9d12f41b80057bec","aoa:aoa-techniques:artifact:cafdbc4248e0e0537b072ccb","aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91","aoa:aoa-techniques:artifact:dc9132d584369fcbb76fde34","aoa:aoa-techniques:artifact:dca2b23f8fe41a026708cfba"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:123c549ebe7a9985ec5e6613","aoa:aoa-techniques:anchor:1c8f49383f1e163b3f60d46d","aoa:aoa-techniques:anchor:1ca07c05b39a10e6465ca20c","aoa:aoa-techniques:anchor:354c494a1263acfeaa52ba9c","aoa:aoa-techniques:anchor:39191cd2e43e46ed75a7ad74","aoa:aoa-techniques:anchor:41b9498a50c8fd67ded8543d","aoa:aoa-techniques:anchor:42fe7975d59003337ffe2dd4","aoa:aoa-techniques:anchor:4aeb621a2da610b566dfb3de","aoa:aoa-techniques:anchor:64029f0b3c3af008b870f4ee","aoa:aoa-techniques:anchor:67e4c840ab1dad3c1e825c4d","aoa:aoa-techniques:anchor:6a3ba94fae364e83211e6acf","aoa:aoa-techniques:anchor:7333d08c03ba0655284f67f7","aoa:aoa-techniques:anchor:877c026ea74b2ecdd65d0e85","aoa:aoa-techniques:anchor:923d1ed2f8cb8a0077a8267f","aoa:aoa-techniques:anchor:96ab28771ed4bdc714ec8f54","aoa:aoa-techniques:anchor:99e0c392c315e584232392ce","aoa:aoa-techniques:anchor:9a1d1ba2d61ab0e41d9ee969","aoa:aoa-techniques:anchor:bab7b5cd8bdd00ac0e267cc8","aoa:aoa-techniques:anchor:c0a65a5af6f92628ab8009d9","aoa:aoa-techniques:anchor:dc2df72e7c41c1b86f1de064","aoa:aoa-techniques:anchor:e120ac53e20f4bad4508961f","aoa:aoa-techniques:anchor:e3dd9a43b7f6089811ca3814","aoa:aoa-techniques:anchor:f0350df157ec90d69fcf3887"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:817b139b3144eb2bbf22d04f","label":"recurrence","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence","source_digest":"7b749cf4f09706ced8b366d9221c9fc73fd4ee3061fca5d7cad81c122ce9d105","source_record_ids":["aoa:aoa-techniques:artifact:10b851fc91ec1551b6ac7e03","aoa:aoa-techniques:artifact:19fb3d55a5cf2e7e3f87c063","aoa:aoa-techniques:artifact:1e52a0e919d049cd43732980","aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7","aoa:aoa-techniques:artifact:3706552ee4b3cb70c1a33da6","aoa:aoa-techniques:artifact:370d67eadc0f1df2999866b8","aoa:aoa-techniques:artifact:373d31bb4eefee2cd479babf","aoa:aoa-techniques:artifact:3bd0071d5d213b9d72daa7ad","aoa:aoa-techniques:artifact:3d31871e3f829a548775f14b","aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","aoa:aoa-techniques:artifact:46ad8877bd4594a4a27cd1b6","aoa:aoa-techniques:artifact:4b7c35b36972bccd7b151b51","aoa:aoa-techniques:artifact:6cb63ea59fe4ac1e57bcf7ff","aoa:aoa-techniques:artifact:8876379d2e54475aa9b24341","aoa:aoa-techniques:artifact:8a4bf6cbf0b0b17588e64529","aoa:aoa-techniques:artifact:9ba8b6fe7cf5ab0b759f444d","aoa:aoa-techniques:artifact:9f02735456e72657870c4158","aoa:aoa-techniques:artifact:c187a0a940d29d727be151a6","aoa:aoa-techniques:artifact:c56c5d3d357f2dbcfb0b47eb","aoa:aoa-techniques:artifact:c9db191a34f408ba5129730b","aoa:aoa-techniques:artifact:ca65c5ca4122e08cd0775072","aoa:aoa-techniques:artifact:f2aebf9f40d9866b868cbc93","aoa:aoa-techniques:artifact:fe10cc3966eef02f0a57ad2e"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:135bab607e767c1e4099fac6","aoa:aoa-techniques:anchor:19c5675557f7ca07c5b7175f","aoa:aoa-techniques:anchor:1e84808e185920b271684dfd","aoa:aoa-techniques:anchor:3123404e74cd90edb5d20568","aoa:aoa-techniques:anchor:50395885d3cb114b521f79cc","aoa:aoa-techniques:anchor:54f1c1f485a4f924760e75b2","aoa:aoa-techniques:anchor:5866bc41bfd4c9b180205e5a","aoa:aoa-techniques:anchor:5ddeac9e9e4e87d227a4f1db","aoa:aoa-techniques:anchor:74b7f79a3378f62558d1af40","aoa:aoa-techniques:anchor:83e3d6e7c15d17a3511ed3f7","aoa:aoa-techniques:anchor:b468584d9a09ecdd134146e2","aoa:aoa-techniques:anchor:b6d38ef0501f3bbd0a5dbd21","aoa:aoa-techniques:anchor:bbe3c968658bbc47df7eb131","aoa:aoa-techniques:anchor:c673c8c5f6f2e21753f48ba9","aoa:aoa-techniques:anchor:d55f41575ba494ef7ff59a3b","aoa:aoa-techniques:anchor:de4a4283c738e97083aa9841","aoa:aoa-techniques:anchor:ff51524e26f0d47f824cd142"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:5f1187e95b41c10f80350256","label":"checkpoint","provenance_ref":"deterministic","semantic_key":"mechanics/checkpoint","source_digest":"bddf26eb6ed3dee42ee5844d48a5ad4350d1f4efd0a2235bbf6c2f0033c04386","source_record_ids":["aoa:aoa-techniques:artifact:0f645191e875f5883b5c4d1d","aoa:aoa-techniques:artifact:13fa736e001dfaf859f13456","aoa:aoa-techniques:artifact:550ab2a04a7e853406390620","aoa:aoa-techniques:artifact:59a00873d5dc847da1ee0db7","aoa:aoa-techniques:artifact:5ee7b85c2fb14866e3819122","aoa:aoa-techniques:artifact:702481da184f07f5e5d7f9b6","aoa:aoa-techniques:artifact:9cb002695be915bbf742d5bb","aoa:aoa-techniques:artifact:9d9a61c7ab9e1b45a0c0a6ee","aoa:aoa-techniques:artifact:a091893937b854517373eaea","aoa:aoa-techniques:artifact:a62132a39ce37a95cb6ea63c","aoa:aoa-techniques:artifact:b0e9ecf9b03e64ab947c2a82","aoa:aoa-techniques:artifact:bbd408f411a09604ee023356","aoa:aoa-techniques:artifact:cc4a61a4cb72286efc062e32","aoa:aoa-techniques:artifact:cdd82edf1334fed2c0280ed2","aoa:aoa-techniques:artifact:d4e7488a5d191b4e3a14f4a9","aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5","aoa:aoa-techniques:artifact:fe15ec3b947093c39d4485db"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:10d61e38a30d55ef5467bc47","aoa:aoa-techniques:anchor:26bfbabf2fc754ad2c803c62","aoa:aoa-techniques:anchor:32eeed55b47e3395c38abeef","aoa:aoa-techniques:anchor:4bc4e8abdf130baad4ea9609","aoa:aoa-techniques:anchor:662e24a17b433b28c7d04cbf","aoa:aoa-techniques:anchor:66e44c3112cdaf117a959584","aoa:aoa-techniques:anchor:743074a5338fa59e3763f36a","aoa:aoa-techniques:anchor:81473efd0359cc95cc560a5d","aoa:aoa-techniques:anchor:8f12d665e6b23f8bb3bc52ea","aoa:aoa-techniques:anchor:9277af0f47ef68aaea1953f6","aoa:aoa-techniques:anchor:94030699205bb607bfe4eb2c","aoa:aoa-techniques:anchor:9bb98c284f4f80ccbc19a7e6","aoa:aoa-techniques:anchor:9f717dbb332cee68ef3dcdef","aoa:aoa-techniques:anchor:a2fe13c4c906a63c18dd603a","aoa:aoa-techniques:anchor:bc828c64ce483f11d396878c","aoa:aoa-techniques:anchor:e47a2aecdfcbf3038fbeeb3b","aoa:aoa-techniques:anchor:ec3f84ef83aa834038b891f5","aoa:aoa-techniques:anchor:eef895c2844923eb68e32f11","aoa:aoa-techniques:anchor:f3ac8599fab26aa000ceaad4"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:6211446b319c164f3a41fe81","label":"rpg","provenance_ref":"deterministic","semantic_key":"mechanics/rpg","source_digest":"de932e4aaa2970b6f3293cdf5b673ce4db1e5c9ca46ca2f4602253f803a1e31e","source_record_ids":["aoa:aoa-techniques:artifact:05bfa76197c6b7a0fb2cbb0d","aoa:aoa-techniques:artifact:08d66ae01ec67a2db0eda0d8","aoa:aoa-techniques:artifact:1bea40a4f33d56ec3110ebf3","aoa:aoa-techniques:artifact:25a04726002c4fdd5cde3da7","aoa:aoa-techniques:artifact:296de615c38bb185a6e9d89a","aoa:aoa-techniques:artifact:37ea7080e0eb0ee0cdecc149","aoa:aoa-techniques:artifact:4110021710a3254ee59f1eda","aoa:aoa-techniques:artifact:695fcf0256bfb75cc8039476","aoa:aoa-techniques:artifact:7588ea6bb490641e5760e5cf","aoa:aoa-techniques:artifact:850e7b6f4f85c0ec893fb9c2","aoa:aoa-techniques:artifact:8ca7b06b8f4566ae93fc27ab","aoa:aoa-techniques:artifact:98a4d14e0dc54ba32ba9958e","aoa:aoa-techniques:artifact:a0165932bf371745501ba04c","aoa:aoa-techniques:artifact:a9cd7cf6fa46aa3e2ec978f9","aoa:aoa-techniques:artifact:b8f9c5c7c089a1d57f3eadaa","aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","aoa:aoa-techniques:artifact:c1a4e98f1d1d92eb729e83f1","aoa:aoa-techniques:artifact:da1e4d646a243e773637436c","aoa:aoa-techniques:artifact:ec069fbc48c817d019b7b03b"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:35f572e564c2ca2e9ab09660","aoa:aoa-techniques:anchor:3ed2c8e88dec55357b5fef74","aoa:aoa-techniques:anchor:418b953fd27c43c884d9b2a4","aoa:aoa-techniques:anchor:4542faaec0b9f84893bba941","aoa:aoa-techniques:anchor:4ead9cf657de60c2517d354f","aoa:aoa-techniques:anchor:530c14d154f7bdd37a54acee","aoa:aoa-techniques:anchor:5ad33e6207efb0741486e279","aoa:aoa-techniques:anchor:62e1f6ee0e746ecba57b5555","aoa:aoa-techniques:anchor:710bf8b34332b642c78dda4b","aoa:aoa-techniques:anchor:8dd763b83ac5927ba12152ed","aoa:aoa-techniques:anchor:901efaec6547f40d411dc3e0","aoa:aoa-techniques:anchor:90c4dfe155106869deff84d8","aoa:aoa-techniques:anchor:91bdb086c46493618d29f389","aoa:aoa-techniques:anchor:9672982db4824bb0de4dbbd0","aoa:aoa-techniques:anchor:a57cae85502fb3447e347621","aoa:aoa-techniques:anchor:b6c5cf60936a620da4f55c74","aoa:aoa-techniques:anchor:c27e746bf5f60346108340a0","aoa:aoa-techniques:anchor:c88586b483781722424b47ef","aoa:aoa-techniques:anchor:c9a8eaecac36231a7a08d73b","aoa:aoa-techniques:anchor:e9f1dd5d464c48513a795ac1"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:6455d7f243d143bd74a2f236","label":"growth-cycle","provenance_ref":"deterministic","semantic_key":"mechanics/growth-cycle","source_digest":"4b223fb9de5e6e9aeb446f22523363fc8ba0ed0351580ae0d7e30c63c7f9724d","source_record_ids":["aoa:aoa-techniques:artifact:0005dd1f769882e57df585ef","aoa:aoa-techniques:artifact:042291052ecdb2eec59b0a6a","aoa:aoa-techniques:artifact:1163ce67a84231d6fe4449ac","aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","aoa:aoa-techniques:artifact:4a4d4efd2e0cab699702c406","aoa:aoa-techniques:artifact:6e3059427c8a74ae93739ef2","aoa:aoa-techniques:artifact:702c9e7346b7cb0cce3d4950","aoa:aoa-techniques:artifact:76651b92fe24f30a4158e2a8","aoa:aoa-techniques:artifact:8035fbe88a8dfa16ce1b9f83","aoa:aoa-techniques:artifact:816e4319f265b3c23653839d","aoa:aoa-techniques:artifact:9be0d3a9ff402ae88e6df24d","aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c","aoa:aoa-techniques:artifact:a5c71d3a62692c33b883e995","aoa:aoa-techniques:artifact:ac0fbb989bdb0fc797cd718d","aoa:aoa-techniques:artifact:b55f83bb51ac6656d4d45bf3","aoa:aoa-techniques:artifact:b8ceb02d9d12f41b80057bec","aoa:aoa-techniques:artifact:cafdbc4248e0e0537b072ccb","aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91","aoa:aoa-techniques:artifact:dc9132d584369fcbb76fde34","aoa:aoa-techniques:artifact:dca2b23f8fe41a026708cfba"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:123c549ebe7a9985ec5e6613","aoa:aoa-techniques:anchor:1c8f49383f1e163b3f60d46d","aoa:aoa-techniques:anchor:1ca07c05b39a10e6465ca20c","aoa:aoa-techniques:anchor:354c494a1263acfeaa52ba9c","aoa:aoa-techniques:anchor:39191cd2e43e46ed75a7ad74","aoa:aoa-techniques:anchor:41b9498a50c8fd67ded8543d","aoa:aoa-techniques:anchor:42fe7975d59003337ffe2dd4","aoa:aoa-techniques:anchor:4aeb621a2da610b566dfb3de","aoa:aoa-techniques:anchor:64029f0b3c3af008b870f4ee","aoa:aoa-techniques:anchor:67e4c840ab1dad3c1e825c4d","aoa:aoa-techniques:anchor:6a3ba94fae364e83211e6acf","aoa:aoa-techniques:anchor:7333d08c03ba0655284f67f7","aoa:aoa-techniques:anchor:877c026ea74b2ecdd65d0e85","aoa:aoa-techniques:anchor:923d1ed2f8cb8a0077a8267f","aoa:aoa-techniques:anchor:96ab28771ed4bdc714ec8f54","aoa:aoa-techniques:anchor:99e0c392c315e584232392ce","aoa:aoa-techniques:anchor:9a1d1ba2d61ab0e41d9ee969","aoa:aoa-techniques:anchor:bab7b5cd8bdd00ac0e267cc8","aoa:aoa-techniques:anchor:c0a65a5af6f92628ab8009d9","aoa:aoa-techniques:anchor:dc2df72e7c41c1b86f1de064","aoa:aoa-techniques:anchor:e120ac53e20f4bad4508961f","aoa:aoa-techniques:anchor:e3dd9a43b7f6089811ca3814","aoa:aoa-techniques:anchor:f0350df157ec90d69fcf3887"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:817b139b3144eb2bbf22d04f","label":"recurrence","provenance_ref":"deterministic","semantic_key":"mechanics/recurrence","source_digest":"9ebee1fa9c350184c7008220cc596fb5814747a03f3f435205826a8ac42ac0b7","source_record_ids":["aoa:aoa-techniques:artifact:10b851fc91ec1551b6ac7e03","aoa:aoa-techniques:artifact:19fb3d55a5cf2e7e3f87c063","aoa:aoa-techniques:artifact:1e52a0e919d049cd43732980","aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7","aoa:aoa-techniques:artifact:3706552ee4b3cb70c1a33da6","aoa:aoa-techniques:artifact:370d67eadc0f1df2999866b8","aoa:aoa-techniques:artifact:373d31bb4eefee2cd479babf","aoa:aoa-techniques:artifact:3bd0071d5d213b9d72daa7ad","aoa:aoa-techniques:artifact:3d31871e3f829a548775f14b","aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","aoa:aoa-techniques:artifact:46ad8877bd4594a4a27cd1b6","aoa:aoa-techniques:artifact:4b7c35b36972bccd7b151b51","aoa:aoa-techniques:artifact:6cb63ea59fe4ac1e57bcf7ff","aoa:aoa-techniques:artifact:8876379d2e54475aa9b24341","aoa:aoa-techniques:artifact:8a4bf6cbf0b0b17588e64529","aoa:aoa-techniques:artifact:9ba8b6fe7cf5ab0b759f444d","aoa:aoa-techniques:artifact:9f02735456e72657870c4158","aoa:aoa-techniques:artifact:c187a0a940d29d727be151a6","aoa:aoa-techniques:artifact:c56c5d3d357f2dbcfb0b47eb","aoa:aoa-techniques:artifact:c9db191a34f408ba5129730b","aoa:aoa-techniques:artifact:ca65c5ca4122e08cd0775072","aoa:aoa-techniques:artifact:f2aebf9f40d9866b868cbc93","aoa:aoa-techniques:artifact:fe10cc3966eef02f0a57ad2e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0a8e26cf6061242be1e73ed0","aoa:aoa-techniques:anchor:7e1720e087547f25caccf943","aoa:aoa-techniques:anchor:9ab9345df646720e7dfcb657","aoa:aoa-techniques:anchor:a8e5e1d1f5f50c4c308372e8","aoa:aoa-techniques:anchor:ae9174c0915262e42e11fef0"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:8f60df42f09618ff6e69836e","label":"tests","provenance_ref":"deterministic","semantic_key":"mechanics/tests","source_digest":"beb1963befb94918f3a55d2c283a546d121159a2098a77da14ac0f1912033c42","source_record_ids":["aoa:aoa-techniques:artifact:1bdaff3aa0a3613590d76c27","aoa:aoa-techniques:artifact:7698d5ddfea36399ee4fab64","aoa:aoa-techniques:artifact:8a27cc775a1c12f821a9ec82","aoa:aoa-techniques:artifact:8ba7898e3f991ae2d1f985c8","aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0523824e689a3fd4231cbf59","aoa:aoa-techniques:anchor:05ff61d82a32d6f84dd59ed4","aoa:aoa-techniques:anchor:09dfc72884a20104e4434cf8","aoa:aoa-techniques:anchor:0d3da29adbf5a15f8dd675f8","aoa:aoa-techniques:anchor:1225f530a01b985d1dd48428","aoa:aoa-techniques:anchor:14ac1c8abd6ef8259f0e08c5","aoa:aoa-techniques:anchor:1d8a578d637ce806b419c2fa","aoa:aoa-techniques:anchor:1e687d9fa34ec38e09ce1510","aoa:aoa-techniques:anchor:293bdf594c9f272c1ad54db5","aoa:aoa-techniques:anchor:2f36ccd3d8b0361231a770ac","aoa:aoa-techniques:anchor:59148a9670299f1eb178d983","aoa:aoa-techniques:anchor:6ba9f1e2064d0f54d04fcb25","aoa:aoa-techniques:anchor:96d8fdf94001d913fa71febc","aoa:aoa-techniques:anchor:acdf1069fc2096a4d03c983d","aoa:aoa-techniques:anchor:b08d56465b2d9ededaf44c73","aoa:aoa-techniques:anchor:bd3a9b584f77b13e72b8c67e","aoa:aoa-techniques:anchor:d4d0162479655530148090ae","aoa:aoa-techniques:anchor:d77561ec8489743f312f8675","aoa:aoa-techniques:anchor:df2aa342a0c15341f888a168","aoa:aoa-techniques:anchor:fbd467901feb694385c7163a","aoa:aoa-techniques:anchor:fd7167e14f381bdada2e9a3d"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:9f097fc8b3cc4d327321a04b","label":"release-support","provenance_ref":"deterministic","semantic_key":"mechanics/release-support","source_digest":"dfe6a2ff4a7ba27524c1cac7ef861ba7517ef7bdd6466c15ed62f1048daeb695","source_record_ids":["aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f","aoa:aoa-techniques:artifact:07208cf1e5f67b4a2e115f21","aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187","aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","aoa:aoa-techniques:artifact:2db7d7bdba0434400cc5e079","aoa:aoa-techniques:artifact:301079de4f207771e1be5e44","aoa:aoa-techniques:artifact:414b0a361e825c8fd86799e2","aoa:aoa-techniques:artifact:6699026f4eaa3488aa900737","aoa:aoa-techniques:artifact:67e9b6c07b17b6f2605622e2","aoa:aoa-techniques:artifact:6904ce45be061689fe7ae2b2","aoa:aoa-techniques:artifact:71e434175d53f07de40db827","aoa:aoa-techniques:artifact:87a9ba6544ad0adb8708df48","aoa:aoa-techniques:artifact:890ede11a171faeb69fb0796","aoa:aoa-techniques:artifact:a3458368e0602165032513fb","aoa:aoa-techniques:artifact:aab6fd5018245ef251fae0f3","aoa:aoa-techniques:artifact:b156147fde646c144eaa23ea","aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00","aoa:aoa-techniques:artifact:d03b113f00895e57aede726f","aoa:aoa-techniques:artifact:e6bffd838b243af9812b6318","aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9","aoa:aoa-techniques:artifact:f24bc604b56f4e2ae991a93c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:06b13a0eb1406e48dd64b57a","aoa:aoa-techniques:anchor:08b0f7e8349993480547112e","aoa:aoa-techniques:anchor:09cf3eb855544e96edd2a660","aoa:aoa-techniques:anchor:0a5b8691b2e60286f691096d","aoa:aoa-techniques:anchor:0ac7d95b0927b6ff2aca0278","aoa:aoa-techniques:anchor:0b102dae6de70e92d37a0fde","aoa:aoa-techniques:anchor:0db1fc349b2322bc5f808497","aoa:aoa-techniques:anchor:0fb98907001d1b8a87bd1e92","aoa:aoa-techniques:anchor:1c34dc0ad73cd87fbca87741","aoa:aoa-techniques:anchor:205aa2034c6fc0a487f49d95","aoa:aoa-techniques:anchor:23c462e9b98c602d506b5ef9","aoa:aoa-techniques:anchor:25bd5860f48d9d0db01787f6","aoa:aoa-techniques:anchor:2cc82b34f656b2ba9be07708","aoa:aoa-techniques:anchor:35f09c38d6104131c92cf856","aoa:aoa-techniques:anchor:391d68382ac0881c0d65819b","aoa:aoa-techniques:anchor:3bc78c5b848f6cb3f84a5ec5","aoa:aoa-techniques:anchor:521d783c129ef44781bb1535","aoa:aoa-techniques:anchor:539c4c7f1988986bb8dedb41","aoa:aoa-techniques:anchor:55370041d4d66c0c1010ff3d","aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b","aoa:aoa-techniques:anchor:5b814807ff70d47ae2affb53","aoa:aoa-techniques:anchor:5c410ee8c7ec61769e175820","aoa:aoa-techniques:anchor:5d0ee6209107af8606a1790a","aoa:aoa-techniques:anchor:6ce9c33bc9689a5760681e8b","aoa:aoa-techniques:anchor:71407fbd9fd3673cf3c2ad4a","aoa:aoa-techniques:anchor:72fe7d00090431aed1044af0","aoa:aoa-techniques:anchor:8354c9cffb8970ac26ef1646","aoa:aoa-techniques:anchor:85678bd420420491d2cd28d7","aoa:aoa-techniques:anchor:8cf09d9b7192e61a8d0ac789","aoa:aoa-techniques:anchor:90ab32120d5c8a5f1dda48b5","aoa:aoa-techniques:anchor:952644c92cdcb3fd86ed2a8b","aoa:aoa-techniques:anchor:a7ff43c13c99bd039822390d","aoa:aoa-techniques:anchor:aa0eb5639c01d3172be8250c","aoa:aoa-techniques:anchor:b75b1b904f0ace27550b8101","aoa:aoa-techniques:anchor:bcaa53e7acc82f692731e6ca","aoa:aoa-techniques:anchor:d70310745f03bf38bbee3314","aoa:aoa-techniques:anchor:d8fceefed4d8fc6f0a1662ad","aoa:aoa-techniques:anchor:db67e41e4b5091dfbdbc2e29","aoa:aoa-techniques:anchor:e76b0f29dde266311d494e44","aoa:aoa-techniques:anchor:f2ac36ccce95e3952fdb2970","aoa:aoa-techniques:anchor:faa0549bd8a62e90f4b00f50"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:ab8f67bdb0084103f0b54fc7","label":"agon","provenance_ref":"deterministic","semantic_key":"mechanics/agon","source_digest":"a9f194cb413c7203e6e9b457c0e2b09d2efe9eb2a3da0e57a1ad3b988bb91ef8","source_record_ids":["aoa:aoa-techniques:artifact:00df17e91ebf2c0bbe7bc857","aoa:aoa-techniques:artifact:02189b74d1890b5f0172e3a9","aoa:aoa-techniques:artifact:058aa9bc084f194f230a8cb1","aoa:aoa-techniques:artifact:0e33dc533fcb541678109142","aoa:aoa-techniques:artifact:1344c38fee20012764238e1c","aoa:aoa-techniques:artifact:1e22bf2e2d9400f9a9c7e737","aoa:aoa-techniques:artifact:1ea19a95e311526da500ae47","aoa:aoa-techniques:artifact:1f3c1cb0fb1b62d703a8c53a","aoa:aoa-techniques:artifact:20f5a67529b059e4c60b9e52","aoa:aoa-techniques:artifact:2536580a957dfaf70af217e1","aoa:aoa-techniques:artifact:274d8557125d301051e07b06","aoa:aoa-techniques:artifact:29a69a05dd2aa9fadb09875d","aoa:aoa-techniques:artifact:359861268bcf7d2db2aa8523","aoa:aoa-techniques:artifact:3ff340e3f35b0b6503518064","aoa:aoa-techniques:artifact:49d95df5bbbf21afc44d32be","aoa:aoa-techniques:artifact:4dc2b01a5fa15b29274e6a44","aoa:aoa-techniques:artifact:530c1f5f4fd8537b2cc4c141","aoa:aoa-techniques:artifact:551aac060212aabeebecce6c","aoa:aoa-techniques:artifact:616641895b07f98d122d9d31","aoa:aoa-techniques:artifact:62c35978e38cc9e569b5c267","aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0","aoa:aoa-techniques:artifact:752dd73f52f0df92d973a1f6","aoa:aoa-techniques:artifact:759c48fbb09f99f50b4da1a7","aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","aoa:aoa-techniques:artifact:7dbf185b45d080d6a4d1ac5b","aoa:aoa-techniques:artifact:83139d36644f0d2cbe04ce64","aoa:aoa-techniques:artifact:8dd4007d37a940777959c8cd","aoa:aoa-techniques:artifact:8e087ffe6784c317374525a5","aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5","aoa:aoa-techniques:artifact:9ebcd75e7ab7f2a4697587e2","aoa:aoa-techniques:artifact:a05cc1f4738d79a31d824c6e","aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8","aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc","aoa:aoa-techniques:artifact:b4260ef3235bf666c0f5e048","aoa:aoa-techniques:artifact:cb65da24d55aa43e3f7a3c0d","aoa:aoa-techniques:artifact:cd57a2d053975909a8f1e148","aoa:aoa-techniques:artifact:cee5f8b308aaa86a41ef8a4d","aoa:aoa-techniques:artifact:dcd1b6a5ec9e1073dd336427","aoa:aoa-techniques:artifact:f26f09c70cddce8977a5f196"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:025520f67c4473547e79f940","aoa:aoa-techniques:anchor:05c3c0988087d01c88be47da","aoa:aoa-techniques:anchor:0a26ac27ac2fde411be4715e","aoa:aoa-techniques:anchor:1866c9a69aac2d1b6c2a5c83","aoa:aoa-techniques:anchor:1d095930d35ee73cb0c69871","aoa:aoa-techniques:anchor:221ac0588f5be5f82fa9d4c4","aoa:aoa-techniques:anchor:25e014d654459c793aebdc4a","aoa:aoa-techniques:anchor:29f5f43c760adcf7d51a132c","aoa:aoa-techniques:anchor:31d228064e3fe39e936847ac","aoa:aoa-techniques:anchor:3451385aaf7fe495cd288462","aoa:aoa-techniques:anchor:3a92cf550cbb4276881c9c4f","aoa:aoa-techniques:anchor:3fdeaf0c9f48bdfd93f1a950","aoa:aoa-techniques:anchor:471c76e509f12421a7e3531d","aoa:aoa-techniques:anchor:4b9425834f3efcfe254951d5","aoa:aoa-techniques:anchor:677164dd99bd7d0cf411749a","aoa:aoa-techniques:anchor:720fc62a40ae3ece64725cfd","aoa:aoa-techniques:anchor:784eb112e9cd463e306d27d9","aoa:aoa-techniques:anchor:7b17d40a9798969387d38658","aoa:aoa-techniques:anchor:7e8536a61f170cb5c433425f","aoa:aoa-techniques:anchor:8a4e0102fda4aee535c877ef","aoa:aoa-techniques:anchor:8c1a576e5c5f1bdfdd025796","aoa:aoa-techniques:anchor:8fcab39a5860a791beff50c3","aoa:aoa-techniques:anchor:9fd2fc410f1a4a37c35980e8","aoa:aoa-techniques:anchor:a0ee1e54a7ea7a414d4ee42a","aoa:aoa-techniques:anchor:a6bf7d5f6e0119a7486947c8","aoa:aoa-techniques:anchor:b9328afae6c6c3a807df998c","aoa:aoa-techniques:anchor:bd5eef8faa9654c54a03aacc","aoa:aoa-techniques:anchor:c0e1eac49cf4d72e5b987719","aoa:aoa-techniques:anchor:c25c5e02d8b07269ec5b5fe2","aoa:aoa-techniques:anchor:c4a240244e9c81bb277dec43","aoa:aoa-techniques:anchor:c64837856196038d7b6354d3","aoa:aoa-techniques:anchor:c9c26c7eae4684a618f1cf89","aoa:aoa-techniques:anchor:ceacb18aec244c55056b46f4","aoa:aoa-techniques:anchor:e3bf5be958a36e53a113989c","aoa:aoa-techniques:anchor:e61bf410ff1ea751bb503a41","aoa:aoa-techniques:anchor:e85ded06cfe9e9dece594d24","aoa:aoa-techniques:anchor:ff29aea45abfb3b4eef60ea8"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:bd60d3665a52e9c5eea29617","label":"experience","provenance_ref":"deterministic","semantic_key":"mechanics/experience","source_digest":"810e48b238e0a604a661f0c9b489bbd93fbf6c51d5c134dc51d93d80320c8014","source_record_ids":["aoa:aoa-techniques:artifact:0672337180c92a8f701af9bc","aoa:aoa-techniques:artifact:168341aaed8d3a58118fde73","aoa:aoa-techniques:artifact:16d501e3e9dde3dd1ee3540d","aoa:aoa-techniques:artifact:18bc96e9868f1e17e0e9159c","aoa:aoa-techniques:artifact:1c37503ae1788cd2ed048c6c","aoa:aoa-techniques:artifact:1d3e9aa02ec1437e8e00eb66","aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b","aoa:aoa-techniques:artifact:512648e4243016d1b1f98145","aoa:aoa-techniques:artifact:5477f7dde3ef2cdb731139bd","aoa:aoa-techniques:artifact:5e5a9beb1aec14ac44db6ef3","aoa:aoa-techniques:artifact:6121f2837bd826d3c12dc0e4","aoa:aoa-techniques:artifact:651104716b1f0e9ba69af81e","aoa:aoa-techniques:artifact:66fbb26dd96eaa4473a83948","aoa:aoa-techniques:artifact:67e4c73358a0f5df220993b1","aoa:aoa-techniques:artifact:697e556a49b155bc767aec8f","aoa:aoa-techniques:artifact:72acc44528483997ea7a06a0","aoa:aoa-techniques:artifact:87b4aedd1462262edadf94a9","aoa:aoa-techniques:artifact:882eb0f0ff3ac9d109e0ae94","aoa:aoa-techniques:artifact:8a742b04e81fe54978814a5b","aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","aoa:aoa-techniques:artifact:949bc46940b1b8c699a2aaa5","aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0","aoa:aoa-techniques:artifact:97ba6ad641f66f9e5b516012","aoa:aoa-techniques:artifact:97bc54248f4ce0533b80f2f1","aoa:aoa-techniques:artifact:a48341531e1bf6275aaddcce","aoa:aoa-techniques:artifact:a73ae08bbb042c4beec56b0d","aoa:aoa-techniques:artifact:b06f4f620e0692b0c9a33d83","aoa:aoa-techniques:artifact:b849fbc428f8b7f0b5a22e32","aoa:aoa-techniques:artifact:b96a94ddc4b5c4349ff4d1c0","aoa:aoa-techniques:artifact:bb065f29b84582464039cf9f","aoa:aoa-techniques:artifact:bd4930253d43bf291c12cfea","aoa:aoa-techniques:artifact:c63cbc592f8acc944ef7e361","aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3","aoa:aoa-techniques:artifact:df797d7151eaf3bd87fc86b3","aoa:aoa-techniques:artifact:e7511364e3df6d61ebff6731","aoa:aoa-techniques:artifact:eb62b607c7d30d10699c6443","aoa:aoa-techniques:artifact:f48aa6f5e9d0585bd8e99347"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0523824e689a3fd4231cbf59","aoa:aoa-techniques:anchor:05ff61d82a32d6f84dd59ed4","aoa:aoa-techniques:anchor:09dfc72884a20104e4434cf8","aoa:aoa-techniques:anchor:0d3da29adbf5a15f8dd675f8","aoa:aoa-techniques:anchor:1225f530a01b985d1dd48428","aoa:aoa-techniques:anchor:14ac1c8abd6ef8259f0e08c5","aoa:aoa-techniques:anchor:1d8a578d637ce806b419c2fa","aoa:aoa-techniques:anchor:1e687d9fa34ec38e09ce1510","aoa:aoa-techniques:anchor:293bdf594c9f272c1ad54db5","aoa:aoa-techniques:anchor:2f36ccd3d8b0361231a770ac","aoa:aoa-techniques:anchor:59148a9670299f1eb178d983","aoa:aoa-techniques:anchor:6ba9f1e2064d0f54d04fcb25","aoa:aoa-techniques:anchor:96d8fdf94001d913fa71febc","aoa:aoa-techniques:anchor:acdf1069fc2096a4d03c983d","aoa:aoa-techniques:anchor:b08d56465b2d9ededaf44c73","aoa:aoa-techniques:anchor:bd3a9b584f77b13e72b8c67e","aoa:aoa-techniques:anchor:d4d0162479655530148090ae","aoa:aoa-techniques:anchor:d77561ec8489743f312f8675","aoa:aoa-techniques:anchor:df2aa342a0c15341f888a168","aoa:aoa-techniques:anchor:fbd467901feb694385c7163a","aoa:aoa-techniques:anchor:fd7167e14f381bdada2e9a3d"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:9f097fc8b3cc4d327321a04b","label":"release-support","provenance_ref":"deterministic","semantic_key":"mechanics/release-support","source_digest":"d4fd37b3a29639eeb9461a19c571b5e247d4462e6db624f98da2688dd35f8f5d","source_record_ids":["aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f","aoa:aoa-techniques:artifact:07208cf1e5f67b4a2e115f21","aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187","aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","aoa:aoa-techniques:artifact:2db7d7bdba0434400cc5e079","aoa:aoa-techniques:artifact:301079de4f207771e1be5e44","aoa:aoa-techniques:artifact:414b0a361e825c8fd86799e2","aoa:aoa-techniques:artifact:6699026f4eaa3488aa900737","aoa:aoa-techniques:artifact:67e9b6c07b17b6f2605622e2","aoa:aoa-techniques:artifact:6904ce45be061689fe7ae2b2","aoa:aoa-techniques:artifact:71e434175d53f07de40db827","aoa:aoa-techniques:artifact:87a9ba6544ad0adb8708df48","aoa:aoa-techniques:artifact:890ede11a171faeb69fb0796","aoa:aoa-techniques:artifact:a3458368e0602165032513fb","aoa:aoa-techniques:artifact:aab6fd5018245ef251fae0f3","aoa:aoa-techniques:artifact:b156147fde646c144eaa23ea","aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00","aoa:aoa-techniques:artifact:d03b113f00895e57aede726f","aoa:aoa-techniques:artifact:e6bffd838b243af9812b6318","aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9","aoa:aoa-techniques:artifact:f24bc604b56f4e2ae991a93c"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:06b13a0eb1406e48dd64b57a","aoa:aoa-techniques:anchor:08b0f7e8349993480547112e","aoa:aoa-techniques:anchor:09cf3eb855544e96edd2a660","aoa:aoa-techniques:anchor:0a5b8691b2e60286f691096d","aoa:aoa-techniques:anchor:0ac7d95b0927b6ff2aca0278","aoa:aoa-techniques:anchor:0b102dae6de70e92d37a0fde","aoa:aoa-techniques:anchor:0db1fc349b2322bc5f808497","aoa:aoa-techniques:anchor:0fb98907001d1b8a87bd1e92","aoa:aoa-techniques:anchor:1c34dc0ad73cd87fbca87741","aoa:aoa-techniques:anchor:205aa2034c6fc0a487f49d95","aoa:aoa-techniques:anchor:23c462e9b98c602d506b5ef9","aoa:aoa-techniques:anchor:25bd5860f48d9d0db01787f6","aoa:aoa-techniques:anchor:2cc82b34f656b2ba9be07708","aoa:aoa-techniques:anchor:35f09c38d6104131c92cf856","aoa:aoa-techniques:anchor:391d68382ac0881c0d65819b","aoa:aoa-techniques:anchor:3bc78c5b848f6cb3f84a5ec5","aoa:aoa-techniques:anchor:521d783c129ef44781bb1535","aoa:aoa-techniques:anchor:539c4c7f1988986bb8dedb41","aoa:aoa-techniques:anchor:55370041d4d66c0c1010ff3d","aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b","aoa:aoa-techniques:anchor:5b814807ff70d47ae2affb53","aoa:aoa-techniques:anchor:5c410ee8c7ec61769e175820","aoa:aoa-techniques:anchor:5d0ee6209107af8606a1790a","aoa:aoa-techniques:anchor:6ce9c33bc9689a5760681e8b","aoa:aoa-techniques:anchor:71407fbd9fd3673cf3c2ad4a","aoa:aoa-techniques:anchor:72fe7d00090431aed1044af0","aoa:aoa-techniques:anchor:8354c9cffb8970ac26ef1646","aoa:aoa-techniques:anchor:85678bd420420491d2cd28d7","aoa:aoa-techniques:anchor:8cf09d9b7192e61a8d0ac789","aoa:aoa-techniques:anchor:90ab32120d5c8a5f1dda48b5","aoa:aoa-techniques:anchor:952644c92cdcb3fd86ed2a8b","aoa:aoa-techniques:anchor:a7ff43c13c99bd039822390d","aoa:aoa-techniques:anchor:aa0eb5639c01d3172be8250c","aoa:aoa-techniques:anchor:b75b1b904f0ace27550b8101","aoa:aoa-techniques:anchor:bcaa53e7acc82f692731e6ca","aoa:aoa-techniques:anchor:d70310745f03bf38bbee3314","aoa:aoa-techniques:anchor:d8fceefed4d8fc6f0a1662ad","aoa:aoa-techniques:anchor:db67e41e4b5091dfbdbc2e29","aoa:aoa-techniques:anchor:e76b0f29dde266311d494e44","aoa:aoa-techniques:anchor:f2ac36ccce95e3952fdb2970","aoa:aoa-techniques:anchor:faa0549bd8a62e90f4b00f50"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:ab8f67bdb0084103f0b54fc7","label":"agon","provenance_ref":"deterministic","semantic_key":"mechanics/agon","source_digest":"c72687842772aff91875fa5aa9a44ec34b96ee258f862cf04bb8b4259c857642","source_record_ids":["aoa:aoa-techniques:artifact:00df17e91ebf2c0bbe7bc857","aoa:aoa-techniques:artifact:02189b74d1890b5f0172e3a9","aoa:aoa-techniques:artifact:058aa9bc084f194f230a8cb1","aoa:aoa-techniques:artifact:0e33dc533fcb541678109142","aoa:aoa-techniques:artifact:1344c38fee20012764238e1c","aoa:aoa-techniques:artifact:1e22bf2e2d9400f9a9c7e737","aoa:aoa-techniques:artifact:1ea19a95e311526da500ae47","aoa:aoa-techniques:artifact:1f3c1cb0fb1b62d703a8c53a","aoa:aoa-techniques:artifact:20f5a67529b059e4c60b9e52","aoa:aoa-techniques:artifact:2536580a957dfaf70af217e1","aoa:aoa-techniques:artifact:274d8557125d301051e07b06","aoa:aoa-techniques:artifact:29a69a05dd2aa9fadb09875d","aoa:aoa-techniques:artifact:359861268bcf7d2db2aa8523","aoa:aoa-techniques:artifact:3ff340e3f35b0b6503518064","aoa:aoa-techniques:artifact:49d95df5bbbf21afc44d32be","aoa:aoa-techniques:artifact:4dc2b01a5fa15b29274e6a44","aoa:aoa-techniques:artifact:530c1f5f4fd8537b2cc4c141","aoa:aoa-techniques:artifact:551aac060212aabeebecce6c","aoa:aoa-techniques:artifact:616641895b07f98d122d9d31","aoa:aoa-techniques:artifact:62c35978e38cc9e569b5c267","aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0","aoa:aoa-techniques:artifact:752dd73f52f0df92d973a1f6","aoa:aoa-techniques:artifact:759c48fbb09f99f50b4da1a7","aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","aoa:aoa-techniques:artifact:7dbf185b45d080d6a4d1ac5b","aoa:aoa-techniques:artifact:83139d36644f0d2cbe04ce64","aoa:aoa-techniques:artifact:8dd4007d37a940777959c8cd","aoa:aoa-techniques:artifact:8e087ffe6784c317374525a5","aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5","aoa:aoa-techniques:artifact:9ebcd75e7ab7f2a4697587e2","aoa:aoa-techniques:artifact:a05cc1f4738d79a31d824c6e","aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8","aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc","aoa:aoa-techniques:artifact:b4260ef3235bf666c0f5e048","aoa:aoa-techniques:artifact:cb65da24d55aa43e3f7a3c0d","aoa:aoa-techniques:artifact:cd57a2d053975909a8f1e148","aoa:aoa-techniques:artifact:cee5f8b308aaa86a41ef8a4d","aoa:aoa-techniques:artifact:dcd1b6a5ec9e1073dd336427","aoa:aoa-techniques:artifact:f26f09c70cddce8977a5f196"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:025520f67c4473547e79f940","aoa:aoa-techniques:anchor:05c3c0988087d01c88be47da","aoa:aoa-techniques:anchor:0a26ac27ac2fde411be4715e","aoa:aoa-techniques:anchor:1866c9a69aac2d1b6c2a5c83","aoa:aoa-techniques:anchor:1d095930d35ee73cb0c69871","aoa:aoa-techniques:anchor:221ac0588f5be5f82fa9d4c4","aoa:aoa-techniques:anchor:25e014d654459c793aebdc4a","aoa:aoa-techniques:anchor:29f5f43c760adcf7d51a132c","aoa:aoa-techniques:anchor:31d228064e3fe39e936847ac","aoa:aoa-techniques:anchor:3451385aaf7fe495cd288462","aoa:aoa-techniques:anchor:3a92cf550cbb4276881c9c4f","aoa:aoa-techniques:anchor:3fdeaf0c9f48bdfd93f1a950","aoa:aoa-techniques:anchor:471c76e509f12421a7e3531d","aoa:aoa-techniques:anchor:4b9425834f3efcfe254951d5","aoa:aoa-techniques:anchor:677164dd99bd7d0cf411749a","aoa:aoa-techniques:anchor:720fc62a40ae3ece64725cfd","aoa:aoa-techniques:anchor:784eb112e9cd463e306d27d9","aoa:aoa-techniques:anchor:7b17d40a9798969387d38658","aoa:aoa-techniques:anchor:7e8536a61f170cb5c433425f","aoa:aoa-techniques:anchor:8a4e0102fda4aee535c877ef","aoa:aoa-techniques:anchor:8c1a576e5c5f1bdfdd025796","aoa:aoa-techniques:anchor:8fcab39a5860a791beff50c3","aoa:aoa-techniques:anchor:9fd2fc410f1a4a37c35980e8","aoa:aoa-techniques:anchor:a0ee1e54a7ea7a414d4ee42a","aoa:aoa-techniques:anchor:a6bf7d5f6e0119a7486947c8","aoa:aoa-techniques:anchor:b9328afae6c6c3a807df998c","aoa:aoa-techniques:anchor:bd5eef8faa9654c54a03aacc","aoa:aoa-techniques:anchor:c0e1eac49cf4d72e5b987719","aoa:aoa-techniques:anchor:c25c5e02d8b07269ec5b5fe2","aoa:aoa-techniques:anchor:c4a240244e9c81bb277dec43","aoa:aoa-techniques:anchor:c64837856196038d7b6354d3","aoa:aoa-techniques:anchor:c9c26c7eae4684a618f1cf89","aoa:aoa-techniques:anchor:ceacb18aec244c55056b46f4","aoa:aoa-techniques:anchor:e3bf5be958a36e53a113989c","aoa:aoa-techniques:anchor:e61bf410ff1ea751bb503a41","aoa:aoa-techniques:anchor:e85ded06cfe9e9dece594d24","aoa:aoa-techniques:anchor:ff29aea45abfb3b4eef60ea8"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:bd60d3665a52e9c5eea29617","label":"experience","provenance_ref":"deterministic","semantic_key":"mechanics/experience","source_digest":"758430f8be459d953b35c264463427f48fba0a704d4650a2450ac3b8f83b2202","source_record_ids":["aoa:aoa-techniques:artifact:0672337180c92a8f701af9bc","aoa:aoa-techniques:artifact:168341aaed8d3a58118fde73","aoa:aoa-techniques:artifact:16d501e3e9dde3dd1ee3540d","aoa:aoa-techniques:artifact:18bc96e9868f1e17e0e9159c","aoa:aoa-techniques:artifact:1c37503ae1788cd2ed048c6c","aoa:aoa-techniques:artifact:1d3e9aa02ec1437e8e00eb66","aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b","aoa:aoa-techniques:artifact:512648e4243016d1b1f98145","aoa:aoa-techniques:artifact:5477f7dde3ef2cdb731139bd","aoa:aoa-techniques:artifact:5e5a9beb1aec14ac44db6ef3","aoa:aoa-techniques:artifact:6121f2837bd826d3c12dc0e4","aoa:aoa-techniques:artifact:651104716b1f0e9ba69af81e","aoa:aoa-techniques:artifact:66fbb26dd96eaa4473a83948","aoa:aoa-techniques:artifact:67e4c73358a0f5df220993b1","aoa:aoa-techniques:artifact:697e556a49b155bc767aec8f","aoa:aoa-techniques:artifact:72acc44528483997ea7a06a0","aoa:aoa-techniques:artifact:87b4aedd1462262edadf94a9","aoa:aoa-techniques:artifact:882eb0f0ff3ac9d109e0ae94","aoa:aoa-techniques:artifact:8a742b04e81fe54978814a5b","aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","aoa:aoa-techniques:artifact:949bc46940b1b8c699a2aaa5","aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0","aoa:aoa-techniques:artifact:97ba6ad641f66f9e5b516012","aoa:aoa-techniques:artifact:97bc54248f4ce0533b80f2f1","aoa:aoa-techniques:artifact:a48341531e1bf6275aaddcce","aoa:aoa-techniques:artifact:a73ae08bbb042c4beec56b0d","aoa:aoa-techniques:artifact:b06f4f620e0692b0c9a33d83","aoa:aoa-techniques:artifact:b849fbc428f8b7f0b5a22e32","aoa:aoa-techniques:artifact:b96a94ddc4b5c4349ff4d1c0","aoa:aoa-techniques:artifact:bb065f29b84582464039cf9f","aoa:aoa-techniques:artifact:bd4930253d43bf291c12cfea","aoa:aoa-techniques:artifact:c63cbc592f8acc944ef7e361","aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3","aoa:aoa-techniques:artifact:df797d7151eaf3bd87fc86b3","aoa:aoa-techniques:artifact:e7511364e3df6d61ebff6731","aoa:aoa-techniques:artifact:eb62b607c7d30d10699c6443","aoa:aoa-techniques:artifact:f48aa6f5e9d0585bd8e99347"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4d94c35254ebfff4f25aab9c"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:c08e8155cee768788f062102","label":"REQUEST_RECEIPTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/REQUEST_RECEIPTS.md","source_digest":"b72ecf2957d3eb11b8c4d8eda94368bb339601d208cd3d15661ec086187b8a47","source_record_ids":["aoa:aoa-techniques:artifact:c08e8155cee768788f062102"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a658057f502887df6009c134"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:c091f898d3cc5f78b75c94dc","label":"README.md","provenance_ref":"deterministic","semantic_key":"mechanics/README.md","source_digest":"c7478910f57ac64fb0e459f9aac22222ec08f0ffc7758f208dc2ee8bb6915bf8","source_record_ids":["aoa:aoa-techniques:artifact:c091f898d3cc5f78b75c94dc"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0e2c987e41c040267ff3ac1d","aoa:aoa-techniques:anchor:14693034249e48a79c564cc9","aoa:aoa-techniques:anchor:1999356011454c6a03635b9f","aoa:aoa-techniques:anchor:223f301549a7c3634523c676","aoa:aoa-techniques:anchor:383f989f176a03d90938186c","aoa:aoa-techniques:anchor:3e0038b420a8333a5519d1b7","aoa:aoa-techniques:anchor:480d646dfc5d98aeae3827cb","aoa:aoa-techniques:anchor:53ef5320505459a8d8ed9005","aoa:aoa-techniques:anchor:6750cc745f3de4db2ba1cc94","aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef","aoa:aoa-techniques:anchor:80675f891dbdb2d4b9dfe4e4","aoa:aoa-techniques:anchor:a4348e16a847b02c98c8ac87","aoa:aoa-techniques:anchor:ab377e4781b2f0284d30292a","aoa:aoa-techniques:anchor:b4fcd3a63e1dc401bcc6f1b6","aoa:aoa-techniques:anchor:c98e619ff12f56812448116b","aoa:aoa-techniques:anchor:e1c2c3aaab1c8c9cf49d2f5a","aoa:aoa-techniques:anchor:e6e397463283460a7c6a10cd","aoa:aoa-techniques:anchor:e7b575cb9f1fbfd3ebe93e9a"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:d0585d9ba77dd700ad6c8e98","label":"questbook","provenance_ref":"deterministic","semantic_key":"mechanics/questbook","source_digest":"e5281c8e6606eb9504db8f49f85e39429cc3df320f822757938e49487b78314c","source_record_ids":["aoa:aoa-techniques:artifact:01422e27a833b3bb87d0f873","aoa:aoa-techniques:artifact:02e130c7aa24ec4b2d97dd68","aoa:aoa-techniques:artifact:0b635a6b6078150633c72716","aoa:aoa-techniques:artifact:1542cfb27c305bbfb441f82f","aoa:aoa-techniques:artifact:19cf9e44d6ce3b2b9ead568b","aoa:aoa-techniques:artifact:1f2c1342ee51b3ae60a27620","aoa:aoa-techniques:artifact:22832d0538584eb3a49c3964","aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","aoa:aoa-techniques:artifact:3f880a46842b12278652a736","aoa:aoa-techniques:artifact:60b99af72207d6d697ecae86","aoa:aoa-techniques:artifact:78f82a009132452a89060195","aoa:aoa-techniques:artifact:805bb7358d78bdd5637026c0","aoa:aoa-techniques:artifact:8ec3726817bef92fcf35c7c6","aoa:aoa-techniques:artifact:a38eac462abd74917c9aa231","aoa:aoa-techniques:artifact:a72bc6262808993c6939c51d","aoa:aoa-techniques:artifact:c696ee454107eeaf73493386","aoa:aoa-techniques:artifact:de1c334450c40e51bb158627","aoa:aoa-techniques:artifact:fffca88edd30a13a11063690"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0e2c987e41c040267ff3ac1d","aoa:aoa-techniques:anchor:14693034249e48a79c564cc9","aoa:aoa-techniques:anchor:1999356011454c6a03635b9f","aoa:aoa-techniques:anchor:223f301549a7c3634523c676","aoa:aoa-techniques:anchor:383f989f176a03d90938186c","aoa:aoa-techniques:anchor:3e0038b420a8333a5519d1b7","aoa:aoa-techniques:anchor:480d646dfc5d98aeae3827cb","aoa:aoa-techniques:anchor:53ef5320505459a8d8ed9005","aoa:aoa-techniques:anchor:6750cc745f3de4db2ba1cc94","aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef","aoa:aoa-techniques:anchor:80675f891dbdb2d4b9dfe4e4","aoa:aoa-techniques:anchor:a4348e16a847b02c98c8ac87","aoa:aoa-techniques:anchor:ab377e4781b2f0284d30292a","aoa:aoa-techniques:anchor:b4fcd3a63e1dc401bcc6f1b6","aoa:aoa-techniques:anchor:c98e619ff12f56812448116b","aoa:aoa-techniques:anchor:e1c2c3aaab1c8c9cf49d2f5a","aoa:aoa-techniques:anchor:e6e397463283460a7c6a10cd","aoa:aoa-techniques:anchor:e7b575cb9f1fbfd3ebe93e9a"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:d0585d9ba77dd700ad6c8e98","label":"questbook","provenance_ref":"deterministic","semantic_key":"mechanics/questbook","source_digest":"fb1f17ea099e6f4de75179af853e05f40ab7bf06e2b8f18f7b8da015010ea025","source_record_ids":["aoa:aoa-techniques:artifact:01422e27a833b3bb87d0f873","aoa:aoa-techniques:artifact:02e130c7aa24ec4b2d97dd68","aoa:aoa-techniques:artifact:0b635a6b6078150633c72716","aoa:aoa-techniques:artifact:1542cfb27c305bbfb441f82f","aoa:aoa-techniques:artifact:19cf9e44d6ce3b2b9ead568b","aoa:aoa-techniques:artifact:1f2c1342ee51b3ae60a27620","aoa:aoa-techniques:artifact:22832d0538584eb3a49c3964","aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","aoa:aoa-techniques:artifact:3f880a46842b12278652a736","aoa:aoa-techniques:artifact:60b99af72207d6d697ecae86","aoa:aoa-techniques:artifact:78f82a009132452a89060195","aoa:aoa-techniques:artifact:805bb7358d78bdd5637026c0","aoa:aoa-techniques:artifact:8ec3726817bef92fcf35c7c6","aoa:aoa-techniques:artifact:a38eac462abd74917c9aa231","aoa:aoa-techniques:artifact:a72bc6262808993c6939c51d","aoa:aoa-techniques:artifact:c696ee454107eeaf73493386","aoa:aoa-techniques:artifact:de1c334450c40e51bb158627","aoa:aoa-techniques:artifact:fffca88edd30a13a11063690"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2e97f6bf0bbef989ad50abc9"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:e76d68a5b5eae349802a9128","label":"AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/AGENTS.md","source_digest":"a2d8c859f82dc3434768df3234b4251a1ae1430b7c4fcd5c37e66ba9dde92b11","source_record_ids":["aoa:aoa-techniques:artifact:e76d68a5b5eae349802a9128"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:010f1a833244b035a3e127f4","aoa:aoa-techniques:anchor:052e3ebdeee0ad37b88dffd8","aoa:aoa-techniques:anchor:0561437660c51420b0ec28c1","aoa:aoa-techniques:anchor:0ebb24dad67ca0599e1257db","aoa:aoa-techniques:anchor:1bae7da365b39d0b65c274e9","aoa:aoa-techniques:anchor:1c8cd17bb7a837a02eb50c23","aoa:aoa-techniques:anchor:270751308ecc15c719876d0b","aoa:aoa-techniques:anchor:2d9b3b17a48efa6ec8846451","aoa:aoa-techniques:anchor:4dbc97ffe6ff7b96dbfaadb2","aoa:aoa-techniques:anchor:5979dd4f703fbe347530a8fe","aoa:aoa-techniques:anchor:5e3a6abedfca2bab8f359285","aoa:aoa-techniques:anchor:6c171549dd243fddc47e6de8","aoa:aoa-techniques:anchor:7dd14803c610a7cf72b7ccd9","aoa:aoa-techniques:anchor:89c7ba1b45aa6f792dbb4462","aoa:aoa-techniques:anchor:987d69794dcc38a5249522f8","aoa:aoa-techniques:anchor:a2553fa806646b3f2d8c69b9","aoa:aoa-techniques:anchor:aa795d4eb114bf96be69313b","aoa:aoa-techniques:anchor:b5f6918462a518c43507c804","aoa:aoa-techniques:anchor:b6b589133354c3f91b8fbf49","aoa:aoa-techniques:anchor:bbabdf5180fdfe1c66ba7e3b","aoa:aoa-techniques:anchor:bdc30658f8962f3b3bf3a7b3","aoa:aoa-techniques:anchor:c25c1a92122af796072b8399","aoa:aoa-techniques:anchor:c392164dd57169f43cee87de","aoa:aoa-techniques:anchor:df912c745f7eed16ac81a1c0","aoa:aoa-techniques:anchor:edd3cfbb07dbd8f0b0b67111","aoa:aoa-techniques:anchor:ef6798235c7a956b46c1400c","aoa:aoa-techniques:anchor:f06c5d107fdc69c2477e273d","aoa:aoa-techniques:anchor:f32633d53076e243d2c35453","aoa:aoa-techniques:anchor:f91a46405faff3f6e2d8387c","aoa:aoa-techniques:anchor:fef34c0da72fb4b1756e21b5"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:f5a101835d95a961dcc57789","label":"method-growth","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth","source_digest":"14914a3727ab492f115bdfc2db814baafc18f47d7319a1add2fa7945ecc5d905","source_record_ids":["aoa:aoa-techniques:artifact:024ba0619d7d56baa3746f63","aoa:aoa-techniques:artifact:0814fca0d9cf9f19a24f08be","aoa:aoa-techniques:artifact:0f88e23c2c445bd245a15a6d","aoa:aoa-techniques:artifact:13625acb67ef244c4570bac3","aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6","aoa:aoa-techniques:artifact:42afdfcc23e587466bcbd77f","aoa:aoa-techniques:artifact:455ee43cce4bf734693d48ae","aoa:aoa-techniques:artifact:50fc41cfa6ba8c24633c0f32","aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","aoa:aoa-techniques:artifact:625162de51e723d5db427245","aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55","aoa:aoa-techniques:artifact:6908d6d859b22cca82450f09","aoa:aoa-techniques:artifact:69115555405d4182c0eda99a","aoa:aoa-techniques:artifact:7df0d9c81bb529fbbaf9d494","aoa:aoa-techniques:artifact:8bfced70fca38ed0380e8b2e","aoa:aoa-techniques:artifact:98e0e518358fda0a889ecb41","aoa:aoa-techniques:artifact:9dd4729f5086cc2ccb7e90a1","aoa:aoa-techniques:artifact:a1437a25a7c1a02db837a57d","aoa:aoa-techniques:artifact:b9df735df304f8d8810a6977","aoa:aoa-techniques:artifact:bc9ba6ee2fae3c974c4258b4","aoa:aoa-techniques:artifact:bd75897649933a8becf9cd74","aoa:aoa-techniques:artifact:c65580c8b9ecefa5b9cf025a","aoa:aoa-techniques:artifact:cb611965358d0abf88ec5a5f","aoa:aoa-techniques:artifact:cd0307e0636674574235aebf","aoa:aoa-techniques:artifact:cfb52641450e277e4497f6d2","aoa:aoa-techniques:artifact:d3617f5c4554fc9e730c5f0e","aoa:aoa-techniques:artifact:e25fd2d900757eb7fee2ff9f","aoa:aoa-techniques:artifact:e6e48cb33fdd2273db0fe1ce","aoa:aoa-techniques:artifact:ee2fea54e2b7736e369daa9b","aoa:aoa-techniques:artifact:f6795072ca24c6fdeb014d33"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:05bc9804c7daefad3f66ac01","aoa:aoa-techniques:anchor:078e7f333328f1102459e5fb","aoa:aoa-techniques:anchor:0fadd2fd958231e4b45617c8","aoa:aoa-techniques:anchor:1b7b5814afb929719c61875d","aoa:aoa-techniques:anchor:3009aa25d549a5f182e7204a","aoa:aoa-techniques:anchor:4ad03f4304fb99397e3eb403","aoa:aoa-techniques:anchor:53dfebd8df81ed1ae411f67d","aoa:aoa-techniques:anchor:55b57fc1f478d0e631675468","aoa:aoa-techniques:anchor:5dc1021730de907dc8367cc5","aoa:aoa-techniques:anchor:6379f8ab7692ab90ebc13087","aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb","aoa:aoa-techniques:anchor:765166f6e6c90479dc677839","aoa:aoa-techniques:anchor:7734094856cb00b20beccb83","aoa:aoa-techniques:anchor:961c7c7ec36395edbd8dcde3","aoa:aoa-techniques:anchor:9f9bfec410b01b21e26ccb96","aoa:aoa-techniques:anchor:a1a9eb814de45b8be9f8d563","aoa:aoa-techniques:anchor:b363a721ab855a8fcbc17239","aoa:aoa-techniques:anchor:b423ccc3bc299d13a0bfb338","aoa:aoa-techniques:anchor:c1639cc1867f0e495e49a78c","aoa:aoa-techniques:anchor:dc71a1befa1b9ff17558d26f","aoa:aoa-techniques:anchor:ec91edf2d92b7a8e4246ab7e","aoa:aoa-techniques:anchor:fef8cb4d3585806764129a54"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:fc82408ee28a19125241013e","label":"audit","provenance_ref":"deterministic","semantic_key":"mechanics/audit","source_digest":"8708b50476c29af362854d079cc0c2d8516b21e76f3c61b8239b3a826d1e175a","source_record_ids":["aoa:aoa-techniques:artifact:0b93e2bbd1c14bf19cfa3f09","aoa:aoa-techniques:artifact:436c0178449184d78679b748","aoa:aoa-techniques:artifact:4488edf3172030ffa4a93b22","aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9","aoa:aoa-techniques:artifact:730109cbf9e419d0e91319ce","aoa:aoa-techniques:artifact:7f54be3138b924b6fbfa62f2","aoa:aoa-techniques:artifact:8442d8bba839abb3a1035ee7","aoa:aoa-techniques:artifact:87f7294594c3379e12bb67db","aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","aoa:aoa-techniques:artifact:b2a8cd3f1dd7f330861f0a02","aoa:aoa-techniques:artifact:b463640837001c8c8c404fb6","aoa:aoa-techniques:artifact:bee43c9116167bc6c5b18d53","aoa:aoa-techniques:artifact:bf43e62b4937509d1a09aba0","aoa:aoa-techniques:artifact:cceb307272637ebed425f089","aoa:aoa-techniques:artifact:d3166ec23c1c2b97b314d260","aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","aoa:aoa-techniques:artifact:d49c981907e98d0aabf2e838","aoa:aoa-techniques:artifact:eb6c24d59a47db9050ba9877","aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc","aoa:aoa-techniques:artifact:f27efcdcafc548616fa6ed83","aoa:aoa-techniques:artifact:f93253dae86af3a100005334"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:010f1a833244b035a3e127f4","aoa:aoa-techniques:anchor:052e3ebdeee0ad37b88dffd8","aoa:aoa-techniques:anchor:0561437660c51420b0ec28c1","aoa:aoa-techniques:anchor:0ebb24dad67ca0599e1257db","aoa:aoa-techniques:anchor:1bae7da365b39d0b65c274e9","aoa:aoa-techniques:anchor:1c8cd17bb7a837a02eb50c23","aoa:aoa-techniques:anchor:270751308ecc15c719876d0b","aoa:aoa-techniques:anchor:2d9b3b17a48efa6ec8846451","aoa:aoa-techniques:anchor:4dbc97ffe6ff7b96dbfaadb2","aoa:aoa-techniques:anchor:5979dd4f703fbe347530a8fe","aoa:aoa-techniques:anchor:5e3a6abedfca2bab8f359285","aoa:aoa-techniques:anchor:6c171549dd243fddc47e6de8","aoa:aoa-techniques:anchor:7dd14803c610a7cf72b7ccd9","aoa:aoa-techniques:anchor:89c7ba1b45aa6f792dbb4462","aoa:aoa-techniques:anchor:987d69794dcc38a5249522f8","aoa:aoa-techniques:anchor:a2553fa806646b3f2d8c69b9","aoa:aoa-techniques:anchor:aa795d4eb114bf96be69313b","aoa:aoa-techniques:anchor:b5f6918462a518c43507c804","aoa:aoa-techniques:anchor:b6b589133354c3f91b8fbf49","aoa:aoa-techniques:anchor:bbabdf5180fdfe1c66ba7e3b","aoa:aoa-techniques:anchor:bdc30658f8962f3b3bf3a7b3","aoa:aoa-techniques:anchor:c25c1a92122af796072b8399","aoa:aoa-techniques:anchor:c392164dd57169f43cee87de","aoa:aoa-techniques:anchor:df912c745f7eed16ac81a1c0","aoa:aoa-techniques:anchor:edd3cfbb07dbd8f0b0b67111","aoa:aoa-techniques:anchor:ef6798235c7a956b46c1400c","aoa:aoa-techniques:anchor:f06c5d107fdc69c2477e273d","aoa:aoa-techniques:anchor:f32633d53076e243d2c35453","aoa:aoa-techniques:anchor:f91a46405faff3f6e2d8387c","aoa:aoa-techniques:anchor:fef34c0da72fb4b1756e21b5"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:f5a101835d95a961dcc57789","label":"method-growth","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth","source_digest":"618bccb8ce2e6b6604147e1243be6cfebff8215328b4b0a426e762c492596eec","source_record_ids":["aoa:aoa-techniques:artifact:024ba0619d7d56baa3746f63","aoa:aoa-techniques:artifact:0814fca0d9cf9f19a24f08be","aoa:aoa-techniques:artifact:0f88e23c2c445bd245a15a6d","aoa:aoa-techniques:artifact:13625acb67ef244c4570bac3","aoa:aoa-techniques:artifact:4145ce71ceb0280d241badd6","aoa:aoa-techniques:artifact:42afdfcc23e587466bcbd77f","aoa:aoa-techniques:artifact:455ee43cce4bf734693d48ae","aoa:aoa-techniques:artifact:50fc41cfa6ba8c24633c0f32","aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","aoa:aoa-techniques:artifact:625162de51e723d5db427245","aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55","aoa:aoa-techniques:artifact:6908d6d859b22cca82450f09","aoa:aoa-techniques:artifact:69115555405d4182c0eda99a","aoa:aoa-techniques:artifact:7df0d9c81bb529fbbaf9d494","aoa:aoa-techniques:artifact:8bfced70fca38ed0380e8b2e","aoa:aoa-techniques:artifact:98e0e518358fda0a889ecb41","aoa:aoa-techniques:artifact:9dd4729f5086cc2ccb7e90a1","aoa:aoa-techniques:artifact:a1437a25a7c1a02db837a57d","aoa:aoa-techniques:artifact:b9df735df304f8d8810a6977","aoa:aoa-techniques:artifact:bc9ba6ee2fae3c974c4258b4","aoa:aoa-techniques:artifact:bd75897649933a8becf9cd74","aoa:aoa-techniques:artifact:c65580c8b9ecefa5b9cf025a","aoa:aoa-techniques:artifact:cb611965358d0abf88ec5a5f","aoa:aoa-techniques:artifact:cd0307e0636674574235aebf","aoa:aoa-techniques:artifact:cfb52641450e277e4497f6d2","aoa:aoa-techniques:artifact:d3617f5c4554fc9e730c5f0e","aoa:aoa-techniques:artifact:e25fd2d900757eb7fee2ff9f","aoa:aoa-techniques:artifact:e6e48cb33fdd2273db0fe1ce","aoa:aoa-techniques:artifact:ee2fea54e2b7736e369daa9b","aoa:aoa-techniques:artifact:f6795072ca24c6fdeb014d33"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:05bc9804c7daefad3f66ac01","aoa:aoa-techniques:anchor:078e7f333328f1102459e5fb","aoa:aoa-techniques:anchor:0fadd2fd958231e4b45617c8","aoa:aoa-techniques:anchor:1b7b5814afb929719c61875d","aoa:aoa-techniques:anchor:3009aa25d549a5f182e7204a","aoa:aoa-techniques:anchor:4ad03f4304fb99397e3eb403","aoa:aoa-techniques:anchor:53dfebd8df81ed1ae411f67d","aoa:aoa-techniques:anchor:55b57fc1f478d0e631675468","aoa:aoa-techniques:anchor:5dc1021730de907dc8367cc5","aoa:aoa-techniques:anchor:6379f8ab7692ab90ebc13087","aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb","aoa:aoa-techniques:anchor:765166f6e6c90479dc677839","aoa:aoa-techniques:anchor:7734094856cb00b20beccb83","aoa:aoa-techniques:anchor:961c7c7ec36395edbd8dcde3","aoa:aoa-techniques:anchor:9f9bfec410b01b21e26ccb96","aoa:aoa-techniques:anchor:a1a9eb814de45b8be9f8d563","aoa:aoa-techniques:anchor:b363a721ab855a8fcbc17239","aoa:aoa-techniques:anchor:b423ccc3bc299d13a0bfb338","aoa:aoa-techniques:anchor:c1639cc1867f0e495e49a78c","aoa:aoa-techniques:anchor:dc71a1befa1b9ff17558d26f","aoa:aoa-techniques:anchor:ec91edf2d92b7a8e4246ab7e","aoa:aoa-techniques:anchor:fef8cb4d3585806764129a54"],"entity_kind":"mechanic_package","id":"aoa:aoa-techniques:entity:fc82408ee28a19125241013e","label":"audit","provenance_ref":"deterministic","semantic_key":"mechanics/audit","source_digest":"0ec2691a25c68b7fc5df05fde9c6752d8c138585ffd1b34274172ccac24782f6","source_record_ids":["aoa:aoa-techniques:artifact:0b93e2bbd1c14bf19cfa3f09","aoa:aoa-techniques:artifact:436c0178449184d78679b748","aoa:aoa-techniques:artifact:4488edf3172030ffa4a93b22","aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9","aoa:aoa-techniques:artifact:730109cbf9e419d0e91319ce","aoa:aoa-techniques:artifact:7f54be3138b924b6fbfa62f2","aoa:aoa-techniques:artifact:8442d8bba839abb3a1035ee7","aoa:aoa-techniques:artifact:87f7294594c3379e12bb67db","aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","aoa:aoa-techniques:artifact:b2a8cd3f1dd7f330861f0a02","aoa:aoa-techniques:artifact:b463640837001c8c8c404fb6","aoa:aoa-techniques:artifact:bee43c9116167bc6c5b18d53","aoa:aoa-techniques:artifact:bf43e62b4937509d1a09aba0","aoa:aoa-techniques:artifact:cceb307272637ebed425f089","aoa:aoa-techniques:artifact:d3166ec23c1c2b97b314d260","aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","aoa:aoa-techniques:artifact:d49c981907e98d0aabf2e838","aoa:aoa-techniques:artifact:eb6c24d59a47db9050ba9877","aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc","aoa:aoa-techniques:artifact:f27efcdcafc548616fa6ed83","aoa:aoa-techniques:artifact:f93253dae86af3a100005334"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b6c5cf60936a620da4f55c74"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:005ced048b53f8ed2bc49d62","label":"stage-technique-anchors","provenance_ref":"deterministic","semantic_key":"mechanics/growth-cycle/parts/stage-technique-anchors","source_digest":"b5a454f5c26ea661851c3a191b33bfc2c3f7fda470e11f320ec845587dc86e96","source_record_ids":["aoa:aoa-techniques:artifact:b55f83bb51ac6656d4d45bf3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:004d346cb7aafa1f58fb86ae","aoa:aoa-techniques:anchor:327bacfdf78f5d37e985a9f8","aoa:aoa-techniques:anchor:818a9121d3852ead651d89cd","aoa:aoa-techniques:anchor:8475f8137710c4c5036abd82","aoa:aoa-techniques:anchor:8a646592548b7bbee8eb3962","aoa:aoa-techniques:anchor:8ac05377990a318920ef648a","aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","aoa:aoa-techniques:anchor:c48b6d6e49417c76506e009b","aoa:aoa-techniques:anchor:ef27f5a40bb3eefbd3162863"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:00dd2296f45e1695b97fa0a0","label":"cross-layer-candidate-ledger","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/cross-layer-candidate-ledger","source_digest":"dc4466769a3e8f89c08cfc3826130ae136329f3c64d5e76bc272d87c3861d915","source_record_ids":["aoa:aoa-techniques:artifact:5374bda42b1a16346071489a","aoa:aoa-techniques:artifact:53efc8b55bbb771b99eb5bc0","aoa:aoa-techniques:artifact:59396c5568d110a761dffa9c","aoa:aoa-techniques:artifact:5b5175da19a378fea73fbebb","aoa:aoa-techniques:artifact:64d8f386eaf8b807e19f5935","aoa:aoa-techniques:artifact:678720844c1ec95a7e08b228","aoa:aoa-techniques:artifact:6d5675828e06a9dbd9ea4488","aoa:aoa-techniques:artifact:765906c4c54c46b0c4898ce0","aoa:aoa-techniques:artifact:c81e9a9b6ca47a71a2ad94ac"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3e0038b420a8333a5519d1b7"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:01422e27a833b3bb87d0f873","label":"AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/questbook/parts/AGENTS.md","source_digest":"c2b9db43c0605d73c6301f5fe5980f7404554d7ce2256a07cc6c99858201d294","source_record_ids":["aoa:aoa-techniques:artifact:01422e27a833b3bb87d0f873"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2802,9 +2808,9 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:cd05f673c2a9291152f5a561"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:502ad961e0c7d61ded6ee74a","label":"README.md","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/README.md","source_digest":"3a2f19338dc38e364a638e9185c62d32a847d9491ceaedba0c981dd3591bbed7","source_record_ids":["aoa:aoa-techniques:artifact:502ad961e0c7d61ded6ee74a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:675caa36db4c691a99fb1d7b"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:521b1611e7f81bfb5f5d0b48","label":"donor-refinery","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/donor-refinery","source_digest":"eec0795fe329df8b85f82836e0932c08979f172f532e3ea28861b605f86c9998","source_record_ids":["aoa:aoa-techniques:artifact:efad5c18022305012ddd5d4d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:052e3ebdeee0ad37b88dffd8","aoa:aoa-techniques:anchor:987d69794dcc38a5249522f8","aoa:aoa-techniques:anchor:a2553fa806646b3f2d8c69b9"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:5a90ab98c554ff6b3f8eae15","label":"retention-checks","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/parts/retention-checks","source_digest":"d58b20749e0593321609544b72612d4f7b395830df07e016a2a1d341df3176b9","source_record_ids":["aoa:aoa-techniques:artifact:024ba0619d7d56baa3746f63","aoa:aoa-techniques:artifact:69115555405d4182c0eda99a","aoa:aoa-techniques:artifact:cfb52641450e277e4497f6d2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:5cd1322fd7d0b864ac8145fb","label":"promotion-readiness-matrix","provenance_ref":"deterministic","semantic_key":"mechanics/audit/parts/promotion-readiness-matrix","source_digest":"ad31b30031943af7daa61aa0b5f52331e5e91287b41dca976586d6b3e424443b","source_record_ids":["aoa:aoa-techniques:artifact:939587694ad1459c4120bb30"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:5cd1322fd7d0b864ac8145fb","label":"promotion-readiness-matrix","provenance_ref":"deterministic","semantic_key":"mechanics/audit/parts/promotion-readiness-matrix","source_digest":"90e50b5ab2dfde502cc96991798604c7005851112306e10512a93f821f23a177","source_record_ids":["aoa:aoa-techniques:artifact:939587694ad1459c4120bb30"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2418a8dbcf2d45101d7c65da"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:60c9eeff112401ebe7c084f8","label":"chaos-stress-program","provenance_ref":"deterministic","semantic_key":"mechanics/antifragility/parts/chaos-stress-program","source_digest":"938efe93c5b6f38ac11a163339fd3a4f104b5922256e23d0784a16796cfc1136","source_record_ids":["aoa:aoa-techniques:artifact:bd66423ecfd73b7225df0bd5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","aoa:aoa-techniques:anchor:08a3a6e0d1a9376a233b10b5","aoa:aoa-techniques:anchor:09d36f42cc56bb63868eb07c","aoa:aoa-techniques:anchor:0a58ef71ee17c1ccb7701f25","aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","aoa:aoa-techniques:anchor:0b253a863340466491b1b23a","aoa:aoa-techniques:anchor:0c5da5ed548db71b5ac0e7d1","aoa:aoa-techniques:anchor:0f43e73b5767455afd6bb9a1","aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","aoa:aoa-techniques:anchor:116da7a2029997226c834014","aoa:aoa-techniques:anchor:15b4a56f5feb8566c0c35adb","aoa:aoa-techniques:anchor:16e431f327930deab13b43a9","aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","aoa:aoa-techniques:anchor:193caff3a74985d607c06d49","aoa:aoa-techniques:anchor:19c9ce4ad6f333348a0442c6","aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03","aoa:aoa-techniques:anchor:1d3393930a228f83b6a40cc7","aoa:aoa-techniques:anchor:1edd9e314c354ccc5d3e03e7","aoa:aoa-techniques:anchor:1f8b8af58092484be17ce6b2","aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","aoa:aoa-techniques:anchor:219fa43a6db9eb01fa6b53e3","aoa:aoa-techniques:anchor:21bc81b24a07839b611f6c6b","aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab","aoa:aoa-techniques:anchor:230ccd6b97439f8e668e242d","aoa:aoa-techniques:anchor:2323e38403362d29e033deae","aoa:aoa-techniques:anchor:239b0cafa33bcf86998a07c0","aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd","aoa:aoa-techniques:anchor:2914a4a235947730804edc19","aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4","aoa:aoa-techniques:anchor:2bec5bdf7f5bb94a14c386ba","aoa:aoa-techniques:anchor:2c234357d93af3aa108a0e07","aoa:aoa-techniques:anchor:2deaf6df24b0862dafa6faf8","aoa:aoa-techniques:anchor:2f7f49780021b6d3615f4baa","aoa:aoa-techniques:anchor:305866d803086f7e98a58e31","aoa:aoa-techniques:anchor:31ac322df2356c18fece2db7","aoa:aoa-techniques:anchor:329f6ffb482f2fe17a5d7077","aoa:aoa-techniques:anchor:35b718f92aa8648b6c366472","aoa:aoa-techniques:anchor:361103f961f909f4c123433e","aoa:aoa-techniques:anchor:3741f1d59f0363477d7b9b11","aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e","aoa:aoa-techniques:anchor:3b2d233f15714b0a091488cd","aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","aoa:aoa-techniques:anchor:3fbaf7c4d3fd1375f9ccd6d5","aoa:aoa-techniques:anchor:4035531165582a1dc864a388","aoa:aoa-techniques:anchor:43feb3daee9310f782143af7","aoa:aoa-techniques:anchor:452e8e06956baf3e39635f01","aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","aoa:aoa-techniques:anchor:471a955a2e179944eb322f79","aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","aoa:aoa-techniques:anchor:49869e1b92146765f59c96ff","aoa:aoa-techniques:anchor:4a265c97c7a9faca1d98e672","aoa:aoa-techniques:anchor:4b4976023e495c834125bfcd","aoa:aoa-techniques:anchor:4c90d2731db9899463d26522","aoa:aoa-techniques:anchor:4c935cc0efe688cb971338d9","aoa:aoa-techniques:anchor:4fe36c7dd7093f65d8114e3b","aoa:aoa-techniques:anchor:5049b1246255eab985c0f688","aoa:aoa-techniques:anchor:54efb8b453b96c315bd05fcd","aoa:aoa-techniques:anchor:5810c155ece164ad55c6dac3","aoa:aoa-techniques:anchor:5aebd19b24796bf16d32f3be","aoa:aoa-techniques:anchor:5bc91fceca9739150de32c64","aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb","aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","aoa:aoa-techniques:anchor:5de62024144aa64132cf9713","aoa:aoa-techniques:anchor:600c582f43a21dc7a3c09ef5","aoa:aoa-techniques:anchor:613461552c83841bed52c351","aoa:aoa-techniques:anchor:64947c8dca361f2aa5e50b93","aoa:aoa-techniques:anchor:66a80e4be71018e2727a452c","aoa:aoa-techniques:anchor:66b233e3c4caf7bf4e5998f8","aoa:aoa-techniques:anchor:6730f2ba972d7e4b6e8556e8","aoa:aoa-techniques:anchor:6849c1c95ccc92fdd41c98b1","aoa:aoa-techniques:anchor:699ad6faae43c4f3b7ec0053","aoa:aoa-techniques:anchor:69b605d67753b11dbd164f0b","aoa:aoa-techniques:anchor:6c226d4e8b71f30f920b2fdd","aoa:aoa-techniques:anchor:6ce9de08c4ee5a53e1f590ac","aoa:aoa-techniques:anchor:6ea51c6712643e400a0286ac","aoa:aoa-techniques:anchor:6f22f4f13a7a236cf6aab6d6","aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821","aoa:aoa-techniques:anchor:706c86a7a45ad63e22fabdec","aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b","aoa:aoa-techniques:anchor:72a969368dcbd0e1c7b42166","aoa:aoa-techniques:anchor:73b0b4ae94897ba720da53f9","aoa:aoa-techniques:anchor:74123619244129f4ee04644d","aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b","aoa:aoa-techniques:anchor:7b91d3196b2d38fed0fd951e","aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","aoa:aoa-techniques:anchor:7c8c069e656545ea884b926b","aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","aoa:aoa-techniques:anchor:7e9d6e7ce191f8dcf2ef4694","aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc","aoa:aoa-techniques:anchor:82f90d940e3522e1df53473f","aoa:aoa-techniques:anchor:894938dd69460a2ff444602f","aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67","aoa:aoa-techniques:anchor:8ce7aec5aa70c36407699fa0","aoa:aoa-techniques:anchor:8f3f5e1f21dc6819f11a60c4","aoa:aoa-techniques:anchor:92db231c800c61f3503df8f2","aoa:aoa-techniques:anchor:93ef0ebf5a33bb20ad038cda","aoa:aoa-techniques:anchor:9653ec36aabc5160baccf4ac","aoa:aoa-techniques:anchor:9aebb395ecaa3e4d508d1a22","aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","aoa:aoa-techniques:anchor:9c98aa48b4723abaa35ef21f","aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","aoa:aoa-techniques:anchor:a0c310c067e722660d722e4d","aoa:aoa-techniques:anchor:a24137ed4f39b13cf69ac833","aoa:aoa-techniques:anchor:a449f3c6fc5141bc9c76748d","aoa:aoa-techniques:anchor:a49e9cb33e1091d62de9a3b6","aoa:aoa-techniques:anchor:a4aedfcfc1f2d1fb2d1e2c53","aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","aoa:aoa-techniques:anchor:a8aadf942643495c9581c021","aoa:aoa-techniques:anchor:a9eef9d75a1e65f76d972ab0","aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628","aoa:aoa-techniques:anchor:aea99a3bcd6d92d7f4cb2697","aoa:aoa-techniques:anchor:b07d1392c7862697dbbeca08","aoa:aoa-techniques:anchor:b39961a80e3e86daf30828aa","aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","aoa:aoa-techniques:anchor:b4fc9193eeb8bec23196d74a","aoa:aoa-techniques:anchor:b560daa43cd9d3f6ef1e48a5","aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44","aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e","aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","aoa:aoa-techniques:anchor:bb01040578683f99cd6e58cb","aoa:aoa-techniques:anchor:bc6d13accbe0a13deb572ee6","aoa:aoa-techniques:anchor:bf297467bd18e3f905f8cded","aoa:aoa-techniques:anchor:c060a0aa80f595d95d16d9d6","aoa:aoa-techniques:anchor:c22c249c88b41751271e550e","aoa:aoa-techniques:anchor:c2fa6e9160ac26bbb3390efa","aoa:aoa-techniques:anchor:c35f2c4604d83d6c8d0aa525","aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","aoa:aoa-techniques:anchor:c776ec5b2e0d95daef8773cf","aoa:aoa-techniques:anchor:ca0e1dc55b4a47f9d121ae86","aoa:aoa-techniques:anchor:cc911416c8bcf0fd15c22f83","aoa:aoa-techniques:anchor:cd28e8d8ec9d4c6812cffca1","aoa:aoa-techniques:anchor:cfcebbd33ed49d6091ce82fc","aoa:aoa-techniques:anchor:d007b12507d20e024679d537","aoa:aoa-techniques:anchor:d0e1c4a664f5b79b973bc63d","aoa:aoa-techniques:anchor:d4df5ac720c1168c777e2a9f","aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52","aoa:aoa-techniques:anchor:daacf55144c3dff2f738cb23","aoa:aoa-techniques:anchor:db24304873d3a69304589284","aoa:aoa-techniques:anchor:deed7f8749125ba10207f02d","aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","aoa:aoa-techniques:anchor:e2d905475a1e1b31afb5976c","aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","aoa:aoa-techniques:anchor:e59b2b40078eeef86eb33dcf","aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355","aoa:aoa-techniques:anchor:e70bf4851d8e35a142be7212","aoa:aoa-techniques:anchor:ee3573cbf43c02a6c53a76c3","aoa:aoa-techniques:anchor:eea898fb94871ed85902ab69","aoa:aoa-techniques:anchor:ef644b1e48e790cc73017fb9","aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","aoa:aoa-techniques:anchor:f3fbac540e0009f5027f61cc","aoa:aoa-techniques:anchor:f624522a9f1d82cd0ee722f3","aoa:aoa-techniques:anchor:f718dc802df90e923913707f","aoa:aoa-techniques:anchor:f91073f609c8ed98eecdd4c8","aoa:aoa-techniques:anchor:f96be22bbfa558dcf4c52c14","aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","aoa:aoa-techniques:anchor:fb8edd4e9dcb000601e5c7a1","aoa:aoa-techniques:anchor:fdd86ac3dedd571c779f0062"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:642d7529f3f40738a2f29dc6","label":"technique-reform-ingress","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress","source_digest":"e9216c33df850fc62f93c581ac6bb959a3d19b2c1607491582ea183433f0106d","source_record_ids":["aoa:aoa-techniques:artifact:01a70f8ddd540893b5a82d72","aoa:aoa-techniques:artifact:020bb8fb4c97a84728f69dbd","aoa:aoa-techniques:artifact:02725fe911d71d32505fc6ad","aoa:aoa-techniques:artifact:02b9d67150122bff94236586","aoa:aoa-techniques:artifact:068f1b1e753aadb4ac7af2fc","aoa:aoa-techniques:artifact:07ce689f08cf16f3527fc4f7","aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","aoa:aoa-techniques:artifact:0978b56480c7657711436219","aoa:aoa-techniques:artifact:0cbfc31da990762d893d8446","aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","aoa:aoa-techniques:artifact:162b12067e96cd5aec11d4f3","aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","aoa:aoa-techniques:artifact:183461d99a40009516486c0e","aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","aoa:aoa-techniques:artifact:1bd931ce32fb23c3d04421f5","aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","aoa:aoa-techniques:artifact:1e96bc1426c8950259835bb7","aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","aoa:aoa-techniques:artifact:241181e6d015c4e81ed89494","aoa:aoa-techniques:artifact:24f952fceed043566fc03f8b","aoa:aoa-techniques:artifact:275c69fea6f4ed237e677ba6","aoa:aoa-techniques:artifact:276241f8b398d6731e4f727a","aoa:aoa-techniques:artifact:28d2e503ac2d2a27e1a10092","aoa:aoa-techniques:artifact:2bf761cf21e5b4d6e862bd33","aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","aoa:aoa-techniques:artifact:302bfdd03b2d5e324a5c69c4","aoa:aoa-techniques:artifact:306109b542eff7632f136b0e","aoa:aoa-techniques:artifact:31a6a3ce9244beba872569d3","aoa:aoa-techniques:artifact:31bd9ed4776744c6bee438e4","aoa:aoa-techniques:artifact:31ed7dd71c79aef53c081c9d","aoa:aoa-techniques:artifact:321896c1b1f5171091b5cdf3","aoa:aoa-techniques:artifact:331fb050b9ee7573ef318347","aoa:aoa-techniques:artifact:33de82121c5e5c731af967ab","aoa:aoa-techniques:artifact:34627f21196e425b7edb4a68","aoa:aoa-techniques:artifact:366b800f4b86c83ca4fc1323","aoa:aoa-techniques:artifact:36efec87ded6f5b069e4f084","aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","aoa:aoa-techniques:artifact:3bb431257748a1b661f025a1","aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075","aoa:aoa-techniques:artifact:3faea6ec16c782a2552f82dc","aoa:aoa-techniques:artifact:4009d2ba51883ad244865419","aoa:aoa-techniques:artifact:406d0a2cdc8e2dd75bccb45d","aoa:aoa-techniques:artifact:40e0f556a68266a4c2fefe82","aoa:aoa-techniques:artifact:42e944264062ef4190bd102e","aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","aoa:aoa-techniques:artifact:4bd7e049d0c871f8d832ce7d","aoa:aoa-techniques:artifact:4c17dc0212be77d7d67bc39f","aoa:aoa-techniques:artifact:4c5d4278022a41717ba005dd","aoa:aoa-techniques:artifact:4cd7f4f448c2b0321fa9fdad","aoa:aoa-techniques:artifact:4e66fdff1d365acd57cbf978","aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","aoa:aoa-techniques:artifact:521faaaf800f3eca7f1968d7","aoa:aoa-techniques:artifact:52e73841d94c6e5347a66d5f","aoa:aoa-techniques:artifact:538a4458db4e8a9435f20f9b","aoa:aoa-techniques:artifact:53b5a894bcdc854168397bb3","aoa:aoa-techniques:artifact:577c1d0e02c2508128663161","aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","aoa:aoa-techniques:artifact:5a427c584fa1429f11e93829","aoa:aoa-techniques:artifact:5b933ec3dff555bc66577052","aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","aoa:aoa-techniques:artifact:610f4b559b944866885cd4dc","aoa:aoa-techniques:artifact:6350baca8fc603ed8315477f","aoa:aoa-techniques:artifact:647cc87cbeaaa43064efaee4","aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","aoa:aoa-techniques:artifact:6d639d0fa8f0902c2e18bf90","aoa:aoa-techniques:artifact:71201fec2eec509ba55b62ee","aoa:aoa-techniques:artifact:725d04e0beb9e29e171d02cc","aoa:aoa-techniques:artifact:72f600253b504da6dac9194e","aoa:aoa-techniques:artifact:72fb3850cf1510716518706a","aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","aoa:aoa-techniques:artifact:77f9b1a62560dc090494f849","aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","aoa:aoa-techniques:artifact:8150cef8632840038231233a","aoa:aoa-techniques:artifact:826afccac9b1261d23f89f8d","aoa:aoa-techniques:artifact:8340c564c99b04b2d2bc9d0a","aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","aoa:aoa-techniques:artifact:87521d3395d01ec0fe08f1ea","aoa:aoa-techniques:artifact:887d4a0e7d480a04b5217873","aoa:aoa-techniques:artifact:890889554e1cec9079f72f86","aoa:aoa-techniques:artifact:8a6542641b3e9209ba03e08d","aoa:aoa-techniques:artifact:8de898f47e9e3b0854d71aba","aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","aoa:aoa-techniques:artifact:90067aff1a4f98e3aff450cb","aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","aoa:aoa-techniques:artifact:9671af65d12915bba6df468c","aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2","aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae","aoa:aoa-techniques:artifact:99758dab04fd48b9c22c8134","aoa:aoa-techniques:artifact:998ba212c6a82e2f08d7b6df","aoa:aoa-techniques:artifact:99e7743c0f71b084bf613ec2","aoa:aoa-techniques:artifact:9bd5382d28ff305374d89d34","aoa:aoa-techniques:artifact:9be1ca9680a3adf4cf38e13a","aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","aoa:aoa-techniques:artifact:a1368b52e87f2aa01ddbc24f","aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","aoa:aoa-techniques:artifact:a5d8ccba85d0a3c70b399526","aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","aoa:aoa-techniques:artifact:a82a2d1eff854a5b62a3f523","aoa:aoa-techniques:artifact:a97d8942d149af1b82453153","aoa:aoa-techniques:artifact:aba405c32b985c0a2fa81085","aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","aoa:aoa-techniques:artifact:b152a0b98d3754afb662dffa","aoa:aoa-techniques:artifact:b598f0f95466968d1af36d7e","aoa:aoa-techniques:artifact:b5d54a6ff1bb9331d0c891ab","aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","aoa:aoa-techniques:artifact:b77ebb6f44579ca40ca922fa","aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","aoa:aoa-techniques:artifact:b8752e2dfab43b33fff12bfc","aoa:aoa-techniques:artifact:c00bb1a986ec29d86f8448ef","aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","aoa:aoa-techniques:artifact:c378e0bb4347b59a1244c35a","aoa:aoa-techniques:artifact:c38f953d407fda8093621250","aoa:aoa-techniques:artifact:c54de120089eef1a6853667a","aoa:aoa-techniques:artifact:c59f4287b9e3a72be88c9eaa","aoa:aoa-techniques:artifact:c69089469604c6b4ee8aeb2b","aoa:aoa-techniques:artifact:c7008657e0ae2e93ff9f9bcf","aoa:aoa-techniques:artifact:c7f5d25fc63cc0a96b9735c2","aoa:aoa-techniques:artifact:c89f324a2cf376e8069cf5c3","aoa:aoa-techniques:artifact:c9107011968421971fabafeb","aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","aoa:aoa-techniques:artifact:cd86ffaf0ac8b5ffb3d7d7cb","aoa:aoa-techniques:artifact:ce8ca6e1f0f910e839bf7ede","aoa:aoa-techniques:artifact:d1724b1d0fcb3bd4e94adfd5","aoa:aoa-techniques:artifact:d1a9d831ec2524b5d37880b4","aoa:aoa-techniques:artifact:d28a9f0415aee8fa14596dbe","aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","aoa:aoa-techniques:artifact:d6d89bc629ac65cb08f10b90","aoa:aoa-techniques:artifact:d96368a93dd5c19b08e5401d","aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","aoa:aoa-techniques:artifact:dcca45fa1ecaebce1e627100","aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","aoa:aoa-techniques:artifact:e0fdabb85c8668f75f6b7d80","aoa:aoa-techniques:artifact:e1c51c7c70802edcbfd3c1c4","aoa:aoa-techniques:artifact:e66619707ba54a89aa714842","aoa:aoa-techniques:artifact:e8b51cf0ee49407040e14967","aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6","aoa:aoa-techniques:artifact:ed41d63e9981165c3bbc8857","aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","aoa:aoa-techniques:artifact:f13c07926dfa7da5d3b19c63","aoa:aoa-techniques:artifact:f1809ca0b4d7229ef7127047","aoa:aoa-techniques:artifact:f444d5f6f7157618cd89c466","aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","aoa:aoa-techniques:artifact:fc97414a501927ba15cf1b1d","aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","aoa:aoa-techniques:artifact:fde64b8930329509292434ad","aoa:aoa-techniques:artifact:fec3dc23de4553ec2e819b55","aoa:aoa-techniques:artifact:ff3eb7e7bed98dc8dc74ff0d"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","aoa:aoa-techniques:anchor:08a3a6e0d1a9376a233b10b5","aoa:aoa-techniques:anchor:09d36f42cc56bb63868eb07c","aoa:aoa-techniques:anchor:0a58ef71ee17c1ccb7701f25","aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","aoa:aoa-techniques:anchor:0b253a863340466491b1b23a","aoa:aoa-techniques:anchor:0c5da5ed548db71b5ac0e7d1","aoa:aoa-techniques:anchor:0f43e73b5767455afd6bb9a1","aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","aoa:aoa-techniques:anchor:116da7a2029997226c834014","aoa:aoa-techniques:anchor:15b4a56f5feb8566c0c35adb","aoa:aoa-techniques:anchor:16e431f327930deab13b43a9","aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","aoa:aoa-techniques:anchor:193caff3a74985d607c06d49","aoa:aoa-techniques:anchor:19c9ce4ad6f333348a0442c6","aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03","aoa:aoa-techniques:anchor:1d3393930a228f83b6a40cc7","aoa:aoa-techniques:anchor:1edd9e314c354ccc5d3e03e7","aoa:aoa-techniques:anchor:1f8b8af58092484be17ce6b2","aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","aoa:aoa-techniques:anchor:219fa43a6db9eb01fa6b53e3","aoa:aoa-techniques:anchor:21bc81b24a07839b611f6c6b","aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab","aoa:aoa-techniques:anchor:230ccd6b97439f8e668e242d","aoa:aoa-techniques:anchor:2323e38403362d29e033deae","aoa:aoa-techniques:anchor:239b0cafa33bcf86998a07c0","aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd","aoa:aoa-techniques:anchor:2914a4a235947730804edc19","aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4","aoa:aoa-techniques:anchor:2bec5bdf7f5bb94a14c386ba","aoa:aoa-techniques:anchor:2c234357d93af3aa108a0e07","aoa:aoa-techniques:anchor:2deaf6df24b0862dafa6faf8","aoa:aoa-techniques:anchor:2f7f49780021b6d3615f4baa","aoa:aoa-techniques:anchor:305866d803086f7e98a58e31","aoa:aoa-techniques:anchor:31ac322df2356c18fece2db7","aoa:aoa-techniques:anchor:329f6ffb482f2fe17a5d7077","aoa:aoa-techniques:anchor:35b718f92aa8648b6c366472","aoa:aoa-techniques:anchor:361103f961f909f4c123433e","aoa:aoa-techniques:anchor:3741f1d59f0363477d7b9b11","aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e","aoa:aoa-techniques:anchor:3b2d233f15714b0a091488cd","aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","aoa:aoa-techniques:anchor:3fbaf7c4d3fd1375f9ccd6d5","aoa:aoa-techniques:anchor:4035531165582a1dc864a388","aoa:aoa-techniques:anchor:43feb3daee9310f782143af7","aoa:aoa-techniques:anchor:452e8e06956baf3e39635f01","aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","aoa:aoa-techniques:anchor:471a955a2e179944eb322f79","aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","aoa:aoa-techniques:anchor:49869e1b92146765f59c96ff","aoa:aoa-techniques:anchor:4a265c97c7a9faca1d98e672","aoa:aoa-techniques:anchor:4b4976023e495c834125bfcd","aoa:aoa-techniques:anchor:4c90d2731db9899463d26522","aoa:aoa-techniques:anchor:4c935cc0efe688cb971338d9","aoa:aoa-techniques:anchor:4fe36c7dd7093f65d8114e3b","aoa:aoa-techniques:anchor:5049b1246255eab985c0f688","aoa:aoa-techniques:anchor:54efb8b453b96c315bd05fcd","aoa:aoa-techniques:anchor:5810c155ece164ad55c6dac3","aoa:aoa-techniques:anchor:5aebd19b24796bf16d32f3be","aoa:aoa-techniques:anchor:5bc91fceca9739150de32c64","aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb","aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","aoa:aoa-techniques:anchor:5de62024144aa64132cf9713","aoa:aoa-techniques:anchor:600c582f43a21dc7a3c09ef5","aoa:aoa-techniques:anchor:613461552c83841bed52c351","aoa:aoa-techniques:anchor:64947c8dca361f2aa5e50b93","aoa:aoa-techniques:anchor:66a80e4be71018e2727a452c","aoa:aoa-techniques:anchor:66b233e3c4caf7bf4e5998f8","aoa:aoa-techniques:anchor:6730f2ba972d7e4b6e8556e8","aoa:aoa-techniques:anchor:6849c1c95ccc92fdd41c98b1","aoa:aoa-techniques:anchor:699ad6faae43c4f3b7ec0053","aoa:aoa-techniques:anchor:69b605d67753b11dbd164f0b","aoa:aoa-techniques:anchor:6c226d4e8b71f30f920b2fdd","aoa:aoa-techniques:anchor:6ce9de08c4ee5a53e1f590ac","aoa:aoa-techniques:anchor:6ea51c6712643e400a0286ac","aoa:aoa-techniques:anchor:6f22f4f13a7a236cf6aab6d6","aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821","aoa:aoa-techniques:anchor:706c86a7a45ad63e22fabdec","aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b","aoa:aoa-techniques:anchor:72a969368dcbd0e1c7b42166","aoa:aoa-techniques:anchor:73b0b4ae94897ba720da53f9","aoa:aoa-techniques:anchor:74123619244129f4ee04644d","aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b","aoa:aoa-techniques:anchor:7b91d3196b2d38fed0fd951e","aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","aoa:aoa-techniques:anchor:7c8c069e656545ea884b926b","aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","aoa:aoa-techniques:anchor:7e9d6e7ce191f8dcf2ef4694","aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc","aoa:aoa-techniques:anchor:82f90d940e3522e1df53473f","aoa:aoa-techniques:anchor:894938dd69460a2ff444602f","aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67","aoa:aoa-techniques:anchor:8ce7aec5aa70c36407699fa0","aoa:aoa-techniques:anchor:8f3f5e1f21dc6819f11a60c4","aoa:aoa-techniques:anchor:92db231c800c61f3503df8f2","aoa:aoa-techniques:anchor:93ef0ebf5a33bb20ad038cda","aoa:aoa-techniques:anchor:9653ec36aabc5160baccf4ac","aoa:aoa-techniques:anchor:9aebb395ecaa3e4d508d1a22","aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","aoa:aoa-techniques:anchor:9c98aa48b4723abaa35ef21f","aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","aoa:aoa-techniques:anchor:a0c310c067e722660d722e4d","aoa:aoa-techniques:anchor:a24137ed4f39b13cf69ac833","aoa:aoa-techniques:anchor:a449f3c6fc5141bc9c76748d","aoa:aoa-techniques:anchor:a49e9cb33e1091d62de9a3b6","aoa:aoa-techniques:anchor:a4aedfcfc1f2d1fb2d1e2c53","aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","aoa:aoa-techniques:anchor:a8aadf942643495c9581c021","aoa:aoa-techniques:anchor:a9eef9d75a1e65f76d972ab0","aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628","aoa:aoa-techniques:anchor:aea99a3bcd6d92d7f4cb2697","aoa:aoa-techniques:anchor:b07d1392c7862697dbbeca08","aoa:aoa-techniques:anchor:b39961a80e3e86daf30828aa","aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","aoa:aoa-techniques:anchor:b4fc9193eeb8bec23196d74a","aoa:aoa-techniques:anchor:b560daa43cd9d3f6ef1e48a5","aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44","aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e","aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","aoa:aoa-techniques:anchor:bb01040578683f99cd6e58cb","aoa:aoa-techniques:anchor:bc6d13accbe0a13deb572ee6","aoa:aoa-techniques:anchor:bf297467bd18e3f905f8cded","aoa:aoa-techniques:anchor:c060a0aa80f595d95d16d9d6","aoa:aoa-techniques:anchor:c22c249c88b41751271e550e","aoa:aoa-techniques:anchor:c2fa6e9160ac26bbb3390efa","aoa:aoa-techniques:anchor:c35f2c4604d83d6c8d0aa525","aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","aoa:aoa-techniques:anchor:c776ec5b2e0d95daef8773cf","aoa:aoa-techniques:anchor:ca0e1dc55b4a47f9d121ae86","aoa:aoa-techniques:anchor:cc911416c8bcf0fd15c22f83","aoa:aoa-techniques:anchor:cd28e8d8ec9d4c6812cffca1","aoa:aoa-techniques:anchor:cfcebbd33ed49d6091ce82fc","aoa:aoa-techniques:anchor:d007b12507d20e024679d537","aoa:aoa-techniques:anchor:d0e1c4a664f5b79b973bc63d","aoa:aoa-techniques:anchor:d4df5ac720c1168c777e2a9f","aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52","aoa:aoa-techniques:anchor:daacf55144c3dff2f738cb23","aoa:aoa-techniques:anchor:db24304873d3a69304589284","aoa:aoa-techniques:anchor:deed7f8749125ba10207f02d","aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","aoa:aoa-techniques:anchor:e2d905475a1e1b31afb5976c","aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","aoa:aoa-techniques:anchor:e59b2b40078eeef86eb33dcf","aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355","aoa:aoa-techniques:anchor:e70bf4851d8e35a142be7212","aoa:aoa-techniques:anchor:ee3573cbf43c02a6c53a76c3","aoa:aoa-techniques:anchor:eea898fb94871ed85902ab69","aoa:aoa-techniques:anchor:ef644b1e48e790cc73017fb9","aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","aoa:aoa-techniques:anchor:f3fbac540e0009f5027f61cc","aoa:aoa-techniques:anchor:f624522a9f1d82cd0ee722f3","aoa:aoa-techniques:anchor:f718dc802df90e923913707f","aoa:aoa-techniques:anchor:f91073f609c8ed98eecdd4c8","aoa:aoa-techniques:anchor:f96be22bbfa558dcf4c52c14","aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","aoa:aoa-techniques:anchor:fb8edd4e9dcb000601e5c7a1","aoa:aoa-techniques:anchor:fdd86ac3dedd571c779f0062"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:642d7529f3f40738a2f29dc6","label":"technique-reform-ingress","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/technique-reform-ingress","source_digest":"0e0d5602f4044e94b86c80176eab3c5c7b86a71dae5869d05956ede576b6cc9a","source_record_ids":["aoa:aoa-techniques:artifact:01a70f8ddd540893b5a82d72","aoa:aoa-techniques:artifact:020bb8fb4c97a84728f69dbd","aoa:aoa-techniques:artifact:02725fe911d71d32505fc6ad","aoa:aoa-techniques:artifact:02b9d67150122bff94236586","aoa:aoa-techniques:artifact:068f1b1e753aadb4ac7af2fc","aoa:aoa-techniques:artifact:07ce689f08cf16f3527fc4f7","aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","aoa:aoa-techniques:artifact:0978b56480c7657711436219","aoa:aoa-techniques:artifact:0cbfc31da990762d893d8446","aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","aoa:aoa-techniques:artifact:162b12067e96cd5aec11d4f3","aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","aoa:aoa-techniques:artifact:183461d99a40009516486c0e","aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","aoa:aoa-techniques:artifact:1bd931ce32fb23c3d04421f5","aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","aoa:aoa-techniques:artifact:1e96bc1426c8950259835bb7","aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","aoa:aoa-techniques:artifact:241181e6d015c4e81ed89494","aoa:aoa-techniques:artifact:24f952fceed043566fc03f8b","aoa:aoa-techniques:artifact:275c69fea6f4ed237e677ba6","aoa:aoa-techniques:artifact:276241f8b398d6731e4f727a","aoa:aoa-techniques:artifact:28d2e503ac2d2a27e1a10092","aoa:aoa-techniques:artifact:2bf761cf21e5b4d6e862bd33","aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","aoa:aoa-techniques:artifact:302bfdd03b2d5e324a5c69c4","aoa:aoa-techniques:artifact:306109b542eff7632f136b0e","aoa:aoa-techniques:artifact:31a6a3ce9244beba872569d3","aoa:aoa-techniques:artifact:31bd9ed4776744c6bee438e4","aoa:aoa-techniques:artifact:31ed7dd71c79aef53c081c9d","aoa:aoa-techniques:artifact:321896c1b1f5171091b5cdf3","aoa:aoa-techniques:artifact:331fb050b9ee7573ef318347","aoa:aoa-techniques:artifact:33de82121c5e5c731af967ab","aoa:aoa-techniques:artifact:34627f21196e425b7edb4a68","aoa:aoa-techniques:artifact:366b800f4b86c83ca4fc1323","aoa:aoa-techniques:artifact:36efec87ded6f5b069e4f084","aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","aoa:aoa-techniques:artifact:3bb431257748a1b661f025a1","aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075","aoa:aoa-techniques:artifact:3faea6ec16c782a2552f82dc","aoa:aoa-techniques:artifact:4009d2ba51883ad244865419","aoa:aoa-techniques:artifact:406d0a2cdc8e2dd75bccb45d","aoa:aoa-techniques:artifact:40e0f556a68266a4c2fefe82","aoa:aoa-techniques:artifact:42e944264062ef4190bd102e","aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","aoa:aoa-techniques:artifact:4bd7e049d0c871f8d832ce7d","aoa:aoa-techniques:artifact:4c17dc0212be77d7d67bc39f","aoa:aoa-techniques:artifact:4c5d4278022a41717ba005dd","aoa:aoa-techniques:artifact:4cd7f4f448c2b0321fa9fdad","aoa:aoa-techniques:artifact:4e66fdff1d365acd57cbf978","aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","aoa:aoa-techniques:artifact:521faaaf800f3eca7f1968d7","aoa:aoa-techniques:artifact:52e73841d94c6e5347a66d5f","aoa:aoa-techniques:artifact:538a4458db4e8a9435f20f9b","aoa:aoa-techniques:artifact:53b5a894bcdc854168397bb3","aoa:aoa-techniques:artifact:577c1d0e02c2508128663161","aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","aoa:aoa-techniques:artifact:5a427c584fa1429f11e93829","aoa:aoa-techniques:artifact:5b933ec3dff555bc66577052","aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","aoa:aoa-techniques:artifact:610f4b559b944866885cd4dc","aoa:aoa-techniques:artifact:6350baca8fc603ed8315477f","aoa:aoa-techniques:artifact:647cc87cbeaaa43064efaee4","aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","aoa:aoa-techniques:artifact:6d639d0fa8f0902c2e18bf90","aoa:aoa-techniques:artifact:71201fec2eec509ba55b62ee","aoa:aoa-techniques:artifact:725d04e0beb9e29e171d02cc","aoa:aoa-techniques:artifact:72f600253b504da6dac9194e","aoa:aoa-techniques:artifact:72fb3850cf1510716518706a","aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","aoa:aoa-techniques:artifact:77f9b1a62560dc090494f849","aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","aoa:aoa-techniques:artifact:8150cef8632840038231233a","aoa:aoa-techniques:artifact:826afccac9b1261d23f89f8d","aoa:aoa-techniques:artifact:8340c564c99b04b2d2bc9d0a","aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","aoa:aoa-techniques:artifact:87521d3395d01ec0fe08f1ea","aoa:aoa-techniques:artifact:887d4a0e7d480a04b5217873","aoa:aoa-techniques:artifact:890889554e1cec9079f72f86","aoa:aoa-techniques:artifact:8a6542641b3e9209ba03e08d","aoa:aoa-techniques:artifact:8de898f47e9e3b0854d71aba","aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","aoa:aoa-techniques:artifact:90067aff1a4f98e3aff450cb","aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","aoa:aoa-techniques:artifact:9671af65d12915bba6df468c","aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2","aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae","aoa:aoa-techniques:artifact:99758dab04fd48b9c22c8134","aoa:aoa-techniques:artifact:998ba212c6a82e2f08d7b6df","aoa:aoa-techniques:artifact:99e7743c0f71b084bf613ec2","aoa:aoa-techniques:artifact:9bd5382d28ff305374d89d34","aoa:aoa-techniques:artifact:9be1ca9680a3adf4cf38e13a","aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","aoa:aoa-techniques:artifact:a1368b52e87f2aa01ddbc24f","aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","aoa:aoa-techniques:artifact:a5d8ccba85d0a3c70b399526","aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","aoa:aoa-techniques:artifact:a82a2d1eff854a5b62a3f523","aoa:aoa-techniques:artifact:a97d8942d149af1b82453153","aoa:aoa-techniques:artifact:aba405c32b985c0a2fa81085","aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","aoa:aoa-techniques:artifact:b152a0b98d3754afb662dffa","aoa:aoa-techniques:artifact:b598f0f95466968d1af36d7e","aoa:aoa-techniques:artifact:b5d54a6ff1bb9331d0c891ab","aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","aoa:aoa-techniques:artifact:b77ebb6f44579ca40ca922fa","aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","aoa:aoa-techniques:artifact:b8752e2dfab43b33fff12bfc","aoa:aoa-techniques:artifact:c00bb1a986ec29d86f8448ef","aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","aoa:aoa-techniques:artifact:c378e0bb4347b59a1244c35a","aoa:aoa-techniques:artifact:c38f953d407fda8093621250","aoa:aoa-techniques:artifact:c54de120089eef1a6853667a","aoa:aoa-techniques:artifact:c59f4287b9e3a72be88c9eaa","aoa:aoa-techniques:artifact:c69089469604c6b4ee8aeb2b","aoa:aoa-techniques:artifact:c7008657e0ae2e93ff9f9bcf","aoa:aoa-techniques:artifact:c7f5d25fc63cc0a96b9735c2","aoa:aoa-techniques:artifact:c89f324a2cf376e8069cf5c3","aoa:aoa-techniques:artifact:c9107011968421971fabafeb","aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","aoa:aoa-techniques:artifact:cd86ffaf0ac8b5ffb3d7d7cb","aoa:aoa-techniques:artifact:ce8ca6e1f0f910e839bf7ede","aoa:aoa-techniques:artifact:d1724b1d0fcb3bd4e94adfd5","aoa:aoa-techniques:artifact:d1a9d831ec2524b5d37880b4","aoa:aoa-techniques:artifact:d28a9f0415aee8fa14596dbe","aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","aoa:aoa-techniques:artifact:d6d89bc629ac65cb08f10b90","aoa:aoa-techniques:artifact:d96368a93dd5c19b08e5401d","aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","aoa:aoa-techniques:artifact:dcca45fa1ecaebce1e627100","aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","aoa:aoa-techniques:artifact:e0fdabb85c8668f75f6b7d80","aoa:aoa-techniques:artifact:e1c51c7c70802edcbfd3c1c4","aoa:aoa-techniques:artifact:e66619707ba54a89aa714842","aoa:aoa-techniques:artifact:e8b51cf0ee49407040e14967","aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6","aoa:aoa-techniques:artifact:ed41d63e9981165c3bbc8857","aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","aoa:aoa-techniques:artifact:f13c07926dfa7da5d3b19c63","aoa:aoa-techniques:artifact:f1809ca0b4d7229ef7127047","aoa:aoa-techniques:artifact:f444d5f6f7157618cd89c466","aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","aoa:aoa-techniques:artifact:fc97414a501927ba15cf1b1d","aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","aoa:aoa-techniques:artifact:fde64b8930329509292434ad","aoa:aoa-techniques:artifact:fec3dc23de4553ec2e819b55","aoa:aoa-techniques:artifact:ff3eb7e7bed98dc8dc74ff0d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:05ff61d82a32d6f84dd59ed4"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:67e9b6c07b17b6f2605622e2","label":"AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/release-support/parts/AGENTS.md","source_digest":"0e161d1b071f3e98d4cbf57493a87a9eb8e2b4254979a0e89c4bc54477d53c2b","source_record_ids":["aoa:aoa-techniques:artifact:67e9b6c07b17b6f2605622e2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bb071000a4560add16e2a228"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:68d15c50ddebed3b86c4c4a8","label":"AGENTS.md","provenance_ref":"deterministic","semantic_key":"mechanics/boundary-bridge/parts/AGENTS.md","source_digest":"42315f3759ffec4469175e43dc5283116d8c298e7033c3e01f45f86bf36ba230","source_record_ids":["aoa:aoa-techniques:artifact:68d15c50ddebed3b86c4c4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9a2ab01879b8826a731fbfe4"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:6a82040e89076a4e7f75a1dd","label":"long-gap-reentry","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/long-gap-reentry","source_digest":"682823d7cc06b364ad5dff9d58e1ce39de2c642c7e1641d18eb41b216e128d0d","source_record_ids":["aoa:aoa-techniques:artifact:395a124445c66f20adae62e0"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2851,7 +2857,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:7e8536a61f170cb5c433425f","aoa:aoa-techniques:anchor:8fcab39a5860a791beff50c3","aoa:aoa-techniques:anchor:e85ded06cfe9e9dece594d24"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:e4ba11bf8d953342e57a23ae","label":"service-clarity","provenance_ref":"deterministic","semantic_key":"mechanics/experience/parts/service-clarity","source_digest":"0666575bb54c699e33b9cf69952695a119b493792bea3dc3fa958812f42e14dd","source_record_ids":["aoa:aoa-techniques:artifact:1c37503ae1788cd2ed048c6c","aoa:aoa-techniques:artifact:72acc44528483997ea7a06a0","aoa:aoa-techniques:artifact:87b4aedd1462262edadf94a9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:31d228064e3fe39e936847ac","aoa:aoa-techniques:anchor:c0e1eac49cf4d72e5b987719","aoa:aoa-techniques:anchor:ff29aea45abfb3b4eef60ea8"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:e5417dd99530b98991e922d2","label":"scope-boundary","provenance_ref":"deterministic","semantic_key":"mechanics/experience/parts/scope-boundary","source_digest":"a4d1079946244ba376c99d1df3cf1a23d4e724022a7edb80dd4caa1987405f80","source_record_ids":["aoa:aoa-techniques:artifact:67e4c73358a0f5df220993b1","aoa:aoa-techniques:artifact:882eb0f0ff3ac9d109e0ae94","aoa:aoa-techniques:artifact:97bc54248f4ce0533b80f2f1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:270751308ecc15c719876d0b","aoa:aoa-techniques:anchor:2d9b3b17a48efa6ec8846451","aoa:aoa-techniques:anchor:f91a46405faff3f6e2d8387c"],"entity_kind":"mechanic_part","id":"aoa:aoa-techniques:entity:eef8633202db4559bc74a4d9","label":"adoption-boundaries","provenance_ref":"deterministic","semantic_key":"mechanics/method-growth/parts/adoption-boundaries","source_digest":"c3ada7c1f6a61e3d9767179e630014c177fbf4e7644adbc5a7fa6358b374fe0b","source_record_ids":["aoa:aoa-techniques:artifact:0f88e23c2c445bd245a15a6d","aoa:aoa-techniques:artifact:50fc41cfa6ba8c24633c0f32","aoa:aoa-techniques:artifact:b9df735df304f8d8810a6977"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:34c3539d103912d4e690ac2d"],"entity_kind":"owner_surface","id":"aoa:aoa-techniques:entity:01927de053fb1eb34e455df9","label":".github/CODEOWNERS","provenance_ref":"deterministic","semantic_key":".github/CODEOWNERS","source_digest":"105869639af2999982ee4bba2900acbd1e53e319ec5df2f602a468203818e0e7","source_record_ids":["aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:34c3539d103912d4e690ac2d"],"entity_kind":"owner_surface","id":"aoa:aoa-techniques:entity:01927de053fb1eb34e455df9","label":".github/CODEOWNERS","provenance_ref":"deterministic","semantic_key":".github/CODEOWNERS","source_digest":"d4617ca7439571e36d1ed70a72529e5e72f75f531c45afececa42a82f9c40eab","source_record_ids":["aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d2eabbe300507857bbea0033"],"entity_kind":"owner_surface","id":"aoa:aoa-techniques:entity:308ab2d5081af28f2ab7714c","label":".gitignore","provenance_ref":"deterministic","semantic_key":".gitignore","source_digest":"344eb56a6bcb0d6385373560f6071c3abc5d4016f1805d29d0f3e26b8baea3e9","source_record_ids":["aoa:aoa-techniques:artifact:bc37d034bad564583790a46f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:27c8fe7b8bf43092d882d68a"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:0063d9479c39936765962554","label":"DistillationTreePilotAutomationCloseoutTests","provenance_ref":"deterministic","semantic_key":"python:class:DistillationTreePilotAutomationCloseoutTests","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:87b5992a3fa49b9433325d13"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:02a3c6bb22415b379380d6f0","label":"DistillationTreePilotRuntimeWaveTests","provenance_ref":"deterministic","semantic_key":"python:class:DistillationTreePilotRuntimeWaveTests","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2864,16 +2870,16 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:7e1a61af6714732279e2529f"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:0fc487214d5742eb475a0bd9","label":"ReleaseCheckStabilizerTests","provenance_ref":"deterministic","semantic_key":"python:class:ReleaseCheckStabilizerTests","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1e91eff8f249dea8e0c78087"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:130d388d567af8aafb851159","label":"ValidateRepoGeneratedDriftTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateRepoGeneratedDriftTests","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:268f6349c1f7b081fbfb4ffd"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:131581060a9cad6adfca2721","label":"HistoryArtifactsTreePilotTestCase","provenance_ref":"deterministic","semantic_key":"python:class:HistoryArtifactsTreePilotTestCase","source_digest":"a0eeb86c6e74f0b35b1713511550ccd283df7a64fc52a77a768c7ea066bad49a","source_record_ids":["aoa:aoa-techniques:artifact:e5099efe04874e260d36b86a"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3b751fc43dd0c2be773639dc"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:190b6f0f1cf49be4946652b8","label":"ValidationCommandAuthorityTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidationCommandAuthorityTests","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3b751fc43dd0c2be773639dc"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:190b6f0f1cf49be4946652b8","label":"ValidationCommandAuthorityTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidationCommandAuthorityTests","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0a3374cbdb75734cef297e37"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:1cc7d87de5ec577cc68a8065","label":"ShadowReviewSeam","provenance_ref":"deterministic","semantic_key":"python:class:ShadowReviewSeam","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:390f1532c8ff861e8fcc9f7f"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:1f4e7f8ed571f1c44bb98772","label":"DocsBoundaryTreePilotTestCase","provenance_ref":"deterministic","semantic_key":"python:class:DocsBoundaryTreePilotTestCase","source_digest":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","source_record_ids":["aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dd50950c7ff45404fa5fb25c"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:20119bb97c87910fb6b7197e","label":"InstructionSurfaceTreePilotTestCase","provenance_ref":"deterministic","semantic_key":"python:class:InstructionSurfaceTreePilotTestCase","source_digest":"dc6d27c98d482ef0bfbd13f2060b5ddcdf9589c9ea162a69bc501aa422351d1a","source_record_ids":["aoa:aoa-techniques:artifact:30beb9906bb62b4db5c4db13"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:26a7ddbd21377aa71bab2aee"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:2115e3e70dc30f0f664b2829","label":"DistillationPartLedgersHandoffTests","provenance_ref":"deterministic","semantic_key":"python:class:DistillationPartLedgersHandoffTests","source_digest":"f7feded53b14094ba80cbb6f5d5785c1760230625dc507dd2f478e6d66220b6b","source_record_ids":["aoa:aoa-techniques:artifact:19a81dcd26d390428c646806"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2d988502a0098a9413641604"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:2301fd4162c04e6cc926fd65","label":"AgentsMeshError","provenance_ref":"deterministic","semantic_key":"python:class:AgentsMeshError","source_digest":"88f9ff2629280d7322bad9f6432b9ad69252406bc2951469e827866db115e59a","source_record_ids":["aoa:aoa-techniques:artifact:7ec2281500eca2332f32efc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f2bdf3b3b9d9019c15c40d70"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:23a530e86d104c3123f9e006","label":"ValidateRepoCompatibilityImportTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateRepoCompatibilityImportTests","source_digest":"75ea96accc00d5ba348a1a3db62197b0bfc93400342ad6609a271e406821649c","source_record_ids":["aoa:aoa-techniques:artifact:b8959f6cec62a716dfef8fd1"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7cf11b9232d16d08549207a3"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:24035c0e19578230e193425a","label":"AgentsMeshTests","provenance_ref":"deterministic","semantic_key":"python:class:AgentsMeshTests","source_digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7cf11b9232d16d08549207a3"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:24035c0e19578230e193425a","label":"AgentsMeshTests","provenance_ref":"deterministic","semantic_key":"python:class:AgentsMeshTests","source_digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:03dd1afa312367547a4ae895"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:259157df033d3aefd1bd5267","label":"ValidateRepoQuestbookIntelligenceTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateRepoQuestbookIntelligenceTests","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f1ba71275a4c1318bf29698a"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:28e372aaa69c3cb3e082c464","label":"ValidateRepoCiReleaseAuthorityTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateRepoCiReleaseAuthorityTests","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f1ba71275a4c1318bf29698a"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:28e372aaa69c3cb3e082c464","label":"ValidateRepoCiReleaseAuthorityTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateRepoCiReleaseAuthorityTests","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d8c74db60f8ae348bfe83487"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:29c05aad856b098798d59238","label":"SemanticReviewContextNote","provenance_ref":"deterministic","semantic_key":"python:class:SemanticReviewContextNote","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1389dfde7e9c4ffd9257f5bb"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:2c24081e9c3eaec5da7bddbb","label":"ValidateRepoPublicHygieneTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateRepoPublicHygieneTests","source_digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","source_record_ids":["aoa:aoa-techniques:artifact:20edd23620da977fb144b11f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:46a1f30bc48b19f1123da054"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:2c38ef3295a18f22fcdc3c00","label":"HandoffContinuationTreePilotTestCase","provenance_ref":"deterministic","semantic_key":"python:class:HandoffContinuationTreePilotTestCase","source_digest":"392cb68ca208540637f362302ba47330282ed0e0838a6812ece5e1e83b126d59","source_record_ids":["aoa:aoa-techniques:artifact:7407303c3d88ba654f200fed"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2881,7 +2887,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:1d8293c40a68bc07686c884d"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:355b4cd682aa916b7f1b0ec7","label":"CheckpointMechanicsTopologyTestCase","provenance_ref":"deterministic","semantic_key":"python:class:CheckpointMechanicsTopologyTestCase","source_digest":"b19234680a11b5e9972a251fd34879ddad09aef27b953026b55a5c9311229b9b","source_record_ids":["aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bf56108ca4ecfa96b45fb1d8"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:35aef0fe97b0e2eeadb0251b","label":"DocsSurfaceGuardrailsTestCase","provenance_ref":"deterministic","semantic_key":"python:class:DocsSurfaceGuardrailsTestCase","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:309549f1cf0daa7a9f1c8cb8"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:3981e955e500170a370b637a","label":"RecurrenceMechanicsTopologyTestCase","provenance_ref":"deterministic","semantic_key":"python:class:RecurrenceMechanicsTopologyTestCase","source_digest":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","source_record_ids":["aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:27ce4954636bd65273feacf3"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:3e33038d063f3adfa4d23671","label":"GitHubWorkflowTopologyTests","provenance_ref":"deterministic","semantic_key":"python:class:GitHubWorkflowTopologyTests","source_digest":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:27ce4954636bd65273feacf3"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:3e33038d063f3adfa4d23671","label":"GitHubWorkflowTopologyTests","provenance_ref":"deterministic","semantic_key":"python:class:GitHubWorkflowTopologyTests","source_digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b7acbf600a5c38a9dd7c9d8e"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:42c846ff2487b900d9798366","label":"DistillationReformIngressReviewsTests","provenance_ref":"deterministic","semantic_key":"python:class:DistillationReformIngressReviewsTests","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6bc2e49a8651d812278cd40d"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:42f752ea5d5f97399be24ee6","label":"RPGMechanicsTopologyTestCase","provenance_ref":"deterministic","semantic_key":"python:class:RPGMechanicsTopologyTestCase","source_digest":"0ee8e83f7952b25dfa80917805d322045895d25d84d54817ed91984b0c4883ea","source_record_ids":["aoa:aoa-techniques:artifact:695fcf0256bfb75cc8039476"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4a035bf36b6d3f2f76c279d9"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:4471c12313e4cb7ede125703","label":"ReformContext","provenance_ref":"deterministic","semantic_key":"python:class:ReformContext","source_digest":"1510a38211380a1783c2803a4c9b920adc70d9e76b668b2d562922bb52fd0f31","source_record_ids":["aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2899,7 +2905,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:6ebe6005048ab272a3f36105"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:6b8e4acec6e2e347fab85730","label":"MechanicsRequestReceiptsTestCase","provenance_ref":"deterministic","semantic_key":"python:class:MechanicsRequestReceiptsTestCase","source_digest":"bfebeee3200e324838db107c7c9460238b3937193156f8a7d0ea6b3818656108","source_record_ids":["aoa:aoa-techniques:artifact:1bdaff3aa0a3613590d76c27"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a340dc2bc78d5937850b6c6b"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:6c8f9472b3050757c52094b2","label":"ScriptTopologyTests","provenance_ref":"deterministic","semantic_key":"python:class:ScriptTopologyTests","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c23a4614d571c779fb1d78e9"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:6ccebf3dc92d1ce503fc8400","label":"ReviewTemplateField","provenance_ref":"deterministic","semantic_key":"python:class:ReviewTemplateField","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:fca2e0867a06b868e11dab0f"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:6ecb51640134607546e681f1","label":"ValidationTopologyTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidationTopologyTests","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:fca2e0867a06b868e11dab0f"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:6ecb51640134607546e681f1","label":"ValidationTopologyTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidationTopologyTests","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ad85cd3f2c5eae3a0a28be5f"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:6f43c4b587a2b32bd3b0e91e","label":"SemanticReviewSeam","provenance_ref":"deterministic","semantic_key":"python:class:SemanticReviewSeam","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:30625aaf30d2f317b2f39bc4"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:703d243b494815a7bc264f8b","label":"ChecklistItem","provenance_ref":"deterministic","semantic_key":"python:class:ChecklistItem","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3b9fcdee9788b3dd22f8355e"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:71bfc4122a792332d7193f5d","label":"DistillationTreePilotHistoryWaveTests","provenance_ref":"deterministic","semantic_key":"python:class:DistillationTreePilotHistoryWaveTests","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2925,7 +2931,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:060a4185755749c78578d49f"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:ab19122b84ccd5b807966cef","label":"MethodGrowthMechanicsTopologyTestCase","provenance_ref":"deterministic","semantic_key":"python:class:MethodGrowthMechanicsTopologyTestCase","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c63fd44b39f7f4be2e8a9e6a"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:af02691e504cbb2b3a45cede","label":"SemanticReviewMapEntry","provenance_ref":"deterministic","semantic_key":"python:class:SemanticReviewMapEntry","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:22edd0798a4a8a6a5e527f8f"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:af26a8ed5c9805d924ea46cb","label":"SemanticReview","provenance_ref":"deterministic","semantic_key":"python:class:SemanticReview","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:239a23bb65d2230d48f5bd14"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:b04b498a3ff17558685a74c6","label":"ValidateRepoSourceContractTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateRepoSourceContractTests","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:239a23bb65d2230d48f5bd14"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:b04b498a3ff17558685a74c6","label":"ValidateRepoSourceContractTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateRepoSourceContractTests","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9e0a34787b4d0d6001dd27b6"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:b2db126e83f2429477d53696","label":"DistillationPackageSurfacesTests","provenance_ref":"deterministic","semantic_key":"python:class:DistillationPackageSurfacesTests","source_digest":"7297a6af92ddc2a4bd5a53489e7c08f6cf479ae7ecccd6f89b365f9085b7efd7","source_record_ids":["aoa:aoa-techniques:artifact:ced7185b3e1ab4e5f1d322d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0d5e9d607e71f5bad3db322b"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:b8d9ab4114750bdc86d7c03b","label":"DownstreamFeedContractsTests","provenance_ref":"deterministic","semantic_key":"python:class:DownstreamFeedContractsTests","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:167650bbd6a493794037fc91"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:baa095c5a131e0278b764974","label":"RecurrenceManifestTopologyTestCase","provenance_ref":"deterministic","semantic_key":"python:class:RecurrenceManifestTopologyTestCase","source_digest":"b0ceefcf9aa6d63eb161a24a83839c8c6d9d52cb40d2bbb51778647f54a455ee","source_record_ids":["aoa:aoa-techniques:artifact:3bd0071d5d213b9d72daa7ad"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2946,6 +2952,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:debf0796c2a0a0312c6ab216"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:dc6af194c4a5e1df22b9e35f","label":"DecisionIndexTests","provenance_ref":"deterministic","semantic_key":"python:class:DecisionIndexTests","source_digest":"3e4860d66a8089f02520e200b18e22b7798ee6dbc31d20eecd3ccc193101246d","source_record_ids":["aoa:aoa-techniques:artifact:b90af86566bbb19195eefe41"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f6558d63261346ada5d87b01"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:de4ee8df5246510008f9a02f","label":"NestedAgentsDocsTests","provenance_ref":"deterministic","semantic_key":"python:class:NestedAgentsDocsTests","source_digest":"5ee32f86c3257b326899f3050bf53f8522dae8b94b895673bf5c542c48b06aed","source_record_ids":["aoa:aoa-techniques:artifact:d990104fd42a98fd27b96867"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1606dcb40b12b83e544c69c1"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:debc5e78a4d51d111cb0a0e7","label":"ValidateSemanticAgentsTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidateSemanticAgentsTests","source_digest":"6311888aa2c60efcd52e728336a7175582dbb67e30a7a6b4efe7a2ca538af4f9","source_record_ids":["aoa:aoa-techniques:artifact:03b76abc01704964e291b6af"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3225dff0134d5dad412afa2b"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:df744fc68abd768feb3bb6c6","label":"LocalStatsPortTests","provenance_ref":"deterministic","semantic_key":"python:class:LocalStatsPortTests","source_digest":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f28c53a29a4387c57f973a97"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:e2467b26fc4694970b14adee","label":"MediaIngestTreePilotTestCase","provenance_ref":"deterministic","semantic_key":"python:class:MediaIngestTreePilotTestCase","source_digest":"20556c99171b8f45c5d3ee4850779cbb292530abcffad3eac92f07f139f00d83","source_record_ids":["aoa:aoa-techniques:artifact:ddfcab62cbcdce5b474f6b6c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6bc46eb4ab93ef8665329834"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:e588619058d130625a8f6c22","label":"MechanicsPackageCardTests","provenance_ref":"deterministic","semantic_key":"python:class:MechanicsPackageCardTests","source_digest":"335c75375d66158e1bb3d4a262c74145642d66cd5c3493e61c2735aedcf5ea9e","source_record_ids":["aoa:aoa-techniques:artifact:7698d5ddfea36399ee4fab64"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f25db8893ff2d86ae0fce7b7"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:e73ed152553e7c18a1da1b6a","label":"ExperienceAdoptionContractTests","provenance_ref":"deterministic","semantic_key":"python:class:ExperienceAdoptionContractTests","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -2959,7 +2966,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:2f1c6796d75579e30100b64d"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:f22eeaf2291bf8d0ea0953a4","label":"NoteField","provenance_ref":"deterministic","semantic_key":"python:class:NoteField","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:83bb3bae6d31a91751536447"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:fd5d7c1758ebc486a43024bc","label":"ValidatorModuleTopologyTests","provenance_ref":"deterministic","semantic_key":"python:class:ValidatorModuleTopologyTests","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6034a645cc363fb359a8e95c"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:fee081b9eb5c925fc8a22f3d","label":"PublishedSummaryTreePilotTestCase","provenance_ref":"deterministic","semantic_key":"python:class:PublishedSummaryTreePilotTestCase","source_digest":"fcd185b6b699a5d1d34b84f973590848ff943be9afcabc7753f29fa119dc3841","source_record_ids":["aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3ad9a2e32757bfa5bb3d448b"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:ff21905c7f4adbc707b3e94c","label":"DistillationTreePilotIngressWaveTests","provenance_ref":"deterministic","semantic_key":"python:class:DistillationTreePilotIngressWaveTests","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3ad9a2e32757bfa5bb3d448b"],"entity_kind":"python_class","id":"aoa:aoa-techniques:entity:ff21905c7f4adbc707b3e94c","label":"DistillationTreePilotIngressWaveTests","provenance_ref":"deterministic","semantic_key":"python:class:DistillationTreePilotIngressWaveTests","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f9b8655cdbfa68e909fd14f8"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:0068a257a5d91c2e1e36b898","label":"validate_index_contract_payload","provenance_ref":"deterministic","semantic_key":"python:function:validate_index_contract_payload","source_digest":"59360ee4346d9a416d1a61714b3b8ef650074682247bb79b287330b2c0c97abc","source_record_ids":["aoa:aoa-techniques:artifact:5a1bbcf29ad3ebd1ce25d7e6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cf8740e9fa05dc6cfb96964c"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:00fe6554ecfd5c8135f10188","label":"read_frontmatter","provenance_ref":"deterministic","semantic_key":"python:function:read_frontmatter","source_digest":"4d5a458554372200a14f047aa67f8eee828aa07003dc0d355edfef530b101c58","source_record_ids":["aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a683f6ce457d925c91e256bf"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:01acab2c5d979a691895855f","label":"count_entry_field","provenance_ref":"deterministic","semantic_key":"python:function:count_entry_field","source_digest":"986f4a8124a8a6139e0bc11e1e2b2c8e1bd219834acddb0ef3d29c2d887ebf54","source_record_ids":["aoa:aoa-techniques:artifact:4ea8d4f3477d03591b388ed8"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3012,6 +3019,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:8cd62b7ffb92c03f0e827f96"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:14e511748f80f08d4790da95","label":"load_inventory","provenance_ref":"deterministic","semantic_key":"python:function:load_inventory","source_digest":"1b52c67d7c1052a668437eb7b9297e9f0a6bc8bb5c66f0010014530163a9cd62","source_record_ids":["aoa:aoa-techniques:artifact:018896bc1d0eaf2756c5b6ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:984fc673438dd8f0546eff26"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:152288dd1af5595e6da75980","label":"read_json","provenance_ref":"deterministic","semantic_key":"python:function:read_json","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e05a2ae060b7f7d9597be05c"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:158611597fa3cc3fe30b7e11","label":"parse_notes","provenance_ref":"deterministic","semantic_key":"python:function:parse_notes","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:cb7544497f82809456bbc8af"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:15a0d046bed332a2a02676ed","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"efd486b5f0ebebbfdca1b64eb45b38f51036e7918b78539d59b3dc57a0646c0a","source_record_ids":["aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1200989cd4cb7572e9069581"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:16465becb200d2ed62d00a6d","label":"extract_top_level_section_headings","provenance_ref":"deterministic","semantic_key":"python:function:extract_top_level_section_headings","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:983bfe4902701d17ea62d727"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:164c39351c6664ea356db88f","label":"validate","provenance_ref":"deterministic","semantic_key":"python:function:validate","source_digest":"0698f43610ea36b5d60daae4e37ba8a6b516bbc1870378fcd068b7d3d186bdb0","source_record_ids":["aoa:aoa-techniques:artifact:5dc490a89b7477c117470956"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:36acc7a199212118d3f3a32b"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:16de2a13ed1821fd5e10e9e8","label":"find_entry","provenance_ref":"deterministic","semantic_key":"python:function:find_entry","source_digest":"b53a18b318cef7035c85d7d521a2f072bb9832d79d0d3f4ef599692c61031d75","source_record_ids":["aoa:aoa-techniques:artifact:dc148dc3963ccdf28dc40c1d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3029,6 +3037,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:88cd8a781f4c1728eccd6dfd"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:1a35d6bfa27462fb2c8099c8","label":"resolve_command","provenance_ref":"deterministic","semantic_key":"python:function:resolve_command","source_digest":"f49bc6c93dcd1146eb57253a0914db4e9c36b5dd06fba53178222c452abad300","source_record_ids":["aoa:aoa-techniques:artifact:070046d3ac1483cac58e8963"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8c7bc6280a286e8d707deb20"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:1a559f4ce2e51a69649ae215","label":"build_support_refs_and_docs","provenance_ref":"deterministic","semantic_key":"python:function:build_support_refs_and_docs","source_digest":"b53a18b318cef7035c85d7d521a2f072bb9832d79d0d3f4ef599692c61031d75","source_record_ids":["aoa:aoa-techniques:artifact:dc148dc3963ccdf28dc40c1d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:044a08fd031c8103f7ee692f"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:1a6e39d6de18e48b17bafd89","label":"read_frontmatter","provenance_ref":"deterministic","semantic_key":"python:function:read_frontmatter","source_digest":"e25ed72a5ee04f79bc777eaa068f7741e2a4ef432b41d4218c66a1e9a54a504d","source_record_ids":["aoa:aoa-techniques:artifact:5c1073429c3a0b92540ff9b5"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:695ac9b892586b0e8de631e8"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:1af61f1b6400d9f9679960da","label":"assert_packet_matches_owner_readiness","provenance_ref":"deterministic","semantic_key":"python:function:assert_packet_matches_owner_readiness","source_digest":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7c78db14f12c1950e25f4456"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:1b2e0ccfd49bb6bdcbeb6dfe","label":"require_string_list","provenance_ref":"deterministic","semantic_key":"python:function:require_string_list","source_digest":"e9b6aa304f03cd3d573283040717dce7cc022186b16b5f20933fb15b10089922","source_record_ids":["aoa:aoa-techniques:artifact:80adbf9807a80432bf32a44f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1646c729b753e3408c1053b9"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:1bed25f3e814d32ff473f621","label":"record_technique_link","provenance_ref":"deterministic","semantic_key":"python:function:record_technique_link","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c6af271e4f44e38166daedbe"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:1c6a20b5c8d8b1809ad32750","label":"test_builder_rejects_landed_row_without_landed_technique","provenance_ref":"deterministic","semantic_key":"python:function:test_builder_rejects_landed_row_without_landed_technique","source_digest":"f74f6781216ee28556e030b8880f7e8889d8c8b28e7f8558c0615aa285a32724","source_record_ids":["aoa:aoa-techniques:artifact:5b5175da19a378fea73fbebb"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3064,6 +3073,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:9fc5b8ecd161c642c264a9ed"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:26c8ba9fd814af43cd9a759d","label":"top_level_exemptions","provenance_ref":"deterministic","semantic_key":"python:function:top_level_exemptions","source_digest":"88f9ff2629280d7322bad9f6432b9ad69252406bc2951469e827866db115e59a","source_record_ids":["aoa:aoa-techniques:artifact:7ec2281500eca2332f32efc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:166706d8f915789091242150"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:272575602b0f6188a5d75a33","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"5d6fcf75709076ddc5cad0c70df8dbcf295515a6406132fac6ffe3e43ed8e09a","source_record_ids":["aoa:aoa-techniques:artifact:4e5a7d696b0ff5693599bd36"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:30294b3902899201275e760d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2725cb398836c17bb8f2b8af","label":"test_builder_rejects_missing_technique_bundle","provenance_ref":"deterministic","semantic_key":"python:function:test_builder_rejects_missing_technique_bundle","source_digest":"003b0a28766db26a46fe7ce64dde757b895c79c24bca4e7b8e521c217cfc3dfc","source_record_ids":["aoa:aoa-techniques:artifact:3228705e4b99b2befda7d6e4"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ec606d6cae8528fadf042a77"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:27d65c19d7595558d45895e4","label":"readiness_census","provenance_ref":"deterministic","semantic_key":"python:function:readiness_census","source_digest":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5d876f472aeadf5d224d6ef4"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:28338192c9e48aec6c1cd4a7","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"7685a2b846aa38cca1c63fbe0d3f9a07727344353240fb76213c463d05ce176e","source_record_ids":["aoa:aoa-techniques:artifact:44b8d4951dd78330aba758c9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:58bfdae1ebcbe25d7aa96d51"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:298c29519d9baa7a082e542a","label":"validate_schema_instance","provenance_ref":"deterministic","semantic_key":"python:function:validate_schema_instance","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9272c25af5e0762b3fc8f454"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2999c497f04665286505d1e5","label":"capsule_compare_text","provenance_ref":"deterministic","semantic_key":"python:function:capsule_compare_text","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3073,7 +3083,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:5872d5cced40479f6d30c6b4"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2b9b87c716418fd34437fb6f","label":"has_unittest_files","provenance_ref":"deterministic","semantic_key":"python:function:has_unittest_files","source_digest":"b7063690f130ce060e0f4ded042e5328134839d29de3d42ec8bb75a16e257dfd","source_record_ids":["aoa:aoa-techniques:artifact:c8ebeae9a0d4391625d71641"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ffa3ebf39320d30422b39dd7"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2bb0cad4df3bfe0e1dfccec4","label":"shadow_review_id_from_path","provenance_ref":"deterministic","semantic_key":"python:function:shadow_review_id_from_path","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ff609e4a06383acb29a329d6"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2bd80cc6158763b52b04900c","label":"read_frontmatter","provenance_ref":"deterministic","semantic_key":"python:function:read_frontmatter","source_digest":"398982edc7108c1cd992909ccee30c2e5c77195a1b4de031a6675bcc67894052","source_record_ids":["aoa:aoa-techniques:artifact:3c885d152cd68ff4d23d5dc4"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ff408b8be36eff08fd4a25ac"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2be4462641167c01b7502701","label":"command_sequence_from_manifest","provenance_ref":"deterministic","semantic_key":"python:function:command_sequence_from_manifest","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ff408b8be36eff08fd4a25ac"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2be4462641167c01b7502701","label":"command_sequence_from_manifest","provenance_ref":"deterministic","semantic_key":"python:function:command_sequence_from_manifest","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9315a77371fe78908b384ab2"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2c1115304a338de7b4597096","label":"build_semantic_review_manifest_payloads","provenance_ref":"deterministic","semantic_key":"python:function:build_semantic_review_manifest_payloads","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e2b415852f60a2a92ebe3faa"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2c503fb7059841a2f08c9fd5","label":"build_evidence_note_reader_markdown","provenance_ref":"deterministic","semantic_key":"python:function:build_evidence_note_reader_markdown","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:14643aa1d7fe4cb28adca524"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:2c6a7c5ae16e973f5a0fa6f9","label":"validate_agents_mesh_projection","provenance_ref":"deterministic","semantic_key":"python:function:validate_agents_mesh_projection","source_digest":"6f3399ab289c81c81adb0a7c517b732d95390da77962f90804e5c072b08380d8","source_record_ids":["aoa:aoa-techniques:artifact:fd5f9f24ed002a50d4d544d5"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3096,8 +3106,8 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:4699e8869d849f46823fcddd"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:31483f0a4f7a9f6f447c7721","label":"constrained_paths","provenance_ref":"deterministic","semantic_key":"python:function:constrained_paths","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1cd46fe788031cb685f6c261"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:31d2b78a6427ae670d2d773f","label":"ignored_directory_names","provenance_ref":"deterministic","semantic_key":"python:function:ignored_directory_names","source_digest":"88f9ff2629280d7322bad9f6432b9ad69252406bc2951469e827866db115e59a","source_record_ids":["aoa:aoa-techniques:artifact:7ec2281500eca2332f32efc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f36a027efd6c112ed619ad0d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:32acd41bae72a73b33e39855","label":"summarize_capsule_intent","provenance_ref":"deterministic","semantic_key":"python:function:summarize_capsule_intent","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c7bbed6a817f222f12ca8209"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:32c90e08a284224a51be38a7","label":"load_json","provenance_ref":"deterministic","semantic_key":"python:function:load_json","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ed42e4a4af854b9d470f7ba3"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:338306e1d26e0a1232ba53c9","label":"resolve_aoa_kag_root","provenance_ref":"deterministic","semantic_key":"python:function:resolve_aoa_kag_root","source_digest":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c7bbed6a817f222f12ca8209"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:32c90e08a284224a51be38a7","label":"load_json","provenance_ref":"deterministic","semantic_key":"python:function:load_json","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ed42e4a4af854b9d470f7ba3"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:338306e1d26e0a1232ba53c9","label":"resolve_aoa_kag_root","provenance_ref":"deterministic","semantic_key":"python:function:resolve_aoa_kag_root","source_digest":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2c83804265e8df846c549b4a"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:33a4ca2a02820a384b2e9220","label":"build_capsule_markdown","provenance_ref":"deterministic","semantic_key":"python:function:build_capsule_markdown","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8c4c7cb189c99005212f7ffc"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:33b4ddd3dafdc318548e4190","label":"expected_parent_domain_for_technique","provenance_ref":"deterministic","semantic_key":"python:function:expected_parent_domain_for_technique","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:73c644e7642e61e44e458e3d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:3420d4a34490352707d5ac57","label":"kind_group_sort_key","provenance_ref":"deterministic","semantic_key":"python:function:kind_group_sort_key","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3134,6 +3144,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:2343f22a22fac60c5233f3c5"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:3e0597a2a1a89069823bcb81","label":"build_parser","provenance_ref":"deterministic","semantic_key":"python:function:build_parser","source_digest":"5d6fcf75709076ddc5cad0c70df8dbcf295515a6406132fac6ffe3e43ed8e09a","source_record_ids":["aoa:aoa-techniques:artifact:4e5a7d696b0ff5693599bd36"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4c9700e85f605ffc39e4df1e"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:3e893797a1e8616412ca5495","label":"load_builder","provenance_ref":"deterministic","semantic_key":"python:function:load_builder","source_digest":"f74f6781216ee28556e030b8880f7e8889d8c8b28e7f8558c0615aa285a32724","source_record_ids":["aoa:aoa-techniques:artifact:5b5175da19a378fea73fbebb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dacee722f5377c13d2eae99e"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:3fc3a5b40440454b38dca03d","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"5288a81253366efba7d075309b806d4482845d70eb9a50754c3b5e71adc9e671","source_record_ids":["aoa:aoa-techniques:artifact:9ee2698c6e40371183b10fdd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ecec5c4dd765eb25eb8c88ff"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:40135dea74d9d2718e218cbd","label":"load_json","provenance_ref":"deterministic","semantic_key":"python:function:load_json","source_digest":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cdf4efbc8f5bebb52dae2962"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:401ac3600fd34c970d372248","label":"read_json","provenance_ref":"deterministic","semantic_key":"python:function:read_json","source_digest":"77a77de40908560ac436c06f535e4d45192111e225e12f5502783190b527ff3e","source_record_ids":["aoa:aoa-techniques:artifact:62c35978e38cc9e569b5c267"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8870ea6f0cfb3885310bea0a"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:403fd3729132a65aba4f1fa4","label":"iter_agents_cards","provenance_ref":"deterministic","semantic_key":"python:function:iter_agents_cards","source_digest":"88f9ff2629280d7322bad9f6432b9ad69252406bc2951469e827866db115e59a","source_record_ids":["aoa:aoa-techniques:artifact:7ec2281500eca2332f32efc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3d70153805f2572aa2292bcc"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:413de9124f4f2645281e0b99","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"bf5267283f279b39660a78e038ce66e65679ca25e8e7c60d3e6f6ca1a162eead","source_record_ids":["aoa:aoa-techniques:artifact:e72fb7b4d2f73e30910b6c6f"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3155,7 +3166,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:bff5fe0be54b4f70c2baac87"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:46499dbbb4c2f45bf1adc90e","label":"sha256_text","provenance_ref":"deterministic","semantic_key":"python:function:sha256_text","source_digest":"88f9ff2629280d7322bad9f6432b9ad69252406bc2951469e827866db115e59a","source_record_ids":["aoa:aoa-techniques:artifact:7ec2281500eca2332f32efc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2244ea5d91784a124d02e1e1"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:46805d90d9dd94dcf450ba0b","label":"record_sort_key","provenance_ref":"deterministic","semantic_key":"python:function:record_sort_key","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ac50cc1763cca9961b6100e9"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:46b678fb611e10f1f06f7263","label":"validate_selection_working_set_specs","provenance_ref":"deterministic","semantic_key":"python:function:validate_selection_working_set_specs","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e48bc5af741480068b9ee402"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:4783528253839afcccb1a2c4","label":"drift_paths_from_manifest","provenance_ref":"deterministic","semantic_key":"python:function:drift_paths_from_manifest","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e48bc5af741480068b9ee402"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:4783528253839afcccb1a2c4","label":"drift_paths_from_manifest","provenance_ref":"deterministic","semantic_key":"python:function:drift_paths_from_manifest","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7645518622cc918f89376992"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:47b3b43755d66b7c6157d0f0","label":"parse_original_date","provenance_ref":"deterministic","semantic_key":"python:function:parse_original_date","source_digest":"59360ee4346d9a416d1a61714b3b8ef650074682247bb79b287330b2c0c97abc","source_record_ids":["aoa:aoa-techniques:artifact:5a1bbcf29ad3ebd1ce25d7e6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5c8d081d5a3615ee37ca6595"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:47b6c13dfed57ee5377bad51","label":"first_sentence","provenance_ref":"deterministic","semantic_key":"python:function:first_sentence","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1e96e04b27ca449ecbfdd599"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:47f11cec5a83785e7d87ac5b","label":"build_checklist_reader_markdown","provenance_ref":"deterministic","semantic_key":"python:function:build_checklist_reader_markdown","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3202,6 +3213,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b3f3c165d657c640d6b8fb84"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:593c8581faaa061403f4341c","label":"project_min_repo_doc_surface_manifest","provenance_ref":"deterministic","semantic_key":"python:function:project_min_repo_doc_surface_manifest","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:300e9194990d267369bb2a47"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:5970da71cc16a401ea7dc714","label":"split_typed_note_body","provenance_ref":"deterministic","semantic_key":"python:function:split_typed_note_body","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7b34214367dc02bb92e45020"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:5a1bfabec2a8e918ea443f43","label":"_validate_in_bundle_dir","provenance_ref":"deterministic","semantic_key":"python:function:_validate_in_bundle_dir","source_digest":"df4f2110b6c85b90aaf96cb740098706a8004ae1a4d850c1eabe32f2f0771002","source_record_ids":["aoa:aoa-techniques:artifact:7eaedf4491a248821a2ecacc"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0c493966ed0551e09d9c3c4e"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:5a6dc1782c0a16abedba4f30","label":"_candidate_roots","provenance_ref":"deterministic","semantic_key":"python:function:_candidate_roots","source_digest":"efd486b5f0ebebbfdca1b64eb45b38f51036e7918b78539d59b3dc57a0646c0a","source_record_ids":["aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c765a6a3cb61e20522015c6b"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:5acc603a9e62d1e1017e92fb","label":"run_mechanics_part_local","provenance_ref":"deterministic","semantic_key":"python:function:run_mechanics_part_local","source_digest":"947bad44ffd1262920bc0165d14425c045c1014f852ec0a2327c5b5d69b222e6","source_record_ids":["aoa:aoa-techniques:artifact:c5138334e39c17af121a6547"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d7fccb88db4b0336f1ec81ed"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:5b23157632fca4cb09a821a6","label":"split_frontmatter","provenance_ref":"deterministic","semantic_key":"python:function:split_frontmatter","source_digest":"320c20ca7f097184b55b42332cf62e4411370ea3fa2b35e3597a0998a569dd47","source_record_ids":["aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ce5966ea607cf6262c61355d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:5b77cdf7fe32d48a6a522125","label":"check_projection","provenance_ref":"deterministic","semantic_key":"python:function:check_projection","source_digest":"e132548576dde2e8c908ce2e140224ca75fc957d65f6360dc9cab3d1e7f9c285","source_record_ids":["aoa:aoa-techniques:artifact:637dddf144a4c6c59d2a17fc"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3476,7 +3488,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:c5860e54bcb10f3fa08e8f68"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:bbad650d3ae9917b604b1f63","label":"validate_bundle","provenance_ref":"deterministic","semantic_key":"python:function:validate_bundle","source_digest":"df4f2110b6c85b90aaf96cb740098706a8004ae1a4d850c1eabe32f2f0771002","source_record_ids":["aoa:aoa-techniques:artifact:7eaedf4491a248821a2ecacc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ddf0db0090c279852f211757"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:bbbffd36f3adc9cb8cd3358d","label":"require_relative_file","provenance_ref":"deterministic","semantic_key":"python:function:require_relative_file","source_digest":"02bf98ad93ed0ce929c1db22d2abf817d897e6cc1339850d0612f6c533599a36","source_record_ids":["aoa:aoa-techniques:artifact:6bf6b62a56d7affb222fb3fd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d74ff6478b7f5fb9c7b0dd5f"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:bcc15b747c743ad8e480bf20","label":"project_min_registry_payload","provenance_ref":"deterministic","semantic_key":"python:function:project_min_registry_payload","source_digest":"b53a18b318cef7035c85d7d521a2f072bb9832d79d0d3f4ef599692c61031d75","source_record_ids":["aoa:aoa-techniques:artifact:dc148dc3963ccdf28dc40c1d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:44212edc355ffcd46cba3816"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:bcdf60e1abf2eedc560c18cc","label":"resolve_history_refs","provenance_ref":"deterministic","semantic_key":"python:function:resolve_history_refs","source_digest":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:44212edc355ffcd46cba3816"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:bcdf60e1abf2eedc560c18cc","label":"resolve_history_refs","provenance_ref":"deterministic","semantic_key":"python:function:resolve_history_refs","source_digest":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5e85e3b59d6f7b64af03c86d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:bd2f2e485238e8d6a8532b97","label":"test_builder_rejects_technique_bundle_without_bundle_readiness_review","provenance_ref":"deterministic","semantic_key":"python:function:test_builder_rejects_technique_bundle_without_bundle_readiness_review","source_digest":"003b0a28766db26a46fe7ce64dde757b895c79c24bca4e7b8e521c217cfc3dfc","source_record_ids":["aoa:aoa-techniques:artifact:3228705e4b99b2befda7d6e4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:098445135286f6ff803baf63"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:bd3255d666d238dbbca04a2e","label":"display_title","provenance_ref":"deterministic","semantic_key":"python:function:display_title","source_digest":"59360ee4346d9a416d1a61714b3b8ef650074682247bb79b287330b2c0c97abc","source_record_ids":["aoa:aoa-techniques:artifact:5a1bbcf29ad3ebd1ce25d7e6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:88cd4bf58fc6fe05658cdb53"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:bd98f54dde1d4e609672c66a","label":"capture_command_output","provenance_ref":"deterministic","semantic_key":"python:function:capture_command_output","source_digest":"947bad44ffd1262920bc0165d14425c045c1014f852ec0a2327c5b5d69b222e6","source_record_ids":["aoa:aoa-techniques:artifact:c5138334e39c17af121a6547"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3516,7 +3528,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:3fa0804efbc0169f2a7d54f2"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:cb85e7cc897fdc8edb59ed9a","label":"pack_candidate","provenance_ref":"deterministic","semantic_key":"python:function:pack_candidate","source_digest":"b53a18b318cef7035c85d7d521a2f072bb9832d79d0d3f4ef599692c61031d75","source_record_ids":["aoa:aoa-techniques:artifact:dc148dc3963ccdf28dc40c1d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c28b58d54dcbbf3ca8812adf"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:cc4bfecafc1c51e14b4b6947","label":"_load_json","provenance_ref":"deterministic","semantic_key":"python:function:_load_json","source_digest":"df4f2110b6c85b90aaf96cb740098706a8004ae1a4d850c1eabe32f2f0771002","source_record_ids":["aoa:aoa-techniques:artifact:7eaedf4491a248821a2ecacc"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:07e5398fc0908ca3f361cb38"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:cc6d8aad6561620a32d3f66d","label":"import_path_for","provenance_ref":"deterministic","semantic_key":"python:function:import_path_for","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1cecb79cd4cb37122d1c4d8d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:ccb09aac4ad18cbdaee2194b","label":"generated_group_ids_from_manifest","provenance_ref":"deterministic","semantic_key":"python:function:generated_group_ids_from_manifest","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1cecb79cd4cb37122d1c4d8d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:ccb09aac4ad18cbdaee2194b","label":"generated_group_ids_from_manifest","provenance_ref":"deterministic","semantic_key":"python:function:generated_group_ids_from_manifest","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fdda8b6d1e5fea4fc057e001"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:ccdcf009478151b341aab563","label":"validate_dispatch_entry_against_schema","provenance_ref":"deterministic","semantic_key":"python:function:validate_dispatch_entry_against_schema","source_digest":"b3786fbfc06e9e21b51f7d3d0f47c7ad6ae285a03a6e3b3fd651de536c70a30c","source_record_ids":["aoa:aoa-techniques:artifact:5b642e24330a04d5119f4f1a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cf90b6e3d6619d901dc01e01"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:cd5a0f157d901c2f5776c7f6","label":"collect_techniques","provenance_ref":"deterministic","semantic_key":"python:function:collect_techniques","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f33d53795570689e0d9201cb"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:cd9a3f06d91b28b3d66b599f","label":"read_distillation_reform_context","provenance_ref":"deterministic","semantic_key":"python:function:read_distillation_reform_context","source_digest":"1510a38211380a1783c2803a4c9b920adc70d9e76b668b2d562922bb52fd0f31","source_record_ids":["aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3533,6 +3545,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e4b565680b6457a49194e504"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:d2db61410e3fdea11064ffa3","label":"string_paths","provenance_ref":"deterministic","semantic_key":"python:function:string_paths","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ae8bd6b006ae494692b8d0be"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:d34e0f22e3ce25144548c30c","label":"tree_projection_entry","provenance_ref":"deterministic","semantic_key":"python:function:tree_projection_entry","source_digest":"986f4a8124a8a6139e0bc11e1e2b2c8e1bd219834acddb0ef3d29c2d887ebf54","source_record_ids":["aoa:aoa-techniques:artifact:4ea8d4f3477d03591b388ed8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a31f80a4b8cc150096e6574d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:d355c7ebfbaaa29242fb380a","label":"test_builder_rejects_gate_card_directory_escape","provenance_ref":"deterministic","semantic_key":"python:function:test_builder_rejects_gate_card_directory_escape","source_digest":"003b0a28766db26a46fe7ce64dde757b895c79c24bca4e7b8e521c217cfc3dfc","source_record_ids":["aoa:aoa-techniques:artifact:3228705e4b99b2befda7d6e4"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f27933e5c483913496e72227"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:d3cff36ddb0f61fd4f4609ae","label":"markdown_command_nonowners","provenance_ref":"deterministic","semantic_key":"python:function:markdown_command_nonowners","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ed5edcf9110456f808d76d27"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:d4637c181be0a68b9d925205","label":"parse_semantic_reviews","provenance_ref":"deterministic","semantic_key":"python:function:parse_semantic_reviews","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ed8a3124c47eb94748e6e4a8"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:d47e1129007ed84e32961cba","label":"parse_repo_doc_surface_file","provenance_ref":"deterministic","semantic_key":"python:function:parse_repo_doc_surface_file","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:72e94f035bd97a8c438233c2"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:d55418849cb2cabcc23a34a8","label":"_assert_expected_controls","provenance_ref":"deterministic","semantic_key":"python:function:_assert_expected_controls","source_digest":"df4f2110b6c85b90aaf96cb740098706a8004ae1a4d850c1eabe32f2f0771002","source_record_ids":["aoa:aoa-techniques:artifact:7eaedf4491a248821a2ecacc"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3556,7 +3569,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b1e5a02d5bdfb32aef9e2669"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:dad5827537122129c6495e60","label":"run_command","provenance_ref":"deterministic","semantic_key":"python:function:run_command","source_digest":"947bad44ffd1262920bc0165d14425c045c1014f852ec0a2327c5b5d69b222e6","source_record_ids":["aoa:aoa-techniques:artifact:c5138334e39c17af121a6547"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:292c2e8b9b68acbe82f891d7"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:db1f83535370168748e1d50e","label":"write_text","provenance_ref":"deterministic","semantic_key":"python:function:write_text","source_digest":"2a4931bc44563a5b22ba1c58a88c6e265b6cfdc610f693fd50bba9af1ea9e600","source_record_ids":["aoa:aoa-techniques:artifact:40891dcacd7def19d666e3eb"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:35cc5357a3bea9b431d5637d"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:db8bc745fbeece30f86ae2b2","label":"load_builder","provenance_ref":"deterministic","semantic_key":"python:function:load_builder","source_digest":"bf5d344a04f7d1781b1da0948afd7b956c9728037af254d93300df2ea149ce01","source_record_ids":["aoa:aoa-techniques:artifact:83139d36644f0d2cbe04ce64"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:d669446c6d49a8d74b889d78"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:db922f1747781d400404a451","label":"require_pinned_checkout","provenance_ref":"deterministic","semantic_key":"python:function:require_pinned_checkout","source_digest":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d669446c6d49a8d74b889d78"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:db922f1747781d400404a451","label":"require_pinned_checkout","provenance_ref":"deterministic","semantic_key":"python:function:require_pinned_checkout","source_digest":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7e6b0e6ab8cabdebaee9461c"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:dbb6291f56fc16888ae54edb","label":"read_frontmatter","provenance_ref":"deterministic","semantic_key":"python:function:read_frontmatter","source_digest":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","source_record_ids":["aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1ffdc1a6d4e691d381ad0fd0"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:dc7e67a9fca3c0b7c7283940","label":"compact_text","provenance_ref":"deterministic","semantic_key":"python:function:compact_text","source_digest":"b53a18b318cef7035c85d7d521a2f072bb9832d79d0d3f4ef599692c61031d75","source_record_ids":["aoa:aoa-techniques:artifact:dc148dc3963ccdf28dc40c1d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d4a907921ca67b5db042e5eb"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:dc9e4c98755c431d8d58322e","label":"read_frontmatter","provenance_ref":"deterministic","semantic_key":"python:function:read_frontmatter","source_digest":"fcd185b6b699a5d1d34b84f973590848ff943be9afcabc7753f29fa119dc3841","source_record_ids":["aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3566,7 +3579,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e1ba53c8eb2f6055168510bf"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:dd44a0e6cc3909729a9b3dc9","label":"full_github_review_template_manifest_entry","provenance_ref":"deterministic","semantic_key":"python:function:full_github_review_template_manifest_entry","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8fd4d347a8a82973bf03552c"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:dde883356d97c693fd515007","label":"files_for_target","provenance_ref":"deterministic","semantic_key":"python:function:files_for_target","source_digest":"1b52c67d7c1052a668437eb7b9297e9f0a6bc8bb5c66f0010014530163a9cd62","source_record_ids":["aoa:aoa-techniques:artifact:018896bc1d0eaf2756c5b6ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b1a45a67a9b02c5c6ec65514"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:de31a5d0449321145267fa27","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"a5395e290f2e4385a7701fa152b21b176efdf8ef97daba406b7965b4b6b0ab00","source_record_ids":["aoa:aoa-techniques:artifact:b4260ef3235bf666c0f5e048"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9d9ad59111edfff3386a64bd"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:df2e779588441079335c6bf0","label":"commands","provenance_ref":"deterministic","semantic_key":"python:function:commands","source_digest":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9d9ad59111edfff3386a64bd"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:df2e779588441079335c6bf0","label":"commands","provenance_ref":"deterministic","semantic_key":"python:function:commands","source_digest":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8420257f23e106e5c6ef87ce"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:df341cb3e421967eb7ee0cd1","label":"validate_landed_technique","provenance_ref":"deterministic","semantic_key":"python:function:validate_landed_technique","source_digest":"ca4b2773cd6df1a7344773f307283e2b7b6930747926f6e60fd7f4e77815ce85","source_record_ids":["aoa:aoa-techniques:artifact:765906c4c54c46b0c4898ce0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:eb6cf5f7df4fdf639ae02bb7"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:df968b12bfa98876960fd30e","label":"_normalize_line","provenance_ref":"deterministic","semantic_key":"python:function:_normalize_line","source_digest":"07c5ee1cc208e82c9b7ae1c462ca78c3eb3970298ae46003cd5ab80666954f87","source_record_ids":["aoa:aoa-techniques:artifact:b9778391e04def909a7a93cd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0a15e4d90c092c249bf0f66f"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e0098fceeae75f9a0bbb03c3","label":"read_frontmatter","provenance_ref":"deterministic","semantic_key":"python:function:read_frontmatter","source_digest":"a0eeb86c6e74f0b35b1713511550ccd283df7a64fc52a77a768c7ea066bad49a","source_record_ids":["aoa:aoa-techniques:artifact:e5099efe04874e260d36b86a"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3585,7 +3598,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:decaa6d0c7bb4f5356f740b3"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e35feaa681feea9d8f33ff95","label":"read_json","provenance_ref":"deterministic","semantic_key":"python:function:read_json","source_digest":"02bf98ad93ed0ce929c1db22d2abf817d897e6cc1339850d0612f6c533599a36","source_record_ids":["aoa:aoa-techniques:artifact:6bf6b62a56d7affb222fb3fd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0fb4024b344ce429ab915872"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e3a45546d65c40fa1bcf6bf1","label":"selection_technique_link","provenance_ref":"deterministic","semantic_key":"python:function:selection_technique_link","source_digest":"8db34cdedca92d7afa6820dbaa8f6b19f1cec8c38fffd8ffcc3b0eea6bac7f39","source_record_ids":["aoa:aoa-techniques:artifact:0119f94a9628e05b47e30eed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:21585aefc4e24fe3648501af"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e40efa9ef473506f9fd11359","label":"build_report","provenance_ref":"deterministic","semantic_key":"python:function:build_report","source_digest":"3f33dc49122e254fca13ca58a38311a687d5e5c917762981a33529721282cf9e","source_record_ids":["aoa:aoa-techniques:artifact:65fb7d4d4186c308ea5dec74"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:372eee0483324b90277da37e"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e42a428e9e637028b94acc4a","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:372eee0483324b90277da37e"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e42a428e9e637028b94acc4a","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","source_record_ids":["aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2a19723696573358e0e30722"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e4afd97fdb9a0fadaf3f3990","label":"parse_title","provenance_ref":"deterministic","semantic_key":"python:function:parse_title","source_digest":"59360ee4346d9a416d1a61714b3b8ef650074682247bb79b287330b2c0c97abc","source_record_ids":["aoa:aoa-techniques:artifact:5a1bbcf29ad3ebd1ce25d7e6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7145954e52eebe43ef3d65f5"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e4c38f6b7c1192078d955320","label":"main","provenance_ref":"deterministic","semantic_key":"python:function:main","source_digest":"f15988c9d6140b0e29a30cff021dc83eb268db900774be8ad825a67ec5354dd1","source_record_ids":["aoa:aoa-techniques:artifact:aee5423505b305c139ad9433"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:785b6f7666fe660cacb5758b"],"entity_kind":"python_function","id":"aoa:aoa-techniques:entity:e52adf1b071be8aa24e354cf","label":"_copy_bundle","provenance_ref":"deterministic","semantic_key":"python:function:_copy_bundle","source_digest":"df4f2110b6c85b90aaf96cb740098706a8004ae1a4d850c1eabe32f2f0771002","source_record_ids":["aoa:aoa-techniques:artifact:7eaedf4491a248821a2ecacc"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3680,7 +3693,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:3e49cdd7a05555a6509f75e9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:02f3e2db18420ee5fd71bb48","label":"test_rpg_legacy_scaffold_marks_empty_raw_inventory","provenance_ref":"deterministic","semantic_key":"python:method:RPGMechanicsTopologyTestCase.test_rpg_legacy_scaffold_marks_empty_raw_inventory","source_digest":"0ee8e83f7952b25dfa80917805d322045895d25d84d54817ed91984b0c4883ea","source_record_ids":["aoa:aoa-techniques:artifact:695fcf0256bfb75cc8039476"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a235e7761092b2c9f021601f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:037281b835df053a1527dd33","label":"test_docs_entrypoints_route_to_mechanics_without_part_runbook_index","provenance_ref":"deterministic","semantic_key":"python:method:DocsSurfaceGuardrailsTestCase.test_docs_entrypoints_route_to_mechanics_without_part_runbook_index","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:306fc2767535d3003316fdc7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:038e5b3cb347c5060457d2a5","label":"test_scaffold_raw_inventory_is_empty_except_readme","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsLegacyScaffoldTestCase.test_scaffold_raw_inventory_is_empty_except_readme","source_digest":"8926368fb938cff615165f300f4a7377816cf537456e4d9c950ecd522094e117","source_record_ids":["aoa:aoa-techniques:artifact:8a27cc775a1c12f821a9ec82"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:df7130c2b1a132cf4cc96537"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:03d704edae1f54c319331977","label":"test_mechanics_part_local_lane_covers_discovered_part_tests","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:df7130c2b1a132cf4cc96537"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:03d704edae1f54c319331977","label":"test_mechanics_part_local_lane_covers_discovered_part_tests","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_mechanics_part_local_lane_covers_discovered_part_tests","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:008f962fbc12a73c55bd69cb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:04a005eba0ca6c4dcbc696d9","label":"test_root_readme_does_not_duplicate_github_native_or_validation_surfaces","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoPublicHygieneTests.test_root_readme_does_not_duplicate_github_native_or_validation_surfaces","source_digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","source_record_ids":["aoa:aoa-techniques:artifact:20edd23620da977fb144b11f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d2ee87c8a12c965ae180d699"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:05cf5b7555200910001515c3","label":"test_agon_first_narrowing_frontier_review_matches_remaining_candidates","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPartLedgersHandoffTests.test_agon_first_narrowing_frontier_review_matches_remaining_candidates","source_digest":"f7feded53b14094ba80cbb6f5d5785c1760230625dc507dd2f478e6d66220b6b","source_record_ids":["aoa:aoa-techniques:artifact:19a81dcd26d390428c646806"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:27e3229b6f8a58c0b00f9915"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:063ee58c106a0cd7a88e6bfd","label":"test_validator_reports_missing_snippet","provenance_ref":"deterministic","semantic_key":"python:method:NestedAgentsDocsTests.test_validator_reports_missing_snippet","source_digest":"5ee32f86c3257b326899f3050bf53f8522dae8b94b895673bf5c542c48b06aed","source_record_ids":["aoa:aoa-techniques:artifact:d990104fd42a98fd27b96867"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3690,10 +3703,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:5eacc517d8610e1c8a8878dd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:073d559aaf773b227b57fd4b","label":"test_validate_repo_module_imports_without_pyyaml","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCompatibilityImportTests.test_validate_repo_module_imports_without_pyyaml","source_digest":"75ea96accc00d5ba348a1a3db62197b0bfc93400342ad6609a271e406821649c","source_record_ids":["aoa:aoa-techniques:artifact:b8959f6cec62a716dfef8fd1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:02c576986643803ffe0a5771"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:07685567d52f44479f31f322","label":"test_obsolescence_routes_to_packet_without_erasure_or_deletion","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_obsolescence_routes_to_packet_without_erasure_or_deletion","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0ad94b4beafe480b3481f01f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:07725d8627db36f117dc373e","label":"test_growth_cycle_stays_outside_direct_orq_lane","provenance_ref":"deterministic","semantic_key":"python:method:GrowthCycleMechanicsTopologyTestCase.test_growth_cycle_stays_outside_direct_orq_lane","source_digest":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","source_record_ids":["aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:bfbf73aa85e4ddfdb34c24f8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:08256e02266feb232dc18b5b","label":"test_expected_parent_domain_accepts_tree_trunk_layout","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_expected_parent_domain_accepts_tree_trunk_layout","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:bfbf73aa85e4ddfdb34c24f8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:08256e02266feb232dc18b5b","label":"test_expected_parent_domain_accepts_tree_trunk_layout","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_expected_parent_domain_accepts_tree_trunk_layout","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:56e497a3bf085b4fac582c9c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:085a14280fba4fbaf5f6283a","label":"test_landed_skill_support_pilot_review_selects_evaluation_chain","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotCapabilityWaveTests.test_landed_skill_support_pilot_review_selects_evaluation_chain","source_digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5123cc79104e1918af9fdc54"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:088464394bf6adbe8933cbce","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:SkillDiscoveryTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"4d5a458554372200a14f047aa67f8eee828aa07003dc0d355edfef530b101c58","source_record_ids":["aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:50ee454eddeb667ee7967d71"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:08c1da1e4db4d1c16030b1ca","label":"test_kag_source_lift_family_status_split_stays_bounded","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_kag_source_lift_family_status_split_stays_bounded","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:50ee454eddeb667ee7967d71"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:08c1da1e4db4d1c16030b1ca","label":"test_kag_source_lift_family_status_split_stays_bounded","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_kag_source_lift_family_status_split_stays_bounded","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:71a21a770c494213ac6e8c32"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:09398208c34fbd7c7f989c92","label":"replace","provenance_ref":"deterministic","semantic_key":"python:method:strip_allowlisted_public_urls.replace","source_digest":"601f26e61b30dc3b8c8bec75d34e2870e56ad43b26c8baf9b3bcd8418fa05b8a","source_record_ids":["aoa:aoa-techniques:artifact:350991278c050e85113cce7c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:df49113b883863c9c06593bf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:09ab5214f967ab69ff402101","label":"test_experience_contract_packet_routes_are_documented","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceMechanicsTopologyTestCase.test_experience_contract_packet_routes_are_documented","source_digest":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","source_record_ids":["aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:52102465ca100f8fa0190f13"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0a415c3ee702a99bcf7a9bb7","label":"test_archived_personal_ingest_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:MediaIngestTreePilotTestCase.test_archived_personal_ingest_links_point_to_current_paths","source_digest":"20556c99171b8f45c5d3ee4850779cbb292530abcffad3eac92f07f139f00d83","source_record_ids":["aoa:aoa-techniques:artifact:ddfcab62cbcdce5b474f6b6c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3702,28 +3715,28 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:4b2f4a84193cc7ec4dd35a32"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0be71d1751a72e39fad3f0cb","label":"test_distillation_reopen_gates_preserve_registry_authority_boundary","provenance_ref":"deterministic","semantic_key":"python:method:DistillationGateDecisionsTests.test_distillation_reopen_gates_preserve_registry_authority_boundary","source_digest":"f1a84c83bc5942bfc5e1ed32ae7baf5a80dce9f6a0a8c1f456a1edcb38531e47","source_record_ids":["aoa:aoa-techniques:artifact:538bb41b40470989ae774aa1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8935f2bc9fe7fea39cdb5934"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0c080391c956e7d7e0d935f3","label":"test_example_reader_generated_surface_matches_builder_and_stays_bounded","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_example_reader_generated_surface_matches_builder_and_stays_bounded","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4ed7d726eec497371431bbb5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0c9ac8600fbae51762a634f0","label":"test_repo_started_without_tracked_diff_allows_existing_untracked_files","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseCheckStabilizerTests.test_repo_started_without_tracked_diff_allows_existing_untracked_files","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8d1295d515d02da4b621377d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0d27e820ddd3dc7cb25bfe76","label":"test_landed_diagnosis_repair_pilot_review_selects_instruction_surface","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_diagnosis_repair_pilot_review_selects_instruction_surface","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8d1295d515d02da4b621377d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0d27e820ddd3dc7cb25bfe76","label":"test_landed_diagnosis_repair_pilot_review_selects_instruction_surface","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_diagnosis_repair_pilot_review_selects_instruction_surface","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:df0b75ed627c62716a998302"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0d2eb1c8e08320d2846d1459","label":"test_index_contract_validation_covers_parser_contract_fields","provenance_ref":"deterministic","semantic_key":"python:method:DecisionIndexTests.test_index_contract_validation_covers_parser_contract_fields","source_digest":"3e4860d66a8089f02520e200b18e22b7798ee6dbc31d20eecd3ccc193101246d","source_record_ids":["aoa:aoa-techniques:artifact:b90af86566bbb19195eefe41"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:daba290d92879bca716936be"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0d3c02cd01b67284d478eea6","label":"test_method_growth_contract_packet_routes_are_documented","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_method_growth_contract_packet_routes_are_documented","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:60d1da3c8f83b4213227d519"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0dab98d4196f1fd8ce7fe203","label":"test_bundle_anatomy_execution_instruction_label_counts_match_rows","provenance_ref":"deterministic","semantic_key":"python:method:DistillationReformIngressReviewsTests.test_bundle_anatomy_execution_instruction_label_counts_match_rows","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:055d3760b7d172262315210c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0dc9398020ef7883d9568f00","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityRegistryTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"88ffd010903d52bf422142833118be0caeb546eee3edbb0e20f01da331b09bcb","source_record_ids":["aoa:aoa-techniques:artifact:958b553e812d7a61f5670eba"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3e07bd63a5f22dbe5837a918"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0e5c067b632e2f731fc2d18a","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:HistoryArtifactsTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"a0eeb86c6e74f0b35b1713511550ccd283df7a64fc52a77a768c7ea066bad49a","source_record_ids":["aoa:aoa-techniques:artifact:e5099efe04874e260d36b86a"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f607198d3dc98c727b0c9506"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0e6f640c3461fb0fdc9099c7","label":"test_evidence_note_guide_references_current_note_templates","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_evidence_note_guide_references_current_note_templates","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f607198d3dc98c727b0c9506"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0e6f640c3461fb0fdc9099c7","label":"test_evidence_note_guide_references_current_note_templates","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_evidence_note_guide_references_current_note_templates","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7029c7af699be3b5c2e3d709"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0ef69238114056376c0609ac","label":"test_live_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:SkillSupportTreePilotTestCase.test_live_links_point_to_current_paths","source_digest":"be31fda9de0d38712184d67229f7e4ebfa04aff3db72de81710f35db405247e1","source_record_ids":["aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2d091e7a1792d826b2ab8002"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0f262ab01a55b14c3b751115","label":"test_package_cards_route_to_active_parts_and_route_files","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsPackageCardTests.test_package_cards_route_to_active_parts_and_route_files","source_digest":"335c75375d66158e1bb3d4a262c74145642d66cd5c3493e61c2735aedcf5ea9e","source_record_ids":["aoa:aoa-techniques:artifact:7698d5ddfea36399ee4fab64"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f4686aba2d5bf84080cfab8a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0f2a2e4fdb243ed967024052","label":"test_retention_checks_route_to_review_without_obsolescence_collapse","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_retention_checks_route_to_review_without_obsolescence_collapse","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:092bd1c9bac27cdbcb131ff0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:0fe3e903b25b31921e9a5947","label":"test_shadow_wave_bundle_is_present_in_index_catalog_and_selection_surface","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_shadow_wave_bundle_is_present_in_index_catalog_and_selection_surface","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:abf8aed17d90107a5591e162"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:10194c83b8f7857b8f6296f7","label":"test_missing_lane_agents_fails","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_missing_lane_agents_fails","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ce888da9398d13b1f72cbde8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:104c4001c62947d99ed504b1","label":"test_cross_layer_candidates_doc_accounts_for_full_seed_donor_matrix","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_cross_layer_candidates_doc_accounts_for_full_seed_donor_matrix","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:549fda51be6fe6ddc2ee6ba4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:11490ed06046121af3291f4b","label":"test_agents_mesh_validator_ignores_untracked_top_level_dirs","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","source_digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ce888da9398d13b1f72cbde8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:104c4001c62947d99ed504b1","label":"test_cross_layer_candidates_doc_accounts_for_full_seed_donor_matrix","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_cross_layer_candidates_doc_accounts_for_full_seed_donor_matrix","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:549fda51be6fe6ddc2ee6ba4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:11490ed06046121af3291f4b","label":"test_agents_mesh_validator_ignores_untracked_top_level_dirs","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_validator_ignores_untracked_top_level_dirs","source_digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9a27573e047eb403220db427"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:11eb514e8b8f493c6bea69f4","label":"test_registries_do_not_claim_live_seed_bundles","provenance_ref":"deterministic","semantic_key":"python:method:IncomingTopologyTestCase.test_registries_do_not_claim_live_seed_bundles","source_digest":"6ef1879023abc7a411e7fc2ea99516b2569c23eb3799d4a34bf7f81ec6a6afa4","source_record_ids":["aoa:aoa-techniques:artifact:17887a255a778da6f8fe0313"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5cd42ac000ff3c12d197c74a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:12bd65a5cd121521bd799846","label":"test_published_summary_direct_read_review_accepts_thirteenth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_published_summary_direct_read_review_accepts_thirteenth_pilot","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ef2aa5b4ead0f757425010ca"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:13b7fefebe55c2881d991e10","label":"fake_path_exists_with_exact_case","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only.fake_path_exists_with_exact_case","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ef2aa5b4ead0f757425010ca"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:13b7fefebe55c2881d991e10","label":"fake_path_exists_with_exact_case","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only.fake_path_exists_with_exact_case","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:45b6cc3c9f5351ed6a2bcb98"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1408d6fba8d7e366e22343f3","label":"test_bundle_anatomy_rubric_defines_finding_tokens","provenance_ref":"deterministic","semantic_key":"python:method:DistillationReformIngressReviewsTests.test_bundle_anatomy_rubric_defines_finding_tokens","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a277fa32c0131e1de1717c00"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:142bcb235bac18ff11cd015c","label":"test_experience_governance_schemas_reject_missing_required_fields","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceGovernanceContractTests.test_experience_governance_schemas_reject_missing_required_fields","source_digest":"0cb47bbb0a52fca2c7db26063b7e5d46f951cce02d44ab55309009d5395ee551","source_record_ids":["aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8d25d658eb9f79cd9825953c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1637a63e95c0e74e63e2d023","label":"test_incoming_root_names_closed_packet_stop_line","provenance_ref":"deterministic","semantic_key":"python:method:IncomingTopologyTestCase.test_incoming_root_names_closed_packet_stop_line","source_digest":"6ef1879023abc7a411e7fc2ea99516b2569c23eb3799d4a34bf7f81ec6a6afa4","source_record_ids":["aoa:aoa-techniques:artifact:17887a255a778da6f8fe0313"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:37293df1a22366d5ad81c963"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:16dc8734b38ce302311f0908","label":"test_evidence_note_templates_are_discoverable_from_contributing_and_provenance_guide","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_evidence_note_templates_are_discoverable_from_contributing_and_provenance_guide","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c155c61e1b92fe300c79e1af"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:16deb507005ba0e908877e65","label":"test_expected_parent_domain_accepts_legacy_domain_layout","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_expected_parent_domain_accepts_legacy_domain_layout","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:37293df1a22366d5ad81c963"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:16dc8734b38ce302311f0908","label":"test_evidence_note_templates_are_discoverable_from_contributing_and_provenance_guide","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_evidence_note_templates_are_discoverable_from_contributing_and_provenance_guide","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c155c61e1b92fe300c79e1af"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:16deb507005ba0e908877e65","label":"test_expected_parent_domain_accepts_legacy_domain_layout","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_expected_parent_domain_accepts_legacy_domain_layout","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2c2b7fe4ff39220da2e1acbe"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:17209bf3706d5f0a0b9a5e80","label":"test_experience_candidate_bridge_preserves_extraction_gate","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceMechanicsTopologyTestCase.test_experience_candidate_bridge_preserves_extraction_gate","source_digest":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","source_record_ids":["aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c1afaf8351ce67028ee468bd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:17a486f80a8a1bf896090899","label":"test_full_capsule_entry_derives_bounded_runtime_card_fields","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_full_capsule_entry_derives_bounded_runtime_card_fields","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:610cb5d6d9a62e8880175ef2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:17dd23a1ec96b4bfadc50b8c","label":"test_pilot_bundles_live_under_proof_published_summary_tree","provenance_ref":"deterministic","semantic_key":"python:method:PublishedSummaryTreePilotTestCase.test_pilot_bundles_live_under_proof_published_summary_tree","source_digest":"fcd185b6b699a5d1d34b84f973590848ff943be9afcabc7753f29fa119dc3841","source_record_ids":["aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3733,17 +3746,17 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:817d3ace347263e8cf9f5803"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:19d544e69f7f84b39ba668ca","label":"test_dispatch_example_drift_fails","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_dispatch_example_drift_fails","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d5b91c26a55e705f7932f984"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1a1108e9cbf14f4343400cf9","label":"test_distillation_receipt_maps_owner_landing_readout","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsRequestReceiptsTestCase.test_distillation_receipt_maps_owner_landing_readout","source_digest":"bfebeee3200e324838db107c7c9460238b3937193156f8a7d0ea6b3818656108","source_record_ids":["aoa:aoa-techniques:artifact:1bdaff3aa0a3613590d76c27"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dd12792269f5cc546e2646f4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1a651550fd917db52b9a06f9","label":"test_technique_anchors_point_to_bundle_local_homes","provenance_ref":"deterministic","semantic_key":"python:method:CheckpointMechanicsTopologyTestCase.test_technique_anchors_point_to_bundle_local_homes","source_digest":"b19234680a11b5e9972a251fd34879ddad09aef27b953026b55a5c9311229b9b","source_record_ids":["aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:962eb07681905a90cb9305e2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1c07fca105da6f9bdebc2412","label":"test_validate_sections_rejects_duplicate_required_section","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_rejects_duplicate_required_section","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:a2773de4eec6355818e480d1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1c4d3aa758d8091a47c890dc","label":"test_kag_source_lift_direct_read_review_accepts_sixth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_kag_source_lift_direct_read_review_accepts_sixth_pilot","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:962eb07681905a90cb9305e2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1c07fca105da6f9bdebc2412","label":"test_validate_sections_rejects_duplicate_required_section","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_rejects_duplicate_required_section","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:a2773de4eec6355818e480d1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1c4d3aa758d8091a47c890dc","label":"test_kag_source_lift_direct_read_review_accepts_sixth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_kag_source_lift_direct_read_review_accepts_sixth_pilot","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:26e13b77e7185a222c4c3d07"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1c5ff2b95cb9ecaf15529fce","label":"test_every_scenario_is_registered","provenance_ref":"deterministic","semantic_key":"python:method:SparkLaneTestCase.test_every_scenario_is_registered","source_digest":"218073a99eeccb5503fda3ac7ab3c30cffa4151432ad400956f4d7b5d0fba65d","source_record_ids":["aoa:aoa-techniques:artifact:2b31a3041fd1f1fcf0b72bc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:03dc233b1c53c7fd3beb5f43"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1c6ee71d8d181865ff147cb8","label":"test_required_nested_agents_docs_exist_and_include_expected_snippets","provenance_ref":"deterministic","semantic_key":"python:method:NestedAgentsDocsTests.test_required_nested_agents_docs_exist_and_include_expected_snippets","source_digest":"5ee32f86c3257b326899f3050bf53f8522dae8b94b895673bf5c542c48b06aed","source_record_ids":["aoa:aoa-techniques:artifact:d990104fd42a98fd27b96867"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b013fcbc261426f03e19311b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1ce4b1715071a302bc4ba681","label":"test_boundary_bridge_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:BoundaryBridgeMechanicsTopologyTestCase.test_boundary_bridge_part_map_names_all_current_parts","source_digest":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","source_record_ids":["aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:33e433d08c352d3d2b7b9857"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1d7e4e10b7d10a69acdb6d21","label":"test_validator_inventory_matches_manifest_lanes","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:33e433d08c352d3d2b7b9857"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1d7e4e10b7d10a69acdb6d21","label":"test_validator_inventory_matches_manifest_lanes","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_validator_inventory_matches_manifest_lanes","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1d6afac35d0abfe0b1c4557a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1e267e4eb8b0fb4999977840","label":"test_agon_candidate_handoff_registry_preserves_source_coverage","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPartLedgersHandoffTests.test_agon_candidate_handoff_registry_preserves_source_coverage","source_digest":"f7feded53b14094ba80cbb6f5d5785c1760230625dc507dd2f478e6d66220b6b","source_record_ids":["aoa:aoa-techniques:artifact:19a81dcd26d390428c646806"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3c903c7b25510ba7b45a8be6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1e63a0cdeb027a66ceb3d0d5","label":"test_agents_mesh_ignores_dependency_checkouts","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","source_digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b0adcc48c88691fa5aeb5f41"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1e6573e37ad570c6a95411b3","label":"test_diagnosis_repair_direct_read_review_accepts_fourth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_diagnosis_repair_direct_read_review_accepts_fourth_pilot","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3c903c7b25510ba7b45a8be6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1e63a0cdeb027a66ceb3d0d5","label":"test_agents_mesh_ignores_dependency_checkouts","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_ignores_dependency_checkouts","source_digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b0adcc48c88691fa5aeb5f41"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1e6573e37ad570c6a95411b3","label":"test_diagnosis_repair_direct_read_review_accepts_fourth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_diagnosis_repair_direct_read_review_accepts_fourth_pilot","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2196e579b1fab978660bda81"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1e8a424f5601d1a70d3f3d16","label":"test_full_section_surface_matches_builder_and_stays_aligned","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_full_section_surface_matches_builder_and_stays_aligned","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0cede07d4461dc41235b988b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1f20156e29fdd5ab693bddd7","label":"test_external_candidates_doc_describes_swarm_execution_roles","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_external_candidates_doc_describes_swarm_execution_roles","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0cede07d4461dc41235b988b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:1f20156e29fdd5ab693bddd7","label":"test_external_candidates_doc_describes_swarm_execution_roles","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_external_candidates_doc_describes_swarm_execution_roles","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:29a7a19e5541b14fdb6276c6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:2003f2d187862db1188a7131","label":"test_active_root_and_docs_markdown_links_resolve","provenance_ref":"deterministic","semantic_key":"python:method:DocsSurfaceGuardrailsTestCase.test_active_root_and_docs_markdown_links_resolve","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bd3062e3bc39d40f035c9902"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:205d7e61697831b5e72b3694","label":"test_current_decision_indexes_are_fresh","provenance_ref":"deterministic","semantic_key":"python:method:DecisionIndexTests.test_current_decision_indexes_are_fresh","source_digest":"3e4860d66a8089f02520e200b18e22b7798ee6dbc31d20eecd3ccc193101246d","source_record_ids":["aoa:aoa-techniques:artifact:b90af86566bbb19195eefe41"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:69053c67102ee1a8c0fb5b57"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:206a45b2edf8cbce8024dfba","label":"test_generated_lane_groups_match_projection_inventory","provenance_ref":"deterministic","semantic_key":"python:method:ValidatorModuleTopologyTests.test_generated_lane_groups_match_projection_inventory","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3756,10 +3769,11 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:176c5e22ca6ba05270ce145d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:21da85cf7e27deff4d2cfcd8","label":"test_proof_route_card_names_published_summary_without_overclaiming","provenance_ref":"deterministic","semantic_key":"python:method:PublishedSummaryTreePilotTestCase.test_proof_route_card_names_published_summary_without_overclaiming","source_digest":"fcd185b6b699a5d1d34b84f973590848ff943be9afcabc7753f29fa119dc3841","source_record_ids":["aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:084e6486fe2097686538e9fc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:22355cfb0def39bd11a8c862","label":"test_recurrence_docs_name_registry_stop_line","provenance_ref":"deterministic","semantic_key":"python:method:RecurrenceManifestTopologyTestCase.test_recurrence_docs_name_registry_stop_line","source_digest":"b0ceefcf9aa6d63eb161a24a83839c8c6d9d52cb40d2bbb51778647f54a455ee","source_record_ids":["aoa:aoa-techniques:artifact:3bd0071d5d213b9d72daa7ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:05231ee7458b6907df34c7c5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:224f2cc7bf8a1c507b2a3cae","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:SkillSupportTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"be31fda9de0d38712184d67229f7e4ebfa04aff3db72de81710f35db405247e1","source_record_ids":["aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b4b2783e5f20ca117d0c32bf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:245e1bd5b6a909bb75e289a2","label":"test_validation_lanes_manifest_is_loader_authority","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:54b22b11563ea29bbe44b325"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:246747d64e85a733f2b3c736","label":"test_memo_agents_validation_route_rejects_host_specific_default","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_memo_agents_validation_route_rejects_host_specific_default","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:75a0bd324161bb9d5b6acb7a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:22844652a8be04be28d14ec0","label":"test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes","source_digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b4b2783e5f20ca117d0c32bf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:245e1bd5b6a909bb75e289a2","label":"test_validation_lanes_manifest_is_loader_authority","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_validation_lanes_manifest_is_loader_authority","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:54b22b11563ea29bbe44b325"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:246747d64e85a733f2b3c736","label":"test_memo_agents_validation_route_rejects_host_specific_default","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_memo_agents_validation_route_rejects_host_specific_default","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ba5af91a0c22eca645f5448e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:24893e7930770a0329e53c4f","label":"assert_invalid","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceAdoptionContractTests.assert_invalid","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7dad22507a2843e56c16325e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:24b5011ef5947fd9eb901502","label":"test_deep_audit_roadmap_describes_swarm_future_import_execution_pack","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_deep_audit_roadmap_describes_swarm_future_import_execution_pack","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7dad22507a2843e56c16325e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:24b5011ef5947fd9eb901502","label":"test_deep_audit_roadmap_describes_swarm_future_import_execution_pack","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_deep_audit_roadmap_describes_swarm_future_import_execution_pack","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c78395a9f830cdb8776e19fa"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:24d1ba1bcae65443037ca9e1","label":"test_runtime_truth_lifecycle_direct_read_review_accepts_twenty_third_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_runtime_truth_lifecycle_direct_read_review_accepts_twenty_third_pilot","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:332508ee4f5a3e4cb9ff76b9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:2747f756807cd212f5fc7f71","label":"test_experience_governance_schemas_reject_bad_array_items","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceGovernanceContractTests.test_experience_governance_schemas_reject_bad_array_items","source_digest":"0cb47bbb0a52fca2c7db26063b7e5d46f951cce02d44ab55309009d5395ee551","source_record_ids":["aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ef5adc81f35d30b13b514ca2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:27577840b2259b050728749d","label":"assert_router_safe_doc_path","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.assert_router_safe_doc_path","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3785,9 +3799,9 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:368082ecc6b4ead9eb0cc3d3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:31932191da3e66a4100eca17","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:SkillDiscoveryTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"4d5a458554372200a14f047aa67f8eee828aa07003dc0d355edfef530b101c58","source_record_ids":["aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a3276d7af30b45b721307359"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:319a660237d3f08cdc2fa42f","label":"test_part_local_lane_covers_related_builder_checks_and_validators","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_part_local_lane_covers_related_builder_checks_and_validators","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:15b37b200c4f27a82d24e9df"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:324ec70504bf96249c441a6a","label":"test_agon_wave4_technique_bridge_is_routable","provenance_ref":"deterministic","semantic_key":"python:method:CurrentDirectionRoutesTestCase.test_agon_wave4_technique_bridge_is_routable","source_digest":"96d942021322b174f8afd2a30e359ef662363ad2c5716c1dae7f1022e004500c","source_record_ids":["aoa:aoa-techniques:artifact:098f12afb4fd11c72d66bfee"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:924372fd4c5ef6efc8516adf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:325cdddbce424fe9650db889","label":"test_shadow_and_caution_guides_match_current_enforced_contract","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_shadow_and_caution_guides_match_current_enforced_contract","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:924372fd4c5ef6efc8516adf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:325cdddbce424fe9650db889","label":"test_shadow_and_caution_guides_match_current_enforced_contract","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_shadow_and_caution_guides_match_current_enforced_contract","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4de8fd4d3af985058ef17ffc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:32ad6f3f32d5313b7b5ed04d","label":"test_harvest_promotion_anchors_point_to_bundle_local_homes","provenance_ref":"deterministic","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_harvest_promotion_anchors_point_to_bundle_local_homes","source_digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7461e2173b7a76f19342f498"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:32f4f251139c1d0db5af1499","label":"test_release_and_nightly_have_separate_workflows","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","source_digest":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7461e2173b7a76f19342f498"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:32f4f251139c1d0db5af1499","label":"test_release_and_nightly_have_separate_workflows","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_release_and_nightly_have_separate_workflows","source_digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4d6c3711e641a035946b918d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:330f199425fb3d24c43f0d1f","label":"test_evidence_note_manifest_includes_adverse_effects_review_scope_and_entries","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_evidence_note_manifest_includes_adverse_effects_review_scope_and_entries","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7fca77c6ede55597198e4cd3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3364a71bad213386cb581ca7","label":"test_release_support_active_surfaces_are_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseSupportMechanicsTopologyTestCase.test_release_support_active_surfaces_are_discoverable","source_digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","source_record_ids":["aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5249d20a2efbb5b8b7a6abbc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:33b784f660cc415c5f2e7712","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:HandoffContinuationTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"392cb68ca208540637f362302ba47330282ed0e0838a6812ece5e1e83b126d59","source_record_ids":["aoa:aoa-techniques:artifact:7407303c3d88ba654f200fed"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3797,7 +3811,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:540de4bae6bbb389b1e2946c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:35e41427b7c64c8492575dac","label":"test_landed_intent_chain_review_selects_agent_workflows_core","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_landed_intent_chain_review_selects_agent_workflows_core","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5b38171a1b6727262b73fb1c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:35f816e47f113ccaf68401fe","label":"test_pilot_bundles_live_under_history_artifacts_tree","provenance_ref":"deterministic","semantic_key":"python:method:HistoryArtifactsTreePilotTestCase.test_pilot_bundles_live_under_history_artifacts_tree","source_digest":"a0eeb86c6e74f0b35b1713511550ccd283df7a64fc52a77a768c7ea066bad49a","source_record_ids":["aoa:aoa-techniques:artifact:e5099efe04874e260d36b86a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bf3934c5c1550a80d75e68be"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3673c8d5bebe5ff3c7a7707f","label":"test_active_route_docs_do_not_reference_missing_scripts","provenance_ref":"deterministic","semantic_key":"python:method:ScriptTopologyTests.test_active_route_docs_do_not_reference_missing_scripts","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:42e0c63dc4f1af9ef37c9025"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:36fae9fa763fd29b244a83cb","label":"test_validate_sections_rejects_duplicate_optional_template_section","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_rejects_duplicate_optional_template_section","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:42e0c63dc4f1af9ef37c9025"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:36fae9fa763fd29b244a83cb","label":"test_validate_sections_rejects_duplicate_optional_template_section","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_rejects_duplicate_optional_template_section","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b5f2dfdbb2f062dbff4c7521"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3705904b9745081efd97d815","label":"test_query_exact_id_and_explain_are_source_linked","provenance_ref":"deterministic","semantic_key":"python:method:TechniqueIntelligenceTests.test_query_exact_id_and_explain_are_source_linked","source_digest":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","source_record_ids":["aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a496f4eb600b725f71275ac2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:37c5c6572d1ad06d810cbb49","label":"test_recurrence_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:RecurrenceMechanicsTopologyTestCase.test_recurrence_part_map_names_all_current_parts","source_digest":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","source_record_ids":["aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:845838736529058877a906d7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:38af28661be6694a661630fd","label":"test_repo_doc_surface_manifest_generated_surface_matches_builder","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_repo_doc_surface_manifest_generated_surface_matches_builder","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3807,10 +3821,10 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:04a9d315e84d902f5952abd0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3b50bc44e17d4d102c2a99d8","label":"test_method_growth_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_method_growth_part_map_names_all_current_parts","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bf082fc984a3f6b5135e5f2c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3bd7e41ec84b8c87d8f56ea9","label":"test_registry_uses_no_activation_shape_keys","provenance_ref":"deterministic","semantic_key":"python:method:TechniqueIntelligenceTests.test_registry_uses_no_activation_shape_keys","source_digest":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","source_record_ids":["aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6508e3a2d9b21ae62f11fe95"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3c23e29dab4a945998a05eb0","label":"test_mechanics_agents_routes_through_local_cards","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsPackageCardTests.test_mechanics_agents_routes_through_local_cards","source_digest":"335c75375d66158e1bb3d4a262c74145642d66cd5c3493e61c2735aedcf5ea9e","source_record_ids":["aoa:aoa-techniques:artifact:7698d5ddfea36399ee4fab64"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:0b91895d2436763b08decf72"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3ccb54609d36261a57bb783a","label":"test_instruction_surface_direct_read_review_accepts_fifth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_instruction_surface_direct_read_review_accepts_fifth_pilot","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:0b91895d2436763b08decf72"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3ccb54609d36261a57bb783a","label":"test_instruction_surface_direct_read_review_accepts_fifth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_instruction_surface_direct_read_review_accepts_fifth_pilot","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d4db36437f5c562c05f0c497"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3d07c1acf8cb174dec633dce","label":"test_boundary_bridge_stop_lines_remain_explicit","provenance_ref":"deterministic","semantic_key":"python:method:BoundaryBridgeMechanicsTopologyTestCase.test_boundary_bridge_stop_lines_remain_explicit","source_digest":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","source_record_ids":["aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f48b8034722aa0a31f4af258"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3d7eb6fd72f5640135a04fd9","label":"test_experience_adoption_schemas_reject_escape_hatches","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceAdoptionContractTests.test_experience_adoption_schemas_reject_escape_hatches","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c2dfa5e02e8871fe1004e1eb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3e16dad1ec039fcb0e9ca728","label":"test_workflow_calls_ci_lane_entrypoints_not_release_check","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c2dfa5e02e8871fe1004e1eb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3e16dad1ec039fcb0e9ca728","label":"test_workflow_calls_ci_lane_entrypoints_not_release_check","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_workflow_calls_ci_lane_entrypoints_not_release_check","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:46ebb731bb5db6744d9a1376"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3e4f77f2951c178006a8a645","label":"test_growth_cycle_stage_anchors_name_existing_bundles_and_gaps","provenance_ref":"deterministic","semantic_key":"python:method:GrowthCycleMechanicsTopologyTestCase.test_growth_cycle_stage_anchors_name_existing_bundles_and_gaps","source_digest":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","source_record_ids":["aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:61e85fd13a64320d63407a07"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3e595e8b15ff9658b3b61a85","label":"test_mechanics_part_local_scripts_are_runner_discovered","provenance_ref":"deterministic","semantic_key":"python:method:ScriptTopologyTests.test_mechanics_part_local_scripts_are_runner_discovered","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6c31ba0bc2f1a4900f51d97c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:3e673419beb7fa03874ce365","label":"test_evaluation_route_card_no_longer_names_moved_representatives","provenance_ref":"deterministic","semantic_key":"python:method:EvaluationChainTreePilotTestCase.test_evaluation_route_card_no_longer_names_moved_representatives","source_digest":"4a09365d51a6b68831dfa2f0681603fd453af9ec9e2a2ff661870efed6e60a3f","source_record_ids":["aoa:aoa-techniques:artifact:82e028210399ae4428247f3c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3820,16 +3834,16 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:d03dfe1725968d4d863c96c6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:41585f65d26caadbfb9df478","label":"test_public_hygiene_allows_public_github_urls","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoPublicHygieneTests.test_public_hygiene_allows_public_github_urls","source_digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","source_record_ids":["aoa:aoa-techniques:artifact:20edd23620da977fb144b11f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f44ec0d17ba729450f5339c7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4171ad13f8c0bd8cd61ab11c","label":"test_main_does_not_run_clean_diff_check_when_initially_dirty","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseCheckStabilizerTests.test_main_does_not_run_clean_diff_check_when_initially_dirty","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cb330183e55c407d4bea7156"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:41e285606053dfce45d0fd07","label":"test_audit_flat_files_moved_into_owning_parts","provenance_ref":"deterministic","semantic_key":"python:method:AuditMechanicsTopologyTestCase.test_audit_flat_files_moved_into_owning_parts","source_digest":"f28b18d87d2c375c2f3ff12c402682da43f9c9fc8595470723c7aa7f14837b6e","source_record_ids":["aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3c98875bfc8f262a990b0df8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:41f811dfe769200bcb024d66","label":"test_active_docs_route_to_lane_ids_instead_of_full_sequences","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:3c98875bfc8f262a990b0df8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:41f811dfe769200bcb024d66","label":"test_active_docs_route_to_lane_ids_instead_of_full_sequences","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_active_docs_route_to_lane_ids_instead_of_full_sequences","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:797240f79be05f1b3a9f3c55"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4205dcf0139567cc9339ce05","label":"test_evaluation_chain_direct_read_migration_review_accepts_twelfth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotCapabilityWaveTests.test_evaluation_chain_direct_read_migration_review_accepts_twelfth_pilot","source_digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:6db83055c2eb37e654886e9f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:42081625d4c7507a4d2ff0a4","label":"test_release_check_preserves_entrypoint_without_owning_sequence","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:6db83055c2eb37e654886e9f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:42081625d4c7507a4d2ff0a4","label":"test_release_check_preserves_entrypoint_without_owning_sequence","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_release_check_preserves_entrypoint_without_owning_sequence","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b2e53d6f8ac3a9651465b9a6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4221885ae8f7bc3dcf8a4d12","label":"test_skill_discovery_neighbor_shelf_has_current_landed_paths","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityBoundaryTreePilotTestCase.test_skill_discovery_neighbor_shelf_has_current_landed_paths","source_digest":"398982edc7108c1cd992909ccee30c2e5c77195a1b4de031a6675bcc67894052","source_record_ids":["aoa:aoa-techniques:artifact:3c885d152cd68ff4d23d5dc4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:be7a3f9593a220e6e253056f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:426de69de17b8a3339b0cf5d","label":"test_experience_release_schemas_reject_enum_escapes","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.test_experience_release_schemas_reject_enum_escapes","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e7b0a570483409b1ae340d9f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:42f2329ead3de655fa50c526","label":"test_request_receipts_keeps_non_orq_mechanics_outside_direct_orq_lane","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsRequestReceiptsTestCase.test_request_receipts_keeps_non_orq_mechanics_outside_direct_orq_lane","source_digest":"bfebeee3200e324838db107c7c9460238b3937193156f8a7d0ea6b3818656108","source_record_ids":["aoa:aoa-techniques:artifact:1bdaff3aa0a3613590d76c27"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9b843a21588ecc54d790acad"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4338e1b3a03cb23a153e130f","label":"test_mechanics_routes_to_request_receipts_only_when_needed","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsRequestReceiptsTestCase.test_mechanics_routes_to_request_receipts_only_when_needed","source_digest":"bfebeee3200e324838db107c7c9460238b3937193156f8a7d0ea6b3818656108","source_record_ids":["aoa:aoa-techniques:artifact:1bdaff3aa0a3613590d76c27"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8cbb8e75bbebf7ee83536391"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:440c72844cce65d6d4e0b47d","label":"part_root_from_test_home","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.part_root_from_test_home","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:54329ae3d1a6d15c522bc0d7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:444880cdf514c415a014ac19","label":"test_landed_review_compaction_pilot_review_selects_next_direct_read_shelf","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_review_compaction_pilot_review_selects_next_direct_read_shelf","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9abbc91de99dd28d5b4eb26b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:45e6f9b0de673387a5f7c79e","label":"test_codeowners_is_present_and_scoped_narrowly","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:54329ae3d1a6d15c522bc0d7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:444880cdf514c415a014ac19","label":"test_landed_review_compaction_pilot_review_selects_next_direct_read_shelf","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_review_compaction_pilot_review_selects_next_direct_read_shelf","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9abbc91de99dd28d5b4eb26b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:45e6f9b0de673387a5f7c79e","label":"test_codeowners_is_present_and_scoped_narrowly","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_codeowners_is_present_and_scoped_narrowly","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:739f9f8dc3b704333178a1e9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:463ce2efee164d170fb9af5d","label":"test_shadow_patterns_describes_current_shadow_questions","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_shadow_patterns_describes_current_shadow_questions","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d341b7f0540d79102065d2a8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:473be90bfa6b895478b19a03","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityRegistryTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"88ffd010903d52bf422142833118be0caeb546eee3edbb0e20f01da331b09bcb","source_record_ids":["aoa:aoa-techniques:artifact:958b553e812d7a61f5670eba"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2bff27113dff82539b0e6eb4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:476bee31c99075931eff4648","label":"test_docs_boundary_next_step_matches_generated_semantic_manifest","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_docs_boundary_next_step_matches_generated_semantic_manifest","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3837,29 +3851,28 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b16d4b32e278b78be020337a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:47db39a2a99c8a3751ad3488","label":"test_0052_kind_remap_remains_classification_only_after_later_promotion","provenance_ref":"deterministic","semantic_key":"python:method:DistillationReformIngressReviewsTests.test_0052_kind_remap_remains_classification_only_after_later_promotion","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4ae96c3cc63f71790d2364c4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:489fe116fa867c31b2ce38fa","label":"test_continuity_trunk_names_both_pilot_shelves","provenance_ref":"deterministic","semantic_key":"python:method:HandoffContinuationTreePilotTestCase.test_continuity_trunk_names_both_pilot_shelves","source_digest":"392cb68ca208540637f362302ba47330282ed0e0838a6812ece5e1e83b126d59","source_record_ids":["aoa:aoa-techniques:artifact:7407303c3d88ba654f200fed"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3b0644153c67fae222d163d7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:49875ed418c0e47750716b06","label":"test_second_kind_ambiguity_review_pack_routes_0054_without_remap","provenance_ref":"deterministic","semantic_key":"python:method:DistillationReformIngressReviewsTests.test_second_kind_ambiguity_review_pack_routes_0054_without_remap","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:3819f9b141f5aaaf6be12972"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4adbe6162494f73ec542a97e","label":"test_historical_decision_records_may_preserve_command_evidence","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_historical_decision_records_may_preserve_command_evidence","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b7c1c6044e7acc0e37427053"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4b01ef91c4d3eede6810f856","label":"test_agon_artifacts_do_not_remain_in_root_technical_districts","provenance_ref":"deterministic","semantic_key":"python:method:AgonMechanicsTopologyTestCase.test_agon_artifacts_do_not_remain_in_root_technical_districts","source_digest":"26eb71e2e46619a815f778bebdc13d4f10daee97f77ec0e4d2f943e188718f10","source_record_ids":["aoa:aoa-techniques:artifact:551aac060212aabeebecce6c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:de8bfc0a414b334961ec5e66"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4b1c42bc18e08cfc907fa63b","label":"test_promotion_readiness_matrix_matches_generated_promoted_corpus","provenance_ref":"deterministic","semantic_key":"python:method:RoadmapParityTestCase.test_promotion_readiness_matrix_matches_generated_promoted_corpus","source_digest":"15d361a33c946c95bd1412b67adb2fa94deb43ad1c64abd045e29d269141cafb","source_record_ids":["aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ef7bc2911a919f1c9f1445b3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4b884af041a7f86b8e162460","label":"test_validate_risks_markdown_rejects_flat_bullets","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_risks_markdown_rejects_flat_bullets","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ef7bc2911a919f1c9f1445b3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4b884af041a7f86b8e162460","label":"test_validate_risks_markdown_rejects_flat_bullets","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_risks_markdown_rejects_flat_bullets","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1b1efc66d16edbec524af79b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4c33175580ad42606d4c8703","label":"test_phase_handoff_candidate_preserves_gate","provenance_ref":"deterministic","semantic_key":"python:method:CheckpointMechanicsTopologyTestCase.test_phase_handoff_candidate_preserves_gate","source_digest":"b19234680a11b5e9972a251fd34879ddad09aef27b953026b55a5c9311229b9b","source_record_ids":["aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:545acbb0891fc621ba846155"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4cafa51fde3221748b55ca16","label":"test_repo_local_kag_adapter_resolves_owner_history_boundary","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:545acbb0891fc621ba846155"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4cafa51fde3221748b55ca16","label":"test_repo_local_kag_adapter_resolves_owner_history_boundary","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_owner_history_boundary","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:35fe9ee673128cc6231602da"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4d3e8685e238870b547a70a7","label":"test_kag_export_artifact_bundle_requires_trust_gate_subject_store_and_slsa","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_kag_export_artifact_bundle_requires_trust_gate_subject_store_and_slsa","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1bdc806d4ba4956a82f75ff4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4dfe5ef7b839bcf0ba2ee458","label":"test_public_hygiene_rejects_blocked_patterns_on_scanned_surfaces","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoPublicHygieneTests.test_public_hygiene_rejects_blocked_patterns_on_scanned_surfaces","source_digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","source_record_ids":["aoa:aoa-techniques:artifact:20edd23620da977fb144b11f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ba7148fc532e576c1ccaf8e2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4e0ee2e493ceaf5f2a20fa60","label":"test_expected_evidence_kind_maps_adverse_effects_review_filename","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_expected_evidence_kind_maps_adverse_effects_review_filename","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:eebe9c928bda8ca7a4296e9e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4eaede3ef830aa67d73e97bc","label":"test_kag_source_lift_tree_pilot_migration_is_landed_after_direct_read","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_kag_source_lift_tree_pilot_migration_is_landed_after_direct_read","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ba7148fc532e576c1ccaf8e2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4e0ee2e493ceaf5f2a20fa60","label":"test_expected_evidence_kind_maps_adverse_effects_review_filename","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_expected_evidence_kind_maps_adverse_effects_review_filename","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:eebe9c928bda8ca7a4296e9e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4eaede3ef830aa67d73e97bc","label":"test_kag_source_lift_tree_pilot_migration_is_landed_after_direct_read","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_kag_source_lift_tree_pilot_migration_is_landed_after_direct_read","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a362e7fe82ee7a6e8da0a909"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4fc9cd69e0bcdbb1bb88bd21","label":"test_antifragility_reference_paths_point_to_active_part_home","provenance_ref":"deterministic","semantic_key":"python:method:AntifragilityMechanicsTopologyTestCase.test_antifragility_reference_paths_point_to_active_part_home","source_digest":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","source_record_ids":["aoa:aoa-techniques:artifact:5b00df740809b23874e59462"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:14b1db1255b9e1991e8a99cf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4fe1e1b4b1b5b374e281c4e0","label":"test_handoff_continuation_tree_pilot_migration_is_landed_after_direct_read","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_handoff_continuation_tree_pilot_migration_is_landed_after_direct_read","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:14b1db1255b9e1991e8a99cf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:4fe1e1b4b1b5b374e281c4e0","label":"test_handoff_continuation_tree_pilot_migration_is_landed_after_direct_read","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_handoff_continuation_tree_pilot_migration_is_landed_after_direct_read","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d0c8b3c354c17498e041c3a7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5029f82e7cbd4fd03e9d6ce1","label":"test_script_inventory_entries_are_complete_and_owner_routed","provenance_ref":"deterministic","semantic_key":"python:method:ScriptTopologyTests.test_script_inventory_entries_are_complete_and_owner_routed","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0a458a8d0d2564d3f517ab32"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:502f4282ac58b52ec4bc4fba","label":"test_kind_ambiguity_review_pack_uses_direct_bundle_reading","provenance_ref":"deterministic","semantic_key":"python:method:DistillationReformIngressReviewsTests.test_kind_ambiguity_review_pack_uses_direct_bundle_reading","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:97aedd2cde7bfc58422812f0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:51142545ff678bd69e1ef451","label":"test_external_candidate_registry_preserves_current_accounting","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPartLedgersHandoffTests.test_external_candidate_registry_preserves_current_accounting","source_digest":"f7feded53b14094ba80cbb6f5d5785c1760230625dc507dd2f478e6d66220b6b","source_record_ids":["aoa:aoa-techniques:artifact:19a81dcd26d390428c646806"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5c25b0e91faba427aa5b36a1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:51202b4308921b5e76145075","label":"test_questbook_package_does_not_move_source_surfaces","provenance_ref":"deterministic","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_questbook_package_does_not_move_source_surfaces","source_digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c5e54fae6cac3c83d9ff601c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:51202fa2e9884b409596fdf2","label":"test_landed_handoff_continuation_pilot_review_selects_media_ingest","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_handoff_continuation_pilot_review_selects_media_ingest","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c5e54fae6cac3c83d9ff601c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:51202fa2e9884b409596fdf2","label":"test_landed_handoff_continuation_pilot_review_selects_media_ingest","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_handoff_continuation_pilot_review_selects_media_ingest","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:226dd825a4e448aac01a00a2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:515d51bf85093f0ad3006246","label":"test_experience_governance_schemas_reject_enum_escapes","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceGovernanceContractTests.test_experience_governance_schemas_reject_enum_escapes","source_digest":"0cb47bbb0a52fca2c7db26063b7e5d46f951cce02d44ab55309009d5395ee551","source_record_ids":["aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:80d81dab24128cf165dccdfc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:51da789fc1ef71877956d07d","label":"test_final_tree_migration_ledger_closes_tree_program","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_final_tree_migration_ledger_closes_tree_program","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a349f83d350508839ea94b23"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:51e8b757dd8c39e3e5c59608","label":"test_checkpoint_stays_outside_direct_orq_lane","provenance_ref":"deterministic","semantic_key":"python:method:CheckpointMechanicsTopologyTestCase.test_checkpoint_stays_outside_direct_orq_lane","source_digest":"b19234680a11b5e9972a251fd34879ddad09aef27b953026b55a5c9311229b9b","source_record_ids":["aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:49edbfc355391468b84b3ae7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:52022d19a2abc032c10ef46a","label":"test_source_index_anchors_preserve_source_projection_split","provenance_ref":"deterministic","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_source_index_anchors_preserve_source_projection_split","source_digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f5234f63f8865fa79675ccd1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5314495b4b0591f90655463e","label":"test_landed_skill_discovery_pilot_review_selects_skill_support","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotCapabilityWaveTests.test_landed_skill_discovery_pilot_review_selects_skill_support","source_digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:299f9402c942a2483853d3b8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:531b604b227aa1d848371a1b","label":"test_validate_support_references_rejects_bundle_escape","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_support_references_rejects_bundle_escape","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:299f9402c942a2483853d3b8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:531b604b227aa1d848371a1b","label":"test_validate_support_references_rejects_bundle_escape","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_support_references_rejects_bundle_escape","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bc85edc6b47fd51fc6fa2774"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:538e599bf6839b4c741e463e","label":"test_landed_capability_registry_pilot_review_selects_capability_boundary","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotCapabilityWaveTests.test_landed_capability_registry_pilot_review_selects_capability_boundary","source_digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:96f78a5f9fe8a70fe5f7d6ca"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:53b0c4609d2237f94e368cfb","label":"test_recurrence_active_surfaces_are_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:RecurrenceMechanicsTopologyTestCase.test_recurrence_active_surfaces_are_discoverable","source_digest":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","source_record_ids":["aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c7369107a7e8866cf3c00268"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:53cb6cb79c107d0fbc157ee9","label":"test_intent_chain_direct_read_review_accepts_seventeenth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_intent_chain_direct_read_review_accepts_seventeenth_pilot","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3873,17 +3886,17 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:feb35902652a40434b40ad79"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:559695250dca73c18f84cc19","label":"repo_path","provenance_ref":"deterministic","semantic_key":"python:method:DecisionRecord.repo_path","source_digest":"59360ee4346d9a416d1a61714b3b8ef650074682247bb79b287330b2c0c97abc","source_record_ids":["aoa:aoa-techniques:artifact:5a1bbcf29ad3ebd1ce25d7e6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:10d3f14f88f11c4a7c5853a2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:567e397883a8dd23886b1a2f","label":"test_mechanics_readme_defines_owner_local_card_standard","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsPackageCardTests.test_mechanics_readme_defines_owner_local_card_standard","source_digest":"335c75375d66158e1bb3d4a262c74145642d66cd5c3493e61c2735aedcf5ea9e","source_record_ids":["aoa:aoa-techniques:artifact:7698d5ddfea36399ee4fab64"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:025652def028c9ecc9c9cb5c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:56a411d5fd372741e1f44f9c","label":"test_publish_live_receipts_appends_once_and_skips_duplicates","provenance_ref":"deterministic","semantic_key":"python:method:TechniquePublishLiveReceiptsTests.test_publish_live_receipts_appends_once_and_skips_duplicates","source_digest":"07dd997de496e385a243270aad1364a8a207a2eef515f8936b589a0eaae50ff0","source_record_ids":["aoa:aoa-techniques:artifact:10b851fc91ec1551b6ac7e03"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:19b71cbffd85fe02fdb76309"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5708e0e771f1e4859df2c531","label":"test_workflows_use_pinned_actions","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","source_digest":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:19b71cbffd85fe02fdb76309"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5708e0e771f1e4859df2c531","label":"test_workflows_use_pinned_actions","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_workflows_use_pinned_actions","source_digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0474b2a3b30ed2e755714ab5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:573601a9b07c46ccb91f574f","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:ReviewCompactionTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"1e7100ca7bdc0efef9d4b2c095c57ff7e94a9dd5d996598b89083a1089f023bb","source_record_ids":["aoa:aoa-techniques:artifact:e52c67e9b12aaf97098c94d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b28b269f02c81b09e966df88"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:575f256a8b8f5da426be8c5e","label":"test_live_dispatch_optional_field_must_match_schema","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_live_dispatch_optional_field_must_match_schema","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0c06579a66548f47599c3003"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:57a09076211ac1056f951772","label":"test_capsule_reader_surface_matches_generated_file_and_respects_ordering","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_capsule_reader_surface_matches_generated_file_and_respects_ordering","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:959e20750d356fbbb1b1a3a9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:57db9fd48c701499f67404fe","label":"test_media_ingest_direct_read_review_accepts_third_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_media_ingest_direct_read_review_accepts_third_pilot","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:bf24c2966333f87c298c2cf1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:58b99c1cd61492aa1cc8e74e","label":"test_validation_docs_name_all_lanes_and_owner_boundaries","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:36914d261e85dadb9e22193d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:591d2f418840883a8359796a","label":"test_agents_mesh_validators_pass","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_validators_pass","source_digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:959e20750d356fbbb1b1a3a9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:57db9fd48c701499f67404fe","label":"test_media_ingest_direct_read_review_accepts_third_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_media_ingest_direct_read_review_accepts_third_pilot","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:bf24c2966333f87c298c2cf1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:58b99c1cd61492aa1cc8e74e","label":"test_validation_docs_name_all_lanes_and_owner_boundaries","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_validation_docs_name_all_lanes_and_owner_boundaries","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:36914d261e85dadb9e22193d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:591d2f418840883a8359796a","label":"test_agents_mesh_validators_pass","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_validators_pass","source_digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:93b01ce31c9df5f196fd4700"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5929097b34602fdd5ba1636f","label":"test_pilot_bundles_live_under_instruction_capability_boundary_tree","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityBoundaryTreePilotTestCase.test_pilot_bundles_live_under_instruction_capability_boundary_tree","source_digest":"398982edc7108c1cd992909ccee30c2e5c77195a1b4de031a6675bcc67894052","source_record_ids":["aoa:aoa-techniques:artifact:3c885d152cd68ff4d23d5dc4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cde8cf9c3ce4db966c5e1914"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5a88f9bfc5350a0a0aa6d604","label":"test_kind_manifest_matches_builder_projection_and_order","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_kind_manifest_matches_builder_projection_and_order","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:97d04384458dc9793086e7d2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5ad93aef8d9ce09f496a01a4","label":"test_wrong_repo_value_fails","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_wrong_repo_value_fails","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:355c593a48c80706ebbf1673"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5af476f539a6600048d605f6","label":"test_telemetry_guardrail_status_language_is_consistent","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_telemetry_guardrail_status_language_is_consistent","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:355c593a48c80706ebbf1673"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5af476f539a6600048d605f6","label":"test_telemetry_guardrail_status_language_is_consistent","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_telemetry_guardrail_status_language_is_consistent","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b85ed2db71d97a622f3ebbef"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5af71b2ef152e5e57b724a5f","label":"test_moved_bundle_internal_links_remain_current","provenance_ref":"deterministic","semantic_key":"python:method:DiagnosisRepairTreePilotTestCase.test_moved_bundle_internal_links_remain_current","source_digest":"e25ed72a5ee04f79bc777eaa068f7741e2a4ef432b41d4218c66a1e9a54a504d","source_record_ids":["aoa:aoa-techniques:artifact:5c1073429c3a0b92540ff9b5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f96290156e1059ab28fb4ac8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5aff12bd9c426e4b5dbbf628","label":"test_no_tracked_python_cache_residue_under_script_surfaces","provenance_ref":"deterministic","semantic_key":"python:method:ScriptTopologyTests.test_no_tracked_python_cache_residue_under_script_surfaces","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dde5e34ecf1ed51c295660d1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5b88b78f9a065510984858d6","label":"test_evaluation_route_card_no_longer_names_moved_representatives","provenance_ref":"deterministic","semantic_key":"python:method:PublishedSummaryTreePilotTestCase.test_evaluation_route_card_no_longer_names_moved_representatives","source_digest":"fcd185b6b699a5d1d34b84f973590848ff943be9afcabc7753f29fa119dc3841","source_record_ids":["aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3892,12 +3905,12 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e66e801290fda46107cd9c71"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5ce20ef9b637f3928bb7dc40","label":"test_short_capsule_fallback_preserves_prefixes","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_short_capsule_fallback_preserves_prefixes","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9fb44b5e77968ab4ec66c646"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5d20ada47c2c71ef89fc7967","label":"test_cross_layer_registry_is_observation_evidence_not_decision_surface","provenance_ref":"deterministic","semantic_key":"python:method:RecurrenceManifestTopologyTestCase.test_cross_layer_registry_is_observation_evidence_not_decision_surface","source_digest":"b0ceefcf9aa6d63eb161a24a83839c8c6d9d52cb40d2bbb51778647f54a455ee","source_record_ids":["aoa:aoa-techniques:artifact:3bd0071d5d213b9d72daa7ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0fa224f41163366292c66796"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5d8922b6673853bc34d0a161","label":"test_experience_release_examples_match_schemas","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.test_experience_release_examples_match_schemas","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:47732b2f4773971ac0e5d644"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5dacd8b1af5b29d81f1a31f4","label":"test_active_decision_guidance_uses_lanes_not_command_runbooks","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f7b2f0519a3b50acdeb0af09"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5f292f04faaf540dcaf29716","label":"test_docs_readme_and_guides_link_to_reusable_lift_family","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_docs_readme_and_guides_link_to_reusable_lift_family","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:47732b2f4773971ac0e5d644"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5dacd8b1af5b29d81f1a31f4","label":"test_active_decision_guidance_uses_lanes_not_command_runbooks","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_active_decision_guidance_uses_lanes_not_command_runbooks","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f7b2f0519a3b50acdeb0af09"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:5f292f04faaf540dcaf29716","label":"test_docs_readme_and_guides_link_to_reusable_lift_family","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_docs_readme_and_guides_link_to_reusable_lift_family","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:daa6490b83800a8c9a4dbcad"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:60b38aaf714796d5e6d52734","label":"add_node","provenance_ref":"deterministic","semantic_key":"python:method:build_technique_intelligence_dag_payload.add_node","source_digest":"b53a18b318cef7035c85d7d521a2f072bb9832d79d0d3f4ef599692c61031d75","source_record_ids":["aoa:aoa-techniques:artifact:dc148dc3963ccdf28dc40c1d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:72d44ccd6f6e7b76c8c15a6f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:60bdc280a44c09ec59c95faf","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:EvaluationChainTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"4a09365d51a6b68831dfa2f0681603fd453af9ec9e2a2ff661870efed6e60a3f","source_record_ids":["aoa:aoa-techniques:artifact:82e028210399ae4428247f3c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7aec17dfc6fcfc9067c6abc8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6119538bf202c373952f85ce","label":"test_automation_governance_direct_read_split_review_rejects_bulk_shelf","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_automation_governance_direct_read_split_review_rejects_bulk_shelf","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e2bce5ada47f2cd1ba20c015"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:616a409407e55d474cb8c063","label":"test_pull_request_template_names_lanes_not_release_check_as_repo_validation","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","source_digest":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e2bce5ada47f2cd1ba20c015"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:616a409407e55d474cb8c063","label":"test_pull_request_template_names_lanes_not_release_check_as_repo_validation","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_pull_request_template_names_lanes_not_release_check_as_repo_validation","source_digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c1c8b8c27b65ba95dfb55c3b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:622bdcadafdd649ac19d94ef","label":"test_experience_release_schemas_reject_bad_datetime_formats","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.test_experience_release_schemas_reject_bad_datetime_formats","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:038496da87dd6b6246a7c07a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:62c798585a13c07126e50c1d","label":"test_antifragility_recovery_tree_pilot_migration_is_recorded","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_antifragility_recovery_tree_pilot_migration_is_recorded","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a540dfde768a21d50bcb4846"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:637e46be1dcce5807a61ecb3","label":"test_pilot_bundles_live_under_instruction_docs_boundary_tree","provenance_ref":"deterministic","semantic_key":"python:method:DocsBoundaryTreePilotTestCase.test_pilot_bundles_live_under_instruction_docs_boundary_tree","source_digest":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","source_record_ids":["aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3908,15 +3921,15 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:84eaea99e84311b5aafdeb4e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:66b29e8e1f5b81e3398900da","label":"test_kind_manifest_min_stays_router_safe","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_kind_manifest_min_stays_router_safe","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e9a227697199f03b78c1902c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:674b1c6ce3a7f4b0a08e5660","label":"add_edge","provenance_ref":"deterministic","semantic_key":"python:method:build_technique_intelligence_dag_payload.add_edge","source_digest":"b53a18b318cef7035c85d7d521a2f072bb9832d79d0d3f4ef599692c61031d75","source_record_ids":["aoa:aoa-techniques:artifact:dc148dc3963ccdf28dc40c1d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:93db9425a3dc390950fd3983"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:676c45892d8bc45b3270759a","label":"test_missing_activation_fails_with_validation_error","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_missing_activation_fails_with_validation_error","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:4c5a2c66800ae20799b6b7a4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:677da6771a1d44836ec15c63","label":"test_repo_local_kag_adapter_rejects_other_checkout","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:4c5a2c66800ae20799b6b7a4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:677da6771a1d44836ec15c63","label":"test_repo_local_kag_adapter_rejects_other_checkout","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_rejects_other_checkout","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:331334844e80bf7a0ab758d8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:679f879b3eb956b2f9410df2","label":"test_automation_readiness_direct_read_review_accepts_twenty_fifth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_automation_readiness_direct_read_review_accepts_twenty_fifth_pilot","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:04b2f988b5d3b0a5e4464603"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:67ed864335005006f7657d45","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:MediaIngestTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"20556c99171b8f45c5d3ee4850779cbb292530abcffad3eac92f07f139f00d83","source_record_ids":["aoa:aoa-techniques:artifact:ddfcab62cbcdce5b474f6b6c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:19832d91a162669d02212bf2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:697b2434309d79c7e173022a","label":"test_distillation_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPackageSurfacesTests.test_distillation_part_map_names_all_current_parts","source_digest":"7297a6af92ddc2a4bd5a53489e7c08f6cf479ae7ecccd6f89b365f9085b7efd7","source_record_ids":["aoa:aoa-techniques:artifact:ced7185b3e1ab4e5f1d322d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dcdadf3f1e31da284dc4ad85"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6a855237f5935eb10456ae75","label":"test_live_mechanics_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:DiagnosisRepairTreePilotTestCase.test_live_mechanics_links_point_to_current_paths","source_digest":"e25ed72a5ee04f79bc777eaa068f7741e2a4ef432b41d4218c66a1e9a54a504d","source_record_ids":["aoa:aoa-techniques:artifact:5c1073429c3a0b92540ff9b5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:40d530f8f2fc1ca4d953450b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6aa418864552ab57fcaf4bb3","label":"test_agon_candidate_gate_cards_are_bounded_and_link_clean","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPartLedgersHandoffTests.test_agon_candidate_gate_cards_are_bounded_and_link_clean","source_digest":"f7feded53b14094ba80cbb6f5d5785c1760230625dc507dd2f478e6d66220b6b","source_record_ids":["aoa:aoa-techniques:artifact:19a81dcd26d390428c646806"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ed963d125c5425dec06579e8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6af023af7245045092a91ac2","label":"test_docs_boundary_tree_pilot_migration_is_landed_after_direct_read","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_docs_boundary_tree_pilot_migration_is_landed_after_direct_read","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ed963d125c5425dec06579e8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6af023af7245045092a91ac2","label":"test_docs_boundary_tree_pilot_migration_is_landed_after_direct_read","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_docs_boundary_tree_pilot_migration_is_landed_after_direct_read","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:939cb36ae421916bc9159bef"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6b3b0359df3f8fd907eb3632","label":"test_active_agents_do_not_reference_deleted_or_missing_test_targets","provenance_ref":"deterministic","semantic_key":"python:method:DocsSurfaceGuardrailsTestCase.test_active_agents_do_not_reference_deleted_or_missing_test_targets","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:d4fd8ab8401a09c78157caf4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6bd0f1725ff70f34ba5a5dbb","label":"test_kind_overlay_csv_status_must_match_yaml_overlay","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_kind_overlay_csv_status_must_match_yaml_overlay","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d4fd8ab8401a09c78157caf4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6bd0f1725ff70f34ba5a5dbb","label":"test_kind_overlay_csv_status_must_match_yaml_overlay","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_kind_overlay_csv_status_must_match_yaml_overlay","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1bfd41f789cd0cd6c65931a5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6c4ca4892e3cc3aa8fa6ac23","label":"test_checkpoint_legacy_scaffold_marks_empty_raw_inventory","provenance_ref":"deterministic","semantic_key":"python:method:CheckpointMechanicsTopologyTestCase.test_checkpoint_legacy_scaffold_marks_empty_raw_inventory","source_digest":"b19234680a11b5e9972a251fd34879ddad09aef27b953026b55a5c9311229b9b","source_record_ids":["aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c4ff0051aa1c7bdc2108c4bd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6c9ed09fc23b4e03e2370a21","label":"assert_invalid","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.assert_invalid","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dbd5b58997d7f2bb18918158"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6d4ee038b06f0127c8a45ec5","label":"test_expected_downstream_feeds_exist","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_expected_downstream_feeds_exist","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3924,17 +3937,17 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:80e1885185145189258f1990"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6e5727d4b499309efef845b2","label":"test_tests_do_not_store_release_command_sequence","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_tests_do_not_store_release_command_sequence","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:91b44fc7a71170d9df6ea6dd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6eab7ab315ca79838619eaaa","label":"test_safe_cli_smoke_commands_stay_non_mutating","provenance_ref":"deterministic","semantic_key":"python:method:ScriptTopologyTests.test_safe_cli_smoke_commands_stay_non_mutating","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:08d4e074420567181938d09c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:6f2d74148c6ae83299cc330c","label":"test_registry_covers_current_corpus_as_attention_bounded_moves","provenance_ref":"deterministic","semantic_key":"python:method:TechniqueIntelligenceTests.test_registry_covers_current_corpus_as_attention_bounded_moves","source_digest":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","source_record_ids":["aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:32e27eaab99b95594511c6e4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:70086893daddb65c5e218fdf","label":"test_validate_support_references_accepts_local_bundle_paths","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_support_references_accepts_local_bundle_paths","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:32e27eaab99b95594511c6e4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:70086893daddb65c5e218fdf","label":"test_validate_support_references_accepts_local_bundle_paths","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_support_references_accepts_local_bundle_paths","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ef21d749cff4339a85163988"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:70a1246c801c31fe60773559","label":"assert_invalid","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceGovernanceContractTests.assert_invalid","source_digest":"0cb47bbb0a52fca2c7db26063b7e5d46f951cce02d44ab55309009d5395ee551","source_record_ids":["aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3bd6ab0fe792747f3bb9cff0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:70ae7f7ac237ddb3f573fdc9","label":"test_ready_work_graphs_direct_read_review_accepts_sixteenth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_ready_work_graphs_direct_read_review_accepts_sixteenth_pilot","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5145b1bc1a0d42c0f9761a17"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:710827cdce06bdde2b854901","label":"test_validator_package_init_is_reexport_adapter_only","provenance_ref":"deterministic","semantic_key":"python:method:ValidatorModuleTopologyTests.test_validator_package_init_is_reexport_adapter_only","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6df3ab894d5030772aa1c25f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7193da6a06bbd2d1545eb3e3","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:ReviewCompactionTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"1e7100ca7bdc0efef9d4b2c095c57ff7e94a9dd5d996598b89083a1089f023bb","source_record_ids":["aoa:aoa-techniques:artifact:e52c67e9b12aaf97098c94d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dc6b5d018bafb73b035e90cf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:729458e07c326c377416834f","label":"test_evidence_note_reader_generated_surface_matches_builder_and_stays_bounded","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_evidence_note_reader_generated_surface_matches_builder_and_stays_bounded","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b6140771cf4ec911e63b096e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:72a4aed53e2c564345bdbedf","label":"test_prompt_without_done_or_handoff_is_rejected","provenance_ref":"deterministic","semantic_key":"python:method:SparkLaneTestCase.test_prompt_without_done_or_handoff_is_rejected","source_digest":"218073a99eeccb5503fda3ac7ab3c30cffa4151432ad400956f4d7b5d0fba65d","source_record_ids":["aoa:aoa-techniques:artifact:2b31a3041fd1f1fcf0b72bc0"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:aaa0f738e2af98e76ca597fc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:72c3efff58337039f707e657","label":"test_landed_instruction_surface_pilot_review_selects_kag_source_lift","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_instruction_surface_pilot_review_selects_kag_source_lift","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:aaa0f738e2af98e76ca597fc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:72c3efff58337039f707e657","label":"test_landed_instruction_surface_pilot_review_selects_kag_source_lift","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_instruction_surface_pilot_review_selects_kag_source_lift","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:05ee8dda1c36138e7d1b548d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:739b883b5611cffd9731511a","label":"test_spark_lane_validator_passes","provenance_ref":"deterministic","semantic_key":"python:method:SparkLaneTestCase.test_spark_lane_validator_passes","source_digest":"218073a99eeccb5503fda3ac7ab3c30cffa4151432ad400956f4d7b5d0fba65d","source_record_ids":["aoa:aoa-techniques:artifact:2b31a3041fd1f1fcf0b72bc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b82d828c883ba7a025dfff8a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:748beccf3b01dfddd54ef8e2","label":"test_pilot_bundles_live_under_knowledge_lift_tree","provenance_ref":"deterministic","semantic_key":"python:method:KagSourceLiftTreePilotTestCase.test_pilot_bundles_live_under_knowledge_lift_tree","source_digest":"877d4ee775f5b77366cf88c7c1c82f36ae5297c01a715ae0449986182f8f96d9","source_record_ids":["aoa:aoa-techniques:artifact:50ff6e7647104f2158343fac"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:829aa8d675dcf6793f4ebb21"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:750a537cf84295983f0337d5","label":"test_shadow_review_docs_follow_bounded_contract","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_shadow_review_docs_follow_bounded_contract","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:829aa8d675dcf6793f4ebb21"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:750a537cf84295983f0337d5","label":"test_shadow_review_docs_follow_bounded_contract","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_shadow_review_docs_follow_bounded_contract","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f32f8a2330b7cd622ebdabc7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7553cb7e146522447b3a4f3d","label":"test_0005_kind_remap_landed_without_status_change","provenance_ref":"deterministic","semantic_key":"python:method:DistillationReformIngressReviewsTests.test_0005_kind_remap_landed_without_status_change","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fbc059c926919e0c3cf4c2e5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:755eeeeab2e427b63ee90de8","label":"test_experience_adoption_schemas_reject_guardrail_boolean_inversions","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceAdoptionContractTests.test_experience_adoption_schemas_reject_guardrail_boolean_inversions","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3584f0a7556790f7e2c097e5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:757804f02395f1598b664987","label":"test_scaffold_legacy_surfaces_preserve_bridge_contract","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsLegacyScaffoldTestCase.test_scaffold_legacy_surfaces_preserve_bridge_contract","source_digest":"8926368fb938cff615165f300f4a7377816cf537456e4d9c950ecd522094e117","source_record_ids":["aoa:aoa-techniques:artifact:8a27cc775a1c12f821a9ec82"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3943,28 +3956,28 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e424265fcba15a6072a4803a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7612970daf82332b7b365b25","label":"test_experience_adoption_schemas_reject_invalid_numeric_ranges","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceAdoptionContractTests.test_experience_adoption_schemas_reject_invalid_numeric_ranges","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:eaef674e55703afaefc1b40d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:76497046cc2e675e24b3c3be","label":"run_validator","provenance_ref":"deterministic","semantic_key":"python:method:SparkLaneTestCase.run_validator","source_digest":"218073a99eeccb5503fda3ac7ab3c30cffa4151432ad400956f4d7b5d0fba65d","source_record_ids":["aoa:aoa-techniques:artifact:2b31a3041fd1f1fcf0b72bc0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3fd18ecdb95ecbdbd79fb662"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7705eb93a07b857d239218d2","label":"test_technique_obligation_anchors_point_to_local_homes","provenance_ref":"deterministic","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_technique_obligation_anchors_point_to_local_homes","source_digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:710f3d5231e9032d60375fac"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:770c77bc160a7831b808825c","label":"test_kind_guide_and_handoff_pack_are_discoverable_from_root_docs_and_release_entrypoints","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_kind_guide_and_handoff_pack_are_discoverable_from_root_docs_and_release_entrypoints","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:710f3d5231e9032d60375fac"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:770c77bc160a7831b808825c","label":"test_kind_guide_and_handoff_pack_are_discoverable_from_root_docs_and_release_entrypoints","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_kind_guide_and_handoff_pack_are_discoverable_from_root_docs_and_release_entrypoints","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cb389aa681fa25ce36f272d0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:77a4e0aa157ac8872f533898","label":"test_root_routes_name_legacy_without_turning_it_into_canon","provenance_ref":"deterministic","semantic_key":"python:method:RootLegacyTopologyTestCase.test_root_routes_name_legacy_without_turning_it_into_canon","source_digest":"be548f162aee661b61751d8be2ebc7237a8ed73500f761d12103a66e64457ead","source_record_ids":["aoa:aoa-techniques:artifact:5eed110f16220e7ba98c2982"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:779a201cb08d104b499b8346"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:77ccfd3d82f8a57a7295e3bf","label":"test_recurrence_flat_files_moved_into_owning_parts","provenance_ref":"deterministic","semantic_key":"python:method:RecurrenceMechanicsTopologyTestCase.test_recurrence_flat_files_moved_into_owning_parts","source_digest":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","source_record_ids":["aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cd39de2e36cb1ace56f0bad8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:78c63381241a01a54eedbfd3","label":"test_distillation_topology_monolith_is_split_by_owner_surface","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_distillation_topology_monolith_is_split_by_owner_surface","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0f33b5923acd57e67bc0ffd9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:78eafde8a3067d09fc550803","label":"test_agent_workflows_core_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_agent_workflows_core_tree_pilot_migration_landed","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:78ef5e0ad2edaa530d13e6fc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:790ebf2a38b6181664fa5b8a","label":"test_generated_mesh_records_only_canonical_cards","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","source_digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:78ef5e0ad2edaa530d13e6fc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:790ebf2a38b6181664fa5b8a","label":"test_generated_mesh_records_only_canonical_cards","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_generated_mesh_records_only_canonical_cards","source_digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bb84041cf8413e60b0eca828"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7a0d7360196b461159b13df6","label":"test_audit_part_local_links_use_active_paths","provenance_ref":"deterministic","semantic_key":"python:method:AuditMechanicsTopologyTestCase.test_audit_part_local_links_use_active_paths","source_digest":"f28b18d87d2c375c2f3ff12c402682da43f9c9fc8595470723c7aa7f14837b6e","source_record_ids":["aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:20bd08e16024966dbf6f160c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7a33303918272064244c2b27","label":"test_kag_source_readers_are_discoverable_from_docs_root_changelog_kag_and_release_docs","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_kag_source_readers_are_discoverable_from_docs_root_changelog_kag_and_release_docs","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:80448a545f94f3c896fdec3d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7a4ae6367c01009bb32a46e4","label":"test_repository_semantic_docs_validate","provenance_ref":"deterministic","semantic_key":"python:method:ValidateSemanticAgentsTests.test_repository_semantic_docs_validate","source_digest":"6311888aa2c60efcd52e728336a7175582dbb67e30a7a6b4efe7a2ca538af4f9","source_record_ids":["aoa:aoa-techniques:artifact:03b76abc01704964e291b6af"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:807612cb39c79395754be5af"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7a8f85b624c37ec10ed58c57","label":"test_topology_ui_substrate_does_not_match_short_substrings","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_topology_ui_substrate_does_not_match_short_substrings","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:807612cb39c79395754be5af"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7a8f85b624c37ec10ed58c57","label":"test_topology_ui_substrate_does_not_match_short_substrings","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_topology_ui_substrate_does_not_match_short_substrings","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d9211164cdae7dc8748cc243"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7aa1406cf5db210afa6d5d29","label":"test_experience_governance_schemas_reject_wrong_types_for_every_field","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceGovernanceContractTests.test_experience_governance_schemas_reject_wrong_types_for_every_field","source_digest":"0cb47bbb0a52fca2c7db26063b7e5d46f951cce02d44ab55309009d5395ee551","source_record_ids":["aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f5c17a76d25785ed4dfc7044"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7ad7ee02a4f460be3a5380ca","label":"test_capability_registry_direct_read_review_accepts_eighth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotCapabilityWaveTests.test_capability_registry_direct_read_review_accepts_eighth_pilot","source_digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:eeb95e19c1f4cdb1dcf2e635"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7b6b2ae3250d1694ce78cba9","label":"test_questbook_legacy_scaffold_marks_empty_raw_inventory","provenance_ref":"deterministic","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_questbook_legacy_scaffold_marks_empty_raw_inventory","source_digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e3d5a725e2aae83e1d4b15c0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7b85119bdbb02806bb917e2e","label":"test_validate_sections_rejects_reordered_required_sections","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_rejects_reordered_required_sections","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ecfb4959b8cbc8942fa52499"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7bb100c6de9bfc4ea5c04f05","label":"test_parse_frontmatter_keeps_colon_scalars_as_strings","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_parse_frontmatter_keeps_colon_scalars_as_strings","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e3d5a725e2aae83e1d4b15c0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7b85119bdbb02806bb917e2e","label":"test_validate_sections_rejects_reordered_required_sections","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_rejects_reordered_required_sections","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ecfb4959b8cbc8942fa52499"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7bb100c6de9bfc4ea5c04f05","label":"test_parse_frontmatter_keeps_colon_scalars_as_strings","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_parse_frontmatter_keeps_colon_scalars_as_strings","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:96b76cc0f2215a2fa4c53208"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7bc99ef4a7301c9894dbb5ab","label":"test_recovery_trunk_has_route_card","provenance_ref":"deterministic","semantic_key":"python:method:DiagnosisRepairTreePilotTestCase.test_recovery_trunk_has_route_card","source_digest":"e25ed72a5ee04f79bc777eaa068f7741e2a4ef432b41d4218c66a1e9a54a504d","source_record_ids":["aoa:aoa-techniques:artifact:5c1073429c3a0b92540ff9b5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:749c44b9321f39a9b840faa3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7c882ef4097ac72d4d00aa68","label":"test_root_legacy_inventory_is_indexed","provenance_ref":"deterministic","semantic_key":"python:method:RootLegacyTopologyTestCase.test_root_legacy_inventory_is_indexed","source_digest":"be548f162aee661b61751d8be2ebc7237a8ed73500f761d12103a66e64457ead","source_record_ids":["aoa:aoa-techniques:artifact:5eed110f16220e7ba98c2982"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d94a30a98b76c5493a445c58"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7c8aa2d53e71561662dd4515","label":"test_capsule_min_payload_stays_exact_projection_of_full_payload","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_capsule_min_payload_stays_exact_projection_of_full_payload","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fc6b0e73856517a1f8b8f298"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7ce7f5be091a9f85a6f37de1","label":"test_tree_contract_is_not_a_full_migration_ledger","provenance_ref":"deterministic","semantic_key":"python:method:DocsSurfaceGuardrailsTestCase.test_tree_contract_is_not_a_full_migration_ledger","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f89eaa0b28d3acd655204d7c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7d434eda2d66dab3ccd131a8","label":"setUpClass","provenance_ref":"deterministic","semantic_key":"python:method:TechniqueIntelligenceTests.setUpClass","source_digest":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","source_record_ids":["aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a33e98da43cdc72ea20ef8bd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7d56a0281b82c01f901b608e","label":"test_section_reader_generated_surface_matches_builder_and_preserves_scope_order","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_section_reader_generated_surface_matches_builder_and_preserves_scope_order","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:35cca3db16c742438bb51079"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7d7f0fadce338932677efea6","label":"test_technique_atom_contract_is_discoverable_and_template_backed","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_technique_atom_contract_is_discoverable_and_template_backed","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:35cca3db16c742438bb51079"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7d7f0fadce338932677efea6","label":"test_technique_atom_contract_is_discoverable_and_template_backed","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_technique_atom_contract_is_discoverable_and_template_backed","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:414a46d9d1567b237d836b22"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7e92d7f1ff72dfafcbe24048","label":"test_validate_repo_is_thin_compatibility_adapter","provenance_ref":"deterministic","semantic_key":"python:method:ValidatorModuleTopologyTests.test_validate_repo_is_thin_compatibility_adapter","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e72a7361609a8fdfbb49cd3c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7eb3a037fd348fbc61bf4ceb","label":"test_experience_flat_files_moved_into_owning_parts","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceMechanicsTopologyTestCase.test_experience_flat_files_moved_into_owning_parts","source_digest":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","source_record_ids":["aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2ce8c5ad5c6940635d2e88eb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:7f6a7d40536b8b79d424d48b","label":"test_promotion_boundary_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_promotion_boundary_tree_pilot_migration_landed","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -3989,18 +4002,19 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:6d4c8abfff1fded3f3968586"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:86e0b2513da1fa27ec7f4485","label":"test_capability_boundary_direct_read_review_accepts_ninth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotCapabilityWaveTests.test_capability_boundary_direct_read_review_accepts_ninth_pilot","source_digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4362e0f4ac2eeddb13dc1e04"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:86fc3778bd19d0ebeb2831a3","label":"flush_current","provenance_ref":"deterministic","semantic_key":"python:method:split_markdown_sections.flush_current","source_digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","source_record_ids":["aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f5cd0263a69ec28a563bdfdf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:87422a0978313e30aa242a74","label":"test_neighbor_shelves_were_not_moved_with_the_pilot","provenance_ref":"deterministic","semantic_key":"python:method:KagSourceLiftTreePilotTestCase.test_neighbor_shelves_were_not_moved_with_the_pilot","source_digest":"877d4ee775f5b77366cf88c7c1c82f36ae5297c01a715ae0449986182f8f96d9","source_record_ids":["aoa:aoa-techniques:artifact:50ff6e7647104f2158343fac"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:00bc5a3d6e145d9ad841c821"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:87bd14b5fd76b202ef411695","label":"test_validate_risks_markdown_accepts_fixed_subsection_order","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_risks_markdown_accepts_fixed_subsection_order","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:00bc5a3d6e145d9ad841c821"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:87bd14b5fd76b202ef411695","label":"test_validate_risks_markdown_accepts_fixed_subsection_order","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_risks_markdown_accepts_fixed_subsection_order","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2f39e292357fab572157212e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:88cf73165ab9823673cb123f","label":"test_growth_cycle_flat_files_moved_into_owning_parts","provenance_ref":"deterministic","semantic_key":"python:method:GrowthCycleMechanicsTopologyTestCase.test_growth_cycle_flat_files_moved_into_owning_parts","source_digest":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","source_record_ids":["aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d80a10af14f6b093cc4892d2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8908a0386bdf3439790f1e28","label":"test_release_support_reference_paths_point_to_part_local_homes","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseSupportMechanicsTopologyTestCase.test_release_support_reference_paths_point_to_part_local_homes","source_digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","source_record_ids":["aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:53528eef1241b207ac20e7d9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8915e58ae5a1e993758560c4","label":"test_markdown_nonowners_do_not_store_repo_command_literals","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_repo_command_literals","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:450de65001e6c671c54c5a06"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8a68b7e96b3aeb268094eba5","label":"test_validator_reports_missing_file","provenance_ref":"deterministic","semantic_key":"python:method:NestedAgentsDocsTests.test_validator_reports_missing_file","source_digest":"5ee32f86c3257b326899f3050bf53f8522dae8b94b895673bf5c542c48b06aed","source_record_ids":["aoa:aoa-techniques:artifact:d990104fd42a98fd27b96867"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:6319a8368c843c2bd5f47f2f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8a9e69ebb9c6e88b0d740a15","label":"test_landed_docs_boundary_pilot_review_selects_capability_registry","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_docs_boundary_pilot_review_selects_capability_registry","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:6319a8368c843c2bd5f47f2f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8a9e69ebb9c6e88b0d740a15","label":"test_landed_docs_boundary_pilot_review_selects_capability_registry","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_docs_boundary_pilot_review_selects_capability_registry","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cff5ae48fdd366ac3da41eca"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8b0bd5f69c9293aef7acfb46","label":"test_pack_profiles_preserve_stop_lines_and_fixture_refs","provenance_ref":"deterministic","semantic_key":"python:method:TechniqueIntelligenceTests.test_pack_profiles_preserve_stop_lines_and_fixture_refs","source_digest":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","source_record_ids":["aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9c0e4d5832646dff69230769"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8b43d65669de5755b8c6e8b6","label":"test_canonical_readiness_notes_do_not_use_windows_absolute_paths","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoPublicHygieneTests.test_canonical_readiness_notes_do_not_use_windows_absolute_paths","source_digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","source_record_ids":["aoa:aoa-techniques:artifact:20edd23620da977fb144b11f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9e75907c121917e65d53c955"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8b50923a7ee3dd1546b6bc98","label":"test_antifragility_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:AntifragilityMechanicsTopologyTestCase.test_antifragility_part_map_names_all_current_parts","source_digest":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","source_record_ids":["aoa:aoa-techniques:artifact:5b00df740809b23874e59462"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5f9c0daa69c690980479d1d5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8b7d411629cdb72e9c5e5c72","label":"test_owner_boundary_anchors_point_to_bundle_local_homes","provenance_ref":"deterministic","semantic_key":"python:method:BoundaryBridgeMechanicsTopologyTestCase.test_owner_boundary_anchors_point_to_bundle_local_homes","source_digest":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","source_record_ids":["aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bffe5a8574997fe9746991e9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8c491360c43472d9ec9900d1","label":"test_root_incoming_directory_is_retired","provenance_ref":"deterministic","semantic_key":"python:method:IncomingTopologyTestCase.test_root_incoming_directory_is_retired","source_digest":"6ef1879023abc7a411e7fc2ea99516b2569c23eb3799d4a34bf7f81ec6a6afa4","source_record_ids":["aoa:aoa-techniques:artifact:17887a255a778da6f8fe0313"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7b2bb384d198fe9f85a576fe"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8c5aa7367ff191a6f93ff367","label":"test_root_legacy_scaffold_files_exist","provenance_ref":"deterministic","semantic_key":"python:method:RootLegacyTopologyTestCase.test_root_legacy_scaffold_files_exist","source_digest":"be548f162aee661b61751d8be2ebc7237a8ed73500f761d12103a66e64457ead","source_record_ids":["aoa:aoa-techniques:artifact:5eed110f16220e7ba98c2982"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f7fb2520abe1b63419d319eb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8ca6885a78fa00742b83c7c3","label":"run_repo_script","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.run_repo_script","source_digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f7fb2520abe1b63419d319eb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8ca6885a78fa00742b83c7c3","label":"run_repo_script","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.run_repo_script","source_digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:39c1a93019881dbd9ccf90d1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8d81dafd96bbc859a6ba3b7d","label":"test_pilot_bundles_live_under_proof_skill_support_tree","provenance_ref":"deterministic","semantic_key":"python:method:SkillSupportTreePilotTestCase.test_pilot_bundles_live_under_proof_skill_support_tree","source_digest":"be31fda9de0d38712184d67229f7e4ebfa04aff3db72de81710f35db405247e1","source_record_ids":["aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c90d46f7e2bcdcb1ca92b103"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8e5626f43c16ed8182b59a68","label":"test_root_entrypoints_route_to_roadmap","provenance_ref":"deterministic","semantic_key":"python:method:CurrentDirectionRoutesTestCase.test_root_entrypoints_route_to_roadmap","source_digest":"96d942021322b174f8afd2a30e359ef662363ad2c5716c1dae7f1022e004500c","source_record_ids":["aoa:aoa-techniques:artifact:098f12afb4fd11c72d66bfee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:025493017cee9e08402cdabf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:8f59b3c63e440ccb964f5594","label":"test_external_candidate_ledger_marks_missing_seed_sources","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPartLedgersHandoffTests.test_external_candidate_ledger_marks_missing_seed_sources","source_digest":"f7feded53b14094ba80cbb6f5d5785c1760230625dc507dd2f478e6d66220b6b","source_record_ids":["aoa:aoa-techniques:artifact:19a81dcd26d390428c646806"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4009,37 +4023,38 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e9bb129c132d4de088cc0594"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:90e9df4e447cd6510ee17f7e","label":"test_cross_layer_observation_input_pairs_readme_and_registry","provenance_ref":"deterministic","semantic_key":"python:method:RecurrenceManifestTopologyTestCase.test_cross_layer_observation_input_pairs_readme_and_registry","source_digest":"b0ceefcf9aa6d63eb161a24a83839c8c6d9d52cb40d2bbb51778647f54a455ee","source_record_ids":["aoa:aoa-techniques:artifact:3bd0071d5d213b9d72daa7ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:246f477acd51b139465c5e15"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:90ec6aa092bb96569a162b3e","label":"test_technique_to_skill_handoff_routes_to_packet_without_skill_acceptance","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_technique_to_skill_handoff_routes_to_packet_without_skill_acceptance","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:51107586361774335949e481"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:92793a352d8d723657f56891","label":"test_boundary_bridge_stays_outside_direct_orq_lane","provenance_ref":"deterministic","semantic_key":"python:method:BoundaryBridgeMechanicsTopologyTestCase.test_boundary_bridge_stays_outside_direct_orq_lane","source_digest":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","source_record_ids":["aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:90c3c23b255714e054da83f3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:936867b687ef06d490618172","label":"test_validate_sections_rejects_optional_template_section_out_of_order","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_rejects_optional_template_section_out_of_order","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:90c3c23b255714e054da83f3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:936867b687ef06d490618172","label":"test_validate_sections_rejects_optional_template_section_out_of_order","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_rejects_optional_template_section_out_of_order","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8fed6903e3c035f3f73c7172"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9396ad9516b16d089fd21b3f","label":"test_inventory_covers_every_validator_module_and_no_orphans","provenance_ref":"deterministic","semantic_key":"python:method:ValidatorModuleTopologyTests.test_inventory_covers_every_validator_module_and_no_orphans","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7bf70dfaba18e15f4b51a246"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9473e8178e12399147360c05","label":"_part_home_for_test","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests._part_home_for_test","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d29879db1aaf94d91e7b6f4c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:939e9a76ab50c7bbd9b6cecb","label":"test_markdown_nonowners_do_not_store_command_blocks","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_markdown_nonowners_do_not_store_command_blocks","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7bf70dfaba18e15f4b51a246"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9473e8178e12399147360c05","label":"_part_home_for_test","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests._part_home_for_test","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e521a4e9d1b7488baf08aedf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:947a3468127def71a0358ba6","label":"test_shadow_patterns_generated_surface_matches_builder_and_stays_canonical_only","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_shadow_patterns_generated_surface_matches_builder_and_stays_canonical_only","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:31e397dd281f853a4993a5bc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:94f865d7453e9ffb1915768d","label":"test_inventory_covers_every_source_test_file","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_inventory_covers_every_source_test_file","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0de7b80327f8565980debbf7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:95a8609383605ab026e7b487","label":"test_audit_current_posture_survived_split","provenance_ref":"deterministic","semantic_key":"python:method:AuditMechanicsTopologyTestCase.test_audit_current_posture_survived_split","source_digest":"f28b18d87d2c375c2f3ff12c402682da43f9c9fc8595470723c7aa7f14837b6e","source_record_ids":["aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a797a93dbf7b2ba6a0dc480a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:95c0b28578621c0e3dcf1876","label":"test_recurrence_stays_outside_direct_orq_lane","provenance_ref":"deterministic","semantic_key":"python:method:RecurrenceMechanicsTopologyTestCase.test_recurrence_stays_outside_direct_orq_lane","source_digest":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","source_record_ids":["aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:e332a4d1fac1e873e9cdee56"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:96080248ebeffacbc76f7365","label":"test_review_compaction_pilot_migration_is_landed_after_direct_read","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_review_compaction_pilot_migration_is_landed_after_direct_read","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:e332a4d1fac1e873e9cdee56"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:96080248ebeffacbc76f7365","label":"test_review_compaction_pilot_migration_is_landed_after_direct_read","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_review_compaction_pilot_migration_is_landed_after_direct_read","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:56830cda4f7d44f90dfb94ad"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:96498181dc64cfdd5235159f","label":"test_main_fails_when_second_pass_does_not_stabilize","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseCheckStabilizerTests.test_main_fails_when_second_pass_does_not_stabilize","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a08aefc55b0c50d2e40f327f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:968d5cbd49f89f7faa0040ab","label":"test_tool_gateway_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_tool_gateway_tree_pilot_migration_landed","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a867e38e4ebb2aaeb4b7abcc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:96c17e44a8bf11e54dfbfed6","label":"test_shadow_working_sets_match_linked_shadow_reviews","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_shadow_working_sets_match_linked_shadow_reviews","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:30829991de409b0a5a85bc2f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:96cc1ef3b552e30bf973c377","label":"test_method_growth_flat_files_moved_into_owning_parts","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_method_growth_flat_files_moved_into_owning_parts","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:64888f9d1df3895119de5c72"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:96f0d3f91627ded7a3537c53","label":"test_kag_source_lift_family_has_second_context_and_readiness_notes","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_kag_source_lift_family_has_second_context_and_readiness_notes","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:64888f9d1df3895119de5c72"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:96f0d3f91627ded7a3537c53","label":"test_kag_source_lift_family_has_second_context_and_readiness_notes","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_kag_source_lift_family_has_second_context_and_readiness_notes","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:352cd3a9eca0fda979e37adb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:976c07976b9a576e572b23c5","label":"home_from_part_local_script","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.home_from_part_local_script","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7c48e1a5d511ff0180eb7eb7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:97a5c5a2cc5dbb9c0d69a051","label":"test_missing_required_snippet_fails","provenance_ref":"deterministic","semantic_key":"python:method:ValidateSemanticAgentsTests.test_missing_required_snippet_fails","source_digest":"6311888aa2c60efcd52e728336a7175582dbb67e30a7a6b4efe7a2ca538af4f9","source_record_ids":["aoa:aoa-techniques:artifact:03b76abc01704964e291b6af"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6d0cbc4a5dde9bf81b05ded4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:97a6e1cd81f1cb992df26afd","label":"test_generated_index_contract_names_expected_outputs","provenance_ref":"deterministic","semantic_key":"python:method:DecisionIndexTests.test_generated_index_contract_names_expected_outputs","source_digest":"3e4860d66a8089f02520e200b18e22b7798ee6dbc31d20eecd3ccc193101246d","source_record_ids":["aoa:aoa-techniques:artifact:b90af86566bbb19195eefe41"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9e3206914fb5f64719490e35"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:98505edfb88816f64cd4ba35","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:DiagnosisRepairTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"e25ed72a5ee04f79bc777eaa068f7741e2a4ef432b41d4218c66a1e9a54a504d","source_record_ids":["aoa:aoa-techniques:artifact:5c1073429c3a0b92540ff9b5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7ee845624ea09f7c6607e4f0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:98d417ef057e3d0ee573b5a2","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:PublishedSummaryTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"fcd185b6b699a5d1d34b84f973590848ff943be9afcabc7753f29fa119dc3841","source_record_ids":["aoa:aoa-techniques:artifact:c860763713cbacdeaa06c8e7"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cf8dfa34f7598ca7e02f6601"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:993fe7c83965b4ed4f5057f6","label":"test_owner_truth_closeout_direct_read_review_accepts_twenty_fourth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_owner_truth_closeout_direct_read_review_accepts_twenty_fourth_pilot","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:2c0fcf015cc23294a99744c2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9a4c88294c8a5de103443bbf","label":"test_canonical_bundles_have_adverse_effects_reviews_and_promoted_bundles_do_not","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_canonical_bundles_have_adverse_effects_reviews_and_promoted_bundles_do_not","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:2c0fcf015cc23294a99744c2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9a4c88294c8a5de103443bbf","label":"test_canonical_bundles_have_adverse_effects_reviews_and_promoted_bundles_do_not","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_canonical_bundles_have_adverse_effects_reviews_and_promoted_bundles_do_not","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7d69bbdc332f087103030515"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9afb1c9d5026524273038f70","label":"test_antifragility_recovery_direct_read_review_accepts_fifteenth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_antifragility_recovery_direct_read_review_accepts_fifteenth_pilot","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3ee0e57942370dec8497d82a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9b3539afab96891ba132b1dc","label":"test_mechanics_roadmaps_are_not_silently_ignored","provenance_ref":"deterministic","semantic_key":"python:method:GrowthCycleMechanicsTopologyTestCase.test_mechanics_roadmaps_are_not_silently_ignored","source_digest":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","source_record_ids":["aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:133c72e999a616991d8b3833"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9bc22ab987815bef0d0a3e84","label":"test_skill_support_direct_read_migration_review_accepts_eleventh_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotCapabilityWaveTests.test_skill_support_direct_read_migration_review_accepts_eleventh_pilot","source_digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fa613864aff38550bbe49d29"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9bfb20436d418bc997efcf68","label":"test_questbook_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_questbook_part_map_names_all_current_parts","source_digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:10f993ebf82c0be329e67fd7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9cc6bffc15b67d34796796fd","label":"test_audit_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:AuditMechanicsTopologyTestCase.test_audit_part_map_names_all_current_parts","source_digest":"f28b18d87d2c375c2f3ff12c402682da43f9c9fc8595470723c7aa7f14837b6e","source_record_ids":["aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a72493dd263424443c81591f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9f064a03f199e47e5cf19bc0","label":"test_experience_active_surfaces_are_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceMechanicsTopologyTestCase.test_experience_active_surfaces_are_discoverable","source_digest":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","source_record_ids":["aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8cd66429c0ef9b43ee44ec13"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9f38279c4216e608d7237412","label":"test_repo_local_kag_adapter_resolves_sibling_builder","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:099b8cbc765c8ee1d01b8fb5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9f5a5ee6420ec496700bf755","label":"test_generated_lane_fails_when_projection_snapshot_changes","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8cd66429c0ef9b43ee44ec13"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9f38279c4216e608d7237412","label":"test_repo_local_kag_adapter_resolves_sibling_builder","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_resolves_sibling_builder","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:099b8cbc765c8ee1d01b8fb5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9f5a5ee6420ec496700bf755","label":"test_generated_lane_fails_when_projection_snapshot_changes","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_generated_lane_fails_when_projection_snapshot_changes","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c20d66de904a4c631d7686a5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9fb7657e83da2602efaea423","label":"test_release_support_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseSupportMechanicsTopologyTestCase.test_release_support_part_map_names_all_current_parts","source_digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","source_record_ids":["aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7433a8b3b16f67d6efa089d3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9fec0d2b1837f3852a59cc27","label":"test_landed_runtime_truth_lifecycle_pilot_review_selects_owner_truth_closeout","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_landed_runtime_truth_lifecycle_pilot_review_selects_owner_truth_closeout","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:162bc69cd15fc1da2bf81f67"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9ff499703c1538f829d29df9","label":"test_external_evidence_surfaces_are_discoverable_and_operator_complete","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_external_evidence_surfaces_are_discoverable_and_operator_complete","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:162bc69cd15fc1da2bf81f67"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9ff499703c1538f829d29df9","label":"test_external_evidence_surfaces_are_discoverable_and_operator_complete","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_external_evidence_surfaces_are_discoverable_and_operator_complete","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:af95cbca86f153ec3d9b6c23"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:9ff4fede5c33c41ab1f5e301","label":"test_technique_reform_one_owner_scripts_live_under_ingress_part","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPackageSurfacesTests.test_technique_reform_one_owner_scripts_live_under_ingress_part","source_digest":"7297a6af92ddc2a4bd5a53489e7c08f6cf479ae7ecccd6f89b365f9085b7efd7","source_record_ids":["aoa:aoa-techniques:artifact:ced7185b3e1ab4e5f1d322d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9d0b88762960bd5a8aa9ea7e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a03aedda2f8276901d8145f6","label":"test_decision_routing_direct_read_review_accepts_twentieth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_decision_routing_direct_read_review_accepts_twentieth_pilot","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:613a4eb73245da473d7a92a2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a06e0111f247f5e9f6bd3f70","label":"write_valid_surface","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.write_valid_surface","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4049,29 +4064,29 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:d2ecb99af4ea93d034e0457d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a1591539b7ca32be5d4c6a61","label":"test_repo_doc_surface_manifest_is_router_safe","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_repo_doc_surface_manifest_is_router_safe","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:70147bb86e64a404e39cbfe3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a25e70f0948adcf04c4c9570","label":"test_landed_owner_truth_closeout_pilot_review_selects_automation_governance","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_landed_owner_truth_closeout_pilot_review_selects_automation_governance","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a56ed4bbafd04a04c41dc79b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a26156a51a8cc4cb16fa82cc","label":"test_promotion_readiness_incubation_stays_public_safe","provenance_ref":"deterministic","semantic_key":"python:method:GrowthCycleMechanicsTopologyTestCase.test_promotion_readiness_incubation_stays_public_safe","source_digest":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","source_record_ids":["aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c2cb5bc05eb37804648a0cc7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a26d27489794c427ef17ea04","label":"test_decisions_district_has_local_route_and_template","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_decisions_district_has_local_route_and_template","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c2cb5bc05eb37804648a0cc7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a26d27489794c427ef17ea04","label":"test_decisions_district_has_local_route_and_template","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_decisions_district_has_local_route_and_template","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:441595145643aa6c1be21e55"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a2bae6379f79e942c82418b6","label":"test_legacy_raw_keeps_historical_paths_as_receipt_evidence","provenance_ref":"deterministic","semantic_key":"python:method:SkillDiscoveryTreePilotTestCase.test_legacy_raw_keeps_historical_paths_as_receipt_evidence","source_digest":"4d5a458554372200a14f047aa67f8eee828aa07003dc0d355edfef530b101c58","source_record_ids":["aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a0a79b4fafce0e0ccbadffac"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a2c5482fd28742762d790238","label":"test_landed_agent_workflows_core_review_selects_donor_harvest","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_landed_agent_workflows_core_review_selects_donor_harvest","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cc41205605a748d2255c1f44"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a34e03420af8f952aa6ac019","label":"test_landed_evaluation_chain_pilot_review_selects_published_summary","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotCapabilityWaveTests.test_landed_evaluation_chain_pilot_review_selects_published_summary","source_digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:97a32dda789224e1601c2f3c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a437181ef6ffae57b54cf1b1","label":"test_release_check_sequence_is_loaded_from_validation_lanes","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:97a32dda789224e1601c2f3c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a437181ef6ffae57b54cf1b1","label":"test_release_check_sequence_is_loaded_from_validation_lanes","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_release_check_sequence_is_loaded_from_validation_lanes","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2fc92caaf3a3484af4ad7443"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a48efeb4b2254910ea574770","label":"test_release_lane_commands_resolve_release_lane_from_loader","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseCheckStabilizerTests.test_release_lane_commands_resolve_release_lane_from_loader","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0d1c58d0a8183c35f7015267"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a4a082b9f95c8fc26a75f8a1","label":"test_thematic_protocol_names_owner_homes_and_generated_reader_limits","provenance_ref":"deterministic","semantic_key":"python:method:DocsSurfaceGuardrailsTestCase.test_thematic_protocol_names_owner_homes_and_generated_reader_limits","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bf09c24581c05c4eaa4a8fde"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a4e959f68aecb260dae993bd","label":"test_boundary_bridge_active_surfaces_are_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:BoundaryBridgeMechanicsTopologyTestCase.test_boundary_bridge_active_surfaces_are_discoverable","source_digest":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","source_record_ids":["aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e3dce0906df4eef5a20079cf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a4ff23a3511d3a1f6d0cad18","label":"test_landed_published_summary_review_selects_history_artifacts","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_landed_published_summary_review_selects_history_artifacts","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:69c81b9fc2841ba605f5205f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a676b36d309c03190070a3d9","label":"test_distillation_active_surfaces_are_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPackageSurfacesTests.test_distillation_active_surfaces_are_discoverable","source_digest":"7297a6af92ddc2a4bd5a53489e7c08f6cf479ae7ecccd6f89b365f9085b7efd7","source_record_ids":["aoa:aoa-techniques:artifact:ced7185b3e1ab4e5f1d322d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4db525c14abe3ba5df1d438e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a67b67c596a760283c162b0c","label":"test_registry_schema_accepts_generated_payload","provenance_ref":"deterministic","semantic_key":"python:method:TechniqueIntelligenceTests.test_registry_schema_accepts_generated_payload","source_digest":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","source_record_ids":["aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:d15840f361b0d881c78722da"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a6b967dc95e890a61bd4cb43","label":"test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:d15840f361b0d881c78722da"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a6b967dc95e890a61bd4cb43","label":"test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9830db34abd1e3a62f365331"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a6bc4d567bb41c07830bc67d","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:InstructionSurfaceTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"dc6d27c98d482ef0bfbd13f2060b5ddcdf9589c9ea162a69bc501aa422351d1a","source_record_ids":["aoa:aoa-techniques:artifact:30beb9906bb62b4db5c4db13"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6eb82ee089316e3f58a4b5d6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a73abb46cbd67f659002ffa4","label":"test_generated_readers_have_named_districts","provenance_ref":"deterministic","semantic_key":"python:method:DocsSurfaceGuardrailsTestCase.test_generated_readers_have_named_districts","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f058dadd2321eb869e0961f2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a83ba709488b00cccf6ef05d","label":"test_donor_harvest_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_donor_harvest_tree_pilot_migration_landed","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:bfd529eb729a2b07d3da0e1e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a85a2060e494f8008411e087","label":"test_proof_claim_anchors_do_not_issue_proof","provenance_ref":"deterministic","semantic_key":"python:method:BoundaryBridgeMechanicsTopologyTestCase.test_proof_claim_anchors_do_not_issue_proof","source_digest":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","source_record_ids":["aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:4de09f5492279c61765c1c74"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a8e587f27d20f90a16e4124a","label":"test_ci_gate_executes_lane_sequences_from_loader","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:4de09f5492279c61765c1c74"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a8e587f27d20f90a16e4124a","label":"test_ci_gate_executes_lane_sequences_from_loader","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_ci_gate_executes_lane_sequences_from_loader","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:163398eca283956b5478bdb8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a92274feef5cadfb56cc72ef","label":"test_release_support_stays_outside_direct_orq_lane","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseSupportMechanicsTopologyTestCase.test_release_support_stays_outside_direct_orq_lane","source_digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","source_record_ids":["aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4044bedf59ea388d41e24c1a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:a9b06ae108648de7c30d23b1","label":"test_recurrence_manifests_live_under_observation_producer_part","provenance_ref":"deterministic","semantic_key":"python:method:RecurrenceManifestTopologyTestCase.test_recurrence_manifests_live_under_observation_producer_part","source_digest":"b0ceefcf9aa6d63eb161a24a83839c8c6d9d52cb40d2bbb51778647f54a455ee","source_record_ids":["aoa:aoa-techniques:artifact:3bd0071d5d213b9d72daa7ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:34f9fadd2b32dbac6a5bee15"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:aa8871f87be13fdbb81499c7","label":"count_by","provenance_ref":"deterministic","semantic_key":"python:method:build_index.count_by","source_digest":"02bf98ad93ed0ce929c1db22d2abf817d897e6cc1339850d0612f6c533599a36","source_record_ids":["aoa:aoa-techniques:artifact:6bf6b62a56d7affb222fb3fd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:339cac8274524918781c0f5b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:aafa6ef087e18f733202b92c","label":"test_review_evidence_direct_read_review_accepts_twenty_second_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_review_evidence_direct_read_review_accepts_twenty_second_pilot","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:eb8b7fbc7c5e368bf6717aea"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ab692c4f1a853ca0334b932e","label":"test_repo_local_kag_adapter_accepts_pinned_checkout","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:357329e8dd5f0b0ca30b5066"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:abbea4e457ebaa5812b22663","label":"test_repo_validation_is_growth_safe_and_not_release_freeze","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","source_digest":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:eb8b7fbc7c5e368bf6717aea"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ab692c4f1a853ca0334b932e","label":"test_repo_local_kag_adapter_accepts_pinned_checkout","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_repo_local_kag_adapter_accepts_pinned_checkout","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:357329e8dd5f0b0ca30b5066"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:abbea4e457ebaa5812b22663","label":"test_repo_validation_is_growth_safe_and_not_release_freeze","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.test_repo_validation_is_growth_safe_and_not_release_freeze","source_digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cba23315f5594987eea149a3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:abe3b761e66d0e4fd43597e9","label":"test_landed_ready_work_graphs_review_selects_intent_chain","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_landed_ready_work_graphs_review_selects_intent_chain","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a82469520455a2609b8cdd09"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ac8df0188be392b0b871ecd5","label":"test_pilot_bundles_live_under_instruction_tree","provenance_ref":"deterministic","semantic_key":"python:method:InstructionSurfaceTreePilotTestCase.test_pilot_bundles_live_under_instruction_tree","source_digest":"dc6d27c98d482ef0bfbd13f2060b5ddcdf9589c9ea162a69bc501aa422351d1a","source_record_ids":["aoa:aoa-techniques:artifact:30beb9906bb62b4db5c4db13"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9f14902869499b963787b9cd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ad4329500875b0a56bd5f0d4","label":"test_live_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityRegistryTreePilotTestCase.test_live_links_point_to_current_paths","source_digest":"88ffd010903d52bf422142833118be0caeb546eee3edbb0e20f01da331b09bcb","source_record_ids":["aoa:aoa-techniques:artifact:958b553e812d7a61f5670eba"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4084,15 +4099,15 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:853ae84ddbc6e03bf272d992"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:afe49489b8cd13b4bc9f74f7","label":"test_no_live_debt_markers_remain_in_current_intake_or_closed_archive","provenance_ref":"deterministic","semantic_key":"python:method:IncomingTopologyTestCase.test_no_live_debt_markers_remain_in_current_intake_or_closed_archive","source_digest":"6ef1879023abc7a411e7fc2ea99516b2569c23eb3799d4a34bf7f81ec6a6afa4","source_record_ids":["aoa:aoa-techniques:artifact:17887a255a778da6f8fe0313"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2a4797e22071f650567e4eb3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:affc09000b042377894fff44","label":"test_landed_practice_adoption_lifecycle_pilot_review_routes_tool_gateway","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_landed_practice_adoption_lifecycle_pilot_review_routes_tool_gateway","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ac1fd1ae02332133b8c243c7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b03a283737f5ff93b33f8dda","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:DocsBoundaryTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","source_record_ids":["aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:842d773605ff99553a7bff2c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b0d802dc3691a40068d1af2f","label":"test_external_import_runbook_is_discoverable_and_operator_complete","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_external_import_runbook_is_discoverable_and_operator_complete","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:842d773605ff99553a7bff2c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b0d802dc3691a40068d1af2f","label":"test_external_import_runbook_is_discoverable_and_operator_complete","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_external_import_runbook_is_discoverable_and_operator_complete","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:36748d3be9e6e0d89f9ff1e8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b16a2eff6083a93bdbceb01e","label":"test_example_dispatch_optional_field_must_match_schema","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_example_dispatch_optional_field_must_match_schema","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7093dc4827635a9242d9f636"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b17e326a65b63a9ade859618","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:DocsBoundaryTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","source_record_ids":["aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:37c71a0e5823ca809fc6a6db"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b18c964a4cbccdca56108ff3","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:KagSourceLiftTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"877d4ee775f5b77366cf88c7c1c82f36ae5297c01a715ae0449986182f8f96d9","source_record_ids":["aoa:aoa-techniques:artifact:50ff6e7647104f2158343fac"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:756b30985c8b36986814d7ea"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b1e4213b69ebcdd51048a96b","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:EvaluationChainTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"4a09365d51a6b68831dfa2f0681603fd453af9ec9e2a2ff661870efed6e60a3f","source_record_ids":["aoa:aoa-techniques:artifact:82e028210399ae4428247f3c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c8040ed014bad709f68ed533"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b2123ef51b310a26dabcf696","label":"test_practice_adoption_lifecycle_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_practice_adoption_lifecycle_tree_pilot_migration_landed","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:46b989acd4cc359ea2ee7678"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b24ff770d40cc93fa0dc1830","label":"test_scaffold_provenance_points_to_legacy_without_absence_language","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsLegacyScaffoldTestCase.test_scaffold_provenance_points_to_legacy_without_absence_language","source_digest":"8926368fb938cff615165f300f4a7377816cf537456e4d9c950ecd522094e117","source_record_ids":["aoa:aoa-techniques:artifact:8a27cc775a1c12f821a9ec82"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:23e8d9bb9801d17aae14d123"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b2505b8b1bcec71dbac67cc7","label":"test_cross_layer_candidates_doc_describes_exact_wave_execution_order","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_cross_layer_candidates_doc_describes_exact_wave_execution_order","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:85dde1054c765e38fd9f2054"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b29bef642dec438f5828c12a","label":"test_remediation_snapshot_candidate_cap_policy_is_consistent","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_remediation_snapshot_candidate_cap_policy_is_consistent","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:23e8d9bb9801d17aae14d123"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b2505b8b1bcec71dbac67cc7","label":"test_cross_layer_candidates_doc_describes_exact_wave_execution_order","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_cross_layer_candidates_doc_describes_exact_wave_execution_order","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:85dde1054c765e38fd9f2054"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b29bef642dec438f5828c12a","label":"test_remediation_snapshot_candidate_cap_policy_is_consistent","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_remediation_snapshot_candidate_cap_policy_is_consistent","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d6f739bab22420b40f772e42"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b2a3791543ea2be447fa0aa1","label":"test_growth_cycle_reference_paths_point_to_part_local_homes","provenance_ref":"deterministic","semantic_key":"python:method:GrowthCycleMechanicsTopologyTestCase.test_growth_cycle_reference_paths_point_to_part_local_homes","source_digest":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","source_record_ids":["aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:68624f4f12d61d59bc71e137"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b2d26ab790aea48e22508e09","label":"test_experience_release_schemas_reject_unknown_fields","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.test_experience_release_schemas_reject_unknown_fields","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0c0b543b6d10b77b3d933e08"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b31af9136ac4b3a534fed20b","label":"test_method_growth_contract_packets_live_under_parts","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_method_growth_contract_packets_live_under_parts","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4109,7 +4124,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:3cdbdc1b108e806b6e42fbbe"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b67cb74bd28f26c2638eb4c2","label":"test_run_tests_covers_root_and_mechanic_level_homes","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_run_tests_covers_root_and_mechanic_level_homes","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ebe7f9a9c0b071e8ae00b416"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b6fc52b6efa8d0a054294d03","label":"test_rpg_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:RPGMechanicsTopologyTestCase.test_rpg_part_map_names_all_current_parts","source_digest":"0ee8e83f7952b25dfa80917805d322045895d25d84d54817ed91984b0c4883ea","source_record_ids":["aoa:aoa-techniques:artifact:695fcf0256bfb75cc8039476"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:33b932bd78c38d6ce056fcb8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b74862cd66927918e54fce30","label":"test_technique_feat_example_validates_against_schema","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_technique_feat_example_validates_against_schema","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:fe060c6468af6846079e5486"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b780e19be98df1c6bf168298","label":"test_cross_layer_candidates_surface_is_discoverable_from_repo_entrypoints","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_cross_layer_candidates_surface_is_discoverable_from_repo_entrypoints","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:fe060c6468af6846079e5486"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b780e19be98df1c6bf168298","label":"test_cross_layer_candidates_surface_is_discoverable_from_repo_entrypoints","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_cross_layer_candidates_surface_is_discoverable_from_repo_entrypoints","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1981e8b31620efaf20b4b57e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b7ae45091a4f17332332956a","label":"test_shadow_specs_are_structurally_valid","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_shadow_specs_are_structurally_valid","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2b3ea4ef4d86d2434b7173c8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b7f0b510c31e4d17a5162ab8","label":"test_agon_artifacts_live_under_owning_parts","provenance_ref":"deterministic","semantic_key":"python:method:AgonMechanicsTopologyTestCase.test_agon_artifacts_live_under_owning_parts","source_digest":"26eb71e2e46619a815f778bebdc13d4f10daee97f77ec0e4d2f943e188718f10","source_record_ids":["aoa:aoa-techniques:artifact:551aac060212aabeebecce6c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:124e981d69864835ea8600ad"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:b83ffe07a7fac0cd49a6c12d","label":"test_current_surface_index_covers_flat_docs_markdown","provenance_ref":"deterministic","semantic_key":"python:method:DocsSurfaceGuardrailsTestCase.test_current_surface_index_covers_flat_docs_markdown","source_digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","source_record_ids":["aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4124,21 +4139,21 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:51858b4e0ee5a73db617db0b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ba972b31842514135993e0c5","label":"test_release_lane_covers_all_inventory_test_files","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_release_lane_covers_all_inventory_test_files","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ef286e5cbe61cd032c50d493"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:baaa7f738a7dc375cad095a1","label":"test_valid_questbook_surface_passes","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_valid_questbook_surface_passes","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1d0a2dbcf417fbbc57ce0eef"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bb84319037782f2047c28646","label":"test_experience_release_schemas_reject_const_escapes","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.test_experience_release_schemas_reject_const_escapes","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:208b996cb91e0d391b43e50c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bc1f6007d6b8a6f29d345270","label":"test_agents_mesh_config_names_design_sources","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_config_names_design_sources","source_digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:208b996cb91e0d391b43e50c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bc1f6007d6b8a6f29d345270","label":"test_agents_mesh_config_names_design_sources","provenance_ref":"deterministic","semantic_key":"python:method:AgentsMeshTests.test_agents_mesh_config_names_design_sources","source_digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","source_record_ids":["aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a8e7ee04237762e816d67efa"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bc999ee7cff1fa2c330798f7","label":"test_pilot_bundles_live_under_instruction_skill_discovery_tree","provenance_ref":"deterministic","semantic_key":"python:method:SkillDiscoveryTreePilotTestCase.test_pilot_bundles_live_under_instruction_skill_discovery_tree","source_digest":"4d5a458554372200a14f047aa67f8eee828aa07003dc0d355edfef530b101c58","source_record_ids":["aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:05daeb78df81dc140d746ed5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bea04d6abe177e754a0beb49","label":"test_experience_adoption_schemas_reject_const_escape_values","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceAdoptionContractTests.test_experience_adoption_schemas_reject_const_escape_values","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:94350f02777fe45af4172f17"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bef517f30031b77bc6e269b5","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:MediaIngestTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"20556c99171b8f45c5d3ee4850779cbb292530abcffad3eac92f07f139f00d83","source_record_ids":["aoa:aoa-techniques:artifact:ddfcab62cbcdce5b474f6b6c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cfec87c4249f5559a5f7744a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bf7be2ae77225dc87c75c6a8","label":"test_markdown_quest_contract_is_required","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_markdown_quest_contract_is_required","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1ec19888e3c8539a2c47cfb3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bfc3f61f523555ebdfa65e45","label":"test_technique_topology_contract_defines_faceted_classification","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_technique_topology_contract_defines_faceted_classification","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1ec19888e3c8539a2c47cfb3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:bfc3f61f523555ebdfa65e45","label":"test_technique_topology_contract_defines_faceted_classification","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_technique_topology_contract_defines_faceted_classification","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:213d8c50bb00f98eee4f2d9f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c00b6054499a68e921c69aae","label":"test_tree_projection_report_is_builder_aligned_and_non_authoritative","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_tree_projection_report_is_builder_aligned_and_non_authoritative","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d6071467ed7c9da69a0a05db"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c1476ef787217a75e616784c","label":"test_selection_navigation_specs_are_structurally_valid","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_selection_navigation_specs_are_structurally_valid","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:368fee00c9977e2ffc9225a3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c17b5785c3a1c2afe38f2f97","label":"test_approval_evidence_direct_read_review_accepts_twenty_first_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_approval_evidence_direct_read_review_accepts_twenty_first_pilot","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a10d43e7ed15c10c843370d2"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c1b14a4be36ff18217a3453b","label":"test_checklist_reader_generated_surface_matches_builder_and_stays_ordered","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_checklist_reader_generated_surface_matches_builder_and_stays_ordered","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:846e22c61206e30a050ca420"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c1d2f1447fbc9266927f005f","label":"test_tree_route_card_consolidation_covers_current_trunks","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_tree_route_card_consolidation_covers_current_trunks","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b428e6691386b3e6c5ab96ed"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c236dbd2eb530e83ac68c989","label":"test_handoff_continuation_direct_read_review_accepts_second_pilot_without_migration","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_handoff_continuation_direct_read_review_accepts_second_pilot_without_migration","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b428e6691386b3e6c5ab96ed"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c236dbd2eb530e83ac68c989","label":"test_handoff_continuation_direct_read_review_accepts_second_pilot_without_migration","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_handoff_continuation_direct_read_review_accepts_second_pilot_without_migration","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:60fed16f5d839fa8d5d56a2c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c2b75eb2136bfc2c71c8c75f","label":"test_capsule_markdown_items_preserve_wrapped_bullets","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_capsule_markdown_items_preserve_wrapped_bullets","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:11cb3ddf39b50ec29a49e019"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c2e201e84210f21ac42b3d8b","label":"test_live_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:SkillDiscoveryTreePilotTestCase.test_live_links_point_to_current_paths","source_digest":"4d5a458554372200a14f047aa67f8eee828aa07003dc0d355edfef530b101c58","source_record_ids":["aoa:aoa-techniques:artifact:de465c63afaf296af9b8fe6e"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:4441186b8e683cc6a7749ee9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c3143f6568ff628599ea0819","label":"test_repo_validation_workflow_uses_source_fast_lane_entrypoint","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:4441186b8e683cc6a7749ee9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c3143f6568ff628599ea0819","label":"test_repo_validation_workflow_uses_source_fast_lane_entrypoint","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_repo_validation_workflow_uses_source_fast_lane_entrypoint","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f9b7566ab3965478b9dc2503"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c3bfbfee9ee262589cbcb18b","label":"test_public_hygiene_scans_root_non_markdown_files","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoPublicHygieneTests.test_public_hygiene_scans_root_non_markdown_files","source_digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","source_record_ids":["aoa:aoa-techniques:artifact:20edd23620da977fb144b11f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:00895f4c7dbe51162587b300"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c3e8173bdf1ae04bac5e0f9e","label":"test_live_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:DocsBoundaryTreePilotTestCase.test_live_links_point_to_current_paths","source_digest":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","source_record_ids":["aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:20636a95cf97058ab4985076"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c400ea4099f496137c2a8a17","label":"test_experience_adoption_schemas_reject_non_string_array_items","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceAdoptionContractTests.test_experience_adoption_schemas_reject_non_string_array_items","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4154,7 +4169,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:9887ef26d9e2392eb83ceb3f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c6325661e5f15fc9a6e17dab","label":"test_technique_reform_scout_input_routes_are_documented","provenance_ref":"deterministic","semantic_key":"python:method:DistillationPackageSurfacesTests.test_technique_reform_scout_input_routes_are_documented","source_digest":"7297a6af92ddc2a4bd5a53489e7c08f6cf479ae7ecccd6f89b365f9085b7efd7","source_record_ids":["aoa:aoa-techniques:artifact:ced7185b3e1ab4e5f1d322d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9e8bda6476aba5db6be8af8f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c6778126d01184ceed223e0e","label":"test_promotion_readiness_surface_tracks_canonical_and_promoted_corpus","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_promotion_readiness_surface_tracks_canonical_and_promoted_corpus","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fb777157d2c22850688c160c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c6de96b05cbffc4e93567505","label":"test_capsule_surfaces_are_discoverable_from_docs_root_readme_changelog_and_release_docs","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_capsule_surfaces_are_discoverable_from_docs_root_readme_changelog_and_release_docs","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b1b3be706e35f4f37f9e6795"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c87cb22e09a9d0cca4343f9c","label":"test_expected_parent_domain_rejects_unsupported_tree_root","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_expected_parent_domain_rejects_unsupported_tree_root","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b1b3be706e35f4f37f9e6795"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c87cb22e09a9d0cca4343f9c","label":"test_expected_parent_domain_rejects_unsupported_tree_root","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_expected_parent_domain_rejects_unsupported_tree_root","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:79c8915625bd4166e49e8664"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c8e21cced5b6570bfd4bb13b","label":"test_main_runs_release_lane_and_clean_diff_check_when_initially_clean","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseCheckStabilizerTests.test_main_runs_release_lane_and_clean_diff_check_when_initially_clean","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f1e4ca4129c30cc4aef08ddc"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c91ba964c50a149b0a3b5bd2","label":"test_instruction_trunk_has_route_card","provenance_ref":"deterministic","semantic_key":"python:method:InstructionSurfaceTreePilotTestCase.test_instruction_trunk_has_route_card","source_digest":"dc6d27c98d482ef0bfbd13f2060b5ddcdf9589c9ea162a69bc501aa422351d1a","source_record_ids":["aoa:aoa-techniques:artifact:30beb9906bb62b4db5c4db13"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:71edb10b51665798e9e364c4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c9213398b513b5aa4ee33aba","label":"test_live_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:EvaluationChainTreePilotTestCase.test_live_links_point_to_current_paths","source_digest":"4a09365d51a6b68831dfa2f0681603fd453af9ec9e2a2ff661870efed6e60a3f","source_record_ids":["aoa:aoa-techniques:artifact:82e028210399ae4428247f3c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4164,15 +4179,15 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:2a3fd4fdf5c287af698ff23d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:c9f60c420cd4e8eac59baf2d","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:InstructionSurfaceTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"dc6d27c98d482ef0bfbd13f2060b5ddcdf9589c9ea162a69bc501aa422351d1a","source_record_ids":["aoa:aoa-techniques:artifact:30beb9906bb62b4db5c4db13"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:97dbabec0868e01ad284e853"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ca005bb1d11df33ab20d3143","label":"test_inventory_module_owners_are_unique_and_bounded","provenance_ref":"deterministic","semantic_key":"python:method:ValidatorModuleTopologyTests.test_inventory_module_owners_are_unique_and_bounded","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:fe6c3f09848e18947f18c829"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ca1b8ea03a49d595033c5a39","label":"test_live_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:KagSourceLiftTreePilotTestCase.test_live_links_point_to_current_paths","source_digest":"877d4ee775f5b77366cf88c7c1c82f36ae5297c01a715ae0449986182f8f96d9","source_record_ids":["aoa:aoa-techniques:artifact:50ff6e7647104f2158343fac"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8b8074c2843e9fd4d25ca350"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ca7482e0efad9ff7ae2ae96e","label":"test_validate_sections_ignores_fenced_markdown_headings","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_ignores_fenced_markdown_headings","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8b8074c2843e9fd4d25ca350"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ca7482e0efad9ff7ae2ae96e","label":"test_validate_sections_ignores_fenced_markdown_headings","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_ignores_fenced_markdown_headings","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:32c88b687211198576e255a5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ca82d21402f81c3daed93883","label":"test_antifragility_stop_lines_remain_explicit","provenance_ref":"deterministic","semantic_key":"python:method:AntifragilityMechanicsTopologyTestCase.test_antifragility_stop_lines_remain_explicit","source_digest":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","source_record_ids":["aoa:aoa-techniques:artifact:5b00df740809b23874e59462"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6c5825d9a5292c0d2316b90a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cad3712331b5f6ff5c31c1f3","label":"test_landed_history_artifacts_review_selects_antifragility_recovery","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_landed_history_artifacts_review_selects_antifragility_recovery","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:775a3fb5f4a0f778dc2a4fbd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:caf795f69164688f8becb207","label":"test_source_and_projection_rule_ownership_is_separate","provenance_ref":"deterministic","semantic_key":"python:method:ValidatorModuleTopologyTests.test_source_and_projection_rule_ownership_is_separate","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2772733ea14ce50c89c43e85"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cafac413dfcb7cf2a986cc9e","label":"test_root_readme_surfaces_concrete_bundle_and_routes_validation_to_agents","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoPublicHygieneTests.test_root_readme_surfaces_concrete_bundle_and_routes_validation_to_agents","source_digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","source_record_ids":["aoa:aoa-techniques:artifact:20edd23620da977fb144b11f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2a9e7d3546d1fd3a2d65e1ed"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cb093a292562fb3402d67f13","label":"test_experience_adoption_schemas_reject_missing_required_payload_fields","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceAdoptionContractTests.test_experience_adoption_schemas_reject_missing_required_payload_fields","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:75ec13a52297ffefcdaf47ea"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cbf2b62a91eee826d79030f4","label":"test_pilot_keeps_frontmatter_facets_unchanged","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityBoundaryTreePilotTestCase.test_pilot_keeps_frontmatter_facets_unchanged","source_digest":"398982edc7108c1cd992909ccee30c2e5c77195a1b4de031a6675bcc67894052","source_record_ids":["aoa:aoa-techniques:artifact:3c885d152cd68ff4d23d5dc4"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c3e61a94a6d55c7bb2cfc0e3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cc1aa77dbb730d67eef66188","label":"test_pull_request_template_path_stays_uppercase_only","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:a9afaa66e74f69bacb3651fa"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cc1e16f8e29945dac75b3047","label":"test_parse_notes_accepts_adverse_effects_review_typed_shape","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_parse_notes_accepts_adverse_effects_review_typed_shape","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c3e61a94a6d55c7bb2cfc0e3"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cc1aa77dbb730d67eef66188","label":"test_pull_request_template_path_stays_uppercase_only","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_pull_request_template_path_stays_uppercase_only","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:a9afaa66e74f69bacb3651fa"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cc1e16f8e29945dac75b3047","label":"test_parse_notes_accepts_adverse_effects_review_typed_shape","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_parse_notes_accepts_adverse_effects_review_typed_shape","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:24eb49ba46f157a3b51ad77a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cc48724b708459226bbcee51","label":"test_missing_live_catalog_fails","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_missing_live_catalog_fails","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0d16f587a538a7823a7f6d42"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cc50fac006227f346b960906","label":"test_pattern_adoption_routes_to_extracted_atom_without_lifecycle_collapse","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_pattern_adoption_routes_to_extracted_atom_without_lifecycle_collapse","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:b2cda79387c73e7f598abff5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cce67fe74b3902be5d26c95c","label":"test_pilot_bundles_live_under_continuity_tree","provenance_ref":"deterministic","semantic_key":"python:method:ReviewCompactionTreePilotTestCase.test_pilot_bundles_live_under_continuity_tree","source_digest":"1e7100ca7bdc0efef9d4b2c095c57ff7e94a9dd5d996598b89083a1089f023bb","source_record_ids":["aoa:aoa-techniques:artifact:e52c67e9b12aaf97098c94d1"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4180,20 +4195,20 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:512f30ce41064f0470780dfb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ccfe76c19792943951a6206f","label":"test_pilot_bundles_live_under_ingest_tree","provenance_ref":"deterministic","semantic_key":"python:method:MediaIngestTreePilotTestCase.test_pilot_bundles_live_under_ingest_tree","source_digest":"20556c99171b8f45c5d3ee4850779cbb292530abcffad3eac92f07f139f00d83","source_record_ids":["aoa:aoa-techniques:artifact:ddfcab62cbcdce5b474f6b6c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d085e2b35ea097752edc317d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cd81a10242909976bd988a30","label":"test_checklist_reader_builder_supports_multiple_checklists_per_technique","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_checklist_reader_builder_supports_multiple_checklists_per_technique","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7b1f3842920781b80e887362"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ce0d4249fd98409af824b060","label":"test_release_support_flat_files_moved_into_owning_parts","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseSupportMechanicsTopologyTestCase.test_release_support_flat_files_moved_into_owning_parts","source_digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","source_record_ids":["aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:997bc3edc7728fe2c793aa0f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cf2ba16a9f3200682839400a","label":"test_phase_sync_seed_has_bounded_narrowing_slice","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_phase_sync_seed_has_bounded_narrowing_slice","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8c8024f62d2764af10f01729"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cf8c1aae11a7c53f6c0a236a","label":"test_corpus_status_split_and_domain_set_remain_bounded","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_corpus_status_split_and_domain_set_remain_bounded","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:997bc3edc7728fe2c793aa0f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cf2ba16a9f3200682839400a","label":"test_phase_sync_seed_has_bounded_narrowing_slice","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_phase_sync_seed_has_bounded_narrowing_slice","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8c8024f62d2764af10f01729"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cf8c1aae11a7c53f6c0a236a","label":"test_corpus_status_split_and_domain_set_remain_bounded","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_corpus_status_split_and_domain_set_remain_bounded","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:44be054a030c0e669c5692e9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cfab1fefc6bc26f01ff1a91b","label":"test_repo_doc_surfaces_are_discoverable_from_docs_root_changelog_kag_and_release_docs","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_repo_doc_surfaces_are_discoverable_from_docs_root_changelog_kag_and_release_docs","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8fb6ece6161a03fb79c3c2b0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cffd7d4a28ac45662cb0235f","label":"test_technique_relative_links_resolve","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_technique_relative_links_resolve","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8fb6ece6161a03fb79c3c2b0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:cffd7d4a28ac45662cb0235f","label":"test_technique_relative_links_resolve","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_technique_relative_links_resolve","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9738f4c2c01dc079f0bdf0a6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d05ef5b8c8b8b0dbee6e128d","label":"test_instruction_route_card_names_capability_registry_without_overclaiming","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityRegistryTreePilotTestCase.test_instruction_route_card_names_capability_registry_without_overclaiming","source_digest":"88ffd010903d52bf422142833118be0caeb546eee3edbb0e20f01da331b09bcb","source_record_ids":["aoa:aoa-techniques:artifact:958b553e812d7a61f5670eba"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:39340b05736e866380d4404c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d09f993569a2a1ad3ea9e565","label":"test_landed_donor_harvest_review_selects_decision_routing","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_landed_donor_harvest_review_selects_decision_routing","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:15f5f6a0b341d210080b4258"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d14068c518180409848b4b5a","label":"test_python_scripts_import_without_running_main","provenance_ref":"deterministic","semantic_key":"python:method:ScriptTopologyTests.test_python_scripts_import_without_running_main","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9992fa840207b513e37373c0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d197aadbc393a4ca12c31ea2","label":"test_repo_doc_surface_top_level_sections_are_stable","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_repo_doc_surface_top_level_sections_are_stable","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:55679791d3cf98e9f6b5fd1e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d203b34bea571b3d8acf75e5","label":"test_automation_readiness_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_automation_readiness_tree_pilot_migration_landed","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:cf940a75c3f0aaa55fdc23cd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d250b3e2d53d24394eb7c065","label":"test_script_inventory_covers_every_active_script_surface","provenance_ref":"deterministic","semantic_key":"python:method:ScriptTopologyTests.test_script_inventory_covers_every_active_script_surface","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:08736d5371e213da42502871"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d268a1da43b6c9a6f83f75fa","label":"test_current_memo_agents_validation_route_is_portable","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_current_memo_agents_validation_route_is_portable","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:08736d5371e213da42502871"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d268a1da43b6c9a6f83f75fa","label":"test_current_memo_agents_validation_route_is_portable","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_current_memo_agents_validation_route_is_portable","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:82ff6ce6e61a46de72f307eb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d26eda4be8b0588978340c01","label":"test_validator_owner_route_card_is_registered_in_agents_mesh","provenance_ref":"deterministic","semantic_key":"python:method:ValidatorModuleTopologyTests.test_validator_owner_route_card_is_registered_in_agents_mesh","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a7e4cdfca86910f8e9ce7ad7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d2831c94726ca2e0d19c9fc7","label":"test_package_card_status_matches_request_receipt_posture","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsPackageCardTests.test_package_card_status_matches_request_receipt_posture","source_digest":"335c75375d66158e1bb3d4a262c74145642d66cd5c3493e61c2735aedcf5ea9e","source_record_ids":["aoa:aoa-techniques:artifact:7698d5ddfea36399ee4fab64"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:734e4edf491921df41fbab2a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d2d468ba9742d7bfdb0ab797","label":"test_repo_doc_surface_specs_are_bounded_and_structurally_valid","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_repo_doc_surface_specs_are_bounded_and_structurally_valid","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:734e4edf491921df41fbab2a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d2d468ba9742d7bfdb0ab797","label":"test_repo_doc_surface_specs_are_bounded_and_structurally_valid","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_repo_doc_surface_specs_are_bounded_and_structurally_valid","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c0b1124321ac9ccca870a170"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d34b1b4357dd5e5cbad80c08","label":"test_antifragility_flat_file_moved_into_legacy_raw","provenance_ref":"deterministic","semantic_key":"python:method:AntifragilityMechanicsTopologyTestCase.test_antifragility_flat_file_moved_into_legacy_raw","source_digest":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","source_record_ids":["aoa:aoa-techniques:artifact:5b00df740809b23874e59462"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a0eab35173d4b95e32befb84"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d428be9a533f75fdc5dad5ae","label":"test_mechanics_boundary_language_correction_is_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:DistillationGateDecisionsTests.test_mechanics_boundary_language_correction_is_discoverable","source_digest":"f1a84c83bc5942bfc5e1ed32ae7baf5a80dce9f6a0a8c1f456a1edcb38531e47","source_record_ids":["aoa:aoa-techniques:artifact:538bb41b40470989ae774aa1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9e436f96205fc527085fae52"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d4a65f50239b558333fe07ce","label":"test_semantic_review_next_steps_match_generated_manifest","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_semantic_review_next_steps_match_generated_manifest","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4201,15 +4216,15 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e77756cd2d20e59d188ae252"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d4d073ab2f8a1de493cb5942","label":"test_lane_system_covers_part_local_and_agent_lane_tests","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_lane_system_covers_part_local_and_agent_lane_tests","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:34d7ca4ea17f90bb639dfaa7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d4efb27a833a6ab24ab76674","label":"test_inventory_home_scopes_match_filesystem_topology","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_inventory_home_scopes_match_filesystem_topology","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:16c84bbdcd5c6db52433fe27"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d55ef9107ca2e4fd5dd7d6fc","label":"test_review_sources_point_to_current_paths_but_keep_pilot_accounting","provenance_ref":"deterministic","semantic_key":"python:method:SkillSupportTreePilotTestCase.test_review_sources_point_to_current_paths_but_keep_pilot_accounting","source_digest":"be31fda9de0d38712184d67229f7e4ebfa04aff3db72de81710f35db405247e1","source_record_ids":["aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:9607bc937250a32249da1f74"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d5d1935fc8408e32ca275848","label":"workflow_text","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.workflow_text","source_digest":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:9607bc937250a32249da1f74"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d5d1935fc8408e32ca275848","label":"workflow_text","provenance_ref":"deterministic","semantic_key":"python:method:GitHubWorkflowTopologyTests.workflow_text","source_digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","source_record_ids":["aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8c3ca2d6b28a697d8c2db6d4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d6fe1bd1f02e206dc8371dc8","label":"test_request_receipt_points_to_method_growth_parts","provenance_ref":"deterministic","semantic_key":"python:method:MethodGrowthMechanicsTopologyTestCase.test_request_receipt_points_to_method_growth_parts","source_digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","source_record_ids":["aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c25359768f141121ea573998"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d7310ef28c4634f948793896","label":"test_main_reruns_once_when_worktree_changes_then_stabilizes","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseCheckStabilizerTests.test_main_reruns_once_when_worktree_changes_then_stabilizes","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a49a6bfd0ed3e5f53d99bbb9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d7785ba612dab00678968779","label":"test_root_roadmap_preserves_old_audit_detail_in_audit_legacy","provenance_ref":"deterministic","semantic_key":"python:method:RoadmapParityTestCase.test_root_roadmap_preserves_old_audit_detail_in_audit_legacy","source_digest":"15d361a33c946c95bd1412b67adb2fa94deb43ad1c64abd045e29d269141cafb","source_record_ids":["aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:05a2663330fc0f29764467ae"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d7e057c2ffa28de265b3ab3b","label":"test_experience_adoption_examples_match_schemas","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceAdoptionContractTests.test_experience_adoption_examples_match_schemas","source_digest":"fea8966924115bd2688712c60fd2059db1cb62de6b93d1e8c9377250da1bba8e","source_record_ids":["aoa:aoa-techniques:artifact:d03af9d59783c9f2bc1a49a3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dac84c3e52428a0f9bd51a32"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d8e05e0f32a857250bb15763","label":"test_release_support_contract_packets_live_under_parts","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseSupportMechanicsTopologyTestCase.test_release_support_contract_packets_live_under_parts","source_digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","source_record_ids":["aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:7c6a178eb0ca133d8a329bc1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d9660a1cef875696c472cf36","label":"test_validation_lanes_api_resolves_lane_ids_to_command_sequences","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","source_digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:7c6a178eb0ca133d8a329bc1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d9660a1cef875696c472cf36","label":"test_validation_lanes_api_resolves_lane_ids_to_command_sequences","provenance_ref":"deterministic","semantic_key":"python:method:ValidationCommandAuthorityTests.test_validation_lanes_api_resolves_lane_ids_to_command_sequences","source_digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","source_record_ids":["aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d903a1cb86a0d3e02d2c623b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:d98081d1acdc045da4822f28","label":"test_source_boundary_anchors_preserve_owner_truth","provenance_ref":"deterministic","semantic_key":"python:method:RPGMechanicsTopologyTestCase.test_source_boundary_anchors_preserve_owner_truth","source_digest":"0ee8e83f7952b25dfa80917805d322045895d25d84d54817ed91984b0c4883ea","source_record_ids":["aoa:aoa-techniques:artifact:695fcf0256bfb75cc8039476"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:faa9aa681be58758df50595d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:da0cd664a875aa9293b365b7","label":"test_start_here_routes_repo_only_reading_paths","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_start_here_routes_repo_only_reading_paths","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:faa9aa681be58758df50595d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:da0cd664a875aa9293b365b7","label":"test_start_here_routes_repo_only_reading_paths","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_start_here_routes_repo_only_reading_paths","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:3ce31020595a44a22b29b334"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:db183fdf487310494c93f680","label":"test_0054_kind_remap_remains_classification_only_after_later_promotion","provenance_ref":"deterministic","semantic_key":"python:method:DistillationReformIngressReviewsTests.test_0054_kind_remap_remains_classification_only_after_later_promotion","source_digest":"72fd5e2b8bbf64a656b5784273106de42e2c43d6792202f190a5f2e005fbed2a","source_record_ids":["aoa:aoa-techniques:artifact:e3946edd787b6a3494f7812e"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2f053410d5a68c2f3b83edc4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:db39be9377e5f1f8d39f25cd","label":"test_landed_review_evidence_pilot_review_selects_runtime_truth_lifecycle","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_landed_review_evidence_pilot_review_selects_runtime_truth_lifecycle","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:dce6a45f267668733e674151"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:dbac5a05a31a643659f8f29f","label":"test_distillation_gate_packet_is_named_across_active_parts","provenance_ref":"deterministic","semantic_key":"python:method:DistillationGateDecisionsTests.test_distillation_gate_packet_is_named_across_active_parts","source_digest":"f1a84c83bc5942bfc5e1ed32ae7baf5a80dce9f6a0a8c1f456a1edcb38531e47","source_record_ids":["aoa:aoa-techniques:artifact:538bb41b40470989ae774aa1"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4217,13 +4232,13 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:7ede939f1f7b802f3f9f0e7a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:dc300c08f8c23a822882aa6f","label":"test_promotion_boundary_direct_read_review_accepts_twenty_sixth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_promotion_boundary_direct_read_review_accepts_twenty_sixth_pilot","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:8782a5d827776c6c2bedf693"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:dd44fefa30000e1bbb67deeb","label":"test_repo_doc_surfaces_generated_reader_matches_builder_and_stays_bounded","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_repo_doc_surfaces_generated_reader_matches_builder_and_stays_bounded","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1102ef402718cec189d1ecf8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:dd59e65b1eac4be4d8f8dc6b","label":"test_invalid_harvest_target_fails","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_invalid_harvest_target_fails","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:91fec599450a9a86ca2833af"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:dd8638a5f22ec6b974fd8cf8","label":"test_selection_and_semantic_review_guides_are_discoverable_and_validator_backed","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_selection_and_semantic_review_guides_are_discoverable_and_validator_backed","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:91fec599450a9a86ca2833af"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:dd8638a5f22ec6b974fd8cf8","label":"test_selection_and_semantic_review_guides_are_discoverable_and_validator_backed","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_selection_and_semantic_review_guides_are_discoverable_and_validator_backed","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a3f0523a32f2b854357c3fcd"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:de04729ed024724f1afee5da","label":"test_review_sources_point_to_current_paths_but_keep_pilot_accounting","provenance_ref":"deterministic","semantic_key":"python:method:KagSourceLiftTreePilotTestCase.test_review_sources_point_to_current_paths_but_keep_pilot_accounting","source_digest":"877d4ee775f5b77366cf88c7c1c82f36ae5297c01a715ae0449986182f8f96d9","source_record_ids":["aoa:aoa-techniques:artifact:50ff6e7647104f2158343fac"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:f97ea1f1943f780cc3451495"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:dea21b8ada643384e8a91c89","label":"test_section_manifest_remains_map_while_full_section_surface_carries_payload","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_section_manifest_remains_map_while_full_section_surface_carries_payload","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d79ffb2a001982860b0fa9bb"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:deb34af34b6fce85fc87850c","label":"fake_run","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseCheckStabilizerTests.test_main_does_not_run_clean_diff_check_when_initially_dirty.fake_run","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:14f45c8248c7b9c91a80fd9e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:df46fdf9e118013fbc5579bc","label":"test_docs_boundary_direct_read_review_accepts_seventh_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_docs_boundary_direct_read_review_accepts_seventh_pilot","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:14f45c8248c7b9c91a80fd9e"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:df46fdf9e118013fbc5579bc","label":"test_docs_boundary_direct_read_review_accepts_seventh_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_docs_boundary_direct_read_review_accepts_seventh_pilot","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ea48cfd0cea4bc3a83565183"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:df53b6d3ede0f5e8ae7cebd7","label":"__contains__","provenance_ref":"deterministic","semantic_key":"python:method:ReformContext.__contains__","source_digest":"1510a38211380a1783c2803a4c9b920adc70d9e76b668b2d562922bb52fd0f31","source_record_ids":["aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:c5abcedb3307b15bd7ffd898"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:df7bd9950a1615513ee7c8be","label":"test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:c5abcedb3307b15bd7ffd898"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:df7bd9950a1615513ee7c8be","label":"test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_changelog_tracks_unreleased_without_losing_v020_and_v010_entries","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:271252f4087fd18804ed4bc7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:df9a9b1d86ff6fa60cefe53a","label":"test_root_legacy_boundary_language_is_explicit","provenance_ref":"deterministic","semantic_key":"python:method:RootLegacyTopologyTestCase.test_root_legacy_boundary_language_is_explicit","source_digest":"be548f162aee661b61751d8be2ebc7237a8ed73500f761d12103a66e64457ead","source_record_ids":["aoa:aoa-techniques:artifact:5eed110f16220e7ba98c2982"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:03020390400e9abf4ca17a78"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:dff8818a571aaed674a92c39","label":"test_feat_progression_anchors_stay_reader_only","provenance_ref":"deterministic","semantic_key":"python:method:RPGMechanicsTopologyTestCase.test_feat_progression_anchors_stay_reader_only","source_digest":"0ee8e83f7952b25dfa80917805d322045895d25d84d54817ed91984b0c4883ea","source_record_ids":["aoa:aoa-techniques:artifact:695fcf0256bfb75cc8039476"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c06d8c5d5c7b0493e39ea268"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e031994b45f0cb79d35e5f42","label":"test_automation_governance_split_expansion_closeout_activates_candidate_a","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_automation_governance_split_expansion_closeout_activates_candidate_a","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4232,12 +4247,12 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:9c5ba948af6e7993b39b2a72"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e1eb35829e4acc1a5ecf84ca","label":"test_router_safe_doc_path_rejects_out_of_scope_locations","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_router_safe_doc_path_rejects_out_of_scope_locations","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e063ea8cdd418b257833c19b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e22c1cabde985c453db2411f","label":"test_root_legacy_does_not_hold_active_or_generated_surfaces","provenance_ref":"deterministic","semantic_key":"python:method:RootLegacyTopologyTestCase.test_root_legacy_does_not_hold_active_or_generated_surfaces","source_digest":"be548f162aee661b61751d8be2ebc7237a8ed73500f761d12103a66e64457ead","source_record_ids":["aoa:aoa-techniques:artifact:5eed110f16220e7ba98c2982"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:346cc3bf3a57c5adf0896c14"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e230fed3c8fbced84475af3f","label":"test_topology_scout_axis_registry_stays_below_frontmatter_truth","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_topology_scout_axis_registry_stays_below_frontmatter_truth","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:b0eafb8dc5b87f025cefcf1c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e284564d70dfd384a02dccd4","label":"test_external_candidates_doc_tracks_clean_top4_wave_backlog","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_external_candidates_doc_tracks_clean_top4_wave_backlog","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:b0eafb8dc5b87f025cefcf1c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e284564d70dfd384a02dccd4","label":"test_external_candidates_doc_tracks_clean_top4_wave_backlog","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_external_candidates_doc_tracks_clean_top4_wave_backlog","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:22ee2f06421155d83094a58c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e2b8840a6ab9630452f18b59","label":"test_continuity_trunk_has_route_card","provenance_ref":"deterministic","semantic_key":"python:method:ReviewCompactionTreePilotTestCase.test_continuity_trunk_has_route_card","source_digest":"1e7100ca7bdc0efef9d4b2c095c57ff7e94a9dd5d996598b89083a1089f023bb","source_record_ids":["aoa:aoa-techniques:artifact:e52c67e9b12aaf97098c94d1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ab54986c336b1b22700a17aa"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e370e5a2039dd5be70b91d13","label":"test_roadmap_matches_current_direction_contour","provenance_ref":"deterministic","semantic_key":"python:method:RoadmapParityTestCase.test_roadmap_matches_current_direction_contour","source_digest":"15d361a33c946c95bd1412b67adb2fa94deb43ad1c64abd045e29d269141cafb","source_record_ids":["aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:67513c4905448fc4d2f517ff"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e38fc02337e262f1b6a51c11","label":"test_root_legacy_receipt_preserves_old_and_new_paths","provenance_ref":"deterministic","semantic_key":"python:method:HistoryArtifactsTreePilotTestCase.test_root_legacy_receipt_preserves_old_and_new_paths","source_digest":"a0eeb86c6e74f0b35b1713511550ccd283df7a64fc52a77a768c7ea066bad49a","source_record_ids":["aoa:aoa-techniques:artifact:e5099efe04874e260d36b86a"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2470da9aa6652ea81e0338a8"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e42159fe06cde9bf82231408","label":"test_ready_work_graphs_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotHistoryWaveTests.test_ready_work_graphs_tree_pilot_migration_landed","source_digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","source_record_ids":["aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:f73ef0ad733947488edff4bf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e42fa37d5f0bac51d0b7ca7a","label":"test_landed_kag_source_lift_pilot_review_selects_docs_boundary","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_kag_source_lift_pilot_review_selects_docs_boundary","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:f73ef0ad733947488edff4bf"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e42fa37d5f0bac51d0b7ca7a","label":"test_landed_kag_source_lift_pilot_review_selects_docs_boundary","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_kag_source_lift_pilot_review_selects_docs_boundary","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6b913213903cefa2d3cafed9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e432cc16a828eb7e20d7b678","label":"test_experience_release_schemas_reject_empty_strings","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.test_experience_release_schemas_reject_empty_strings","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a12dfc8b89ebc8a5457159e9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e46fd39ccdf137b4fc108770","label":"test_catalog_capsules_and_sections_share_ids_and_paths","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_catalog_capsules_and_sections_share_ids_and_paths","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c86facc8548606f34d0d31d0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e4d95b8eabed98de0a1849fb","label":"test_experience_release_schemas_reject_numeric_bound_escapes","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.test_experience_release_schemas_reject_numeric_bound_escapes","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4246,19 +4261,19 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:e052e99b8933e8696288df7c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e64138f5d5f2e363bc756978","label":"test_review_sources_point_to_current_paths_but_keep_pilot_accounting","provenance_ref":"deterministic","semantic_key":"python:method:DiagnosisRepairTreePilotTestCase.test_review_sources_point_to_current_paths_but_keep_pilot_accounting","source_digest":"e25ed72a5ee04f79bc777eaa068f7741e2a4ef432b41d4218c66a1e9a54a504d","source_record_ids":["aoa:aoa-techniques:artifact:5c1073429c3a0b92540ff9b5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d8297804f8aa877b05678c34"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e6787f162b66ecce6a942195","label":"test_questbook_stop_lines_remain_explicit","provenance_ref":"deterministic","semantic_key":"python:method:QuestbookMechanicsTopologyTestCase.test_questbook_stop_lines_remain_explicit","source_digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","source_record_ids":["aoa:aoa-techniques:artifact:3f880a46842b12278652a736"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d3367a9fac349ddc19e2b5e5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e71dde50d59d9e2855cc86e3","label":"test_runtime_truth_lifecycle_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_runtime_truth_lifecycle_tree_pilot_migration_landed","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:72faff5496da89dcbc7fae1a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e728b0306122bac5cda8328b","label":"test_all_published_techniques_use_richer_risks_contract","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_all_published_techniques_use_richer_risks_contract","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:72faff5496da89dcbc7fae1a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e728b0306122bac5cda8328b","label":"test_all_published_techniques_use_richer_risks_contract","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_all_published_techniques_use_richer_risks_contract","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7065bdc6bfbcfccb9f661d84"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e72e61922374bb3d40beb640","label":"test_kind_manifest_counts_and_catalog_alignment_stay_exact","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoGeneratedDriftTests.test_kind_manifest_counts_and_catalog_alignment_stay_exact","source_digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","source_record_ids":["aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:8caf583288433fd9a3e66852"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e856bccc55c3692093123d3b","label":"test_docs_validation_district_is_indexed_and_agent_mesh_registered","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:8caf583288433fd9a3e66852"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e856bccc55c3692093123d3b","label":"test_docs_validation_district_is_indexed_and_agent_mesh_registered","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests.test_docs_validation_district_is_indexed_and_agent_mesh_registered","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:533f6240246d9deef663c850"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e88313944ea024d2cd989d76","label":"test_experience_contract_packets_live_under_parts","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceMechanicsTopologyTestCase.test_experience_contract_packets_live_under_parts","source_digest":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","source_record_ids":["aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c04f757fa7916b281424032c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e8fa068e217d8dbc4c020def","label":"test_antifragility_recovery_bridge_names_current_anchors","provenance_ref":"deterministic","semantic_key":"python:method:AntifragilityMechanicsTopologyTestCase.test_antifragility_recovery_bridge_names_current_anchors","source_digest":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","source_record_ids":["aoa:aoa-techniques:artifact:5b00df740809b23874e59462"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:c0477fd7e592b3d9d5407129"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e9451c421db46af1b74f046f","label":"test_kag_export_carries_artifact_identity_contract","provenance_ref":"deterministic","semantic_key":"python:method:DownstreamFeedContractsTests.test_kag_export_carries_artifact_identity_contract","source_digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","source_record_ids":["aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:942c31ffe2a2f17391d3275d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e947ebe83b8473ebf4cc6698","label":"test_owner_truth_closeout_tree_pilot_migration_landed","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_owner_truth_closeout_tree_pilot_migration_landed","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:be902380c213dcf5f3ac7e9c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:e9a07d9d83ccb814f6564108","label":"test_release_support_contract_packet_routes_are_documented","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseSupportMechanicsTopologyTestCase.test_release_support_contract_packet_routes_are_documented","source_digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","source_record_ids":["aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:beaaa74c3ce233db7d03202a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ea677ec78368643b8af1f8c7","label":"test_neighbor_shelves_keep_current_paths_after_later_pilots","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityRegistryTreePilotTestCase.test_neighbor_shelves_keep_current_paths_after_later_pilots","source_digest":"88ffd010903d52bf422142833118be0caeb546eee3edbb0e20f01da331b09bcb","source_record_ids":["aoa:aoa-techniques:artifact:958b553e812d7a61f5670eba"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:6cee9f96e3b88452829955ac"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ea6a5bbf56af86a5995b9787","label":"test_landed_media_ingest_pilot_review_selects_diagnosis_repair","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_media_ingest_pilot_review_selects_diagnosis_repair","source_digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:6cee9f96e3b88452829955ac"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ea6a5bbf56af86a5995b9787","label":"test_landed_media_ingest_pilot_review_selects_diagnosis_repair","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotIngressWaveTests.test_landed_media_ingest_pilot_review_selects_diagnosis_repair","source_digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","source_record_ids":["aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:44c4c61a4e5ab0a10f841309"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:eb123b3e3686fab0b6330d10","label":"_has_ordered_tokens","provenance_ref":"deterministic","semantic_key":"python:method:ReformContext._has_ordered_tokens","source_digest":"1510a38211380a1783c2803a4c9b920adc70d9e76b668b2d562922bb52fd0f31","source_record_ids":["aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ec3a3065b432d326411790b5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:eb138a09769d69cbf84f3ed9","label":"test_experience_part_map_names_all_current_parts","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceMechanicsTopologyTestCase.test_experience_part_map_names_all_current_parts","source_digest":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","source_record_ids":["aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:670050b578bb00df3a83d14c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ece0bff118b106351a94904d","label":"test_validate_sections_accepts_optional_template_sections_in_fixed_slots","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_accepts_optional_template_sections_in_fixed_slots","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:670050b578bb00df3a83d14c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ece0bff118b106351a94904d","label":"test_validate_sections_accepts_optional_template_sections_in_fixed_slots","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_validate_sections_accepts_optional_template_sections_in_fixed_slots","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:53d4d6601c2576fa71a67ad4"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ece4e8caef074328ababae73","label":"test_derived_projection_anchors_preserve_source_authority","provenance_ref":"deterministic","semantic_key":"python:method:BoundaryBridgeMechanicsTopologyTestCase.test_derived_projection_anchors_preserve_source_authority","source_digest":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","source_record_ids":["aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:061c1f65a05ca7bc7cbba52f"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ecf9d7b04c3ea3ec5b25f750","label":"test_antifragility_active_surfaces_are_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:AntifragilityMechanicsTopologyTestCase.test_antifragility_active_surfaces_are_discoverable","source_digest":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","source_record_ids":["aoa:aoa-techniques:artifact:5b00df740809b23874e59462"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:74df73705bfedfd7ef18058d"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:ede9acf26dc2c967efc95f03","label":"test_validate_repo_monolith_is_split_by_owner_surface","provenance_ref":"deterministic","semantic_key":"python:method:TestTopologyAuthorityTests.test_validate_repo_monolith_is_split_by_owner_surface","source_digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4277,19 +4292,21 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:640961b3de79d76b11749186"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f3195385cb0a6f6c84403ba0","label":"test_source_contract_cli_is_source_fast_entrypoint_only","provenance_ref":"deterministic","semantic_key":"python:method:ValidatorModuleTopologyTests.test_source_contract_cli_is_source_fast_entrypoint_only","source_digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","source_record_ids":["aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:79830b4b074ae2929e940148"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f37c55b60694ea6dd11700f1","label":"test_root_level_quest_alias_fails","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_root_level_quest_alias_fails","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:9461cc3bba455957829856d1"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f42f9c4c901218c50d17fb99","label":"test_work_quest_schema_lane_matches_yaml_source_route","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoQuestbookIntelligenceTests.test_work_quest_schema_lane_matches_yaml_source_route","source_digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","source_record_ids":["aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:4a6cbb4dd6625618557eac08"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f4689d3ddfa57e111b975bf3","label":"test_false_readiness_numerator_is_rejected","provenance_ref":"deterministic","semantic_key":"python:method:LocalStatsPortTests.test_false_readiness_numerator_is_rejected","source_digest":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:58720418a26fe06a57622170"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f4b8e68f6eb96b78fbc976d8","label":"test_every_mechanic_package_has_local_card_headings","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsPackageCardTests.test_every_mechanic_package_has_local_card_headings","source_digest":"335c75375d66158e1bb3d4a262c74145642d66cd5c3493e61c2735aedcf5ea9e","source_record_ids":["aoa:aoa-techniques:artifact:7698d5ddfea36399ee4fab64"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:1b07d5f05ba4e1acbf86b867"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f4e70859771b2a57f144b35d","label":"test_experience_release_schemas_reject_wrong_types_for_every_field","provenance_ref":"deterministic","semantic_key":"python:method:ExperienceReleaseContractTests.test_experience_release_schemas_reject_wrong_types_for_every_field","source_digest":"61c8a385f4d8902a6f22327c6560e9546b3ea57dd5809ba9937fa902d2228207","source_record_ids":["aoa:aoa-techniques:artifact:9a2daa8b86644f570884688d"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:95cc9d0dde7ced6a77110b60"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f529d32ef05de7bf354e363b","label":"test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:95cc9d0dde7ced6a77110b60"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f529d32ef05de7bf354e363b","label":"test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_release_check_repo_state_detects_tracked_diff_changes_without_status_drift","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:2e957edb8ca990addb1099d0"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f5350f3893dcadb5b37e3d7b","label":"test_live_links_point_to_current_paths","provenance_ref":"deterministic","semantic_key":"python:method:CapabilityBoundaryTreePilotTestCase.test_live_links_point_to_current_paths","source_digest":"398982edc7108c1cd992909ccee30c2e5c77195a1b4de031a6675bcc67894052","source_record_ids":["aoa:aoa-techniques:artifact:3c885d152cd68ff4d23d5dc4"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:659c85ce0ae7162e5d3533b7"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f5d96f090a98828c703010ca","label":"test_package_card_decision_is_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:MechanicsPackageCardTests.test_package_card_decision_is_discoverable","source_digest":"335c75375d66158e1bb3d4a262c74145642d66cd5c3493e61c2735aedcf5ea9e","source_record_ids":["aoa:aoa-techniques:artifact:7698d5ddfea36399ee4fab64"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:1a622542418b1f3a14197124"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f5db58492818893a385c1d9f","label":"test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","source_digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:1a622542418b1f3a14197124"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f5db58492818893a385c1d9f","label":"test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCiReleaseAuthorityTests.test_external_import_and_pr_templates_capture_overlap_and_generated_surface_fields","source_digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","source_record_ids":["aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:33363d4b3ef9b253abc635c6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f6018db07db3b9ad86c75851","label":"fake_run","provenance_ref":"deterministic","semantic_key":"python:method:ReleaseCheckStabilizerTests.test_main_runs_release_lane_and_clean_diff_check_when_initially_clean.fake_run","source_digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","source_record_ids":["aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:7f516800645bcd58dcee986a"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f68b0af277f76f526cc2930b","label":"test_practice_adoption_lifecycle_direct_read_review_accepts_twenty_seventh_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotAutomationCloseoutTests.test_practice_adoption_lifecycle_direct_read_review_accepts_twenty_seventh_pilot","source_digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","source_record_ids":["aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:ab33b9013ca29539cc343b62"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f7220b4805674da2e072ee10","label":"block_yaml_import","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoCompatibilityImportTests.test_validate_repo_module_imports_without_pyyaml.block_yaml_import","source_digest":"75ea96accc00d5ba348a1a3db62197b0bfc93400342ad6609a271e406821649c","source_record_ids":["aoa:aoa-techniques:artifact:b8959f6cec62a716dfef8fd1"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:95a3a4212a4b187597b53583"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f7d726de5d9859c1d70de4fa","label":"test_source_of_truth_checklist_supports_delegated_homes","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_source_of_truth_checklist_supports_delegated_homes","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:09f3f416eaabd7b2f16e6a90"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f7f1e8623a7fcd81502066bd","label":"test_docs_readme_reader_paths_match_current_entrypoint_contract","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_docs_readme_reader_paths_match_current_entrypoint_contract","source_digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:95a3a4212a4b187597b53583"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f7d726de5d9859c1d70de4fa","label":"test_source_of_truth_checklist_supports_delegated_homes","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_source_of_truth_checklist_supports_delegated_homes","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:09f3f416eaabd7b2f16e6a90"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f7f1e8623a7fcd81502066bd","label":"test_docs_readme_reader_paths_match_current_entrypoint_contract","provenance_ref":"deterministic","semantic_key":"python:method:ValidateRepoSourceContractTests.test_docs_readme_reader_paths_match_current_entrypoint_contract","source_digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","source_record_ids":["aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:818fb4003016871657dbb0e5"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f8ccae1db2279151515f87f6","label":"test_agon_routes_candidate_narrowing_through_distillation_handoff","provenance_ref":"deterministic","semantic_key":"python:method:AgonMechanicsTopologyTestCase.test_agon_routes_candidate_narrowing_through_distillation_handoff","source_digest":"26eb71e2e46619a815f778bebdc13d4f10daee97f77ec0e4d2f943e188718f10","source_record_ids":["aoa:aoa-techniques:artifact:551aac060212aabeebecce6c"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:43361c9bb12377bbb8b731a9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f8e361977990b193b3db87ab","label":"_part_home_for_script","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests._part_home_for_script","source_digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:43361c9bb12377bbb8b731a9"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f8e361977990b193b3db87ab","label":"_part_home_for_script","provenance_ref":"deterministic","semantic_key":"python:method:ValidationTopologyTests._part_home_for_script","source_digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","source_record_ids":["aoa:aoa-techniques:artifact:f6818f763cf40101bb774211"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:356b7bef8078b296da2fc6f6"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f9254d1d822fedde9c6996bb","label":"test_reference_ratio_matches_current_owner_readiness_projection","provenance_ref":"deterministic","semantic_key":"python:method:LocalStatsPortTests.test_reference_ratio_matches_current_owner_readiness_projection","source_digest":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:412357edb9269d19cf6cb79c"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:f94284b6f05fa9fb6da96c2b","label":"test_agent_workflows_core_direct_read_review_accepts_eighteenth_pilot","provenance_ref":"deterministic","semantic_key":"python:method:DistillationTreePilotRuntimeWaveTests.test_agent_workflows_core_direct_read_review_accepts_eighteenth_pilot","source_digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","source_record_ids":["aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:6221eb33229a8aed38307b3b"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:fa59d50478a2c928ed2cefe3","label":"test_side_effect_boundaries_are_visible","provenance_ref":"deterministic","semantic_key":"python:method:ScriptTopologyTests.test_side_effect_boundaries_are_visible","source_digest":"4e92ee22c471dc155921bbbb5a9dfd7fdf067ca0c56bc6b5bcf7cf55be77cae9","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:461e166a3e3260a293cbd817"],"entity_kind":"python_method","id":"aoa:aoa-techniques:entity:fcd2bb5dc846a44ce45e21eb","label":"test_distillation_gate_alignment_decision_is_discoverable","provenance_ref":"deterministic","semantic_key":"python:method:DistillationGateDecisionsTests.test_distillation_gate_alignment_decision_is_discoverable","source_digest":"f1a84c83bc5942bfc5e1ed32ae7baf5a80dce9f6a0a8c1f456a1edcb38531e47","source_record_ids":["aoa:aoa-techniques:artifact:538bb41b40470989ae774aa1"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4316,7 +4333,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:b825b9e7c54781ab0ae77ab8"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:22b3f352b8c957885b49433e","label":"generated/quest_dispatch.min.json","provenance_ref":"deterministic","semantic_key":"generated/quest_dispatch.min.json","source_digest":"efbe708e86c104ec085736d7514bd394dce593f2250ff483c20d75c01dd0bc6b","source_record_ids":["aoa:aoa-techniques:artifact:66dcdb07260149d95b47064f"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:4920a368e209bd2071d61163"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:265e91de337dbe3b5a186e14","label":"generated/repo_doc_surface_manifest.min.json","provenance_ref":"deterministic","semantic_key":"generated/repo_doc_surface_manifest.min.json","source_digest":"0ad0a9fa148024ac082732ab937c5a94f090cc469cb2953faa91cb1646c589c0","source_record_ids":["aoa:aoa-techniques:artifact:c229958b59c56f0b786490a6"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:216038c047d7be92f24c9bf3"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:2905bc609a7c2c42005189cf","label":"mechanics/distillation/parts/external-candidate-ledger/generated/external_candidate_registry.min.json","provenance_ref":"deterministic","semantic_key":"mechanics/distillation/parts/external-candidate-ledger/generated/external_candidate_registry.min.json","source_digest":"a02393946255d1374f21561837ec9e805bd05a7f3f5699b8698847893610fac2","source_record_ids":["aoa:aoa-techniques:artifact:75425832416fde31fbae2931"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:ef80566e1761644e154032e8"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:2e7ff97f3f2b6609691eeb45","label":"generated/agents_mesh.min.json","provenance_ref":"deterministic","semantic_key":"generated/agents_mesh.min.json","source_digest":"ce54bc01e69be249f25f8e5d8b4fd3f717b6d939894a15e11da03691ca79e939","source_record_ids":["aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:ef80566e1761644e154032e8"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:2e7ff97f3f2b6609691eeb45","label":"generated/agents_mesh.min.json","provenance_ref":"deterministic","semantic_key":"generated/agents_mesh.min.json","source_digest":"14c8bb6b949676889f33eb6e7031d0f3748ea72f8942c50acfa3c17b1a49f966","source_record_ids":["aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:be3f0595d21dca50791a2020"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:39caaba1243f3614aa78d52c","label":"generated/technique_section_manifest.json","provenance_ref":"deterministic","semantic_key":"generated/technique_section_manifest.json","source_digest":"ed92f20fae216e35f5e6535e9d18fb8d4c949239808065e3b81d11e6e949ae60","source_record_ids":["aoa:aoa-techniques:artifact:f9fb9ec0503569442e6fb072"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:a66ad54861afdc3091142221"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:3ba9014b69f556f1dd0082f7","label":"generated/technique_kind_manifest.json","provenance_ref":"deterministic","semantic_key":"generated/technique_kind_manifest.json","source_digest":"84f5555d40afd0bb7f3e02cc4cb8e352cd119839ba2bae1d320f93b15bbab19c","source_record_ids":["aoa:aoa-techniques:artifact:482a691bd1d9d6813e9b83c3"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:20a5eccfc031f4ee4e4cb2be"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:465e7142ac8838e0bdc33b0e","label":"generated/technique_example_manifest.min.json","provenance_ref":"deterministic","semantic_key":"generated/technique_example_manifest.min.json","source_digest":"2f39ca3c1552f0386e40a5f19c59346f750578361f5c71e63cbb32199d220a09","source_record_ids":["aoa:aoa-techniques:artifact:05ecaf9308cc1250d1052b8c"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4354,7 +4371,7 @@ {"anchor_ids":["aoa:aoa-techniques:anchor:8cf09d9b7192e61a8d0ac789"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:edf5509ced01f712ad516195","label":"mechanics/agon/parts/epistemic-technique-candidates/generated/agon_epistemic_technique_candidates.min.json","provenance_ref":"deterministic","semantic_key":"generated/agon_epistemic_technique_candidates.min.json","source_digest":"3ad19508623c389213149249ea8da22dfd1877278c71a039ace81173e3bbd44e","source_record_ids":["aoa:aoa-techniques:artifact:49d95df5bbbf21afc44d32be"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:31067163c538642116e9c3aa"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:f149407b3f74937ada22b883","label":"generated/semantic_review_manifest.min.json","provenance_ref":"deterministic","semantic_key":"generated/semantic_review_manifest.min.json","source_digest":"906b35a8786f30e62136cf55251aa53b4da26bb574dbca5bcd037e7fcdc50ebb","source_record_ids":["aoa:aoa-techniques:artifact:ed8ed1245b36f2ea83118af5"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:d8fceefed4d8fc6f0a1662ad"],"entity_kind":"readmodel","id":"aoa:aoa-techniques:entity:f49fde805371209f06281160","label":"mechanics/agon/parts/move-technique-bridge/generated/agon_technique_binding_candidates.min.json","provenance_ref":"deterministic","semantic_key":"generated/agon_technique_binding_candidates.min.json","source_digest":"daaf1d1d094ad9b665e54abf01daf19ac7557eb1dd28a251fc793f20c14363ac","source_record_ids":["aoa:aoa-techniques:artifact:530c1f5f4fd8537b2cc4c141"],"temporal_ref":"current","trust_ref":"deterministic"}, - {"anchor_ids":["aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637"],"entity_kind":"repository","id":"aoa:aoa-techniques:entity:1ebc26f279153617949f5c39","label":"aoa-techniques","provenance_ref":"deterministic","semantic_key":"directory:.","source_digest":"5efc863533daa0d87e2b9815eaade2dd70c8d7fe73467a8cf1b88d36440bf08e","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"temporal_ref":"current","trust_ref":"deterministic"}, + {"anchor_ids":["aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637"],"entity_kind":"repository","id":"aoa:aoa-techniques:entity:1ebc26f279153617949f5c39","label":"aoa-techniques","provenance_ref":"deterministic","semantic_key":"directory:.","source_digest":"2fffaeaa203d636b9eec9f128bfe31f674d36a13caf1221dcac9fb3a3d4ffa3c","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:0c10801445a1a630b123020f"],"entity_kind":"schema_definition","id":"aoa:aoa-techniques:entity:169eaa2816aa4833b6a8da4a","label":"string_array","provenance_ref":"deterministic","semantic_key":"json:/$defs/string_array","source_digest":"269c9ee2e31b6cc9468b52c60d0a4ff874e13baea935a9ad33d8a7fac362822e","source_record_ids":["aoa:aoa-techniques:artifact:9d5e17a6b07eb18a81912631"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:5385633473211440f48a7cf1"],"entity_kind":"schema_definition","id":"aoa:aoa-techniques:entity:2d214a997e1521b28115530a","label":"$defs","provenance_ref":"deterministic","semantic_key":"json:/$defs","source_digest":"afaf5cb86713ab1c9d7e1345e5c1d2f3f3e5fad2bb00d5b5626dd61a02be3400","source_record_ids":["aoa:aoa-techniques:artifact:9851eb240bc1fe75a20ec096"],"temporal_ref":"current","trust_ref":"deterministic"}, {"anchor_ids":["aoa:aoa-techniques:anchor:e519b1640aa12b2a8c69811d"],"entity_kind":"schema_definition","id":"aoa:aoa-techniques:entity:3f782515347f6e3985eca61b","label":"$defs","provenance_ref":"deterministic","semantic_key":"json:/$defs","source_digest":"342b3926cee66f3e4a556e22803b4fab43a5de845cbfdef2c3cf577b2c6bb917","source_record_ids":["aoa:aoa-techniques:artifact:84dea1f2d0e604c945f35906"],"temporal_ref":"current","trust_ref":"deterministic"}, @@ -4364,7 +4381,7 @@ ], "index_identity": { "artifact_kind": "repository_entity_index", - "content_digest": "a8a15c2871d6ea76b854aef2e2e9bda8fc5c9df91136614debfe6e9ca780e3a4", + "content_digest": "52451fbff0e6c2ac17f2c1360b5bd6877e0d60cf5b36913adbb93b580e1bbdff", "index_kind": "entity", "local_id": "index:repo-local:entities", "schema_ref": "aoa-kag:schemas/repo-local-kag-repository-index.schema.json" @@ -4449,26 +4466,26 @@ }, "schema_version": "aoa-repo-local-kag-repository-index-v2", "source_index": { - "content_digest": "6f6234e98c9535e09c594f0067aaa9b7cf200315fe9ad4614fc56f068764f93e", + "content_digest": "5ac3215479d6a47cceccef0d681726080f6f044829400eb36c014b65d84b9c79", "local_id": "index:repo-local:source-surfaces", "path": "kag/indexes/source_surface_index.json" }, "summary": { - "entry_count": 4361, + "entry_count": 4378, "kind_counts": { - "agent_route": 94, - "command": 127, + "agent_route": 95, + "command": 129, "contract": 39, "decision": 75, - "directory": 915, - "document": 1499, + "directory": 917, + "document": 1500, "manifest": 6, "mechanic_package": 17, "mechanic_part": 79, "owner_surface": 2, - "python_class": 107, - "python_function": 712, - "python_method": 635, + "python_class": 108, + "python_function": 718, + "python_method": 639, "readmodel": 47, "repository": 1, "schema_definition": 6 diff --git a/kag/indexes/repo_event_index.json b/kag/indexes/repo_event_index.json index d9228fd8..671fd824 100644 --- a/kag/indexes/repo_event_index.json +++ b/kag/indexes/repo_event_index.json @@ -258,6 +258,7 @@ {"actor":{"email":"gerhmangrant@gmail.com","name":"dionysus"},"anchor_ids":["aoa:aoa-techniques:anchor:00f749287049b6cbac539733","aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335","aoa:aoa-techniques:anchor:2c9dbac0c8f40e0e64107103","aoa:aoa-techniques:anchor:4920a368e209bd2071d61163","aoa:aoa-techniques:anchor:740691800808033c0583c7e7","aoa:aoa-techniques:anchor:7587370c1a2d80e96695fd85","aoa:aoa-techniques:anchor:76eea640c24009aec1bfab28","aoa:aoa-techniques:anchor:941ca3f162c38ce3a00947a7","aoa:aoa-techniques:anchor:9658ffb32a49a4b52422e50c","aoa:aoa-techniques:anchor:ad15789ff37f3d468ff8b076","aoa:aoa-techniques:anchor:c450c667dbffb5ccadc74e72","aoa:aoa-techniques:anchor:d9a9b2878690d70f1b1dc1eb","aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","aoa:aoa-techniques:anchor:e76389ba8dbed6265fa06b2d","aoa:aoa-techniques:anchor:e8e9e9ae76197e1ef03bb9fe","aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","old_path":"","path":"CHANGELOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","old_path":"","path":"README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:88a5286d112e6a9a50e482d8","old_path":"","path":"docs/EVIDENCE_NOTE_PROVENANCE_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:65e16107b952e70c8143f444","old_path":"","path":"docs/KAG_SOURCE_LIFT_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","old_path":"","path":"docs/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8936340d2e7844f9c8b77f67","old_path":"","path":"docs/RELEASING.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3d14c3a6aa03429c49aa00cb","old_path":"","path":"docs/REPO_DOC_SURFACES.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:d39fb28408cf3fb0f6d77214","old_path":"","path":"docs/REPO_DOC_SURFACE_LIFT_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e68b0d639bece8be88382143","old_path":"","path":"docs/SELECTION_PATTERNS.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","old_path":"","path":"docs/START_HERE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:492b78300882a0665199b29d","old_path":"","path":"docs/TECHNIQUE_CAPSULE_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f0f2da3459f55832608c73b4","old_path":"","path":"docs/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5182e7d1394de0c039b65613","old_path":"","path":"docs/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2991279148f7e9edfd5ef750","old_path":"","path":"docs/TECHNIQUE_SECTION_LIFT_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5bc6e409bcfd7f1e6c75c67c","old_path":"","path":"docs/TECHNIQUE_SELECTION.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f595c7dcba8912a4d6d4aa98","old_path":"","path":"docs/TECHNIQUE_SHADOW_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:16624bc09c6fb2997b57bfc6","old_path":"","path":"generated/repo_doc_surface_manifest.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c229958b59c56f0b786490a6","old_path":"","path":"generated/repo_doc_surface_manifest.min.json"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:070046d3ac1483cac58e8963","old_path":"","path":"scripts/release_check.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","old_path":"","path":"scripts/validate_repo.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2703d8ddae46be18fcf0b3fe","old_path":"","path":"tests/test_validate_repo.py"}],"event_kind":"git_commit","event_role":"observation","evidence_refs":[{"kind":"git_commit","ref":"78a9ea4ba32b415b6b0da75712968fd3ba2286c4"}],"id":"aoa:aoa-techniques:event:4dc2d5f568e3bd1afebbe91a","label":"docs: add standalone self-serve entrypoint","object_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","aoa:aoa-techniques:artifact:070046d3ac1483cac58e8963","aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","aoa:aoa-techniques:artifact:16624bc09c6fb2997b57bfc6","aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","aoa:aoa-techniques:artifact:2991279148f7e9edfd5ef750","aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","aoa:aoa-techniques:artifact:492b78300882a0665199b29d","aoa:aoa-techniques:artifact:5182e7d1394de0c039b65613","aoa:aoa-techniques:artifact:65e16107b952e70c8143f444","aoa:aoa-techniques:artifact:88a5286d112e6a9a50e482d8","aoa:aoa-techniques:artifact:8936340d2e7844f9c8b77f67","aoa:aoa-techniques:artifact:b335630551682c19a781afeb","aoa:aoa-techniques:artifact:c229958b59c56f0b786490a6","aoa:aoa-techniques:artifact:d39fb28408cf3fb0f6d77214","aoa:aoa-techniques:artifact:f0f2da3459f55832608c73b4","aoa:aoa-techniques:artifact:f595c7dcba8912a4d6d4aa98"],"observation_state":"observed","occurred_at":"2026-03-21T07:06:46-06:00","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","aoa:aoa-techniques:artifact:070046d3ac1483cac58e8963","aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","aoa:aoa-techniques:artifact:16624bc09c6fb2997b57bfc6","aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","aoa:aoa-techniques:artifact:2991279148f7e9edfd5ef750","aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","aoa:aoa-techniques:artifact:492b78300882a0665199b29d","aoa:aoa-techniques:artifact:5182e7d1394de0c039b65613","aoa:aoa-techniques:artifact:65e16107b952e70c8143f444","aoa:aoa-techniques:artifact:88a5286d112e6a9a50e482d8","aoa:aoa-techniques:artifact:8936340d2e7844f9c8b77f67","aoa:aoa-techniques:artifact:b335630551682c19a781afeb","aoa:aoa-techniques:artifact:c229958b59c56f0b786490a6","aoa:aoa-techniques:artifact:d39fb28408cf3fb0f6d77214","aoa:aoa-techniques:artifact:f0f2da3459f55832608c73b4","aoa:aoa-techniques:artifact:f595c7dcba8912a4d6d4aa98"],"temporal_ref":"historical","trust_ref":"observed"}, {"actor":{"email":"gerhmangrant@gmail.com","name":"Dionysus"},"anchor_ids":["aoa:aoa-techniques:anchor:4920a368e209bd2071d61163","aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12","aoa:aoa-techniques:anchor:d9a9b2878690d70f1b1dc1eb"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","old_path":"","path":"AGENTS.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","old_path":"","path":"docs/AGENTS_ROOT_REFERENCE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3d14c3a6aa03429c49aa00cb","old_path":"","path":"docs/REPO_DOC_SURFACES.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:16624bc09c6fb2997b57bfc6","old_path":"","path":"generated/repo_doc_surface_manifest.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c229958b59c56f0b786490a6","old_path":"","path":"generated/repo_doc_surface_manifest.min.json"}],"event_kind":"git_commit","event_role":"observation","evidence_refs":[{"kind":"git_commit","ref":"dd468de3b867272266ad223f29990e62f75d64f4"}],"id":"aoa:aoa-techniques:event:4e1d7f13486fc7641538324e","label":"Slim root AGENTS route card (#197)","object_ids":["aoa:aoa-techniques:artifact:16624bc09c6fb2997b57bfc6","aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","aoa:aoa-techniques:artifact:c229958b59c56f0b786490a6"],"observation_state":"observed","occurred_at":"2026-04-24T16:02:55-06:00","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:16624bc09c6fb2997b57bfc6","aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","aoa:aoa-techniques:artifact:c229958b59c56f0b786490a6"],"temporal_ref":"historical","trust_ref":"observed"}, {"actor":{"email":"gerhmangrant@gmail.com","name":"Dionysus"},"anchor_ids":["aoa:aoa-techniques:anchor:230ccd6b97439f8e668e242d","aoa:aoa-techniques:anchor:361103f961f909f4c123433e","aoa:aoa-techniques:anchor:49b39e0d7f8569f514e63c0f","aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","aoa:aoa-techniques:anchor:d4fc0c403c650e871a2cbda3","aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","aoa:aoa-techniques:anchor:ee3573cbf43c02a6c53a76c3"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","old_path":"","path":"CHANGELOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","old_path":"","path":"ROADMAP.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:79eeacf6b8500c3529e09a8e","old_path":"","path":"docs/TECHNIQUE_TREE_CONTRACT.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","old_path":"","path":"mechanics/distillation/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:357fc16504ccf5afe89c3226","old_path":"","path":"mechanics/distillation/ROADMAP.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:321896c1b1f5171091b5cdf3","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:36dea36870d073dbc0007be5","old_path":"","path":"tests/test_distillation_mechanics_topology.py"}],"event_kind":"git_commit","event_role":"observation","evidence_refs":[{"kind":"git_commit","ref":"926ca9544063cd85652be88344cdcb966ad7592f"}],"id":"aoa:aoa-techniques:event:4e281af1916df4db111fbade","label":"Accept history artifacts migration review","object_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","aoa:aoa-techniques:artifact:321896c1b1f5171091b5cdf3","aoa:aoa-techniques:artifact:357fc16504ccf5afe89c3226","aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","aoa:aoa-techniques:artifact:79eeacf6b8500c3529e09a8e","aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","aoa:aoa-techniques:artifact:e2f11de3b127965c05321619"],"observation_state":"observed","occurred_at":"2026-05-05T23:40:28+03:00","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","aoa:aoa-techniques:artifact:321896c1b1f5171091b5cdf3","aoa:aoa-techniques:artifact:357fc16504ccf5afe89c3226","aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","aoa:aoa-techniques:artifact:79eeacf6b8500c3529e09a8e","aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","aoa:aoa-techniques:artifact:e2f11de3b127965c05321619"],"temporal_ref":"historical","trust_ref":"observed"}, + {"actor":{"email":"gerhmangrant@gmail.com","name":"Dionysus"},"anchor_ids":["aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b","aoa:aoa-techniques:anchor:2dcb946bb46f02a50eb66d0e","aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e","aoa:aoa-techniques:anchor:54b2514382567e92c148fb34"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","old_path":"","path":".github/workflows/repo-validation.yml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","old_path":"","path":"docs/validation/script_inventory.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","old_path":"","path":"scripts/validate_repo_local_kag_index.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","old_path":"","path":"tests/test_validation_command_authority.py"}],"event_kind":"git_commit","event_role":"observation","evidence_refs":[{"kind":"git_commit","ref":"5fa63ab7464b502a5cf3412e4680d1ef9f13ecce"}],"id":"aoa:aoa-techniques:event:4e347fb6b99620fdd54afc25","label":"Publish canonical repository KAG indexes (#491)","object_ids":["aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"observation_state":"observed","occurred_at":"2026-07-13T07:47:23-06:00","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"historical","trust_ref":"observed"}, {"actor":{"email":"gerhmangrant@gmail.com","name":"Dionysus"},"anchor_ids":["aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","aoa:aoa-techniques:anchor:39469a54b5e09db7fe695713","aoa:aoa-techniques:anchor:4cc87be9411909b81328211c","aoa:aoa-techniques:anchor:4ead9cf657de60c2517d354f","aoa:aoa-techniques:anchor:4fd5e3dfc08f29be6a170522","aoa:aoa-techniques:anchor:54b2514382567e92c148fb34","aoa:aoa-techniques:anchor:5647f9b9c1846f3a6e45685b","aoa:aoa-techniques:anchor:624e14471dcc70f2e10c992d","aoa:aoa-techniques:anchor:66b687eee0d343d6aab2c83d","aoa:aoa-techniques:anchor:9658ffb32a49a4b52422e50c","aoa:aoa-techniques:anchor:ab48cda35388cd4c61e1c990","aoa:aoa-techniques:anchor:f68e92a5a5dac543df202ee5"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","old_path":"","path":".github/workflows/repo-validation.yml"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:f154afc903516acbc3b82fb5","old_path":"","path":"QUESTBOOK.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c","old_path":"","path":"docs/QUESTBOOK_TECHNIQUE_INTEGRATION.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:8c0ed3db3ce3770121c8417c","old_path":"","path":"generated/quest_catalog.min.example.json"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:ff48f2b1eda51875912e7e4f","old_path":"","path":"generated/quest_dispatch.min.example.json"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:a9f81a69a80d48fb46bc559c","old_path":"","path":"quests/AOA-TECH-Q-0001.yaml"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:1091cc9174e245fe28528e91","old_path":"","path":"quests/AOA-TECH-Q-0002.yaml"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:dd9c419d0344888545b5ba9a","old_path":"","path":"quests/AOA-TECH-Q-0003.yaml"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:754686c05ff675b0e98c9aa0","old_path":"","path":"quests/AOA-TECH-Q-0004.yaml"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:badf964675bbec9938eff09e","old_path":"","path":"schemas/quest.schema.json"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:f3dd6e206faf881e1b1dda3a","old_path":"","path":"schemas/quest_dispatch.schema.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","old_path":"","path":"scripts/validate_repo.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2703d8ddae46be18fcf0b3fe","old_path":"","path":"tests/test_validate_repo.py"}],"event_kind":"git_commit","event_role":"observation","evidence_refs":[{"kind":"git_commit","ref":"c4b9a432ae2124f2e877e716d0248777861ecc87"}],"id":"aoa:aoa-techniques:event:4f049eb72f2021870085ed57","label":"Land questbook technique integration surfaces (#131)","object_ids":["aoa:aoa-techniques:artifact:1091cc9174e245fe28528e91","aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","aoa:aoa-techniques:artifact:754686c05ff675b0e98c9aa0","aoa:aoa-techniques:artifact:8c0ed3db3ce3770121c8417c","aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c","aoa:aoa-techniques:artifact:a9f81a69a80d48fb46bc559c","aoa:aoa-techniques:artifact:badf964675bbec9938eff09e","aoa:aoa-techniques:artifact:dd9c419d0344888545b5ba9a","aoa:aoa-techniques:artifact:f154afc903516acbc3b82fb5","aoa:aoa-techniques:artifact:f3dd6e206faf881e1b1dda3a","aoa:aoa-techniques:artifact:ff48f2b1eda51875912e7e4f"],"observation_state":"observed","occurred_at":"2026-04-01T02:53:22+03:00","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:1091cc9174e245fe28528e91","aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","aoa:aoa-techniques:artifact:754686c05ff675b0e98c9aa0","aoa:aoa-techniques:artifact:8c0ed3db3ce3770121c8417c","aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c","aoa:aoa-techniques:artifact:a9f81a69a80d48fb46bc559c","aoa:aoa-techniques:artifact:badf964675bbec9938eff09e","aoa:aoa-techniques:artifact:dd9c419d0344888545b5ba9a","aoa:aoa-techniques:artifact:f154afc903516acbc3b82fb5","aoa:aoa-techniques:artifact:f3dd6e206faf881e1b1dda3a","aoa:aoa-techniques:artifact:ff48f2b1eda51875912e7e4f"],"temporal_ref":"historical","trust_ref":"observed"}, {"actor":{"email":"gerhmangrant@gmail.com","name":"dionysus"},"anchor_ids":["aoa:aoa-techniques:anchor:02b831f4b9c92abe0f1b89c8","aoa:aoa-techniques:anchor:0b7666ef2104d232a3d6d0da","aoa:aoa-techniques:anchor:186352448f41da3d4c4fb45d","aoa:aoa-techniques:anchor:43bf12c360867449acf44e68","aoa:aoa-techniques:anchor:4e699262a0ad253cf301f8b4","aoa:aoa-techniques:anchor:4eab77fd386af5ae2113dd0a","aoa:aoa-techniques:anchor:4fa89ac9ebdddb09380968fc","aoa:aoa-techniques:anchor:505ca391ac1507d95a92ca44","aoa:aoa-techniques:anchor:53793786a4cb1c1ea2921c99","aoa:aoa-techniques:anchor:56c67965ec35f9efd50247c3","aoa:aoa-techniques:anchor:5a3c7a8e5ec6967b4e10277e","aoa:aoa-techniques:anchor:61a13410933f0cb278b73b4e","aoa:aoa-techniques:anchor:742ffb384c201b4341ba179c","aoa:aoa-techniques:anchor:756d8e5f4ec4a41de767985e","aoa:aoa-techniques:anchor:8717cb6d4d8acee0422f6336","aoa:aoa-techniques:anchor:8a51e9e74cd1141d34c549cf","aoa:aoa-techniques:anchor:a155e088afec56e980544ff7","aoa:aoa-techniques:anchor:a2e7fc3b28042ca4a62070be","aoa:aoa-techniques:anchor:a666000cb117e8287914d4f6","aoa:aoa-techniques:anchor:a7fdbd6a59e9029a1a4fbd95","aoa:aoa-techniques:anchor:aa369dd1896057a6b58c3679","aoa:aoa-techniques:anchor:be3f0595d21dca50791a2020","aoa:aoa-techniques:anchor:c254d529781b53baefc77118","aoa:aoa-techniques:anchor:c310e120de643ddb3f096884","aoa:aoa-techniques:anchor:c499dfd72c4a83cc6cb04e55","aoa:aoa-techniques:anchor:c546830b92d574e43f03c22d","aoa:aoa-techniques:anchor:c8e761cb64670b22bf947ebb","aoa:aoa-techniques:anchor:d48d9ac189be3eee7a0503af","aoa:aoa-techniques:anchor:d4c63523de46edbfeb5cd031","aoa:aoa-techniques:anchor:d54653655e7c53a8a1f998fb","aoa:aoa-techniques:anchor:d5c33fb458c991f7a3c6cb60","aoa:aoa-techniques:anchor:dd709313b688f3f518b8ab01","aoa:aoa-techniques:anchor:f0dd03c21fc64e0b1d900853","aoa:aoa-techniques:anchor:f930d38f8199e6bbc5ba4b61","aoa:aoa-techniques:anchor:faabba6a1a7809c96a39d8a6"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f76039d0935f2763a73750eb","old_path":"","path":"docs/TECHNIQUE_CAPSULES.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:504d3c903c8d5ccbcf5b3a18","old_path":"","path":"docs/TECHNIQUE_CHECKLISTS.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:98e2b2359f5d77618787b2e6","old_path":"","path":"generated/technique_capsules.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:25ec99b48eaf10eda7e1cf3c","old_path":"","path":"generated/technique_capsules.min.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a89cc4cf0027284e4e48535d","old_path":"","path":"generated/technique_checklist_manifest.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4a7971b6969f883379199d9b","old_path":"","path":"generated/technique_checklist_manifest.min.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a04c48c0567216a966b69e3f","old_path":"","path":"generated/technique_evidence_note_manifest.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:d10dbcc82376d0d9999bc7b5","old_path":"","path":"generated/technique_evidence_note_manifest.min.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:cd0f784593172b186005e0c4","old_path":"","path":"generated/technique_example_manifest.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f9fb9ec0503569442e6fb072","old_path":"","path":"generated/technique_section_manifest.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:7b268af30da69ec8314c56fa","old_path":"","path":"generated/technique_sections.full.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c9e4a50d242ec9c1a9253330","old_path":"","path":"techniques/agent-workflows/plan-diff-apply-verify-report/TECHNIQUE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:412593e34a337f4133a5cbaf","old_path":"","path":"techniques/agent-workflows/plan-diff-apply-verify-report/notes/adverse-effects-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a8cc6de6b98bd60bcd45ca3c","old_path":"","path":"techniques/docs/bounded-relation-lift-for-kag/notes/adverse-effects-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:ffc4b0c856fe2ec1810bf418","old_path":"","path":"techniques/docs/decision-rationale-recording/TECHNIQUE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4ebf57b05d9ba338303c4ca5","old_path":"","path":"techniques/docs/decision-rationale-recording/checks/decision-rationale-recording-checklist.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5ef6be48d542c0c7372a78d1","old_path":"","path":"techniques/docs/decision-rationale-recording/examples/minimal-decision-rationale-note.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5e8674a380f927a6b5189653","old_path":"","path":"techniques/docs/decision-rationale-recording/notes/canonical-readiness.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f34d8211ba9e5f69b85c27a8","old_path":"","path":"techniques/docs/deterministic-context-composition/TECHNIQUE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:7781bd04b55c734a4bdf27dd","old_path":"","path":"techniques/docs/deterministic-context-composition/notes/adverse-effects-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:07ce8632e7a82fab3b4d585f","old_path":"","path":"techniques/docs/frontmatter-metadata-spine/notes/adverse-effects-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f56482a959a15d6551948971","old_path":"","path":"techniques/docs/lightweight-status-snapshot/TECHNIQUE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:46158246895d2d162c9c033b","old_path":"","path":"techniques/docs/lightweight-status-snapshot/notes/adverse-effects-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0ee990eead6a7da08971259b","old_path":"","path":"techniques/docs/markdown-technique-section-lift/TECHNIQUE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a829baa589e85c03b4ca3b3b","old_path":"","path":"techniques/docs/markdown-technique-section-lift/checks/section-lift-checklist.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:209f2463faaf5c9060be3d1a","old_path":"","path":"techniques/docs/markdown-technique-section-lift/examples/minimal-section-lift.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f3be9a30cb2c2dd0c96a5ce2","old_path":"","path":"techniques/docs/markdown-technique-section-lift/notes/canonical-readiness.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:ed0ec2ca603624cdd17008b2","old_path":"","path":"techniques/docs/public-safe-artifact-sanitization/TECHNIQUE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:9d4831e0ee1b2706ac364a4c","old_path":"","path":"techniques/docs/public-safe-artifact-sanitization/checks/public-safe-artifact-sanitization-checklist.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:452004c0f4712c5664e17c3c","old_path":"","path":"techniques/docs/public-safe-artifact-sanitization/examples/minimal-public-safe-artifact-sanitization.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a5e7d30a9b00589ad9384acc","old_path":"","path":"techniques/docs/public-safe-artifact-sanitization/notes/canonical-readiness.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:d01f2c3a131b1c4d3496ae31","old_path":"","path":"techniques/docs/source-of-truth-layout/TECHNIQUE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1d7350a9603840506726b710","old_path":"","path":"techniques/docs/source-of-truth-layout/notes/adverse-effects-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:9d13ecde0912299ed3aaf2e2","old_path":"","path":"techniques/evaluation/contract-first-smoke-summary/TECHNIQUE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8fa5e1eaf4444e59608238e5","old_path":"","path":"techniques/evaluation/contract-first-smoke-summary/notes/adverse-effects-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c96b85c59264a6b27c7a061b","old_path":"","path":"techniques/evaluation/signal-first-gate-promotion/notes/adverse-effects-review.md"}],"event_kind":"git_commit","event_role":"observation","evidence_refs":[{"kind":"git_commit","ref":"83818953b2d0fe4711879ba102d0891dbeb7e649"}],"id":"aoa:aoa-techniques:event:4f56f180bb5d20ee27a725b1","label":"Tighten technique risks and sync generated readers","object_ids":["aoa:aoa-techniques:artifact:07ce8632e7a82fab3b4d585f","aoa:aoa-techniques:artifact:0ee990eead6a7da08971259b","aoa:aoa-techniques:artifact:1d7350a9603840506726b710","aoa:aoa-techniques:artifact:209f2463faaf5c9060be3d1a","aoa:aoa-techniques:artifact:25ec99b48eaf10eda7e1cf3c","aoa:aoa-techniques:artifact:412593e34a337f4133a5cbaf","aoa:aoa-techniques:artifact:452004c0f4712c5664e17c3c","aoa:aoa-techniques:artifact:46158246895d2d162c9c033b","aoa:aoa-techniques:artifact:4a7971b6969f883379199d9b","aoa:aoa-techniques:artifact:4ebf57b05d9ba338303c4ca5","aoa:aoa-techniques:artifact:5e8674a380f927a6b5189653","aoa:aoa-techniques:artifact:5ef6be48d542c0c7372a78d1","aoa:aoa-techniques:artifact:7781bd04b55c734a4bdf27dd","aoa:aoa-techniques:artifact:7b268af30da69ec8314c56fa","aoa:aoa-techniques:artifact:8fa5e1eaf4444e59608238e5","aoa:aoa-techniques:artifact:98e2b2359f5d77618787b2e6","aoa:aoa-techniques:artifact:9d13ecde0912299ed3aaf2e2","aoa:aoa-techniques:artifact:9d4831e0ee1b2706ac364a4c","aoa:aoa-techniques:artifact:a04c48c0567216a966b69e3f","aoa:aoa-techniques:artifact:a5e7d30a9b00589ad9384acc","aoa:aoa-techniques:artifact:a829baa589e85c03b4ca3b3b","aoa:aoa-techniques:artifact:a89cc4cf0027284e4e48535d","aoa:aoa-techniques:artifact:a8cc6de6b98bd60bcd45ca3c","aoa:aoa-techniques:artifact:c96b85c59264a6b27c7a061b","aoa:aoa-techniques:artifact:c9e4a50d242ec9c1a9253330","aoa:aoa-techniques:artifact:cd0f784593172b186005e0c4","aoa:aoa-techniques:artifact:d01f2c3a131b1c4d3496ae31","aoa:aoa-techniques:artifact:d10dbcc82376d0d9999bc7b5","aoa:aoa-techniques:artifact:ed0ec2ca603624cdd17008b2","aoa:aoa-techniques:artifact:f34d8211ba9e5f69b85c27a8","aoa:aoa-techniques:artifact:f3be9a30cb2c2dd0c96a5ce2","aoa:aoa-techniques:artifact:f56482a959a15d6551948971","aoa:aoa-techniques:artifact:f76039d0935f2763a73750eb","aoa:aoa-techniques:artifact:f9fb9ec0503569442e6fb072","aoa:aoa-techniques:artifact:ffc4b0c856fe2ec1810bf418"],"observation_state":"observed","occurred_at":"2026-03-22T20:17:20-06:00","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:07ce8632e7a82fab3b4d585f","aoa:aoa-techniques:artifact:0ee990eead6a7da08971259b","aoa:aoa-techniques:artifact:1d7350a9603840506726b710","aoa:aoa-techniques:artifact:209f2463faaf5c9060be3d1a","aoa:aoa-techniques:artifact:25ec99b48eaf10eda7e1cf3c","aoa:aoa-techniques:artifact:412593e34a337f4133a5cbaf","aoa:aoa-techniques:artifact:452004c0f4712c5664e17c3c","aoa:aoa-techniques:artifact:46158246895d2d162c9c033b","aoa:aoa-techniques:artifact:4a7971b6969f883379199d9b","aoa:aoa-techniques:artifact:4ebf57b05d9ba338303c4ca5","aoa:aoa-techniques:artifact:5e8674a380f927a6b5189653","aoa:aoa-techniques:artifact:5ef6be48d542c0c7372a78d1","aoa:aoa-techniques:artifact:7781bd04b55c734a4bdf27dd","aoa:aoa-techniques:artifact:7b268af30da69ec8314c56fa","aoa:aoa-techniques:artifact:8fa5e1eaf4444e59608238e5","aoa:aoa-techniques:artifact:98e2b2359f5d77618787b2e6","aoa:aoa-techniques:artifact:9d13ecde0912299ed3aaf2e2","aoa:aoa-techniques:artifact:9d4831e0ee1b2706ac364a4c","aoa:aoa-techniques:artifact:a04c48c0567216a966b69e3f","aoa:aoa-techniques:artifact:a5e7d30a9b00589ad9384acc","aoa:aoa-techniques:artifact:a829baa589e85c03b4ca3b3b","aoa:aoa-techniques:artifact:a89cc4cf0027284e4e48535d","aoa:aoa-techniques:artifact:a8cc6de6b98bd60bcd45ca3c","aoa:aoa-techniques:artifact:c96b85c59264a6b27c7a061b","aoa:aoa-techniques:artifact:c9e4a50d242ec9c1a9253330","aoa:aoa-techniques:artifact:cd0f784593172b186005e0c4","aoa:aoa-techniques:artifact:d01f2c3a131b1c4d3496ae31","aoa:aoa-techniques:artifact:d10dbcc82376d0d9999bc7b5","aoa:aoa-techniques:artifact:ed0ec2ca603624cdd17008b2","aoa:aoa-techniques:artifact:f34d8211ba9e5f69b85c27a8","aoa:aoa-techniques:artifact:f3be9a30cb2c2dd0c96a5ce2","aoa:aoa-techniques:artifact:f56482a959a15d6551948971","aoa:aoa-techniques:artifact:f76039d0935f2763a73750eb","aoa:aoa-techniques:artifact:f9fb9ec0503569442e6fb072","aoa:aoa-techniques:artifact:ffc4b0c856fe2ec1810bf418"],"temporal_ref":"historical","trust_ref":"observed"}, {"actor":{"email":"gerhmangrant@gmail.com","name":"Dionysus"},"anchor_ids":["aoa:aoa-techniques:anchor:0501687a7627eea1ab27a425","aoa:aoa-techniques:anchor:05c3c0988087d01c88be47da","aoa:aoa-techniques:anchor:06b13a0eb1406e48dd64b57a","aoa:aoa-techniques:anchor:078e7f333328f1102459e5fb","aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","aoa:aoa-techniques:anchor:08b0f7e8349993480547112e","aoa:aoa-techniques:anchor:08b9cbbc688a1f382cb4a26b","aoa:aoa-techniques:anchor:09cf3eb855544e96edd2a660","aoa:aoa-techniques:anchor:0a5b8691b2e60286f691096d","aoa:aoa-techniques:anchor:0ac7d95b0927b6ff2aca0278","aoa:aoa-techniques:anchor:0b102dae6de70e92d37a0fde","aoa:aoa-techniques:anchor:0eef034a77a979020ccdf420","aoa:aoa-techniques:anchor:0f15e80c000c8f5d22d6d178","aoa:aoa-techniques:anchor:0fb98907001d1b8a87bd1e92","aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335","aoa:aoa-techniques:anchor:174980a049e0dbb2fcb3a0b9","aoa:aoa-techniques:anchor:1bae7da365b39d0b65c274e9","aoa:aoa-techniques:anchor:1c34dc0ad73cd87fbca87741","aoa:aoa-techniques:anchor:205aa2034c6fc0a487f49d95","aoa:aoa-techniques:anchor:23c462e9b98c602d506b5ef9","aoa:aoa-techniques:anchor:23d685dd4d27d0361dbf33c4","aoa:aoa-techniques:anchor:25bd5860f48d9d0db01787f6","aoa:aoa-techniques:anchor:270751308ecc15c719876d0b","aoa:aoa-techniques:anchor:2cc82b34f656b2ba9be07708","aoa:aoa-techniques:anchor:2e97f6bf0bbef989ad50abc9","aoa:aoa-techniques:anchor:3451385aaf7fe495cd288462","aoa:aoa-techniques:anchor:356f5d8a442ca9d2278c6085","aoa:aoa-techniques:anchor:35f09c38d6104131c92cf856","aoa:aoa-techniques:anchor:35f572e564c2ca2e9ab09660","aoa:aoa-techniques:anchor:391d68382ac0881c0d65819b","aoa:aoa-techniques:anchor:3a92cf550cbb4276881c9c4f","aoa:aoa-techniques:anchor:3bc78c5b848f6cb3f84a5ec5","aoa:aoa-techniques:anchor:41b9498a50c8fd67ded8543d","aoa:aoa-techniques:anchor:4542faaec0b9f84893bba941","aoa:aoa-techniques:anchor:471c76e509f12421a7e3531d","aoa:aoa-techniques:anchor:4c7980bcdd608534212bb1a3","aoa:aoa-techniques:anchor:4ead9cf657de60c2517d354f","aoa:aoa-techniques:anchor:4f92b0dba7435da64117d54a","aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","aoa:aoa-techniques:anchor:521d783c129ef44781bb1535","aoa:aoa-techniques:anchor:539c4c7f1988986bb8dedb41","aoa:aoa-techniques:anchor:55370041d4d66c0c1010ff3d","aoa:aoa-techniques:anchor:55b57fc1f478d0e631675468","aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b","aoa:aoa-techniques:anchor:5ad33e6207efb0741486e279","aoa:aoa-techniques:anchor:5b814807ff70d47ae2affb53","aoa:aoa-techniques:anchor:5b8faca6d827a00b51c80f7a","aoa:aoa-techniques:anchor:5c410ee8c7ec61769e175820","aoa:aoa-techniques:anchor:5d0ee6209107af8606a1790a","aoa:aoa-techniques:anchor:5d36ed9a80c6b5ef3346805f","aoa:aoa-techniques:anchor:624e14471dcc70f2e10c992d","aoa:aoa-techniques:anchor:6402a1a49413d4b59b28c467","aoa:aoa-techniques:anchor:675caa36db4c691a99fb1d7b","aoa:aoa-techniques:anchor:67e4c840ab1dad3c1e825c4d","aoa:aoa-techniques:anchor:6a8178209fb899ebd08acacd","aoa:aoa-techniques:anchor:6ce9c33bc9689a5760681e8b","aoa:aoa-techniques:anchor:71407fbd9fd3673cf3c2ad4a","aoa:aoa-techniques:anchor:72fe7d00090431aed1044af0","aoa:aoa-techniques:anchor:780715be6297dd7326ae69a4","aoa:aoa-techniques:anchor:7e8536a61f170cb5c433425f","aoa:aoa-techniques:anchor:8354c9cffb8970ac26ef1646","aoa:aoa-techniques:anchor:85678bd420420491d2cd28d7","aoa:aoa-techniques:anchor:8cf09d9b7192e61a8d0ac789","aoa:aoa-techniques:anchor:90ab32120d5c8a5f1dda48b5","aoa:aoa-techniques:anchor:90c4dfe155106869deff84d8","aoa:aoa-techniques:anchor:93f27444e3bcda366d5dee01","aoa:aoa-techniques:anchor:952644c92cdcb3fd86ed2a8b","aoa:aoa-techniques:anchor:9658ffb32a49a4b52422e50c","aoa:aoa-techniques:anchor:987d69794dcc38a5249522f8","aoa:aoa-techniques:anchor:9a2ab01879b8826a731fbfe4","aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","aoa:aoa-techniques:anchor:a0ae7bd833a34e8ba753daa5","aoa:aoa-techniques:anchor:a20636241a8dc5adffe6d7b1","aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","aoa:aoa-techniques:anchor:a658057f502887df6009c134","aoa:aoa-techniques:anchor:a7ff43c13c99bd039822390d","aoa:aoa-techniques:anchor:aa0eb5639c01d3172be8250c","aoa:aoa-techniques:anchor:ab48cda35388cd4c61e1c990","aoa:aoa-techniques:anchor:ae6e6ddb8f2ec937caac64f5","aoa:aoa-techniques:anchor:b423ccc3bc299d13a0bfb338","aoa:aoa-techniques:anchor:b75b1b904f0ace27550b8101","aoa:aoa-techniques:anchor:bcaa53e7acc82f692731e6ca","aoa:aoa-techniques:anchor:bcb3c179f9ebc59fc6771835","aoa:aoa-techniques:anchor:bcd9180670351ea5814b34ea","aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12","aoa:aoa-techniques:anchor:c25c1a92122af796072b8399","aoa:aoa-techniques:anchor:c392164dd57169f43cee87de","aoa:aoa-techniques:anchor:ceacb18aec244c55056b46f4","aoa:aoa-techniques:anchor:d4d0162479655530148090ae","aoa:aoa-techniques:anchor:d70310745f03bf38bbee3314","aoa:aoa-techniques:anchor:d8fceefed4d8fc6f0a1662ad","aoa:aoa-techniques:anchor:db67e41e4b5091dfbdbc2e29","aoa:aoa-techniques:anchor:e11527fa3a3abd6e85e5599d","aoa:aoa-techniques:anchor:e61bf410ff1ea751bb503a41","aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","aoa:aoa-techniques:anchor:e6d87899b6753650739c098f","aoa:aoa-techniques:anchor:e76b0f29dde266311d494e44","aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","aoa:aoa-techniques:anchor:ee1e76d4a78188f8019e2596","aoa:aoa-techniques:anchor:f0dee75f40aa051e58a5c9a2","aoa:aoa-techniques:anchor:f2ac36ccce95e3952fdb2970","aoa:aoa-techniques:anchor:f32633d53076e243d2c35453","aoa:aoa-techniques:anchor:f3dc1e711c49dad3e623583f","aoa:aoa-techniques:anchor:faa0549bd8a62e90f4b00f50","aoa:aoa-techniques:anchor:ff29aea45abfb3b4eef60ea8"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","old_path":"","path":"AGENTS.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","old_path":"","path":"CHANGELOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:eca12c0a30e25b4b46522ebf","old_path":"","path":"CONTRIBUTING.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","old_path":"","path":"README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","old_path":"","path":"ROADMAP.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","old_path":"","path":"docs/AGENTS_ROOT_REFERENCE.md"},{"change_kind":"delete","object_id":"aoa:aoa-techniques:artifact:fc217a09ff3195ca552a9b0c","old_path":"","path":"docs/AGON_EPISTEMIC_PRACTICE_BOUNDARY.md"},{"change_kind":"delete","object_id":"aoa:aoa-techniques:artifact:87efb9ded0f887a2b2a3d8dc","old_path":"","path":"docs/AGON_EPISTEMIC_TECHNIQUE_CANDIDATES.md"},{"change_kind":"delete","object_id":"aoa:aoa-techniques:artifact:90e1db295d03c0e002e83975","old_path":"","path":"docs/AGON_RECURRENCE_ADAPTER.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4ac7da18a129100dac72e35a","old_path":"","path":"docs/CANONICAL_REVIEW_GUIDE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:b2612e9335e498d648ec4fb5","old_path":"","path":"docs/CANONICAL_RUBRIC.md"},{"change_kind":"delete","object_id":"aoa:aoa-techniques:artifact:62dcd205cb9d5229296ab1ba","old_path":"","path":"docs/EXTERNAL_EVIDENCE_LEDGER.md"},{"change_kind":"delete","object_id":"aoa:aoa-techniques:artifact:7dd1feaae4fcaaf120dea109","old_path":"","path":"docs/PROMOTION_READINESS_MATRIX.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","old_path":"","path":"docs/README.md"},{"change_kind":"delete","object_id":"aoa:aoa-techniques:artifact:50171ac0303b74161bd0ab00","old_path":"","path":"docs/RECURRENCE_LIVE_OBSERVATION_PRODUCERS.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","old_path":"","path":"docs/START_HERE.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","old_path":"","path":"docs/decisions/2026-05-01-agon-active-legacy-split.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:fdd58aeb6b4fafa71844c566","old_path":"","path":"docs/decisions/2026-05-01-agon-part-local-artifacts.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:bafb21d6b5f0a0ecf11c99ca","old_path":"","path":"docs/decisions/2026-05-01-mechanics-surface-split.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:e5ec0e7030077b7cf1bfed98","old_path":"","path":"docs/decisions/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:73de061b3989ed8c40a36b86","old_path":"","path":"generated/AGENTS.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8c0ed3db3ce3770121c8417c","old_path":"","path":"generated/quest_catalog.min.example.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c5c2fb00e5de93d9a755ddb6","old_path":"","path":"generated/quest_catalog.min.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:d9ac278f5b81c5f2137bffc2","old_path":"","path":"incoming/chat-wave-1a-registry-discovery/support/CODEX_HANDOFF.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:135790aad8ff2a807d02701c","old_path":"","path":"incoming/chat-wave-1b-tool-proxy-runtime/support/CODEX_HANDOFF.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:96df5459a7f604aaafa8ef9b","old_path":"","path":"incoming/chat-wave-1c-history-lineage-governed-actions/support/CODEX_HANDOFF.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:db92dedb125d092a31235918","old_path":"","path":"incoming/chat-wave-2-graph-review-mailbox/support/CODEX_HANDOFF.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:cadcc7a2abfabc4524e945c7","old_path":"","path":"incoming/chat-wave-3-handoff-bounded-continuation/support/CODEX_HANDOFF.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:29ba22ffb17eb05350a6c5d8","old_path":"","path":"incoming/personal-ingest-wave-2/support/CODEX_HANDOFF.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:ca65c5ca4122e08cd0775072","old_path":"","path":"manifests/recurrence/component.techniques.canon-and-intake-beacons.json"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:e76d68a5b5eae349802a9128","old_path":"","path":"mechanics/AGENTS.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:c091f898d3cc5f78b75c94dc","old_path":"","path":"mechanics/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:8e087ffe6784c317374525a5","old_path":"","path":"mechanics/agon/AGENTS.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:9ebcd75e7ab7f2a4697587e2","old_path":"","path":"mechanics/agon/DIRECTION.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","old_path":"","path":"mechanics/agon/LANDING_LOG.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:00df17e91ebf2c0bbe7bc857","old_path":"","path":"mechanics/agon/PARTS.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8","old_path":"","path":"mechanics/agon/PROVENANCE.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:359861268bcf7d2db2aa8523","old_path":"","path":"mechanics/agon/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:1f3c1cb0fb1b62d703a8c53a","old_path":"","path":"mechanics/agon/docs/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:8dd4007d37a940777959c8cd","old_path":"","path":"mechanics/agon/legacy/AGENTS.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:058aa9bc084f194f230a8cb1","old_path":"","path":"mechanics/agon/legacy/DISTILLATION_LOG.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc","old_path":"","path":"mechanics/agon/legacy/INDEX.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5","old_path":"","path":"mechanics/agon/legacy/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","old_path":"docs/AGON_WAVE15_TECHNIQUES_LANDING.md","path":"mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","old_path":"docs/AGON_WAVE4_TECHNIQUE_LANDING.md","path":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:1344c38fee20012764238e1c","old_path":"","path":"mechanics/agon/legacy/raw/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0","old_path":"","path":"mechanics/agon/parts/AGENTS.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:0e33dc533fcb541678109142","old_path":"","path":"mechanics/agon/parts/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:cee5f8b308aaa86a41ef8a4d","old_path":"","path":"mechanics/agon/parts/epistemic-practice-boundary/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:752dd73f52f0df92d973a1f6","old_path":"","path":"mechanics/agon/parts/epistemic-technique-candidates/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:02189b74d1890b5f0172e3a9","old_path":"config/agon_epistemic_technique_candidates.seed.json","path":"mechanics/agon/parts/epistemic-technique-candidates/config/agon_epistemic_technique_candidates.seed.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:616641895b07f98d122d9d31","old_path":"examples/agon_epistemic_technique_candidate.example.json","path":"mechanics/agon/parts/epistemic-technique-candidates/examples/agon_epistemic_technique_candidate.example.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:49d95df5bbbf21afc44d32be","old_path":"generated/agon_epistemic_technique_candidates.min.json","path":"mechanics/agon/parts/epistemic-technique-candidates/generated/agon_epistemic_technique_candidates.min.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:a05cc1f4738d79a31d824c6e","old_path":"schemas/agon-epistemic-technique-candidate-registry.schema.json","path":"mechanics/agon/parts/epistemic-technique-candidates/schemas/agon-epistemic-technique-candidate-registry.schema.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:20f5a67529b059e4c60b9e52","old_path":"schemas/agon-epistemic-technique-candidate.schema.json","path":"mechanics/agon/parts/epistemic-technique-candidates/schemas/agon-epistemic-technique-candidate.schema.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:1ea19a95e311526da500ae47","old_path":"scripts/build_agon_epistemic_technique_candidates.py","path":"mechanics/agon/parts/epistemic-technique-candidates/scripts/build_agon_epistemic_technique_candidates.py"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:759c48fbb09f99f50b4da1a7","old_path":"scripts/validate_agon_epistemic_technique_candidates.py","path":"mechanics/agon/parts/epistemic-technique-candidates/scripts/validate_agon_epistemic_technique_candidates.py"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:274d8557125d301051e07b06","old_path":"","path":"mechanics/agon/parts/epistemic-technique-candidates/tests/test_agon_epistemic_technique_candidates.py"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:3ff340e3f35b0b6503518064","old_path":"docs/AGON_MOVE_TECHNIQUE_BRIDGE.md","path":"mechanics/agon/parts/move-technique-bridge/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:7dbf185b45d080d6a4d1ac5b","old_path":"config/agon_technique_binding_candidates.seed.json","path":"mechanics/agon/parts/move-technique-bridge/config/agon_technique_binding_candidates.seed.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:4dc2b01a5fa15b29274e6a44","old_path":"examples/agon_technique_binding_candidate.example.json","path":"mechanics/agon/parts/move-technique-bridge/examples/agon_technique_binding_candidate.example.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:530c1f5f4fd8537b2cc4c141","old_path":"generated/agon_technique_binding_candidates.min.json","path":"mechanics/agon/parts/move-technique-bridge/generated/agon_technique_binding_candidates.min.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:cd57a2d053975909a8f1e148","old_path":"schemas/agon-technique-binding-candidate.schema.json","path":"mechanics/agon/parts/move-technique-bridge/schemas/agon-technique-binding-candidate.schema.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:62c35978e38cc9e569b5c267","old_path":"scripts/build_agon_technique_binding_candidates.py","path":"mechanics/agon/parts/move-technique-bridge/scripts/build_agon_technique_binding_candidates.py"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:b4260ef3235bf666c0f5e048","old_path":"scripts/validate_agon_technique_binding_candidates.py","path":"mechanics/agon/parts/move-technique-bridge/scripts/validate_agon_technique_binding_candidates.py"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:83139d36644f0d2cbe04ce64","old_path":"tests/test_agon_technique_binding_candidates.py","path":"mechanics/agon/parts/move-technique-bridge/tests/test_agon_technique_binding_candidates.py"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:29a69a05dd2aa9fadb09875d","old_path":"","path":"mechanics/agon/parts/recurrence-adapter/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:1e22bf2e2d9400f9a9c7e737","old_path":"manifests/recurrence/component.agon.epistemic-technique-candidates.json","path":"mechanics/agon/parts/recurrence-adapter/manifests/recurrence/component.agon.epistemic-technique-candidates.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:f26f09c70cddce8977a5f196","old_path":"manifests/recurrence/component.agon.technique-binding-surfaces.json","path":"mechanics/agon/parts/recurrence-adapter/manifests/recurrence/component.agon.technique-binding-surfaces.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:dcd1b6a5ec9e1073dd336427","old_path":"manifests/recurrence/hooks/component.agon.epistemic-technique-candidates.hooks.json","path":"mechanics/agon/parts/recurrence-adapter/manifests/recurrence/hooks/component.agon.epistemic-technique-candidates.hooks.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:cb65da24d55aa43e3f7a3c0d","old_path":"manifests/recurrence/hooks/component.agon.technique-binding-surfaces.hooks.json","path":"mechanics/agon/parts/recurrence-adapter/manifests/recurrence/hooks/component.agon.technique-binding-surfaces.hooks.json"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:43ea1a5d6f8f5300e3b0b289","old_path":"docs/CHAOS_WAVE1_PROGRAM.md","path":"mechanics/antifragility/CHAOS_WAVE1_PROGRAM.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:94c417f46da3ddf6faa96e11","old_path":"","path":"mechanics/antifragility/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:df2f7fb7f2192fad8b956149","old_path":"","path":"mechanics/audit/EXTERNAL_EVIDENCE_LEDGER.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc","old_path":"docs/EXTERNAL_EVIDENCE_SPRINT_RUNBOOK.md","path":"mechanics/audit/EXTERNAL_EVIDENCE_SPRINT_RUNBOOK.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:d061e3f19455106631554470","old_path":"","path":"mechanics/audit/PROMOTION_READINESS_MATRIX.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:b2a8cd3f1dd7f330861f0a02","old_path":"docs/PROMOTION_WAVE_A_RUNBOOK.md","path":"mechanics/audit/PROMOTION_WAVE_A_RUNBOOK.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:8442d8bba839abb3a1035ee7","old_path":"","path":"mechanics/audit/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:53efc8b55bbb771b99eb5bc0","old_path":"docs/CROSS_LAYER_TECHNIQUE_CANDIDATES.md","path":"mechanics/distillation/CROSS_LAYER_TECHNIQUE_CANDIDATES.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:efad5c18022305012ddd5d4d","old_path":"docs/DONOR_REFINERY_RUBRIC.md","path":"mechanics/distillation/DONOR_REFINERY_RUBRIC.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:74641082b6240b36e234ede7","old_path":"docs/EXTERNAL_IMPORT_RUNBOOK.md","path":"mechanics/distillation/EXTERNAL_IMPORT_RUNBOOK.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:0435b1a7c020c61732614001","old_path":"docs/EXTERNAL_TECHNIQUE_CANDIDATES.md","path":"mechanics/distillation/EXTERNAL_TECHNIQUE_CANDIDATES.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:395a124445c66f20adae62e0","old_path":"docs/LONG_GAP_CANON_DESIGN.md","path":"mechanics/distillation/LONG_GAP_CANON_DESIGN.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:a9c949d3ec8753d6c9e15610","old_path":"","path":"mechanics/distillation/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:5477f7dde3ef2cdb731139bd","old_path":"docs/APPEAL_REASONING_TECHNIQUES.md","path":"mechanics/experience/APPEAL_REASONING_TECHNIQUES.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:b06f4f620e0692b0c9a33d83","old_path":"docs/AUTHORITY_RESOLUTION_TECHNIQUES.md","path":"mechanics/experience/AUTHORITY_RESOLUTION_TECHNIQUES.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:1d3e9aa02ec1437e8e00eb66","old_path":"docs/GOVERNANCE_TECHNIQUE_PRECEDENT.md","path":"mechanics/experience/GOVERNANCE_TECHNIQUE_PRECEDENT.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:697e556a49b155bc767aec8f","old_path":"docs/HANDOFF_COMPRESSION_TECHNIQUE.md","path":"mechanics/experience/HANDOFF_COMPRESSION_TECHNIQUE.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:16d501e3e9dde3dd1ee3540d","old_path":"","path":"mechanics/experience/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:67e4c73358a0f5df220993b1","old_path":"docs/SCOPE_BOUNDARY_TECHNIQUE.md","path":"mechanics/experience/SCOPE_BOUNDARY_TECHNIQUE.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:0672337180c92a8f701af9bc","old_path":"docs/SEALED_DECISION_TECHNIQUES.md","path":"mechanics/experience/SEALED_DECISION_TECHNIQUES.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:1c37503ae1788cd2ed048c6c","old_path":"docs/SERVICE_CLARITY_TECHNIQUE.md","path":"mechanics/experience/SERVICE_CLARITY_TECHNIQUE.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:76651b92fe24f30a4158e2a8","old_path":"docs/MASTERY_HARVEST_POSTURE.md","path":"mechanics/growth-cycle/MASTERY_HARVEST_POSTURE.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c","old_path":"docs/QUESTBOOK_TECHNIQUE_INTEGRATION.md","path":"mechanics/growth-cycle/QUESTBOOK_TECHNIQUE_INTEGRATION.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:dc9132d584369fcbb76fde34","old_path":"","path":"mechanics/growth-cycle/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:b8ceb02d9d12f41b80057bec","old_path":"docs/REVIEWED_CLOSEOUT_PROMOTION_READINESS_INCUBATION.md","path":"mechanics/growth-cycle/REVIEWED_CLOSEOUT_PROMOTION_READINESS_INCUBATION.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:4a4d4efd2e0cab699702c406","old_path":"docs/TECHNIQUE_FEAT_MODEL.md","path":"mechanics/growth-cycle/TECHNIQUE_FEAT_MODEL.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:13625acb67ef244c4570bac3","old_path":"","path":"mechanics/method-growth/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:0f88e23c2c445bd245a15a6d","old_path":"docs/TECHNIQUE_ADOPTION_BOUNDARIES.md","path":"mechanics/method-growth/TECHNIQUE_ADOPTION_BOUNDARIES.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:ee2fea54e2b7736e369daa9b","old_path":"docs/TECHNIQUE_OBSOLESCENCE.md","path":"mechanics/method-growth/TECHNIQUE_OBSOLESCENCE.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:e6e48cb33fdd2273db0fe1ce","old_path":"docs/TECHNIQUE_PATTERN_ADOPTION.md","path":"mechanics/method-growth/TECHNIQUE_PATTERN_ADOPTION.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:024ba0619d7d56baa3746f63","old_path":"docs/TECHNIQUE_RETENTION_CHECKS.md","path":"mechanics/method-growth/TECHNIQUE_RETENTION_CHECKS.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:bc9ba6ee2fae3c974c4258b4","old_path":"docs/TECHNIQUE_TO_SKILL_HANDOFF.md","path":"mechanics/method-growth/TECHNIQUE_TO_SKILL_HANDOFF.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:19fb3d55a5cf2e7e3f87c063","old_path":"","path":"mechanics/recurrence/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:5740eb746101cb8512009c30","old_path":"","path":"mechanics/recurrence/RECURRENCE_LIVE_OBSERVATION_PRODUCERS.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:7a59f538add65e8533ec7cf4","old_path":"docs/RECURRENCE_REVIEW_DECISION_CLOSURE.md","path":"mechanics/recurrence/RECURRENCE_REVIEW_DECISION_CLOSURE.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:1457eab82fac7aeec2d610f4","old_path":"docs/INSTALLATION_TECHNIQUES.md","path":"mechanics/release-support/INSTALLATION_TECHNIQUES.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f","old_path":"","path":"mechanics/release-support/README.md"},{"change_kind":"rename","object_id":"aoa:aoa-techniques:artifact:54383ccb6e7b60ab437b7f6a","old_path":"docs/SOVEREIGN_RELEASE_TECHNIQUES.md","path":"mechanics/release-support/SOVEREIGN_RELEASE_TECHNIQUES.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1091cc9174e245fe28528e91","old_path":"","path":"quests/AOA-TECH-Q-0002.yaml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:70f8c61626959d4a812a52fa","old_path":"","path":"quests/AOA-TECH-Q-0005.yaml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a120abc7496c25100a52bd97","old_path":"","path":"quests/AOA-TECH-Q-0006.yaml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:6167ffce084540f7357166c8","old_path":"","path":"quests/AOA-TECH-Q-0007.yaml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0c479a88f8f52956132e107f","old_path":"","path":"quests/AOT-Q-AGON-0001-technique-binding-candidates.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","old_path":"","path":"scripts/validate_repo.py"},{"change_kind":"delete","object_id":"aoa:aoa-techniques:artifact:f2363f363760b213273973f4","old_path":"","path":"tests/test_agon_epistemic_technique_candidates.py"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:551aac060212aabeebecce6c","old_path":"","path":"tests/test_agon_mechanics_topology.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:098f12afb4fd11c72d66bfee","old_path":"","path":"tests/test_current_direction_routes.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0","old_path":"","path":"tests/test_roadmap_parity.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2703d8ddae46be18fcf0b3fe","old_path":"","path":"tests/test_validate_repo.py"}],"event_kind":"git_commit","event_role":"observation","evidence_refs":[{"kind":"git_commit","ref":"c1d8d698d2b89a077a6d42ca43033c6946d32c7c"}],"id":"aoa:aoa-techniques:event:4f7916d453a9041791e8d899","label":"Restructure mechanics into active topology (#200)","object_ids":["aoa:aoa-techniques:artifact:00df17e91ebf2c0bbe7bc857","aoa:aoa-techniques:artifact:02189b74d1890b5f0172e3a9","aoa:aoa-techniques:artifact:024ba0619d7d56baa3746f63","aoa:aoa-techniques:artifact:0435b1a7c020c61732614001","aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f","aoa:aoa-techniques:artifact:058aa9bc084f194f230a8cb1","aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","aoa:aoa-techniques:artifact:0672337180c92a8f701af9bc","aoa:aoa-techniques:artifact:098f12afb4fd11c72d66bfee","aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","aoa:aoa-techniques:artifact:0e33dc533fcb541678109142","aoa:aoa-techniques:artifact:0f88e23c2c445bd245a15a6d","aoa:aoa-techniques:artifact:1091cc9174e245fe28528e91","aoa:aoa-techniques:artifact:1344c38fee20012764238e1c","aoa:aoa-techniques:artifact:135790aad8ff2a807d02701c","aoa:aoa-techniques:artifact:13625acb67ef244c4570bac3","aoa:aoa-techniques:artifact:16d501e3e9dde3dd1ee3540d","aoa:aoa-techniques:artifact:19fb3d55a5cf2e7e3f87c063","aoa:aoa-techniques:artifact:1c37503ae1788cd2ed048c6c","aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","aoa:aoa-techniques:artifact:1d3e9aa02ec1437e8e00eb66","aoa:aoa-techniques:artifact:1e22bf2e2d9400f9a9c7e737","aoa:aoa-techniques:artifact:1ea19a95e311526da500ae47","aoa:aoa-techniques:artifact:1f3c1cb0fb1b62d703a8c53a","aoa:aoa-techniques:artifact:20f5a67529b059e4c60b9e52","aoa:aoa-techniques:artifact:274d8557125d301051e07b06","aoa:aoa-techniques:artifact:29a69a05dd2aa9fadb09875d","aoa:aoa-techniques:artifact:29ba22ffb17eb05350a6c5d8","aoa:aoa-techniques:artifact:359861268bcf7d2db2aa8523","aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","aoa:aoa-techniques:artifact:395a124445c66f20adae62e0","aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","aoa:aoa-techniques:artifact:3ff340e3f35b0b6503518064","aoa:aoa-techniques:artifact:43ea1a5d6f8f5300e3b0b289","aoa:aoa-techniques:artifact:49d95df5bbbf21afc44d32be","aoa:aoa-techniques:artifact:4a4d4efd2e0cab699702c406","aoa:aoa-techniques:artifact:4ac7da18a129100dac72e35a","aoa:aoa-techniques:artifact:4dc2b01a5fa15b29274e6a44","aoa:aoa-techniques:artifact:530c1f5f4fd8537b2cc4c141","aoa:aoa-techniques:artifact:53efc8b55bbb771b99eb5bc0","aoa:aoa-techniques:artifact:5477f7dde3ef2cdb731139bd","aoa:aoa-techniques:artifact:551aac060212aabeebecce6c","aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0","aoa:aoa-techniques:artifact:616641895b07f98d122d9d31","aoa:aoa-techniques:artifact:6167ffce084540f7357166c8","aoa:aoa-techniques:artifact:62c35978e38cc9e569b5c267","aoa:aoa-techniques:artifact:67e4c73358a0f5df220993b1","aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","aoa:aoa-techniques:artifact:697e556a49b155bc767aec8f","aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0","aoa:aoa-techniques:artifact:70f8c61626959d4a812a52fa","aoa:aoa-techniques:artifact:73de061b3989ed8c40a36b86","aoa:aoa-techniques:artifact:74641082b6240b36e234ede7","aoa:aoa-techniques:artifact:752dd73f52f0df92d973a1f6","aoa:aoa-techniques:artifact:759c48fbb09f99f50b4da1a7","aoa:aoa-techniques:artifact:76651b92fe24f30a4158e2a8","aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","aoa:aoa-techniques:artifact:7dbf185b45d080d6a4d1ac5b","aoa:aoa-techniques:artifact:83139d36644f0d2cbe04ce64","aoa:aoa-techniques:artifact:8442d8bba839abb3a1035ee7","aoa:aoa-techniques:artifact:8c0ed3db3ce3770121c8417c","aoa:aoa-techniques:artifact:8dd4007d37a940777959c8cd","aoa:aoa-techniques:artifact:8e087ffe6784c317374525a5","aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","aoa:aoa-techniques:artifact:94c417f46da3ddf6faa96e11","aoa:aoa-techniques:artifact:96df5459a7f604aaafa8ef9b","aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5","aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c","aoa:aoa-techniques:artifact:9ebcd75e7ab7f2a4697587e2","aoa:aoa-techniques:artifact:a05cc1f4738d79a31d824c6e","aoa:aoa-techniques:artifact:a120abc7496c25100a52bd97","aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8","aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","aoa:aoa-techniques:artifact:a9c949d3ec8753d6c9e15610","aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc","aoa:aoa-techniques:artifact:b06f4f620e0692b0c9a33d83","aoa:aoa-techniques:artifact:b2612e9335e498d648ec4fb5","aoa:aoa-techniques:artifact:b2a8cd3f1dd7f330861f0a02","aoa:aoa-techniques:artifact:b335630551682c19a781afeb","aoa:aoa-techniques:artifact:b4260ef3235bf666c0f5e048","aoa:aoa-techniques:artifact:b8ceb02d9d12f41b80057bec","aoa:aoa-techniques:artifact:bafb21d6b5f0a0ecf11c99ca","aoa:aoa-techniques:artifact:bc9ba6ee2fae3c974c4258b4","aoa:aoa-techniques:artifact:c091f898d3cc5f78b75c94dc","aoa:aoa-techniques:artifact:c5c2fb00e5de93d9a755ddb6","aoa:aoa-techniques:artifact:ca65c5ca4122e08cd0775072","aoa:aoa-techniques:artifact:cadcc7a2abfabc4524e945c7","aoa:aoa-techniques:artifact:cb65da24d55aa43e3f7a3c0d","aoa:aoa-techniques:artifact:cd57a2d053975909a8f1e148","aoa:aoa-techniques:artifact:cee5f8b308aaa86a41ef8a4d","aoa:aoa-techniques:artifact:d9ac278f5b81c5f2137bffc2","aoa:aoa-techniques:artifact:db92dedb125d092a31235918","aoa:aoa-techniques:artifact:dc9132d584369fcbb76fde34","aoa:aoa-techniques:artifact:dcd1b6a5ec9e1073dd336427","aoa:aoa-techniques:artifact:e5ec0e7030077b7cf1bfed98","aoa:aoa-techniques:artifact:e6e48cb33fdd2273db0fe1ce","aoa:aoa-techniques:artifact:e76d68a5b5eae349802a9128","aoa:aoa-techniques:artifact:eca12c0a30e25b4b46522ebf","aoa:aoa-techniques:artifact:ee2fea54e2b7736e369daa9b","aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc","aoa:aoa-techniques:artifact:efad5c18022305012ddd5d4d","aoa:aoa-techniques:artifact:f26f09c70cddce8977a5f196","aoa:aoa-techniques:artifact:fdd58aeb6b4fafa71844c566"],"observation_state":"observed","occurred_at":"2026-05-01T17:11:48+03:00","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:00df17e91ebf2c0bbe7bc857","aoa:aoa-techniques:artifact:02189b74d1890b5f0172e3a9","aoa:aoa-techniques:artifact:024ba0619d7d56baa3746f63","aoa:aoa-techniques:artifact:0435b1a7c020c61732614001","aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f","aoa:aoa-techniques:artifact:058aa9bc084f194f230a8cb1","aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","aoa:aoa-techniques:artifact:0672337180c92a8f701af9bc","aoa:aoa-techniques:artifact:098f12afb4fd11c72d66bfee","aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","aoa:aoa-techniques:artifact:0e33dc533fcb541678109142","aoa:aoa-techniques:artifact:0f88e23c2c445bd245a15a6d","aoa:aoa-techniques:artifact:1091cc9174e245fe28528e91","aoa:aoa-techniques:artifact:1344c38fee20012764238e1c","aoa:aoa-techniques:artifact:135790aad8ff2a807d02701c","aoa:aoa-techniques:artifact:13625acb67ef244c4570bac3","aoa:aoa-techniques:artifact:16d501e3e9dde3dd1ee3540d","aoa:aoa-techniques:artifact:19fb3d55a5cf2e7e3f87c063","aoa:aoa-techniques:artifact:1c37503ae1788cd2ed048c6c","aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","aoa:aoa-techniques:artifact:1d3e9aa02ec1437e8e00eb66","aoa:aoa-techniques:artifact:1e22bf2e2d9400f9a9c7e737","aoa:aoa-techniques:artifact:1ea19a95e311526da500ae47","aoa:aoa-techniques:artifact:1f3c1cb0fb1b62d703a8c53a","aoa:aoa-techniques:artifact:20f5a67529b059e4c60b9e52","aoa:aoa-techniques:artifact:274d8557125d301051e07b06","aoa:aoa-techniques:artifact:29a69a05dd2aa9fadb09875d","aoa:aoa-techniques:artifact:29ba22ffb17eb05350a6c5d8","aoa:aoa-techniques:artifact:359861268bcf7d2db2aa8523","aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","aoa:aoa-techniques:artifact:395a124445c66f20adae62e0","aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","aoa:aoa-techniques:artifact:3ff340e3f35b0b6503518064","aoa:aoa-techniques:artifact:43ea1a5d6f8f5300e3b0b289","aoa:aoa-techniques:artifact:49d95df5bbbf21afc44d32be","aoa:aoa-techniques:artifact:4a4d4efd2e0cab699702c406","aoa:aoa-techniques:artifact:4ac7da18a129100dac72e35a","aoa:aoa-techniques:artifact:4dc2b01a5fa15b29274e6a44","aoa:aoa-techniques:artifact:530c1f5f4fd8537b2cc4c141","aoa:aoa-techniques:artifact:53efc8b55bbb771b99eb5bc0","aoa:aoa-techniques:artifact:5477f7dde3ef2cdb731139bd","aoa:aoa-techniques:artifact:551aac060212aabeebecce6c","aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0","aoa:aoa-techniques:artifact:616641895b07f98d122d9d31","aoa:aoa-techniques:artifact:6167ffce084540f7357166c8","aoa:aoa-techniques:artifact:62c35978e38cc9e569b5c267","aoa:aoa-techniques:artifact:67e4c73358a0f5df220993b1","aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","aoa:aoa-techniques:artifact:697e556a49b155bc767aec8f","aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0","aoa:aoa-techniques:artifact:70f8c61626959d4a812a52fa","aoa:aoa-techniques:artifact:73de061b3989ed8c40a36b86","aoa:aoa-techniques:artifact:74641082b6240b36e234ede7","aoa:aoa-techniques:artifact:752dd73f52f0df92d973a1f6","aoa:aoa-techniques:artifact:759c48fbb09f99f50b4da1a7","aoa:aoa-techniques:artifact:76651b92fe24f30a4158e2a8","aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","aoa:aoa-techniques:artifact:7dbf185b45d080d6a4d1ac5b","aoa:aoa-techniques:artifact:83139d36644f0d2cbe04ce64","aoa:aoa-techniques:artifact:8442d8bba839abb3a1035ee7","aoa:aoa-techniques:artifact:8c0ed3db3ce3770121c8417c","aoa:aoa-techniques:artifact:8dd4007d37a940777959c8cd","aoa:aoa-techniques:artifact:8e087ffe6784c317374525a5","aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","aoa:aoa-techniques:artifact:94c417f46da3ddf6faa96e11","aoa:aoa-techniques:artifact:96df5459a7f604aaafa8ef9b","aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5","aoa:aoa-techniques:artifact:9e20500f161e893d46742c7c","aoa:aoa-techniques:artifact:9ebcd75e7ab7f2a4697587e2","aoa:aoa-techniques:artifact:a05cc1f4738d79a31d824c6e","aoa:aoa-techniques:artifact:a120abc7496c25100a52bd97","aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8","aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","aoa:aoa-techniques:artifact:a9c949d3ec8753d6c9e15610","aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc","aoa:aoa-techniques:artifact:b06f4f620e0692b0c9a33d83","aoa:aoa-techniques:artifact:b2612e9335e498d648ec4fb5","aoa:aoa-techniques:artifact:b2a8cd3f1dd7f330861f0a02","aoa:aoa-techniques:artifact:b335630551682c19a781afeb","aoa:aoa-techniques:artifact:b4260ef3235bf666c0f5e048","aoa:aoa-techniques:artifact:b8ceb02d9d12f41b80057bec","aoa:aoa-techniques:artifact:bafb21d6b5f0a0ecf11c99ca","aoa:aoa-techniques:artifact:bc9ba6ee2fae3c974c4258b4","aoa:aoa-techniques:artifact:c091f898d3cc5f78b75c94dc","aoa:aoa-techniques:artifact:c5c2fb00e5de93d9a755ddb6","aoa:aoa-techniques:artifact:ca65c5ca4122e08cd0775072","aoa:aoa-techniques:artifact:cadcc7a2abfabc4524e945c7","aoa:aoa-techniques:artifact:cb65da24d55aa43e3f7a3c0d","aoa:aoa-techniques:artifact:cd57a2d053975909a8f1e148","aoa:aoa-techniques:artifact:cee5f8b308aaa86a41ef8a4d","aoa:aoa-techniques:artifact:d9ac278f5b81c5f2137bffc2","aoa:aoa-techniques:artifact:db92dedb125d092a31235918","aoa:aoa-techniques:artifact:dc9132d584369fcbb76fde34","aoa:aoa-techniques:artifact:dcd1b6a5ec9e1073dd336427","aoa:aoa-techniques:artifact:e5ec0e7030077b7cf1bfed98","aoa:aoa-techniques:artifact:e6e48cb33fdd2273db0fe1ce","aoa:aoa-techniques:artifact:e76d68a5b5eae349802a9128","aoa:aoa-techniques:artifact:eca12c0a30e25b4b46522ebf","aoa:aoa-techniques:artifact:ee2fea54e2b7736e369daa9b","aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc","aoa:aoa-techniques:artifact:efad5c18022305012ddd5d4d","aoa:aoa-techniques:artifact:f26f09c70cddce8977a5f196","aoa:aoa-techniques:artifact:fdd58aeb6b4fafa71844c566"],"temporal_ref":"historical","trust_ref":"observed"}, @@ -625,7 +626,7 @@ {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:7431ce729615553f6cc4bda8"],"changes":[],"event_kind":"release_declaration","event_role":"declaration","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:7431ce729615553f6cc4bda8"}],"id":"aoa:aoa-techniques:event:9d9b639dc9ccd4a098d02a08","label":"[0.4.2] - 2026-04-23","object_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:2ebc6741f31cf641bc3a90c6"],"changes":[],"event_kind":"release_declaration","event_role":"declaration","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:2ebc6741f31cf641bc3a90c6"}],"id":"aoa:aoa-techniques:event:ba0b94aaaf08b1022052b3e4","label":"[0.4.0] - 2026-04-10","object_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:7e2d3b35a864b791fb421223"],"changes":[],"event_kind":"release_lane","event_role":"declaration","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:7e2d3b35a864b791fb421223"}],"id":"aoa:aoa-techniques:event:174572687740b6d7767dbfa4","label":"[Unreleased]","object_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa"],"temporal_ref":"current","trust_ref":"declared"}, - {"actor":{"email":"","name":"repository-snapshot"},"anchor_ids":["aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b","aoa:aoa-techniques:anchor:2dcb946bb46f02a50eb66d0e","aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e","aoa:aoa-techniques:anchor:54b2514382567e92c148fb34"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","old_path":"","path":".github/workflows/repo-validation.yml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","old_path":"","path":"docs/validation/script_inventory.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","old_path":"","path":"scripts/validate_repo_local_kag_index.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","old_path":"","path":"tests/test_validation_command_authority.py"}],"event_kind":"repository_snapshot_change_set","event_role":"observation","evidence_refs":[{"kind":"repository_snapshot","ref":"source-tree-snapshot"}],"id":"aoa:aoa-techniques:event:46f06824b297a88533508422","label":"Repository source snapshot change set","object_ids":["aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"observation_state":"observed","occurred_at":"","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","aoa:aoa-techniques:artifact:78624b39c65895c43629e995"],"temporal_ref":"current","trust_ref":"observed"}, + {"actor":{"email":"","name":"repository-snapshot"},"anchor_ids":["aoa:aoa-techniques:anchor:00c61e6409abd64cea21273a","aoa:aoa-techniques:anchor:010f1a833244b035a3e127f4","aoa:aoa-techniques:anchor:011977f7749984902d88b61f","aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b","aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","aoa:aoa-techniques:anchor:03b948530a2726e83de356b1","aoa:aoa-techniques:anchor:03cdcdb6edc5eadaa69c23e0","aoa:aoa-techniques:anchor:049b437d9cb9f0424555278f","aoa:aoa-techniques:anchor:058215019ecb3946710363e2","aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","aoa:aoa-techniques:anchor:0767006619a0cd12c1f8dcb7","aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","aoa:aoa-techniques:anchor:0a7d45d25ac918469a7c202b","aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","aoa:aoa-techniques:anchor:0adfb6eb37cb06410a104adc","aoa:aoa-techniques:anchor:0d34436075ac53cb4a60780e","aoa:aoa-techniques:anchor:0f471855c1214b41ab685261","aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","aoa:aoa-techniques:anchor:116da7a2029997226c834014","aoa:aoa-techniques:anchor:117b27346d5e45b6ba483024","aoa:aoa-techniques:anchor:1574d71229e0ed11f7074ec8","aoa:aoa-techniques:anchor:15d71e441d19f9b40aacd7c0","aoa:aoa-techniques:anchor:164e0f08224d4f30287120e6","aoa:aoa-techniques:anchor:17ffa9045deefa31c5ce000f","aoa:aoa-techniques:anchor:1833116f863fcb854ff81b6a","aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","aoa:aoa-techniques:anchor:1aa703ad0516dded2ed51aae","aoa:aoa-techniques:anchor:1bda813ab955cedbed270f03","aoa:aoa-techniques:anchor:2013fe9a2f06a3d450011a01","aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","aoa:aoa-techniques:anchor:21e37392edaebfaf4eae53ab","aoa:aoa-techniques:anchor:22275adf28216c001f24d12d","aoa:aoa-techniques:anchor:2624190ed2bdceff42197c75","aoa:aoa-techniques:anchor:26bfbabf2fc754ad2c803c62","aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd","aoa:aoa-techniques:anchor:2914a4a235947730804edc19","aoa:aoa-techniques:anchor:29561a42a14618cc2a9796b4","aoa:aoa-techniques:anchor:29580d1616ca7a518c165a95","aoa:aoa-techniques:anchor:2ae69687807f0d4ebc46d32d","aoa:aoa-techniques:anchor:2b5919e4c84f4db8739b6d1e","aoa:aoa-techniques:anchor:2dcb946bb46f02a50eb66d0e","aoa:aoa-techniques:anchor:3009aa25d549a5f182e7204a","aoa:aoa-techniques:anchor:34c3539d103912d4e690ac2d","aoa:aoa-techniques:anchor:3580be83591f3f5166daf498","aoa:aoa-techniques:anchor:35f09c38d6104131c92cf856","aoa:aoa-techniques:anchor:361103f961f909f4c123433e","aoa:aoa-techniques:anchor:36df34fa9131c4f59b2eed93","aoa:aoa-techniques:anchor:3add0f3393aa4e334f672284","aoa:aoa-techniques:anchor:3b184b4501bdca80a1970a3e","aoa:aoa-techniques:anchor:3c0668f6c03595e275f6ba06","aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","aoa:aoa-techniques:anchor:3c6ac78d870074a3c61cef9a","aoa:aoa-techniques:anchor:3c947829b4afad176790de88","aoa:aoa-techniques:anchor:3d723d46da4e52f64a997c69","aoa:aoa-techniques:anchor:3e2ec3593e6b9219196b964a","aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","aoa:aoa-techniques:anchor:3f5cb9568cb25ef8b53f78a6","aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e","aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","aoa:aoa-techniques:anchor:47718eb692e916667a343468","aoa:aoa-techniques:anchor:47ab1dd8473efa97180936e3","aoa:aoa-techniques:anchor:4815ea37c69bf587ed4ab8e1","aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","aoa:aoa-techniques:anchor:4a81686407eee2a552262b50","aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1","aoa:aoa-techniques:anchor:5049b1246255eab985c0f688","aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","aoa:aoa-techniques:anchor:51e7e5a32fe9fd41052840df","aoa:aoa-techniques:anchor:52603fde04d46bceacfa165e","aoa:aoa-techniques:anchor:54b2514382567e92c148fb34","aoa:aoa-techniques:anchor:56423cd5a36212cca5bd1f6a","aoa:aoa-techniques:anchor:58b62cd5792c368706432d2a","aoa:aoa-techniques:anchor:58e01a3fbf6a66fcdd246a67","aoa:aoa-techniques:anchor:59539cbb15b2f6096d9ec07b","aoa:aoa-techniques:anchor:59cf4ccbdb81f19e508627f6","aoa:aoa-techniques:anchor:5b531dcbc798b6b4299bec64","aoa:aoa-techniques:anchor:5b5c6af57dced4e9696758bf","aoa:aoa-techniques:anchor:5c3b29c1bd1577150e3b45bb","aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","aoa:aoa-techniques:anchor:600bf60f135562857113242d","aoa:aoa-techniques:anchor:62c43d332041477e031ec4c5","aoa:aoa-techniques:anchor:646ea72b4ab3140409bfa77e","aoa:aoa-techniques:anchor:67af10d91726ed89f41e0d67","aoa:aoa-techniques:anchor:688196f084f80a0f4d7bcde6","aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb","aoa:aoa-techniques:anchor:6b966256c7479bf115107f47","aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05","aoa:aoa-techniques:anchor:6f3c565e152bf69bdb71f821","aoa:aoa-techniques:anchor:6fe38db7e6ebafe9de35f78c","aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","aoa:aoa-techniques:anchor:719a2851b9c036533f1b2a2b","aoa:aoa-techniques:anchor:72556c3550a2e9f4cfd30500","aoa:aoa-techniques:anchor:72622e0b7439398bf3e3c8db","aoa:aoa-techniques:anchor:7333d08c03ba0655284f67f7","aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977","aoa:aoa-techniques:anchor:76b3da8f8bc26087d86c5d45","aoa:aoa-techniques:anchor:772724fd1c1e57faedf82e6f","aoa:aoa-techniques:anchor:77c8e21528fea12ba39b4d4b","aoa:aoa-techniques:anchor:784eb112e9cd463e306d27d9","aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","aoa:aoa-techniques:anchor:7c4fc50a967f667e4aab1e09","aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","aoa:aoa-techniques:anchor:7ebd6e48caf049d05dca19fa","aoa:aoa-techniques:anchor:7ebe1e475bee3f6b020e7cfc","aoa:aoa-techniques:anchor:7ef31bfa7ef5f4b5817d2abb","aoa:aoa-techniques:anchor:80675f891dbdb2d4b9dfe4e4","aoa:aoa-techniques:anchor:8170645b250cdd8d938c44bd","aoa:aoa-techniques:anchor:89ce82b5d52747604ba56bd0","aoa:aoa-techniques:anchor:8a9f5870cde69451c06e7e9e","aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904","aoa:aoa-techniques:anchor:8c233be5268ed5b522919cea","aoa:aoa-techniques:anchor:8ca7342eb3866a036a7e9d67","aoa:aoa-techniques:anchor:8dd763b83ac5927ba12152ed","aoa:aoa-techniques:anchor:8e9ab940d857973dc8c9fd6c","aoa:aoa-techniques:anchor:8fe61f4c47fe2fa66beded4a","aoa:aoa-techniques:anchor:912e61e3f40d31e3ad6e087c","aoa:aoa-techniques:anchor:951f052a3c46f816fecc2f3b","aoa:aoa-techniques:anchor:9691e3fa21a88f2a1da72929","aoa:aoa-techniques:anchor:9995f1644e399ee461162783","aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","aoa:aoa-techniques:anchor:9cc7ca4245209d9ac659a736","aoa:aoa-techniques:anchor:9fd0a68d4fb876e40a787fff","aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","aoa:aoa-techniques:anchor:a34e409cad41c756827551c1","aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","aoa:aoa-techniques:anchor:a5c5258791826a9f80356f29","aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4","aoa:aoa-techniques:anchor:a8aadf942643495c9581c021","aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","aoa:aoa-techniques:anchor:ac98e5bd9ee73e4c09dc06c2","aoa:aoa-techniques:anchor:ac9eef06b846c662614f5628","aoa:aoa-techniques:anchor:b050ef8987d40a362d8adff8","aoa:aoa-techniques:anchor:b0d4e915041e30eaa4cdfd24","aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0","aoa:aoa-techniques:anchor:b3b64446b1e26086f3bdc5b9","aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","aoa:aoa-techniques:anchor:b5da729206e4628202b087c2","aoa:aoa-techniques:anchor:b6293e141ee9edd300b06cbe","aoa:aoa-techniques:anchor:b688b28a48afb991a00bec44","aoa:aoa-techniques:anchor:b719e855e4ded04fff68c90e","aoa:aoa-techniques:anchor:b8cbd99d16cd6d1f48578d9f","aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703","aoa:aoa-techniques:anchor:bdf72dbfcf52af7e58e08a2a","aoa:aoa-techniques:anchor:bee9642b3b3068cae0573c74","aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12","aoa:aoa-techniques:anchor:c073f923084e3be188dc6970","aoa:aoa-techniques:anchor:c22c249c88b41751271e550e","aoa:aoa-techniques:anchor:c26bda0a90d9d6ab680ddf7c","aoa:aoa-techniques:anchor:c673c8c5f6f2e21753f48ba9","aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","aoa:aoa-techniques:anchor:d0c171ad3f2e8d174a788ac9","aoa:aoa-techniques:anchor:d34e1db87163c17a6fb9fd78","aoa:aoa-techniques:anchor:d4fc0c403c650e871a2cbda3","aoa:aoa-techniques:anchor:d55fbdeb288ee0d5beeaa771","aoa:aoa-techniques:anchor:d76923ed66fc0cd9240cde52","aoa:aoa-techniques:anchor:dc19f8592776efc030a2ae29","aoa:aoa-techniques:anchor:dc4374c3472ba893695c21fb","aoa:aoa-techniques:anchor:de063c5f03c824808b005410","aoa:aoa-techniques:anchor:de1cbe45e89a2c422ba362a7","aoa:aoa-techniques:anchor:de382c146bb929514e50bc73","aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","aoa:aoa-techniques:anchor:e1f66dd2761026a2be6ac3a4","aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","aoa:aoa-techniques:anchor:e249251728ad42de31f411bf","aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","aoa:aoa-techniques:anchor:e38b2245976a1b9da2cec16a","aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","aoa:aoa-techniques:anchor:e4bc5f376db8430703b97fd4","aoa:aoa-techniques:anchor:e6480148ff44b91cd2185355","aoa:aoa-techniques:anchor:e794fadc2542b1a05edcf08a","aoa:aoa-techniques:anchor:eae995c4fd552e040ded1a2b","aoa:aoa-techniques:anchor:ed985c4b7c6d3135db170fcd","aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","aoa:aoa-techniques:anchor:ef80566e1761644e154032e8","aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","aoa:aoa-techniques:anchor:f3512468853fd3d11da144b0","aoa:aoa-techniques:anchor:f4a236c5231e392162af2a26","aoa:aoa-techniques:anchor:f89372fb5ee2e6dc261456c6","aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd","aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","aoa:aoa-techniques:anchor:fbd467901feb694385c7163a","aoa:aoa-techniques:anchor:fdfc93e407575caec15b0a01","aoa:aoa-techniques:anchor:fef8cb4d3585806764129a54","aoa:aoa-techniques:anchor:ff722a49ae8d3745219e2716"],"changes":[{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","old_path":"","path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","old_path":"","path":".agents/spark/scenarios/diff-review/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","old_path":"","path":".agents/spark/scenarios/diff-review/examples/result.example.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","old_path":"","path":".agents/spark/scenarios/registry-sync/examples/result.example.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","old_path":"","path":".agents/spark/scenarios/release-prep/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:d2953f59029c3da963218542","old_path":"","path":".agents/spark/scenarios/release-prep/examples/result.example.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","old_path":"","path":".agents/spark/scenarios/technique-refinement/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","old_path":"","path":".agents/spark/scenarios/technique-refinement/examples/result.example.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","old_path":"","path":".agents/spark/scenarios/test-factory/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","old_path":"","path":".agents/spark/scenarios/test-factory/examples/result.example.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","old_path":"","path":".github/CODEOWNERS"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","old_path":"","path":".github/workflows/nightly-sentinel.yml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","old_path":"","path":".github/workflows/release-audit.yml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","old_path":"","path":".github/workflows/repo-validation.yml"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","old_path":"","path":"AGENTS.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","old_path":"","path":"CHANGELOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","old_path":"","path":"DESIGN.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","old_path":"","path":"README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","old_path":"","path":"config/agents_mesh.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","old_path":"","path":"config/validation_lanes.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","old_path":"","path":"docs/ROOT_SURFACE_LAW.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","old_path":"","path":"docs/decisions/AGENTS.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","old_path":"","path":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","old_path":"","path":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","old_path":"","path":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","old_path":"","path":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","old_path":"","path":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","old_path":"","path":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc","old_path":"","path":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4614e41d34def3148f269991","old_path":"","path":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","old_path":"","path":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","old_path":"","path":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","old_path":"","path":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","old_path":"","path":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","old_path":"","path":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","old_path":"","path":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","old_path":"","path":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","old_path":"","path":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","old_path":"","path":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","old_path":"","path":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","old_path":"","path":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2d91002001af478a6259135d","old_path":"","path":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","old_path":"","path":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","old_path":"","path":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","old_path":"","path":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","old_path":"","path":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","old_path":"","path":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","old_path":"","path":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","old_path":"","path":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","old_path":"","path":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","old_path":"","path":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","old_path":"","path":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","old_path":"","path":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","old_path":"","path":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","old_path":"","path":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","old_path":"","path":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","old_path":"","path":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","old_path":"","path":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","old_path":"","path":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","old_path":"","path":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","old_path":"","path":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","old_path":"","path":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","old_path":"","path":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","old_path":"","path":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","old_path":"","path":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","old_path":"","path":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","old_path":"","path":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","old_path":"","path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:874770b82440579ca24bf934","old_path":"","path":"docs/decisions/TEMPLATE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","old_path":"","path":"docs/guardrails/CURRENT_SURFACE_INDEX.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","old_path":"","path":"docs/source-lift/artifact-bundles/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","old_path":"","path":"docs/testing/test_inventory.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","old_path":"","path":"docs/validation/COMMAND_AUTHORITY.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","old_path":"","path":"docs/validation/SCRIPT_TOPOLOGY.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","old_path":"","path":"docs/validation/VALIDATOR_TOPOLOGY.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","old_path":"","path":"docs/validation/script_inventory.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","old_path":"","path":"docs/validation/validator_inventory.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","old_path":"","path":"generated/agents_mesh.min.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","old_path":"","path":"legacy/archive/AGENTS_ROOT_REFERENCE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","old_path":"","path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","old_path":"","path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:6105204715b11f5a45523076","old_path":"","path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","old_path":"","path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","old_path":"","path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","old_path":"","path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","old_path":"","path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","old_path":"","path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","old_path":"","path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","old_path":"","path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","old_path":"","path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","old_path":"","path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:859893b447b67d299abff366","old_path":"","path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","old_path":"","path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","old_path":"","path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","old_path":"","path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","old_path":"","path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:06d31990926be878929aa81d","old_path":"","path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","old_path":"","path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","old_path":"","path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","old_path":"","path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","old_path":"","path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","old_path":"","path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","old_path":"","path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","old_path":"","path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","old_path":"","path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","old_path":"","path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","old_path":"","path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","old_path":"","path":"mechanics/agon/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","old_path":"","path":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","old_path":"","path":"mechanics/audit/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","old_path":"","path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","old_path":"","path":"mechanics/audit/parts/promotion-readiness-matrix/README.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","old_path":"","path":"mechanics/boundary-bridge/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a091893937b854517373eaea","old_path":"","path":"mechanics/checkpoint/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","old_path":"","path":"mechanics/distillation/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","old_path":"","path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","old_path":"","path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:c9107011968421971fabafeb","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:183461d99a40009516486c0e","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","old_path":"","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","old_path":"","path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","old_path":"","path":"mechanics/experience/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","old_path":"","path":"mechanics/growth-cycle/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","old_path":"","path":"mechanics/method-growth/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","old_path":"","path":"mechanics/questbook/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","old_path":"","path":"mechanics/recurrence/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","old_path":"","path":"mechanics/release-support/LANDING_LOG.md"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","old_path":"","path":"mechanics/rpg/LANDING_LOG.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","old_path":"","path":"scripts/validate_local_stats_port.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","old_path":"","path":"scripts/validate_repo_local_kag_index.py"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","old_path":"","path":"stats/AGENTS.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","old_path":"","path":"stats/README.md"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","old_path":"","path":"stats/packets/published-promotion-readiness-pass-ratio.reference.json"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","old_path":"","path":"stats/port.manifest.json"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","old_path":"","path":"tests/test_agents_mesh.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","old_path":"","path":"tests/test_github_workflow_topology.py"},{"change_kind":"add","object_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","old_path":"","path":"tests/test_local_stats_port.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","old_path":"","path":"tests/test_validate_repo_ci_release_authority.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","old_path":"","path":"tests/test_validate_repo_source_contracts.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","old_path":"","path":"tests/test_validation_command_authority.py"},{"change_kind":"modify","object_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","old_path":"","path":"tests/test_validation_topology.py"}],"event_kind":"repository_snapshot_change_set","event_role":"observation","evidence_refs":[{"kind":"repository_snapshot","ref":"source-tree-snapshot"}],"id":"aoa:aoa-techniques:event:b4347299d1dcba6b43325ce4","label":"Repository source snapshot change set","object_ids":["aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","aoa:aoa-techniques:artifact:06d31990926be878929aa81d","aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","aoa:aoa-techniques:artifact:183461d99a40009516486c0e","aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","aoa:aoa-techniques:artifact:2d91002001af478a6259135d","aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","aoa:aoa-techniques:artifact:41627642723565570a5ba138","aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","aoa:aoa-techniques:artifact:4614e41d34def3148f269991","aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","aoa:aoa-techniques:artifact:6105204715b11f5a45523076","aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","aoa:aoa-techniques:artifact:78624b39c65895c43629e995","aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","aoa:aoa-techniques:artifact:859893b447b67d299abff366","aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","aoa:aoa-techniques:artifact:874770b82440579ca24bf934","aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","aoa:aoa-techniques:artifact:a091893937b854517373eaea","aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","aoa:aoa-techniques:artifact:b335630551682c19a781afeb","aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","aoa:aoa-techniques:artifact:c9107011968421971fabafeb","aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","aoa:aoa-techniques:artifact:d2953f59029c3da963218542","aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc"],"observation_state":"observed","occurred_at":"","provenance_ref":"observed","source_record_ids":["aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","aoa:aoa-techniques:artifact:06d31990926be878929aa81d","aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","aoa:aoa-techniques:artifact:183461d99a40009516486c0e","aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","aoa:aoa-techniques:artifact:2d91002001af478a6259135d","aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","aoa:aoa-techniques:artifact:41627642723565570a5ba138","aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","aoa:aoa-techniques:artifact:4614e41d34def3148f269991","aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","aoa:aoa-techniques:artifact:6105204715b11f5a45523076","aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","aoa:aoa-techniques:artifact:78624b39c65895c43629e995","aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","aoa:aoa-techniques:artifact:859893b447b67d299abff366","aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","aoa:aoa-techniques:artifact:874770b82440579ca24bf934","aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","aoa:aoa-techniques:artifact:a091893937b854517373eaea","aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","aoa:aoa-techniques:artifact:b335630551682c19a781afeb","aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","aoa:aoa-techniques:artifact:c9107011968421971fabafeb","aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","aoa:aoa-techniques:artifact:d2953f59029c3da963218542","aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc"],"temporal_ref":"current","trust_ref":"observed"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:c9a8eaecac36231a7a08d73b"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:c9a8eaecac36231a7a08d73b"}],"id":"aoa:aoa-techniques:event:00f041d95aa250fae70cdeb0","label":"mechanics/growth-cycle/tests/test_growth_cycle_mechanics_topology.py","object_ids":["aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:c5293c51f822a2ea1be12ee2"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:c5293c51f822a2ea1be12ee2"}],"id":"aoa:aoa-techniques:event:029ebdc2e92d71cd6ed9a89f","label":"tests/test_script_topology.py","object_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:6f0a306b0bad5453f0e6f938"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:7b17d40a9798969387d38658"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:7b17d40a9798969387d38658"}],"id":"aoa:aoa-techniques:event:069021ecaa04d203eae882ed","label":"mechanics/experience/tests/test_experience_governance_contracts.py","object_ids":["aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:1ffbe48a404df9817be3dd6b"],"temporal_ref":"current","trust_ref":"declared"}, @@ -691,6 +692,7 @@ {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:23c462e9b98c602d506b5ef9"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:23c462e9b98c602d506b5ef9"}],"id":"aoa:aoa-techniques:event:cabef0cecab98bde84d6ec75","label":"mechanics/agon/tests/test_agon_mechanics_topology.py","object_ids":["aoa:aoa-techniques:artifact:551aac060212aabeebecce6c"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:551aac060212aabeebecce6c"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:017cbd2f4868c2b183418b92"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:017cbd2f4868c2b183418b92"}],"id":"aoa:aoa-techniques:event:cd5d31c0af76139a9f54e515","label":"mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py","object_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:05bc9804c7daefad3f66ac01"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:05bc9804c7daefad3f66ac01"}],"id":"aoa:aoa-techniques:event:cff2ef8d10ac8da4e4874d57","label":"mechanics/audit/tests/test_audit_mechanics_topology.py","object_ids":["aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9"],"temporal_ref":"current","trust_ref":"declared"}, + {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:a34e409cad41c756827551c1"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:a34e409cad41c756827551c1"}],"id":"aoa:aoa-techniques:event:d38d611b30f8717d06a487df","label":"tests/test_local_stats_port.py","object_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:f0ffaf3b7bf0bae97872af76"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:f0ffaf3b7bf0bae97872af76"}],"id":"aoa:aoa-techniques:event:e138ec8d21a21d7266c7ff32","label":"tests/test_test_topology.py","object_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:9474485b910fe51774c07f50"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:2662df2da298c6d1818f461c"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:2662df2da298c6d1818f461c"}],"id":"aoa:aoa-techniques:event:e1e56403b2179c189412c745","label":"mechanics/distillation/tests/test_distillation_gate_decisions.py","object_ids":["aoa:aoa-techniques:artifact:538bb41b40470989ae774aa1"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:538bb41b40470989ae774aa1"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:327bacfdf78f5d37e985a9f8"],"changes":[],"event_kind":"test_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:327bacfdf78f5d37e985a9f8"}],"id":"aoa:aoa-techniques:event:eeff9c9ecff8c5c4368f2af7","label":"mechanics/distillation/parts/cross-layer-candidate-ledger/tests/test_cross_layer_candidate_registry.py","object_ids":["aoa:aoa-techniques:artifact:5b5175da19a378fea73fbebb"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:5b5175da19a378fea73fbebb"],"temporal_ref":"current","trust_ref":"declared"}, @@ -749,6 +751,7 @@ {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:c48b6d6e49417c76506e009b"],"changes":[],"event_kind":"validation_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:c48b6d6e49417c76506e009b"}],"id":"aoa:aoa-techniques:event:a2deaca7bd832a2d4a9af9c8","label":"mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/validate_cross_layer_candidate_registry.py","object_ids":["aoa:aoa-techniques:artifact:5374bda42b1a16346071489a"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:5374bda42b1a16346071489a"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:8e1dc88584ff1ea2978f6e36"],"changes":[],"event_kind":"validation_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:8e1dc88584ff1ea2978f6e36"}],"id":"aoa:aoa-techniques:event:a54e1efd3d681531bb3e2cb2","label":"scripts/validate_abyss_machine_kag_export_bundle.py","object_ids":["aoa:aoa-techniques:artifact:7eaedf4491a248821a2ecacc"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:7eaedf4491a248821a2ecacc"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:de45174711e11ed6a953ce49"],"changes":[],"event_kind":"validation_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:de45174711e11ed6a953ce49"}],"id":"aoa:aoa-techniques:event:a5fd653000d56806ccc12e9b","label":"scripts/validate_agents_mesh.py","object_ids":["aoa:aoa-techniques:artifact:5dc490a89b7477c117470956"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:5dc490a89b7477c117470956"],"temporal_ref":"current","trust_ref":"declared"}, + {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0"],"changes":[],"event_kind":"validation_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0"}],"id":"aoa:aoa-techniques:event:bab6ef9b487bd41a80ae7fca","label":"scripts/validate_local_stats_port.py","object_ids":["aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:878e9324377c0c7477e18e6a"],"changes":[],"event_kind":"validation_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:878e9324377c0c7477e18e6a"}],"id":"aoa:aoa-techniques:event:d08d73a9510c1055bd125c7e","label":".agents/spark/scripts/validate_spark_lane.py","object_ids":["aoa:aoa-techniques:artifact:80adbf9807a80432bf32a44f"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:80adbf9807a80432bf32a44f"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:413c394090cfbc94d781202d"],"changes":[],"event_kind":"validation_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:413c394090cfbc94d781202d"}],"id":"aoa:aoa-techniques:event:d1fe9e9d8b8c7a784e7e53c6","label":"scripts/validate_agents_mesh_index.py","object_ids":["aoa:aoa-techniques:artifact:e5f4c29fb35ffbe366619cd7"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:e5f4c29fb35ffbe366619cd7"],"temporal_ref":"current","trust_ref":"declared"}, {"actor":{"email":"","name":"source-owner"},"anchor_ids":["aoa:aoa-techniques:anchor:6dcd40d75400cbc939b04164"],"changes":[],"event_kind":"validation_run","event_role":"producer","evidence_refs":[{"kind":"source_anchor","ref":"aoa:aoa-techniques:anchor:6dcd40d75400cbc939b04164"}],"id":"aoa:aoa-techniques:event:e9deeac2bbcfc3e544a24585","label":"scripts/validate_agents_md_shape.py","object_ids":["aoa:aoa-techniques:artifact:97117975e7a1a05d5c0e0a11"],"observation_state":"declared","occurred_at":"","provenance_ref":"declared","source_record_ids":["aoa:aoa-techniques:artifact:97117975e7a1a05d5c0e0a11"],"temporal_ref":"current","trust_ref":"declared"}, @@ -758,7 +761,7 @@ ], "index_identity": { "artifact_kind": "repository_event_index", - "content_digest": "a545dfd93ed01b84fea7495336086ff01bd33b3f418c4f779d79232e40efd63f", + "content_digest": "a06a8fc227df603264ee5b3a4133f2deed34ff4210c16925fb2beddbb48dc287", "index_kind": "event", "local_id": "index:repo-local:events", "schema_ref": "aoa-kag:schemas/repo-local-kag-repository-index.schema.json" @@ -845,24 +848,24 @@ }, "schema_version": "aoa-repo-local-kag-repository-index-v2", "source_index": { - "content_digest": "6f6234e98c9535e09c594f0067aaa9b7cf200315fe9ad4614fc56f068764f93e", + "content_digest": "5ac3215479d6a47cceccef0d681726080f6f044829400eb36c014b65d84b9c79", "local_id": "index:repo-local:source-surfaces", "path": "kag/indexes/source_surface_index.json" }, "summary": { - "entry_count": 755, + "entry_count": 758, "kind_counts": { "command_run": 8, "decision_record": 75, "generation_run": 25, - "git_commit": 509, + "git_commit": 510, "release_declaration": 7, "release_lane": 1, "repository_snapshot_change_set": 1, - "test_run": 74, + "test_run": 75, "validation_lane_run": 3, "validation_receipt": 32, - "validation_run": 17, + "validation_run": 18, "workflow_run": 3 } } diff --git a/kag/indexes/repo_relation_index.json b/kag/indexes/repo_relation_index.json index 030090b2..46699d09 100644 --- a/kag/indexes/repo_relation_index.json +++ b/kag/indexes/repo_relation_index.json @@ -53,6 +53,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1b0cccd39a3587b66aa51f3d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:13d00570a93a224399cffe28","id":"aoa:aoa-techniques:relation:72e527e8bcf25fa9eb3b892f","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:6b3e645b41ee7a40116269f4","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1b0cccd39a3587b66aa51f3d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:13d00570a93a224399cffe28","id":"aoa:aoa-techniques:relation:9e9ead70ec2801a7865378ac","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:887b055610d9cbc1cf4a37d0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e05a2ae060b7f7d9597be05c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:158611597fa3cc3fe30b7e11","id":"aoa:aoa-techniques:relation:ac5848eb050e7f05d06d2ef1","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:8c75138585a6adccab211a0d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cb7544497f82809456bbc8af"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:15a0d046bed332a2a02676ed","id":"aoa:aoa-techniques:relation:b4b7b85dc19d440df9a6f25c","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:5a6dc1782c0a16abedba4f30","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:983bfe4902701d17ea62d727"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:164c39351c6664ea356db88f","id":"aoa:aoa-techniques:relation:f899cc9b63b8b7c5eed1a48f","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:26c8ba9fd814af43cd9a759d","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:983bfe4902701d17ea62d727"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:164c39351c6664ea356db88f","id":"aoa:aoa-techniques:relation:012246c7762c05de07ba97cc","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:403fd3729132a65aba4f1fa4","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:983bfe4902701d17ea62d727"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:164c39351c6664ea356db88f","id":"aoa:aoa-techniques:relation:f84f19c7ff1ebb335b699330","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:5176aa4331e0a54bf8b12b4d","trust_ref":"deterministic"}, @@ -77,6 +78,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8c7bc6280a286e8d707deb20"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1a559f4ce2e51a69649ae215","id":"aoa:aoa-techniques:relation:54748f934963ae06e5e80da0","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:241ce5e1313be12033624895","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8c7bc6280a286e8d707deb20"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1a559f4ce2e51a69649ae215","id":"aoa:aoa-techniques:relation:95da6ee48683c52fdb63c6d8","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:865ad4ddb73bb07b257d17f1","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8c7bc6280a286e8d707deb20"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1a559f4ce2e51a69649ae215","id":"aoa:aoa-techniques:relation:2dc32276e0aea94ed2769a8d","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:966c4a2215595ba4e6d29baf","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:695ac9b892586b0e8de631e8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1af61f1b6400d9f9679960da","id":"aoa:aoa-techniques:relation:c224932a297f67e687696903","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:27d65c19d7595558d45895e4","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:962eb07681905a90cb9305e2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c07fca105da6f9bdebc2412","id":"aoa:aoa-techniques:relation:aa1052cb53b061498631e0e7","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:2695b0d8f28d458986a03dab","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a2773de4eec6355818e480d1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c4d3aa758d8091a47c890dc","id":"aoa:aoa-techniques:relation:cc2024de2a43ec92929de3c2","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:563d8452f4214b58efff7d03","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a2773de4eec6355818e480d1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c4d3aa758d8091a47c890dc","id":"aoa:aoa-techniques:relation:c976678309bccb811580b6fe","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:cd9a3f06d91b28b3d66b599f","trust_ref":"deterministic"}, @@ -547,6 +549,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:69a3239cf9c88b348829b9e3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:88c4567161fd6c16643c2628","id":"aoa:aoa-techniques:relation:94f842a6347ca403d6463d10","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3bc17e6edaecc06db44507a8","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:69a3239cf9c88b348829b9e3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:88c4567161fd6c16643c2628","id":"aoa:aoa-techniques:relation:7f42657a4b248c45f26f72da","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:b393ce143d8f36c1d5dac9dd","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:69a3239cf9c88b348829b9e3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:88c4567161fd6c16643c2628","id":"aoa:aoa-techniques:relation:78366303c1bad68035ec5e97","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e96dfc4f3ffcb1406a0cc496","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:53528eef1241b207ac20e7d9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:8915e58ae5a1e993758560c4","id":"aoa:aoa-techniques:relation:82cb7561499e38d67db81212","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d3cff36ddb0f61fd4f4609ae","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1a38f2206909513eb4e93766"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:8a48db555a5d40b03fdbb0eb","id":"aoa:aoa-techniques:relation:b3c0c704c47152a3a9219152","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:2384e913151cc3a18d929892","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1a38f2206909513eb4e93766"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:8a48db555a5d40b03fdbb0eb","id":"aoa:aoa-techniques:relation:067ef7da6e5b219dbbb52a4b","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:312c1fe2711358a1ac9aed07","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1a38f2206909513eb4e93766"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:8a48db555a5d40b03fdbb0eb","id":"aoa:aoa-techniques:relation:f9a80b9a5e6764261e291547","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:45978b1bc231e4098c80e573","trust_ref":"deterministic"}, @@ -579,6 +582,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:62274766e1b4a0c788560fc0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:91fed3afdd553fa7951d8c4c","id":"aoa:aoa-techniques:relation:3adff00e35f2ad76334440e6","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:49bef38a8669e77bf4d6e8c2","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:62274766e1b4a0c788560fc0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:91fed3afdd553fa7951d8c4c","id":"aoa:aoa-techniques:relation:19390a64465a5733d65239c2","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d34e0f22e3ce25144548c30c","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:90c3c23b255714e054da83f3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:936867b687ef06d490618172","id":"aoa:aoa-techniques:relation:9c2f45ae98727e4c3a1fddcb","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:2695b0d8f28d458986a03dab","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d29879db1aaf94d91e7b6f4c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:939e9a76ab50c7bbd9b6cecb","id":"aoa:aoa-techniques:relation:a6a28ffb2472af3c4d69aae3","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d3cff36ddb0f61fd4f4609ae","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c8ace191ff62f389d6e6c022"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:9416459693b3901bd33d76e9","id":"aoa:aoa-techniques:relation:7b207da0c85486dea3055b1d","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:044aa947843edcd719b46a91","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c8ace191ff62f389d6e6c022"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:9416459693b3901bd33d76e9","id":"aoa:aoa-techniques:relation:dc248cc301ad99cffa12faef","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:49bef38a8669e77bf4d6e8c2","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c8ace191ff62f389d6e6c022"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:9416459693b3901bd33d76e9","id":"aoa:aoa-techniques:relation:57b1183d249ab5d9d80643a0","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:5eb26b814f6065bb6cbfed6f","trust_ref":"deterministic"}, @@ -1040,6 +1044,8 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7e2151966b7286b825b3bc00"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f377484063f2eca9b64ac86c","id":"aoa:aoa-techniques:relation:6187d1370fe84a6b684e9281","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:cd5a0f157d901c2f5776c7f6","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7e2151966b7286b825b3bc00"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f377484063f2eca9b64ac86c","id":"aoa:aoa-techniques:relation:6b3b6fe09a0d930f71779314","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d7968dbb278f3063ba5efd9a","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7e2151966b7286b825b3bc00"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f377484063f2eca9b64ac86c","id":"aoa:aoa-techniques:relation:1ca62e5dddba94a8347a1f0e","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:ea17d5e05dccffff32076c5a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4a6cbb4dd6625618557eac08"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4689d3ddfa57e111b975bf3","id":"aoa:aoa-techniques:relation:d7c857c3b2dc74ce2cf5b2e8","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:1af61f1b6400d9f9679960da","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4a6cbb4dd6625618557eac08"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4689d3ddfa57e111b975bf3","id":"aoa:aoa-techniques:relation:40a411e4a3b01324c4878c86","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:27d65c19d7595558d45895e4","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:40520580dd347dc12fb63309"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f60822f19fb845e7c7729913","id":"aoa:aoa-techniques:relation:7f169558eebf5397bcda6935","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:053f063210abd5b21a6672a3","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:40520580dd347dc12fb63309"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f60822f19fb845e7c7729913","id":"aoa:aoa-techniques:relation:d0f17ca939cff8a2b9f31cfa","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:0681da97535158ddb44f6512","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:40520580dd347dc12fb63309"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f60822f19fb845e7c7729913","id":"aoa:aoa-techniques:relation:c9a6b3e3e4ccb182bfac625d","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:9925263042206f11e6eddcb7","trust_ref":"deterministic"}, @@ -1052,6 +1058,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cb79e8fa561de258c273ad44"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f717aaef770eae691e04fbd8","id":"aoa:aoa-techniques:relation:337b514837c777e5e26fb89c","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a28f8d2a1f6cc3e7e121c64c","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cb79e8fa561de258c273ad44"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f717aaef770eae691e04fbd8","id":"aoa:aoa-techniques:relation:d55046658e74d14af824043d","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d7968dbb278f3063ba5efd9a","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b8f696cc6fb7c1b71e276c97"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f771f22027ce47c63544e4f5","id":"aoa:aoa-techniques:relation:4e3f19fc8ddd92398a9e52d9","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a1b9abe7455d487134e81ad5","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:356b7bef8078b296da2fc6f6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f9254d1d822fedde9c6996bb","id":"aoa:aoa-techniques:relation:7014b30de71a0dd2e5c45301","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:1af61f1b6400d9f9679960da","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:412357edb9269d19cf6cb79c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f94284b6f05fa9fb6da96c2b","id":"aoa:aoa-techniques:relation:2034c83a34593aaf3993933e","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:563d8452f4214b58efff7d03","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:412357edb9269d19cf6cb79c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f94284b6f05fa9fb6da96c2b","id":"aoa:aoa-techniques:relation:1a97439f6fae5a64000a2a6d","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:cd9a3f06d91b28b3d66b599f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fce89d64599e041dca37c558"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f97dd1a5bfadad311d8e0d27","id":"aoa:aoa-techniques:relation:2b85ece285dcfc57012c55c3","provenance_ref":"deterministic","relation_kind":"calls","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3bf50055373d20dd8e7dfd29","trust_ref":"deterministic"}, @@ -1537,6 +1544,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ea5c06b23ac932a794ecad08"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1ebc26f279153617949f5c39","id":"aoa:aoa-techniques:relation:aad8a459be5b687d1d60818e","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:aeb93e6e5261e101e49802c7","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1c9a7d988fc22fcc4570e0be"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1ebc26f279153617949f5c39","id":"aoa:aoa-techniques:relation:96506eafdc4ce84ed8c381c8","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:bb56541d6c05888e788018cd","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:caab79b0552395185e14d8dc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1ebc26f279153617949f5c39","id":"aoa:aoa-techniques:relation:ff70bff7c9e01ca18d3acbce","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d20957345ae88e8fd0f1eecc","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1ebc26f279153617949f5c39","id":"aoa:aoa-techniques:relation:53343e5fc1ebbfd90d533734","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d585030345eeb0892f989b2f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:20a5eccfc031f4ee4e4cb2be"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1ebc26f279153617949f5c39","id":"aoa:aoa-techniques:relation:ae98c35c90e18187db5c80e5","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e1be5cc5a8efaa7b8d4fa74c","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:916f3e93be9caf885a15ca06"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1ebc26f279153617949f5c39","id":"aoa:aoa-techniques:relation:b51a132188d37bc031fb347d","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6f22f4f13a7a236cf6aab6d6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1efbb97407c23547703cbf80","id":"aoa:aoa-techniques:relation:1d05c72d3b83d59dc0e86736","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:34627f21196e425b7edb4a68","trust_ref":"deterministic"}, @@ -1786,6 +1794,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d7e4026672d982a689c61bae"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:335e0d72071b2ce5df2d8423","id":"aoa:aoa-techniques:relation:1308092b7a970e97667d6e95","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:e4cfb7c2cebba9e51eb33623","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:413c394090cfbc94d781202d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:335e0d72071b2ce5df2d8423","id":"aoa:aoa-techniques:relation:6d10d6cfa897293bfef162c0","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:e5f4c29fb35ffbe366619cd7","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:833e4271f54942dcfde573b6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:335e0d72071b2ce5df2d8423","id":"aoa:aoa-techniques:relation:b73bc009c3dc032d726b3de9","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:e72fb7b4d2f73e30910b6c6f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:335e0d72071b2ce5df2d8423","id":"aoa:aoa-techniques:relation:1ebe753d910cba9a57f01147","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c8e0830539c86fee461bb054"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:335e0d72071b2ce5df2d8423","id":"aoa:aoa-techniques:relation:a7b7c179a8255810bfe4fe3a","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:f3c7fc181f81f29301654060","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ad54e8c20766dc33b2e7cf27"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:335e0d72071b2ce5df2d8423","id":"aoa:aoa-techniques:relation:c99dd34bc938b01abfbf22ae","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:8bcfbd8b8fcca174a9cbbc76","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4bc4e8abdf130baad4ea9609"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:33e810f11a8ad25e4a247559","id":"aoa:aoa-techniques:relation:51334af703e62b7ac0ae7a96","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:1bea40a4f33d56ec3110ebf3","trust_ref":"deterministic"}, @@ -2381,6 +2390,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9277af0f47ef68aaea1953f6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:6211446b319c164f3a41fe81","id":"aoa:aoa-techniques:relation:419d9ac82ebf399cf455ddef","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d75660e4e17f1d13fcf86611","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:14c31a3b59bc072d9ed96e68"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:624e3a4cf68070ae15b77a8b","id":"aoa:aoa-techniques:relation:4d6613bffde0019d963eefc5","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:9f329f41db5440a32682a751","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ed46bcab3e572d986d89fbb1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:625e4e617f5dc2eff2a63820","id":"aoa:aoa-techniques:relation:bc29da9e7fd263792a20326a","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:f73d6bb820b2923c7a7b2dcd","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:6260d9d4b747ab70c76d90b0","id":"aoa:aoa-techniques:relation:900dd566f91903462a429d35","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9a2ab01879b8826a731fbfe4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:6261e551722a0415a14d3c69","id":"aoa:aoa-techniques:relation:8448e1d83f1c93ce869ada82","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:395a124445c66f20adae62e0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0b850f2205124f90996d1ed5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:62e72cd2222f4f159b363caf","id":"aoa:aoa-techniques:relation:1dcb3f6d381b3802be18ddf5","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:0b514ec0f40107f2d5885231","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b197402282325a216cf433eb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:62e72cd2222f4f159b363caf","id":"aoa:aoa-techniques:relation:153e7f807f5170077ff99f4b","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:2e9afa7ac254b40d3d8a3a91","trust_ref":"deterministic"}, @@ -3648,6 +3658,10 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5adc20b99e640d5f96358158"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d56e0f26031b0f9952c26ae1","id":"aoa:aoa-techniques:relation:e69b51fda2deaf92f43b1323","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:20d619fb25c4afa1024e051a","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f10f61a9171a9dfce45b8e4c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d56e0f26031b0f9952c26ae1","id":"aoa:aoa-techniques:relation:ace137d4f5023ecb0e93cbab","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:2422a8e30d25b02f1bfb56c3","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2fc941c7d857c783de1ae62c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d56e0f26031b0f9952c26ae1","id":"aoa:aoa-techniques:relation:2405853cb68c23110040e716","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:efb847e11061c2d2ebe12ba1","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d585030345eeb0892f989b2f","id":"aoa:aoa-techniques:relation:9050fae800c9aedb478971e9","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d585030345eeb0892f989b2f","id":"aoa:aoa-techniques:relation:07115ab0ed1c7b464a91f1ce","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:de1cbe45e89a2c422ba362a7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d585030345eeb0892f989b2f","id":"aoa:aoa-techniques:relation:199049c90fe1c01dfabb579b","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4e8deb2a7613c614302c44f1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d585030345eeb0892f989b2f","id":"aoa:aoa-techniques:relation:fd765c7dfc7ee55488029192","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:6260d9d4b747ab70c76d90b0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f0350df157ec90d69fcf3887"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d5ea5eded3bc80975e9a50d5","id":"aoa:aoa-techniques:relation:4575756e75acbccd3e7060fa","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:1e52a0e919d049cd43732980","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:96ab28771ed4bdc714ec8f54"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d5ea5eded3bc80975e9a50d5","id":"aoa:aoa-techniques:relation:935534747fdb81d40c7cee85","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:fe10cc3966eef02f0a57ad2e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4e71e9a942df8b10f7a3d0c4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d62cd35042dee0280f2d2ddc","id":"aoa:aoa-techniques:relation:02da0ba263ae3e8765f2ce96","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:cc44be8bae400fb571c17016","trust_ref":"deterministic"}, @@ -3958,6 +3972,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:faf746b7a53866226e5c2b3c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","id":"aoa:aoa-techniques:relation:34ef1f87b5aa0f51c32a81da","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:712d5f03480e57eb0994afdd","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8b59d0d1b806e762138723ee"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","id":"aoa:aoa-techniques:relation:0d1b2ab0263624452d8972b1","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:454e297a5c7a76a53ca9413e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","id":"aoa:aoa-techniques:relation:4a1f36d0862e1cf076192ea2","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a34e409cad41c756827551c1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","id":"aoa:aoa-techniques:relation:4cf6a0af32daafdbdfc535ff","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1e8c672d059473f20827dd52"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","id":"aoa:aoa-techniques:relation:2a38e720d62beb5797911e2f","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:8658ee6a5e9a7c7b185a1d3e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f0ffaf3b7bf0bae97872af76"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","id":"aoa:aoa-techniques:relation:10949400b55a44ce3fdae401","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:9474485b910fe51774c07f50","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:600bf60f135562857113242d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","id":"aoa:aoa-techniques:relation:9091c1af0ae2d3e5fd08cc81","provenance_ref":"deterministic","relation_kind":"contains","temporal_ref":"current","to_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","trust_ref":"deterministic"}, @@ -5013,15 +5028,17 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3c98875bfc8f262a990b0df8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:337a1402f09588366130ee34","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:41f811dfe769200bcb024d66","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6db83055c2eb37e654886e9f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:43afc8165e268ed562225d3e","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:42081625d4c7507a4d2ff0a4","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e48bc5af741480068b9ee402"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:3a875829076bf5cd53f1005b","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:4783528253839afcccb1a2c4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3819f9b141f5aaaf6be12972"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:c00eb2b8bdcc3ff53f982b8e","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:4adbe6162494f73ec542a97e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:545acbb0891fc621ba846155"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:ed6b032229faa1386fa156dd","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:4cafa51fde3221748b55ca16","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:47732b2f4773971ac0e5d644"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:a1295c4106504ae582297f5c","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:5dacd8b1af5b29d81f1a31f4","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4c5a2c66800ae20799b6b7a4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:5e30e502ac0cf79d13abd38b","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:677da6771a1d44836ec15c63","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:53528eef1241b207ac20e7d9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:75140489885fb658e1a272e2","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:8915e58ae5a1e993758560c4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d29879db1aaf94d91e7b6f4c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:d43eca627af8c13bc2bf4533","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:939e9a76ab50c7bbd9b6cecb","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8cd66429c0ef9b43ee44ec13"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:706f0364ffed798a7d37e4b9","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:9f38279c4216e608d7237412","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:099b8cbc765c8ee1d01b8fb5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:9a4788f8c53510277a9bbeb8","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:9f5a5ee6420ec496700bf755","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4de09f5492279c61765c1c74"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:77a6f83357c91797ab4c151e","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a8e587f27d20f90a16e4124a","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:eb8b7fbc7c5e368bf6717aea"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:33c3152ff9ca6c14dce925d1","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:ab692c4f1a853ca0334b932e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1cecb79cd4cb37122d1c4d8d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:b6f43cf34a3145be956c478d","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:ccb09aac4ad18cbdaee2194b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f27933e5c483913496e72227"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:5f4a335d3ba75ea3841afa84","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d3cff36ddb0f61fd4f4609ae","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7c6a178eb0ca133d8a329bc1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","id":"aoa:aoa-techniques:relation:399ca263cdaa5bd186a5381d","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d9660a1cef875696c472cf36","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b3b423ecbae695ecb2860a05"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4","id":"aoa:aoa-techniques:relation:cf23b0f04174a05c5a89b8b6","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:05ae507c8ebb2c89311b77e4","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bf900df839f506a79d22ffc3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4","id":"aoa:aoa-techniques:relation:14c8917bbc69d34e9b94989a","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:07bc1d006b057bbcb8d979de","trust_ref":"deterministic"}, @@ -5069,6 +5086,12 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f4937db47313fab16c3e73e7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4","id":"aoa:aoa-techniques:relation:bb09fb83ea6a1b30eaade20e","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f01df2a73153588d131d8543","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d1849ead8eb9dd7a0fc587b5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4","id":"aoa:aoa-techniques:relation:a415caf2d0566e7568fc8adc","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f0b3bcad57e04eac8225e45b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2f1c6796d75579e30100b64d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7a262a5582428ad63426e0d4","id":"aoa:aoa-techniques:relation:da43c6f372edf56cc346f3a6","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f22eeaf2291bf8d0ea0953a4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:695ac9b892586b0e8de631e8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","id":"aoa:aoa-techniques:relation:10a2683219f274f74610ef02","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:1af61f1b6400d9f9679960da","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ec606d6cae8528fadf042a77"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","id":"aoa:aoa-techniques:relation:5889139f2ce7e747ecdbe525","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:27d65c19d7595558d45895e4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ecec5c4dd765eb25eb8c88ff"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","id":"aoa:aoa-techniques:relation:9db264388cd4bcd773dabdb4","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:40135dea74d9d2718e218cbd","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3225dff0134d5dad412afa2b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","id":"aoa:aoa-techniques:relation:f5e2ad3f10177f390cab5600","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:df744fc68abd768feb3bb6c6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4a6cbb4dd6625618557eac08"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","id":"aoa:aoa-techniques:relation:65503b1afa12809b41f195b2","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f4689d3ddfa57e111b975bf3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:356b7bef8078b296da2fc6f6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","id":"aoa:aoa-techniques:relation:86b89eab0def991e612f3321","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f9254d1d822fedde9c6996bb","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:815a146f4d46c7ee7fedc831"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7d17f6046e98c9a3736efcb8","id":"aoa:aoa-techniques:relation:278bef862c354d8da1faf94f","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:2b69e6b879649f3069b9e997","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:59ad3be71d684d742d9d174d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7d17f6046e98c9a3736efcb8","id":"aoa:aoa-techniques:relation:ff784ca50cca093fb55f6251","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:953c5e31e3c4883b5c4af727","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:134981de1bfabef4cc48183a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7d17f6046e98c9a3736efcb8","id":"aoa:aoa-techniques:relation:6a1170e22595e879af77a49c","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:c17c204cbc40af412b2db7e6","trust_ref":"deterministic"}, @@ -5259,6 +5282,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:44c4c61a4e5ab0a10f841309"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b","id":"aoa:aoa-techniques:relation:1879cfc4e455942f8a177368","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:eb123b3e3686fab0b6330d10","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:08b520e3f51011fc2d3d30ef"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b","id":"aoa:aoa-techniques:relation:814ec1eaa24aa64f2ff5b365","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:fe80fcd2423b3453dab46867","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:74e12422ed5441a881a8d07f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:a61aa4a40a839eb40008ff6b","id":"aoa:aoa-techniques:relation:19bdd1eedce66816dbbc96d6","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:fea236bc3ccf331fb603ca0c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:75a0bd324161bb9d5b6acb7a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","id":"aoa:aoa-techniques:relation:614f4e24fbf53e6e4bd2376b","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:22844652a8be04be28d14ec0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7461e2173b7a76f19342f498"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","id":"aoa:aoa-techniques:relation:4f37d5cc583a89890ee8f16c","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:32f4f251139c1d0db5af1499","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:27ce4954636bd65273feacf3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","id":"aoa:aoa-techniques:relation:f4d3e6bcbd3e5ca1a3ee0b07","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3e33038d063f3adfa4d23671","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:19b71cbffd85fe02fdb76309"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","id":"aoa:aoa-techniques:relation:056b9bf9f66a4f85e4f189f5","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:5708e0e771f1e4859df2c531","trust_ref":"deterministic"}, @@ -5577,6 +5601,8 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c1af9d2ad83776eba0d7ace9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:e5f4c29fb35ffbe366619cd7","id":"aoa:aoa-techniques:relation:f08375ce41229faeaa5d41a0","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:edc13bc42e7809a32dc4e2dc","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1f10e7bf85124486607d7598"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:e6e030549802f6421035903e","id":"aoa:aoa-techniques:relation:c66657a65f24fe944a6ba770","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:210cf3f024e225074fc16e6d","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3d70153805f2572aa2292bcc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:e72fb7b4d2f73e30910b6c6f","id":"aoa:aoa-techniques:relation:32fe2b58a19b30d942c2ddad","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:413de9124f4f2645281e0b99","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cb7544497f82809456bbc8af"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","id":"aoa:aoa-techniques:relation:28fb9eb3516809a090ffa067","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:15a0d046bed332a2a02676ed","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0c493966ed0551e09d9c3c4e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","id":"aoa:aoa-techniques:relation:397ad25df7cb88fe65f98922","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:5a6dc1782c0a16abedba4f30","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:05fa83d427659fa4e2b00829"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:f0743278822e9f09d5471953","id":"aoa:aoa-techniques:relation:be27fb6ca1bb46b48c4052ca","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:2fed22709b99d64f2a70fc9b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d87466cd37fe0be13fef6c49"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:f0743278822e9f09d5471953","id":"aoa:aoa-techniques:relation:932bcea6b9fc0c6e22365c82","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:62fb53c9469ed2977147f140","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f3b641aaaf71a8f831bfda9b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:f0743278822e9f09d5471953","id":"aoa:aoa-techniques:relation:54086f22350abf8c469bf585","provenance_ref":"deterministic","relation_kind":"defines","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:8c254ec2fec711579f4ec7fd","trust_ref":"deterministic"}, @@ -5973,17 +5999,16 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:33f8a47019fe20b6c0da86f7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:13af548fd9ebbee484b49403","id":"aoa:aoa-techniques:relation:3d0e9da0a62b1f331dfc9ad4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:faabba6a1a7809c96a39d8a6","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d2ccd97335b6ced2a8cc7be0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:13af548fd9ebbee484b49403","id":"aoa:aoa-techniques:relation:dbcf8f600ee83b4267d0fea8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:faabba6a1a7809c96a39d8a6","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd78d2e3181e7fd870fb9f94"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:13af548fd9ebbee484b49403","id":"aoa:aoa-techniques:relation:797b7f3a820e49596b5efd15","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fe0cee08666cff5a547745e4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5194783259807dd947cc0fcf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:b234efe88bf372a98a8680cc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4eeb19f706bc4acf0fa5a58f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:b31a43cb98564db9f4045af8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:97f816d239c99a1b42867915"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:73cefa69aa66ab763389d29d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1ce58cfb8fe321e13efa2d9c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:da7c83c09d7141fdc3b14ba3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:525f7d735b3fd00b376ad91d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:27a3feaaf5a8bad82de09c74","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5b8faca6d827a00b51c80f7a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:38d89abc2c052b8b708a6b15"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:3c1aca3d55931d1eb6a11a69","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7587370c1a2d80e96695fd85","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e778d113877c4d22848fbdb1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:2af902b908dc6237c57a2391","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6d7648f23fc29a6aa520ddb6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:7f01e0ba03ce4a0409cd1655","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2aae93f123122e81474aa885"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:2d5bcaf73ec217cdfa872455","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8445ce862daa14dfe24f282f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:f6915150174766643a055827","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f580b27ceb1d3beb37e17c19"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:ac10d974f53e61c287f9922b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8ed0ebeb3ec737b7e4c12da8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:020c798ac7fcb30790afe67e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:87a5ce7700d29939103c21b1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:7e0a9ff2b4f719a68478cad8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4e58a4ff51f3aa66591cd33f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:e58cd331ad7e853c7a9fd213","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b5823676925d61e6b64bac3f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:f5328ac53c62647bbfbed353","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6699d0586f23edda67e3e8f6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:f7c14fdfbe966a408c7e3fb0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5b8faca6d827a00b51c80f7a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:434f0b7b152fdf85d9d42068"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:94719ab9792fc76e8cbfaed2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:da3fc1cc9aa60c67e4a03209"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:a0ee3a5543b629c6e41c2c07","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c11533f69cb3a5b6b95ebed3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:2a217e20e7382ad12298a23c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9e505d1a7874e960cc7ab285"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:44b0a53c8676eee389f382ad","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:510464e803647208f9668367"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:148017a26f4b1c2b0ae97589","id":"aoa:aoa-techniques:relation:238b8746a4f823e35ebd054c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4a6682d5fd7a25d6edb6ae90"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:14990bdd782e37527e4dc0fc","id":"aoa:aoa-techniques:relation:d15d07fe9d1aa98abc192357","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8a9f5870cde69451c06e7e9e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6f4e557cad08c98081b66f92"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:150300567859c68c3183bf33","id":"aoa:aoa-techniques:relation:5fb8d7a5d025524d3c25ef54","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b2d429b7d320cb9bb279a0cd","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0b072010d3eb4937a16e8271"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:150300567859c68c3183bf33","id":"aoa:aoa-techniques:relation:512530ba06f717ef27e5b7df","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:eb8ece9755c73ab5e71209ff","trust_ref":"deterministic"}, @@ -6483,112 +6508,112 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ced06049fce2775c1cec95e7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c07b1d40ec792ce28ac489b","id":"aoa:aoa-techniques:relation:f5e8cf373d82d463aa03bfdf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3b2d233f15714b0a091488cd","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:438914aa5472881fc3b4845a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c07b1d40ec792ce28ac489b","id":"aoa:aoa-techniques:relation:4c07936f83f5b7c79ad07879","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:ee3573cbf43c02a6c53a76c3","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:576ca1a26403d2af102a7027"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c07b1d40ec792ce28ac489b","id":"aoa:aoa-techniques:relation:74a39006a96ebce9cbaa1c36","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f624522a9f1d82cd0ee722f3","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:37ec2f50fc9d0f10351df875"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d6c56abc187e34a7d233d1f7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:011977f7749984902d88b61f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e35d15c08dc53f6fa1b36d21"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:9dca59fa98429b69c8f4a1f2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0c92be94bcb3db63f7d6e3e8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:472aa393254ca00bcbfb41c4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ed4e862eb4bc5c0669a201c0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:f192dcaee32329f3f930e318","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:72ef0f5d7019f62964f888ff"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:99766f917a157925d70f13bc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:049b437d9cb9f0424555278f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:73b55f1f1ad04cd50cf92cb4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:7ff7579b623608b0b5f824d3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0b4996d84a8e51517d948e80"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:aaf8b3d3c2f6208260c3c413","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0a58ef71ee17c1ccb7701f25","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:860280c9a6c31d1c5e1df062"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:3154f097328d45434a0af7f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:aff08912402b6dfdbd8ca8dd"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:2bb7f88313da66a3668a4166","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0b253a863340466491b1b23a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e42a1b9969a7e6f42109b420"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:1f1815f0c6f5c90f95b15564","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:011977f7749984902d88b61f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b2cc9da5f7d2ae6036304343"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:00be6530a1eed562dcefae3d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:de8fe397bdd3f3c76676878b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:77e27c5a3da375387ee7cdfc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0310ed740d2dbc04a9e6b30b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:46bc3a6d35bf5cc222c15d3c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:4b040dcda0599218eeb35609","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:03919a39777bfe688be2de9b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0198ea081dfa1c0df2278c8a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c6eaf616be2df4f70378c8a1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:049b437d9cb9f0424555278f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dec2208eefa53cc61d2d4878"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:36dc0fd8784f6b3a772e472c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0751c863fea0419d2a625b17","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:66204a61279a852a934d951a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:70f4046291fed0a9a5545462","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0a58ef71ee17c1ccb7701f25","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:94ad009cdda6c8747a8b5dd1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:6f0d7cd78abc6c0b54e1d774","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0a8c4bf1dae6fe7290af5cea","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e7f462bb8e3631c2d3ef3100"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:fd939cadc9d0fdc3421b68f2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0b253a863340466491b1b23a","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:aca4ce1f941a4c86f1cd3aa4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:72a77cd94ce97f1593284919","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0c45dff3e34d0964ce0687f5","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3cc7136e0d00fed57aabb219"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a76d43ff47a1a255fb8df34a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0f15e80c000c8f5d22d6d178","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b714f4e8bf2f7dce419331e5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:8b75a2ebd7c53ae4814506e4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7409febee80b7f64bfe54fe0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:624a24314a0ad7539766a4d2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:116da7a2029997226c834014","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d3c7d3ac1b96717ced1daa6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c662a65bfbb4dd6d0a29ee07","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0f15e80c000c8f5d22d6d178","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2d16c7b4f5bfb70766eacf21"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:057cbfc55ae19bbc7d1fe98d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1023cbdccbd2cbff027d526d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4cc7dfb9b4135df21e189e0e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:6605b83e48afb8bcdd0a887d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:116da7a2029997226c834014","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ba026eddc6e62a94292bf2fb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:430c20e4f379774a3fee60de","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:117b27346d5e45b6ba483024","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2e975d416ca576f78fdacda7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:45e6fcf39dba5f034d57968c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4192505078a2a0c370de414d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b5ab211dfce32d51dc0e4ad2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1aecae6fb2e66d86841e4ce3","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2335eba13ea95ce0fc11b9d8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:9ec68e45edd50007ba9c6b1a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1d3393930a228f83b6a40cc7","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bc08165373bfb51a1c5ddcca"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:490ff9ab44e3dc52e50226d3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1f8b8af58092484be17ce6b2","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:19a019593175af0acf51adb1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d6957e2ede078dd50fc0d834","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bc72ced022c3e592ef8c7196"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:1b84bed01a498312433d7e78","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:219843d89f34e6d8eee191c1","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b6d9b77c690cef4d4b9ea74c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:4d5f325ed6ce29ccbc17bbbe","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2624190ed2bdceff42197c75","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a1a3dea101c240674aba1a1d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:5788963b852350cb02f7e4d6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2ae69687807f0d4ebc46d32d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a063d619ddc555e2645a8d33"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:1cb51cd585f05328f3115c8a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2c234357d93af3aa108a0e07","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:584ac7a5c29c9f6fc6499066"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d37ce735c51e41ed31e35882","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30061cd328bdf760025c9cad","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f8664b4d51670364944ffd87"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:081e108fa12dc0bb283d4c0e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:361103f961f909f4c123433e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e93a7eec122ea242d270f333"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:03c6f6fdba249acd1c61a8a4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3c0668f6c03595e275f6ba06","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d572d850d84116f7b270c816"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:ba4a5ad42937c1a0b6cfdc53","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6b6fe0c3c82d4bd7cf107149"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:1bba72fc0e25ac792eb9d8b5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1868a04c0ca9f6f69697b0a6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c04030dc1b40ebe015cf1ae6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:3df87fc38e8d611fd0ad617f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1aecae6fb2e66d86841e4ce3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3a44744fb9619d455cb02a6e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:17fc15fdb8f33f6b441838e6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1d3393930a228f83b6a40cc7","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dc178b036775ec42d1a9ecbc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:416f03cfb70d7e9b7aac3b5f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1f8b8af58092484be17ce6b2","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3d76aaa0122c4f043db6196b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:2ae2677d277eb31259737c89","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:214535c176c13006f6bc89ae","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ca0621a824c58be721d98020"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c5cf05a1fb0ee5398ac0a765","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:219843d89f34e6d8eee191c1","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8376bef360303cf7abdee77c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:6ef5a1e2225385078ea73e81","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2624190ed2bdceff42197c75","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c42c9bace462e3b98157fc7f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b3af997235cbbc0b19e141a8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2ae69687807f0d4ebc46d32d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:764806d39de0e8f66af2209d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:afb16c277b7578189f500db2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2c234357d93af3aa108a0e07","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3242ef8138a2e23747002a00"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:343e3d2f8d8fa81f5e1b26a2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30061cd328bdf760025c9cad","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:92270d5b9b1683dac8a79240"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b5d5ee816b8cb56b979fa0d5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:361103f961f909f4c123433e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b1300972d9bbc0f78a70e4c8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d7216b1c53a14975f2f2f4f6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3c0668f6c03595e275f6ba06","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2719940f8250c2b846f8896f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:1dafa5fd40a8e735e66615ae","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3c1bc304f7bf57c6794827fc","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3193711804e0b4f4b34b501b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e6c7dd597618d4411e1226d1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3d723d46da4e52f64a997c69","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:64f0774c9e59fbb71902788a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:ad9c7429b899076d0b64500f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:957cafa59466c35d66a80430"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d85e44cc3cba2de1ba32b229","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4035531165582a1dc864a388","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e9d6ed3351681a31ae140923"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b4ed53394526b53b19eed2b9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:452e8e06956baf3e39635f01","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f5b871f473ae4579ef72263d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:9db40be432d9b9708d5f5535","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:78816f94cbff2a14771d9967"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:bf8f817dc1ae59b549910176","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:41ec7be966489452ef5533bc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:840aefd999e94822b0627afc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:39f0378e09bca7e59cc77ba7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:82811c0fc75ff115a1240215","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:49869e1b92146765f59c96ff","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4f018bbac47746f51fbefd77"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:794072fe1cc315447e6ca90e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4a265c97c7a9faca1d98e672","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:771c39ae44069d2e67558637"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:4992927031bbd4f74b76d0f4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4b4976023e495c834125bfcd","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:84f340fb483bf2db58999fc6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:4af6ae8cd827926c59dd9e54","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4c90d2731db9899463d26522","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0757fa80eaad9392dacd6cde"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:cee65e7f017fda7a26746077","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4fe36c7dd7093f65d8114e3b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:705deb39bd35fc7154244031"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b3d884e38544227407a5021e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5aebd19b24796bf16d32f3be","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2e1373761c4570862ae11d0b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:6d659af1bff481ac66533f1e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6dd007311b000183e3bc8a47"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:9ec0d76a996abc2f0759305c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:600c582f43a21dc7a3c09ef5","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a70cc2e5acf11eb3c232ef68"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:ea740728f32efaf6714905f7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:613461552c83841bed52c351","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8e82e4d9a122b9f00b3e5b35"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c54edbaf5ff7195887252c38","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6730f2ba972d7e4b6e8556e8","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6cc0e3070813c22e25897562"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:70f1c36b22e162a0be33257c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f2d085f48b83ae94b78ddb23"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:3a8f4dac78a1b540771c0c5c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ea51c6712643e400a0286ac","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e02f7d1b32d5fdc9f08142ac"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:52718902e7d4a1aa13ee714e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7b206913cdd14d12e7248ba5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:28d012ee01528e7747e7098a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:72a969368dcbd0e1c7b42166","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:48af115e5618233e6d5c5464"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a5f68a69fabdf00dffde4bc9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:74123619244129f4ee04644d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d0e09e0cf1db005f509d1e4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:5a95c7be4343b692c76e659b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a3c2f6b0f8f1d0235b6295b5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:65eff284c560f61d0372ddfd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7ef6623ec319d504551ed175"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a1100a1787701732d4a4e0dc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7c8c069e656545ea884b926b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3bb9d117a48b2b9184645745"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:7798d42f74702dccefab0c43","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fec6431bfe93531c31e0f260"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:74c2053578d573522e4ccb0f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3e47b840df1e43697325b1ab","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:417d2e142cdee8e45a24324a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:aba2525d6fe06bfa42d24f82","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4035531165582a1dc864a388","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c427f0f79166fadb4879573b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:0b909408e9c04c02e641f7ef","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:452e8e06956baf3e39635f01","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:86936dc1c676899a716a6047"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:322433ecf1e97cb5da9192f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bc3c0a78b24d38ab8f4184bc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:23bb1fc6b27e490db9793c72","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:468f147f4c8b85a7031f94de","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ed69e88e359d4e1b1aa2f38c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e723476598af258305a4f3f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4965fc6f95f873934dfe8978","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d20485268c14b2b67f4cfca4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:7ec036adbc0db200be6dd2da","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:49869e1b92146765f59c96ff","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9924c427f23ebef50a05aaa7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:9c348f38935a9f5f968f639f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4a265c97c7a9faca1d98e672","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f0b0718379581571b72222cf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:1d9031cc34c9e8a07558afe0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4b4976023e495c834125bfcd","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:77d528d7b6027206b8462f54"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:aeb994b256f6766712970076","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4c90d2731db9899463d26522","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9ed2cbaeee0eb006df6ff146"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:f6258d82824f0fb839ed1cb9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4fe36c7dd7093f65d8114e3b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b84b7b986eae171ee482c804"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b849712fc31107bc0840496b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5aebd19b24796bf16d32f3be","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:493cb30095b3da5545aeda13"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:13fe97beafd897a133451c39","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5d6307958f34495030c651a8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a445d083bb36106611a563fd"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d5f9a99839344e6b1c1c8989","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:600c582f43a21dc7a3c09ef5","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8b92ae12dc65f799750c97a2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e90945ccd8aa03e90f613b89","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:613461552c83841bed52c351","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4d71d78104e4846e533124bb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:470c8292095e22ae254b276a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6730f2ba972d7e4b6e8556e8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bdf9fb59c4eee67c778807c2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:03dcb13b80e868de04bbab8b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6e4f59a382cf8f91f92e8f05","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:81b7e5de1dc6ed7d8228e9e2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:9dda6f153c03d556f85fe782","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ea51c6712643e400a0286ac","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6d047f2611f15f65f6fbff75"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a3b7c98b67f28128dd06bc2d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:71646ecdc56040140d2af748","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1ef2110d305d2c475a1ce963"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a551d96bfac259633b7a44aa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:72a969368dcbd0e1c7b42166","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0c6f94b25d41a6d0fe4cbfcc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b5a0eb4f7cf0e4dbd9e7e02a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:74123619244129f4ee04644d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:52c1b9478e06924d7a1b08c7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a4132d4984d8489f2802cb17","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:744a564f9dde1b8c88dc7977","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a01ac1d1b54e5d4242f181a5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:6868045ea26d0fc80601298b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7c495ca7cabdf7431cc11213","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:671ff7e1d1820156e8a18b2d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:0dcf33a6958cf0fb30e94bab","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7c8c069e656545ea884b926b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2be136cf1bb5679104359584"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:067596d968dea1f019319fae","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7ce21988d527efc51541f116","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6a7148a0423c94b13cdf1dd5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a91c01e4ff0c7cadf390f2d8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:88163f45079ac3717b6d402f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:594de98971c6f09753834c3e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:9d6007cd80192d3f895e7726","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8a9f5870cde69451c06e7e9e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e065b5aa823bfb66cd10270f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a9d30f6c32cea0b9f19e5465","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8ac05377990a318920ef648a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a99ec60eb0eea9042ed252bb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:6e52d374a05c998831bb24bd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8ce7aec5aa70c36407699fa0","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2209bd8591c82d444a88280e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:07acfff24b4883808d36788b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8f3f5e1f21dc6819f11a60c4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:63c7941471fe7504cfa6bfaa"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e1a1784d123bc59aaf052655","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:93af6a3b1e844e1b7e5fff79","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1b6a27a0e825e14c6ebee688"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d0c39ef4b91d1e87e3b1b1a3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:93ef0ebf5a33bb20ad038cda","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd6b983b0eabfa5e383c3533"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:66dd1526f6126b99ee347c96","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9995f1644e399ee461162783","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6e3545baee2e886ac2f6e9d0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:be9d2b4216fdf94a1a6894f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ad967ec21c70d871f9211d99"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:8ea3efaf51e64f0d02343eee","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:68750c7ca265c5c0e3604a37"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c785bfa31443cea3c613a92b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d9b7dd4ccdf4e69caf204605"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:93ed693d6e570513718e7ced","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:43010d6108b5e248e207d2a0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:590980af53f898f3190f8422","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9fd0a68d4fb876e40a787fff","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3ce2352a20d161cc70d091b5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e315adf00fb1cf0a9f8146d5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:83d6503626aacfe80035413c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e5d26296582ae7cb3ed82c85","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a0c310c067e722660d722e4d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4123ae8a14e72f6f05f0d090"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b5b961e648fe64a7e6abbf10","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a188dc3799555ece3826cb61","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:103ee52f1a8abdadbd55e7ef"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b4bdd29022b8c2cb9b1dfa6b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a24137ed4f39b13cf69ac833","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2a51e5dec608e32c0fd03ea0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:1420207d36e40f70afa52de2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a49e9cb33e1091d62de9a3b6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:59b3c7f2d4d48994af1f8f8f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:2cf8c09d7378da498e8e0db3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2c612307a8f59d5fd5a7ef34"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:104699efdffe40b69bffb887","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bea2937e011b57dab26e3599"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e59b9ff24ffeb38bb7597781","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e1ead3aaf166eb4553e38628"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:41f81fa2082f3f24a6713a01","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b4fc9193eeb8bec23196d74a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8dca12fe6b66f1df5b551e53"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c0d494293bb328e9e65ba173","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b560daa43cd9d3f6ef1e48a5","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:02ca7816517dcc01fef68ba4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:fff018c8c19402ea4e19292a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f9401b99e1455d16e8d6ba54"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:057ed4c29f4200ad4d958fe0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bb01040578683f99cd6e58cb","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:258579d464b6af5d487cea4f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:efecd4e7b8303f6d1540f736","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bd37edcadae821d3cc405bef","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:791631e8446de34510324b33"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:2258d29575fceda13f01d2de","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bdf72dbfcf52af7e58e08a2a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2d99967e0fc05fe7bd60f3c3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:ac067d8895f4a1e95fbcf8fc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f9d14d1c54b5820ec0ca8945"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:89c9d7c0138f5793cafe25dc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:cfcebbd33ed49d6091ce82fc","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:40db078dcb0c0da32a983f1e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:44d745b61ddb6113e53e7ce9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d55fbdeb288ee0d5beeaa771","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0e91310b8b9d5a89127ea771"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a839a7ed1bb395579e98c01b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:de382c146bb929514e50bc73","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bb07a2ae8c83b9e8bcbb2db2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:f2c9278e73963c2e8ebda464","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:deed7f8749125ba10207f02d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:105a3685aae4c469219f8a52"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:4106d5e768779fda83f97485","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:79c21381113716684739b486"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:184faa4e9fc02052ce654ce9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e37c71a6b8fffdd9c6183264"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:398e4b5ab2d71df97375216c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9461d240066550daf7314889"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:50cc7772bd862ae681dcd4e1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:91dbf47a649356c5b11518c3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b53b06245f317841a2043795","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:870048846b65b97f0634c2db"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e93348a7bf912d742da1bd44","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e59b2b40078eeef86eb33dcf","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f7c86538e0ed4bb7ac1ab4ff"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:3b83deba07bff58612637d4d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:65f8e2f051c31ae52c6a965b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b1021468e34999b5ee1178a7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f2eabda5b60ef92690ec5584","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:21303fdd190dc5b61e3ae7a3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:50c1e8d7db5f65750343437e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f3fbac540e0009f5027f61cc","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:30af56d1b88ead42056c3530"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:6d73402bf3273ca110b727f9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f4a236c5231e392162af2a26","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9322b41b89e03ec868c0ba98"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:3551fd897e2f5c12a2b60d93","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f91073f609c8ed98eecdd4c8","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:83a99ae0c196b4f94d216a8c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:2b16969114dd53acd0a1f5d6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3eeb6d4d138f0a0bffda5abe"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:590d6a6fd13325b898c8a83f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ae1e8528e29c839abea1b095"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e700f922fd5def1cbb848a8b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fe0cee08666cff5a547745e4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d9cca39d42538b5715cd64fa"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e00bf6c959fc07d9d3b0b9ff","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:0531e025a89e35559bad488e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9f0222c896ac8d982f64ae47"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:71e6215b909482c1748b2685","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:1efbb97407c23547703cbf80","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:db4ed2315a24377494b7975b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c043a80fd1992916de4d1ae5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:36492603008115be2db26ac7","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1e765f5e2eab6d3a1c25db26"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:5aa8a249f79b2261b7fd29b1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:45207290792c2ba6d0949cd4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c3a67c6483578e38cc581c89"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e04da507b0066bcd32eecf9b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:9bf385169db33a19a6b17df4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1ed6ff035baf3556775b7edb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:6dd8cb1a70991a5bc01057c1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d3a2192183e9d21bc9f9df55","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:48d6a97b7e31159dd05b4a9f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:63152ecf455014f5d688086f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e0282d3f1fac993ae03b275f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d028918879a108805d6ca9c7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:fd3d22e0c875dd0310cc7e8b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8a9f5870cde69451c06e7e9e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:11c243a5cc960876e1430390"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:ca50682aa9bcc6efa4eca7c0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8ac05377990a318920ef648a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5498b8ae70a001e301ca94dc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d10e94a05c16ef42195bf2fe","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8ce7aec5aa70c36407699fa0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f1c18ee690e12a8c0ff2e255"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b5fbbbf6ee226fc0cf9cf685","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8f3f5e1f21dc6819f11a60c4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:21144e4a36d3fb3b0d8cbc05"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:b6213e8d8e4f95a10ec64c4c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:93af6a3b1e844e1b7e5fff79","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f8ad67b904dc4e94a7c9332c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:9dd7a9528105285e335efa32","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:93ef0ebf5a33bb20ad038cda","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2334e043fbbec96330e8af81"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:fed5caef07c1e4e15a0d691d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9995f1644e399ee461162783","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a39a13a71305a669c48e9116"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:2fd93798fd89a68309ce81c7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9c726557aabdcc5b0567e1c4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c0a856fa3946e80e32677b9a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:10199ac5fb967417bbb9e9f2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a46d5df50de1b594b5c4d192"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:167d9a583fff8c9b4c1d79fc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:49c79a6583871cd47c41ba27"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c5f7db8d31a5f556ee1b84f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5e775f613b4cfb60cf22e60e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:2ef407f00dc0d8dac2f26fc6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9fd0a68d4fb876e40a787fff","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a80cf95c3a619487d088883c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:1b88fd5bb59a99fbe08ea9fa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a03763866eee8439045a5bba","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:07a301082cb6d15a65df0663"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:99ee6c11d019dd7a4e795a01","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a0c310c067e722660d722e4d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2b41b01570bb93c34b8d8fd6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:82293ad567ab7c47146e218f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a188dc3799555ece3826cb61","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d5438e18d94e968bee696555"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:bf696a8c9f8da171e748d69d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a24137ed4f39b13cf69ac833","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:227147ab56b609184abc1ce0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:59e1e3dec7472a47e96e1009","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a49e9cb33e1091d62de9a3b6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fe7d0bc99d0a463fd4daec42"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:5dc3946474020302dd1aecda","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a50cb68cf8f4516437e46f96","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:13c0dc2bc2ec3110fc9e1dbc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:ead7fc0653c9d68afe8a1f03","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:aa3f49b1443022b4f61d8423","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:75d4551de46f0fc25a494959"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:4dc8e38c839eb89d41db24f6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b3febc468e4e61919a7fabc1","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fa101ba4e31f2b5d93803632"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:cac449ec473cbc0a31f73dbc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b4fc9193eeb8bec23196d74a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:99fd0abeebabb6ed6b978935"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:d977acd01e1518accbb5142b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b560daa43cd9d3f6ef1e48a5","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2e7375ceddfbd6dc7d911f86"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:df26f04a3793e2e47e497d98","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b9902a9454cccb7cb70b9508","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:71ff6fa695af0ec8d31eb5ab"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c115b209507bab54d028d76e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bb01040578683f99cd6e58cb","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ac73cf9f614ac426fb13bf0a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:4e6915efc685ec9499c90dd1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bd37edcadae821d3cc405bef","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9afcb62c7cc32a930516f927"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:ca2c79936481a0cfd29feae4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bdf72dbfcf52af7e58e08a2a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:22b1fa5293e7e5a0daece889"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:055d827c9805e45923f7cd5f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c6b2609cd638322b05944583","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b2826354f2951d6ad433b002"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:cf00bbb229e9ff15fca800c4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:cfcebbd33ed49d6091ce82fc","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c2ca986d5315255c57b168ae"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e40f3a9ac4beacf470bdfa99","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d55fbdeb288ee0d5beeaa771","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:eaa4e82bc0d8a09fc29b9fba"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a88394789e2a1e8cb2d8c077","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:de382c146bb929514e50bc73","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7f3944959c519390c07718bc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c3c307961486f1d6d74992e4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:deed7f8749125ba10207f02d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4def5a75bc54f621d834faaf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a5de7610bf72b606fb7b4c0f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e13540dd105cd5ef29777042","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0ca06453c283d4219213619e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c4a9042295d7fb947b95fbdd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e244b918cb19a63da3facd72","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b0c84f2b3c103fb714af0c54"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:f008856511c7d1da2225630d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e294a311c523e4b83b63bc2b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d76b5356d36b95beb7cbcdc6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:a7fbb7c066f9830a45cd8f92","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e3eb9090eb9fac4eda1f01e4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:efd376b8453cf7ba4402d464"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:65309f698c901266510c0ea8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e4930a74bbd2b14094546ba1","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e4bed9a501fb996ee59db092"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c4d3cbf3350f2347da1d5a25","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e59b2b40078eeef86eb33dcf","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2bdd8f4376cb8ade8ef86cca"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:35129ee2a4ee00e3a636b32a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f2c0a7dece56e2a5e01f12fc","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a7a6c97c7a864b2687531326"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:06166d7e1661cb57e2ded5b5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f2eabda5b60ef92690ec5584","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ef111f7d1ac2b36d46a65e8d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:140831e2c6a77e376c9474c9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f3fbac540e0009f5027f61cc","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:58546e63467950ba7cf96138"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:7ecb7807e5f99207f0f2ff92","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f4a236c5231e392162af2a26","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:29e2b2af7c66309c0aaf6d46"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:44715782e237ccda6d17a1cf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f91073f609c8ed98eecdd4c8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d21d29f06aa1c8bf8118f896"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:56d30676b9ee95fcb42ab879","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f9fa34ef8c59a7fe7466b734","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:87cd3a45f667eb9216b2e5af"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:48fd5da8cc440c794e827f41","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:afc7678ae5a9c2558aa707c5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:15b875aa7d0b7c20be95a158","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fe0cee08666cff5a547745e4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:acaf0a04dd01329a33dfcba9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:084eb73c95ccce116af12d6c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:0531e025a89e35559bad488e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:af20a61fedce1fd46b19e913"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:e9a1a66eef73b3ef43b03288","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:1efbb97407c23547703cbf80","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ba4409ea91d678e6a849e7de"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:072a349f310ce64da597bca9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:36492603008115be2db26ac7","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:83d8e984d7303e4e92602d63"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:53f5b987cfbd6221f4152b88","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:45207290792c2ba6d0949cd4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e39e6b1208f4bacbb8e25fd5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:2c697f5984f822ab795e43b8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:9bf385169db33a19a6b17df4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4acede7e07b5bec9fa962576"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:086d7d263ab24db99717aa82","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d3a2192183e9d21bc9f9df55","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:460e968d2a33ee7689604635"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1c303bcfb122c776d6d435c7","id":"aoa:aoa-techniques:relation:c9a29ae42ea296c3b0b829eb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e0282d3f1fac993ae03b275f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c75c51dc280e62ad06054438"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1cdd981f55f8e1d8f3a2a503","id":"aoa:aoa-techniques:relation:f9e21e493ac24c2895b47693","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c2794d35d391c05cae798ce6","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5dd969af4eb6fd406e4234a5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1cdd981f55f8e1d8f3a2a503","id":"aoa:aoa-techniques:relation:e1a8280b08e70736966f6e1a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c9ce9bbcc4dd77e828bec54e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:781e59f6cad02c1864375a05"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:1ce284715733857350c1e8dc","id":"aoa:aoa-techniques:relation:1c5034659780803d03f2b4f2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4035531165582a1dc864a388","trust_ref":"deterministic"}, @@ -7459,55 +7484,57 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:eb6e3ffc4012aef090a6830c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2b15b2b4ecd7b78ef152e4bb","id":"aoa:aoa-techniques:relation:9f7833eb547325773fdf5a07","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e2875af0756418592a444192","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6d1049038f24d47332052e92"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2b15b2b4ecd7b78ef152e4bb","id":"aoa:aoa-techniques:relation:32153b376c9a45ba846955c3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f2eabda5b60ef92690ec5584","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7c5238192bd824185f6f0b41"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:b51f8e1f22c9b38893790e8c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0a46df92f14e5a4be0187905"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:9d8723e24ee0f16b6a79bb8d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0a28f3466403c47b0319eb8a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:69bafb5e3c6325609186f7c5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:d7eccc53a031e69ebf7dfe25","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0c834d394d8f544c81600346","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8b1f92c814be09743b852e62"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:f7d086377efb4df3a43419f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0a28f3466403c47b0319eb8a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:48dbab4266595c97a6a38139"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:969e485ae6fe613072b13874","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0c834d394d8f544c81600346","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:457b86b0dcb9ff65b5381671"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:d657a412b5be1d8f1b6fc777","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:816e0e27902aa2f2443b4991"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:0639742333f1ea044535e9e9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8edaba7a1be5803f022644ff"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:86a0e4aa122cd7f8942bc38c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9e8063f838769407d514a104"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:583936c3989fcc80c9954961","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2d49aea8754de5f40772b767","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d4f8eb86a2472eda949b6ced"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:b17f12797e5f490b94ab9fa2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:44f1fccf8012750381cc1d0b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:eb0b8b6b0131ae94c4fc0168","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:acfd48f56f01e67a001f28ee"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:2f14befe872ad56939922d8c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:42b38b306d0b2dada56a2f38","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:eaee460730491f394f8b4545"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:b1a192b2ea6b533a2990fe40","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:42b38b306d0b2dada56a2f38","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c01e494ea23ecc9e9e7bb58b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:f5810de883e680782ff0933c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fc73afe56c73c65aab1d9dc9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:85c488a28bb6aa42cd5d8278","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:42b38b306d0b2dada56a2f38","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cf9dd2842a6ff49419e86b7f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:955d64c30f781daf8fdc2adc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:42b38b306d0b2dada56a2f38","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:417c05674d6d9b92d1d59f54"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:9aac30a30d22971f780a8057","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:226215760574fdb31b505ff4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:f755f2e15df6dbdb9183da11","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8526884bbac4a309c58394f3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:2817235940d11dae0df1a092","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5b285563602909efda7e4ee4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:82d7798dcbcc1009eadf47b4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f5597a3869dadeb89846f344"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:b08d39ec082d823ee51158f2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:41f6403218a46514755210b7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:07e41dfec80abb3b05eb0aca","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a4e7f542822c3198dbf013db"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:3b1a9827a9f02cba23b85010","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1973fe6d106cc8aa6a89ec4f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:755419e43f2011f2f612d8e3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4920a368e209bd2071d61163","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dc52d07990bf81a9ee77a3a8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:2c7562b65488dba2b3176a5d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4920a368e209bd2071d61163","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f3ee9fd75d637578d4a95411"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:93a7a18fa2f432187f36dac6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:4920a368e209bd2071d61163","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7247d53fd264a13e0c626bbc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:13506b432fb968763174e137","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fbc0fd92e0d0d1d0a2c1bd38"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:89d24d087aeb1a35c0caf503","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2f2f540a11c5c11db2225536"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:ebbfdb1c0e2ebfc18c16118d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:99fc1ef430a7c9f18718ef3e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:cac78c45cbca2d6e86502dec","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c28489a38958e733354f572b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:41df772edc43cce61b1aa6da","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8f8f2c61796f5c8de2be0ef4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:8cd5b80e7a39cb0119bf10eb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:52ab658af9073adfe768c681"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:fe54431859ea03e1a464e17d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ec3040a63d6a8a886c25b7b7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:7c4dc99021a1a0415d6d4157","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:09e2736a25dd0d619a8eeb4a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:d9d5d93fdecc2a551e9612ab","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0134dc2046ffa812e03917e9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:3d7a25c23db82a3e1758b102","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dacbf8f41d41c8c7afe8425b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:f2bbad8af2e821f02b6d10d7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a3c7a8e5ec6967b4e10277e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bdaf066457a73ab52219737e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:f392fb8df558974844b83111","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:62974c378ed3c976b7376b53","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6f67890d1b07f091205204d5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:2ecbed0be280193d816d78ea","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:62974c378ed3c976b7376b53","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:05897950e5d180557063a0f6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:353ba6f8732a302a438ec1bf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:69dd03e435274a0a50ae4c52","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7148a57237731dcbf0c85ffb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:e221e7c0f8bc5e3b49dbbba5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7630432d0fbe54652a4f2140"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:aa3bf0b44cf05e38f2c1919e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:aeabf4fde778ea6fc2cc2453"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:556510d891675fe5014ece1a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6f05a1a41b5f892f084bef20"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:4ef700371ffcb7db1019591f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6cf9efa60feab4053c0bb6f7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:d150d2b640688dc344112065","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:81047c5a063f366bc66dd10c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:6d5cc0e3c461442ad3a10f88","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7aaf5296b3966381481500c1","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:87713b30e3435494aeb0c624"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:6ce22577aaa8b60d31260e9e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7aaf5296b3966381481500c1","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:09de5328e38e2fc687be2def"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:1358789a0401fb8c1009077b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7aaf5296b3966381481500c1","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:decc9d7e47f3fcbf03b472d3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:cda7322aed4c98fe13fcb237","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7dc7edac22322b5899498e76","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:10d4dac9e0329760d485dded"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:431fa59722e9941be6e3eb2d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7deb91a73ca2563937edec36","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1e5284f0f8c41c2c3b4d77d6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:01c590d7ac674fe69ad0247c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7deb91a73ca2563937edec36","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a24ce0b4eeb0de28ba5af276"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:49f03bb383d48d45fc536be3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7deb91a73ca2563937edec36","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:78bb8f4d96d223e792328f51"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:7162f73f6f449f71fe095cb7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9955152f40db7416d4aa8b85"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:661c83b9a2a8aad544760fcb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5860643211bc1d4156f3cf2e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:3e9d911043f45acb4268fd2e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:72670ca22d12a164270d9ca8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:948eee7d136aa3b87fac906c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a88492e4b97256f651757809"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:6b85d3d0148b9500e259daf6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2c1502e9d9f356c29a659d5c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:7522411c1c9a7c05f7db661f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:25c40270ddb063adb3f933e7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:a9af8e884e36335c0471921f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9d8392ee3dd749232936af78"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:fb3f28d5d325a631b1cc31fd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7e07320e2d31eaf11f64f4a8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:3676e2b471c7b44d2eb95eda","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9085af304337f27e6a1ffb2e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8c7bc2a3c20c487d86f94716"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:d0c7994007bae66652fb41ed","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9085af304337f27e6a1ffb2e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4327606fd7fb82b8d51b8763"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:454c9d0e845351fb8d519ebb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9085af304337f27e6a1ffb2e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:503cc28c607a538d701e5ca0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:1eec6e04dbd1563ae72520d0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:84cf81f3a34bdd0af28447b0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:fae68cd6fa5e8e8331299620","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7c5c5bb579f0af4cc9cf6bd1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:fef434ad54779ecab71a1692","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1a4571b6b91dcd0c7bc44e95"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:937b44660ad43f01dff43fbc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9564b6109a6143d7651d6b9e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:966a39ea5892426c1954d7da","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ebe3561805403d70dabd5470"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:8bd880dde0ca6fc7ae47fab0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e269478ddcb4b9619756c15d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:8c7caea2fcdb685630c0f308","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2f73911bd0452e2bed685ddd"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:9547a32acd65e6359ebfedbd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:52222b2561928759c527fb53"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:df48e3db023da40feebd0e98","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e6987af2f9993f00e7e6cb65"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:a3e48713a7027b814811a6ea","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8690a777cce386f09bed0612"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:3cb54d64482131780c043fd2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6ec9294dd9f7d73cf657a684"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:97cc0a8c9aadfff1a08e26b6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f6e7089ceba37a8e89a2852c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:2fc10459a7a23eba8c3991a5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a7fdbd6a59e9029a1a4fbd95","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:858e1ed523c23bcd91e0c7c1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:47897d5aa35d1e9e4df8d576","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:babf75b77b00d1f921d4d991"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:79ea198012dba9fdbfb4c711","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, @@ -7515,26 +7542,26 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ae235c703e7e7f47739b7348"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:9c6eeb3087f93364a38007bd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:488ce55dd43bcb6f8c3b29b7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:b3833532623bdaa480cc8e55","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ccaecde2068cd37aa9b5e177"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:31ac035ee2145910f3043c80","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2bad2d33f463d1a9ca37e2f1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:0beebd715ed66c39fedeefe5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f61c21a21bb476bfb1f73490"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:c7e7e49ba9e2ff88fe6756df","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3529ab8489dcc5cd1b204a31"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:c339e6bb980976bc5c55e5a9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d48d9ac189be3eee7a0503af","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b062072e6426239b70d329de"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:9eceab16c4cce988b8437242","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d48d9ac189be3eee7a0503af","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ea71c4e07d35590e52d9b9e2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:6458e1c5a192716bdc16ca35","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da1e1168d10f7d81758e66b6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:edfc47abfb4f0ee91ba13626"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:14a9d6a2efef25abf305a10e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:dadac7e508cec89a77702d5b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:57540b46ac46409d3ae48279"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:5778d80b7d5a527dde18ea24","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d48d9ac189be3eee7a0503af","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1b9cd4d185cb4fbb218e700c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:286b66568cad4ccfc4c9626c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da1e1168d10f7d81758e66b6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:acf979e5a7c2a2caf6daa677"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:529b44cf6a2a07246ca2cc6c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:dadac7e508cec89a77702d5b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c8bf15ec61fe1ff1930adbab"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:1abf0e52fe45bf29867303b4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:83187154f022c47ce5652cf3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:e54bd86d2d6ec4857bc919c8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b0a152096974cea1b61d31c5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:a3bddd696caafbeb9e082bb4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0c876d8ba7ef9be53fca4d8a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:d67cad11c748c0063b64945a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5b01b35815b788bd7b0c5cc0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:8d0ddfb4293d19424b99bb2c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:ef80566e1761644e154032e8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cdf47ded22b9c7dfd6a7088b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:fb4b39d40099f00559fc6d66","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8623fb84ea62b8f8f36c47de"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:cdfaa0875dfd5f3a19a71f55","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:ef80566e1761644e154032e8","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b7534e55a7033763f9e9c937"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:17d904d9a816c6fec83a7c6a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:90ec2b0bae248036ee3f2603"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:319714e3608ee0e737c8db15","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f3e47ff60e896eb181128238","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:af5e7b47703b93e3059968dc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:20d4279d480585d5e316f643","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:faf746b7a53866226e5c2b3c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a9b9f6abb0d04b04c400e421"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:3d6ee5a79829eb0586d5ac07","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:335e0d72071b2ce5df2d8423","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:aef6ac8fe365ca23aa721f39"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:0b3a083f77c5ea33bbd2e9ce","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d4d4cbfb587e41d86bee26b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f8cabc03eb18c1ddf6743693"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:4c50c8c782236666303ebc68","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a2d3a6ee4316067308858241","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e908b145acde179053e3dc92"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:12db7549a5d2b73e8ae82fbd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e1be5cc5a8efaa7b8d4fa74c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e040584bcbe735a456849be1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:02894469ec38e00843df359f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:faf746b7a53866226e5c2b3c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3b87d9f57f2ed276cef25267"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:390b40cbb1eb4cafc3346c95","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:335e0d72071b2ce5df2d8423","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6265de65ac4b38cff95df2cc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:17ec19e43719a40be18649db","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d4d4cbfb587e41d86bee26b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2f79c0813e82040fd0cd2040"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:0ef979c9a4cc06f541bbe0a8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a2d3a6ee4316067308858241","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:65cda264a39f9031b948c705"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2ca8dc2ce8f018de69b96129","id":"aoa:aoa-techniques:relation:d9f100a4197d78c350d4f9eb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e1be5cc5a8efaa7b8d4fa74c","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1381939bc326056d1bb92881"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2cdb2913cf7038b6fc1a0a5b","id":"aoa:aoa-techniques:relation:a08729f44fd73c4f0a83f60e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0746d2536b99398718e23555"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2cdb2913cf7038b6fc1a0a5b","id":"aoa:aoa-techniques:relation:f1a8c47b9ee31f704b0bdd3f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3a9a2ba5e5cc9f6c49b9784f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2cdb2913cf7038b6fc1a0a5b","id":"aoa:aoa-techniques:relation:71c308e1b6e6ee7ebfe29451","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f3512468853fd3d11da144b0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:814f473e8aedfbdcf0db36bd"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2cdb2913cf7038b6fc1a0a5b","id":"aoa:aoa-techniques:relation:ded79b590948077867a1b473","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f3512468853fd3d11da144b0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b595c3227518cb75069266af"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2cf48f1bce298494b756889a","id":"aoa:aoa-techniques:relation:c52bbf71fa7d7894a4c19ffb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1e26108ec94ffa5dea870a60","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f771cb69abeb0da0c8af394b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2cf48f1bce298494b756889a","id":"aoa:aoa-techniques:relation:1f1909af66799a8ccc894eb2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1e26108ec94ffa5dea870a60","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f79a2ca53922500f3b2826e4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:2cf48f1bce298494b756889a","id":"aoa:aoa-techniques:relation:ba9b833466cfd3ba04b99e72","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2b5208b1b0548dfb037d1c42","trust_ref":"deterministic"}, @@ -7998,7 +8025,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4e55f42bdd5dce6c052e5e9b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:4156b8cab93e7897504a164b","id":"aoa:aoa-techniques:relation:5e1644744f2b3194b30c5f7a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5c139b8eb3bd10f4b176b2ef","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cb3209e51dc8a55b2b35eb68"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:4156b8cab93e7897504a164b","id":"aoa:aoa-techniques:relation:53da917de688f02e4f7d72fa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:ea052ffb8264f4b390cc75d3","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:42592b3b0bee6527155843e4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:4156b8cab93e7897504a164b","id":"aoa:aoa-techniques:relation:c6f282c903e2c37cd75b92fc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f9dd423e96335d688bf33d4e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d60ff94ae4607a08f8fcfe10"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:41637e721fa8f037c82e2c92","id":"aoa:aoa-techniques:relation:63fb42220fcb4db66b671909","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1aecae6fb2e66d86841e4ce3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ed75d6caa2d586fcced636bd"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:41637e721fa8f037c82e2c92","id":"aoa:aoa-techniques:relation:35f47eface836c7a98f7e08d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1aecae6fb2e66d86841e4ce3","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:800c0d4caa079c9351111357"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:41765200ec10929aaa538251","id":"aoa:aoa-techniques:relation:abaec5e513118e22c1054bb5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2323e38403362d29e033deae","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1857be59c5939cca6193724a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:41765200ec10929aaa538251","id":"aoa:aoa-techniques:relation:96cc007862038567879a402f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2851c4c9d0d338720a4ef009","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3184e8349f90af1be34a6a78"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:41765200ec10929aaa538251","id":"aoa:aoa-techniques:relation:5156742dce098d34d81d862b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2ae4bfdcf2f16f238d8d2abf","trust_ref":"deterministic"}, @@ -10695,7 +10722,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:904acb79d30571a91bb6194e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:abc54279fdfeb80d32157df9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3ab8a55fc0b025fb90d64e30","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1eac3345098695c314af0a58"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:a40503d2051d0feca80165c6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3ab8a55fc0b025fb90d64e30","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:53de55a40675ea569a30d063"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:7c9766364991e35bd50bd28a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d4d4cbfb587e41d86bee26b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bdc299196392f1c3f774ffa6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:f725d6d4ba861b54a84eb0af","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d4d4cbfb587e41d86bee26b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:831231e5935261aa7a4c0faf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:2f684949832e817de4ab9553","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d4d4cbfb587e41d86bee26b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d7f8306629cc9a0a7480ba91"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:c4a6281e09c6f70c340b0672","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d4d4cbfb587e41d86bee26b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2bb1f7cb5faabf8bdea04c50"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:940ca9f06b28916ba6b5fcb7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d4d4cbfb587e41d86bee26b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ee297922fb597a5ec0dc5b7c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:bbd2a282562598f25550330d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:4053dfeea882e78d3f31d314","trust_ref":"deterministic"}, @@ -10720,12 +10747,14 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3bedc820b3fe302087276444"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:45debe8169025cd28500997d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:9df254e43571f84f4c22bed1","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cd989dd4b751a77d1abfaf8c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:db12c7a1222366e89f829b29","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a1c1994aa538a01814b362f0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:48c03abc9b3af385ecd9a464"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:3efc57f199a49f7dcd4ab611","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a1c1994aa538a01814b362f0","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:17a3bd870afe865a6e85df8d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:e9ef283c923a4640cb8f9be9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a2d3a6ee4316067308858241","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ce135d40b989c431647c3f3d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:957f0b4521b96d38dc3ced90","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a2d3a6ee4316067308858241","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b34e4fad974e195396b48489"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:b8b114b2db467686c1ea73f8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:aeb93e6e5261e101e49802c7","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:baa9766d2a2d2bebe9a09493"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:0d4adc6bc16e60a38aba689a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:bb56541d6c05888e788018cd","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1debad952be2ddc7874c7ef9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:f3b5ca65b355d048601bb3b2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:bf0542601e6669ef53a51656","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bea4c8f071288056b69c3fb5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:e228b758878bc444ee978735","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:bf0542601e6669ef53a51656","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:67625930d201072733a36ba0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:e17d06d8db1d568313634301","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d20957345ae88e8fd0f1eecc","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:783773ffbe33f110fedc60d0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:cd0d82d1142d5ea06e78dcc8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d20957345ae88e8fd0f1eecc","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:84fc09919b0ae8734512569f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:0b77cf4edbccbbf3d293b2c5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d585030345eeb0892f989b2f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ac726e083b55ca4a46468482"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:a8ac7c473e5a6b563e887e4a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:d585030345eeb0892f989b2f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:32597df2d3ee8d8f4c4284c0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:cd01f7c12939be8938629024","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:de6db9e2d2f987ecf842cd5b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:30d5005efdb9ac74071ec1c2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:061d98eb4820ddc145ea398a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:de6db9e2d2f987ecf842cd5b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b84a93347e44fb797cb30f36"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:562476c93bc8b27a396cf26f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:de6db9e2d2f987ecf842cd5b","trust_ref":"deterministic"}, @@ -10733,7 +10762,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:23e916effc22dbb341a91d69"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:0b5e313ce5e92b9e3e5192a5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e1be5cc5a8efaa7b8d4fa74c","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b3cf6b6389cc6a937319067a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:e84f53e9ce30acd34bdd5e36","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e1be5cc5a8efaa7b8d4fa74c","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1ebaa93a042214ef4326f584"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:e3da23646af8a5236ce0a633","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e1be5cc5a8efaa7b8d4fa74c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:612b1bd0ac93863a789a4b56"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:9be21b41b62cb41de9b261fb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:76af7ae3c8f9cade90f48659"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:7bf9d5d672b9853551e3aa09","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f4fbc015ac0e0132e94d32c0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f11793cd3c85803ca1831e43"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:2227bdf6b0d8964058ebe9a0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f86f4212fedac1fdd786906d","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6c825f2fdb0b1dd4e11f599a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d349a27d7700673273ae6ca","id":"aoa:aoa-techniques:relation:713013ca6a487dbf6dcd7bec","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f86f4212fedac1fdd786906d","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:45cd3afdce1479410f47ecb8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:7d74809679ed17ace7b1a82d","id":"aoa:aoa-techniques:relation:7dc80b5d9c1961aa184b1217","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:008d3a311fb737f85981af0c","trust_ref":"deterministic"}, @@ -11055,8 +11084,8 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:04d97d64fa7297d2ddc8a35e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:87951ae2cf23601991d8ce8d","id":"aoa:aoa-techniques:relation:d0ae57312c97815aab39583e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c450c667dbffb5ccadc74e72","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:92a710f43ee90d7ad85df1e9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:87951ae2cf23601991d8ce8d","id":"aoa:aoa-techniques:relation:6db7958b6da154a2f4cdba8f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c450c667dbffb5ccadc74e72","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e9f6610a2571b4ab271bba74"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:87951ae2cf23601991d8ce8d","id":"aoa:aoa-techniques:relation:5399ac56067fe68c41aa725e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e1be5cc5a8efaa7b8d4fa74c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d0486b176c67fb697b06eb24"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:87c8a90ac918737b0acd5dce","id":"aoa:aoa-techniques:relation:09343bf8aca19828d7c031f6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:219843d89f34e6d8eee191c1","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:561d4bd3a1c12400fdae8c27"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:87c8a90ac918737b0acd5dce","id":"aoa:aoa-techniques:relation:3e89cf49877326bbb82305d6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a188dc3799555ece3826cb61","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c19560cf3897eb054af7b02a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:87c8a90ac918737b0acd5dce","id":"aoa:aoa-techniques:relation:a56f7bed580f7d6819c7915f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:219843d89f34e6d8eee191c1","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dc281d278ac074841161a5fe"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:87c8a90ac918737b0acd5dce","id":"aoa:aoa-techniques:relation:a8d94a83822a139a5b495f09","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a188dc3799555ece3826cb61","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b8ff7fff2b7da73c4d2e62f8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:87f31f3d277260ca163a2550","id":"aoa:aoa-techniques:relation:fa54d18057c3ef926afd0c1f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da4801eacd603b9bb77770c9","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:89b5cb08a1cc1a73646ad232"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:88384669d7fe8238c3f54740","id":"aoa:aoa-techniques:relation:ca7b608c278e4fe351ce5f9d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b6293e141ee9edd300b06cbe","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:29828214395f281692438cfd"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:888957a3e589ca9d2e121d7c","id":"aoa:aoa-techniques:relation:bc2b855afa3a4eb28b8f8a5f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0760628f1c54e851dd39ee51","trust_ref":"deterministic"}, @@ -14534,15 +14563,15 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:063a3311865b30e295b87cdd"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d0fa37ada7931d89e16717af","id":"aoa:aoa-techniques:relation:c7a64564c8cf2eba75d8f7c6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:ee3573cbf43c02a6c53a76c3","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bac743d172f4341ac182febf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d100a1447f716e5c2da0f480","id":"aoa:aoa-techniques:relation:ef55d3158a7f113c5786f281","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2418a8dbcf2d45101d7c65da","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2a42be236675feb641433bf1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d100a1447f716e5c2da0f480","id":"aoa:aoa-techniques:relation:54b08e7f9608d38299677e5b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:462e9e2f4825c2289ed67d08","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:04294d6d144ba77ac7a19d8d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:2c38aa8df306d91a0f33b04d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:57785472916f4a5b84a916ed"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:88c31ee73a8b219d4203ea56","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:072205e71f0442b84d1a6fe7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:d0f03ce5aff7e8193e869861","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f320c4cfb6cec5f3c25f4a96"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:4d1e0a7b30d3c1381997b24a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e7cd062149b23813a6fa4c8b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:45dc1434cdf98f1c396be22f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:de1fa497e7de56c9bdcdb564"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:3954e6f8b2df3be1fed90c48","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:46f9691827e129647c3cffcd"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:4806f44adbce7d0437040da7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:20850560488cbe479cb087e2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:7231a1398cc32d02edb48ebf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:01f03f741f6529648c434b13"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:261fbbb6aa4ffa459b2e26e2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:84fdb5b4eb553489c252b13e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:40ce0a389a920e6840d703da"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:8bfda0197b213f9abb58e1cf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1e94de3e38c8c9d94ccfe463"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:636f76bf74058c78c131ce43","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f18b569dd0d6072a8b3854da"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:60597a3256f5802a1195c51e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:770a2f027d0bf820b8671ade"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:8ba0cbbb72876d15b85b709a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:820ca1f288d15bfe81958402"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:f732d3b0065a1a107934cae7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c0b6f464f93a5511bfb72fef"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:6b0a29e2da828c066e7c62c1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e67d65d5b38620b3b220c550"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:7385bab588a3197feb2c6428","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:396b2280cb8aa3a3b818c43a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d103f5db653f7696482cfd1f","id":"aoa:aoa-techniques:relation:0388ee2f125cd14c2359edd0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d4d4cbfb587e41d86bee26b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dd357b2042213599a3e1954b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d105ea0df9ab357f95d0241a","id":"aoa:aoa-techniques:relation:d3da319a68cca997f6ed0048","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:025520f67c4473547e79f940","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:537ec6059beb4d20237cec59"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d105ea0df9ab357f95d0241a","id":"aoa:aoa-techniques:relation:3934c91bd0c47381772f1839","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:05c3c0988087d01c88be47da","trust_ref":"deterministic"}, @@ -14728,7 +14757,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fe07973e26bde0065d641e05"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d4ce949485167816a874ef28","id":"aoa:aoa-techniques:relation:939f49a2f1f9234566de0ac7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fb761ab40de4e53e17087890","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4739ec502ca8deb0f9256634"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d59b6f6ffc8182f5fd0dd240","id":"aoa:aoa-techniques:relation:ac6cdb45024bb3047a3e022f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:186352448f41da3d4c4fb45d","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ad4f31e0b54c21bcfc83e9d7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d59b6f6ffc8182f5fd0dd240","id":"aoa:aoa-techniques:relation:7501c513451b7b9d0b0b36b3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7cbca15d67e40d53c37e270b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0f4451868820b433528175f2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d612bd0b3c2dfd50fea0d5d3","id":"aoa:aoa-techniques:relation:0176f4f9cc5544a8f046eff8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a72b0e69a0f3f0ab26c9003f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d612bd0b3c2dfd50fea0d5d3","id":"aoa:aoa-techniques:relation:a6268315fd2c57b2b9a42ade","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5d5fd3d85a55f6d540223e17"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d62a2e07b8221a59f4e47664","id":"aoa:aoa-techniques:relation:7426c3f649002c8976f67d11","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:193caff3a74985d607c06d49","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9e51628fdfc90929281c603c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d62a2e07b8221a59f4e47664","id":"aoa:aoa-techniques:relation:92cf922d56d158734decccd6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:19c9ce4ad6f333348a0442c6","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d35be0d57de8c8be0a7fe1a1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:d62a2e07b8221a59f4e47664","id":"aoa:aoa-techniques:relation:3dc1d6e8919ae083ec8b2cf8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:27581ac9811b11ea6832bddd","trust_ref":"deterministic"}, @@ -14946,10 +14975,10 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2ab9dd356a1976c9486292b4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dc740402e01a21e1699375d7","id":"aoa:aoa-techniques:relation:c4d6d8139d8954637b24baff","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f6616d7afc732a3a3b990158","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4224f664b626e1430ac40f7b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dc740402e01a21e1699375d7","id":"aoa:aoa-techniques:relation:6b3983cf41dc5087f20a16cd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:faabba6a1a7809c96a39d8a6","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:257b3e31b0e33e8a3ef15902"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dc740402e01a21e1699375d7","id":"aoa:aoa-techniques:relation:2c04293fc9bfc3ef66f1f8e0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fe0cee08666cff5a547745e4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c17d113a9b40c1007fbe7b39"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","id":"aoa:aoa-techniques:relation:46cc7ddea62dbe66ab855a40","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:514dfc0cd2f72d6f3e805359"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","id":"aoa:aoa-techniques:relation:288f5f5941c86063a7789cf7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2cce9b1cc7285f586d61bd51"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","id":"aoa:aoa-techniques:relation:950157d2383e32e479a783ef","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bee9642b3b3068cae0573c74","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b70b533361a052d6b7525f44"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","id":"aoa:aoa-techniques:relation:f70564a4051f614c3e0c2c74","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f3512468853fd3d11da144b0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e8c594d74e1ff74224fdcb55"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","id":"aoa:aoa-techniques:relation:98b7106989e2ab075735fdce","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:02f9836c877d040038d8e30b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c0e6a271bd9d607ecbb8ca18"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","id":"aoa:aoa-techniques:relation:e732bf2a6baed54a4feec6c8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:10ec8631efca6f736929631a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","id":"aoa:aoa-techniques:relation:8a6d60859a99dcf8f48f90c1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bee9642b3b3068cae0573c74","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a3120597ffbc02b2ecf62514"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dcb7ae6c7a7f7dd0f6886f43","id":"aoa:aoa-techniques:relation:83c1af591038950d3078e24f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f3512468853fd3d11da144b0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a886aeee20f7dd8894a820d8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dd4d37937ebc8f434af99190","id":"aoa:aoa-techniques:relation:02e42bade1e877e35d3ecf6b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:005096cd4e6228fade0533a5","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3d0668fe3b0bd7ed87a733b4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dd4d37937ebc8f434af99190","id":"aoa:aoa-techniques:relation:5c2490093204f1ef8c2ddf87","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:005096cd4e6228fade0533a5","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5dd72084b9c1eabf316aab30"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:dd4d37937ebc8f434af99190","id":"aoa:aoa-techniques:relation:290c0256348429c3631adc80","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:00f749287049b6cbac539733","trust_ref":"deterministic"}, @@ -15238,116 +15267,117 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4f1d3a0be0870a53077d9cb9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e23f1cdf4d0fe074be8f8ada","id":"aoa:aoa-techniques:relation:cba4fad65ed9d9eb395c499f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d4a628cf951becfdd01dabf2","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:92d27ba46364ebdff4277383"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e23f1cdf4d0fe074be8f8ada","id":"aoa:aoa-techniques:relation:73f545310cb9c142ea88d453","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7b8dcec2cfc7e7d91e3f77cc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e23f1cdf4d0fe074be8f8ada","id":"aoa:aoa-techniques:relation:75541614387fdc40fdbe2acd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e8e9e9ae76197e1ef03bb9fe","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:14b452f61a2c32f94dfb7c62"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:ffd891d0bff7e24452ce8520","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:005096cd4e6228fade0533a5","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:36f392b203d71cf350557d0e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:8d27f43121ec3301118cc7ff","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0660f43457b2c15764ee0753","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c994033648601050d24680cb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:dc07c7866b121ac597ee0483","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0753a33beb0bc935596315e3","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:185da6b5d0e2960f467367b2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:52f426cd163e8cf77f6c8fbb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0760628f1c54e851dd39ee51","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6c98d001069586d8553d5347"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:fb457d0d5cdcb255c7ee72a2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0760628f1c54e851dd39ee51","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c67e7ead030abbdaebb52f8e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:92983d1130f0634e56c6e370","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0b5426eb25da6c4f99bfa10b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2fdc65fc7e3ab42f3d3eb68a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e898231aa1747465e5f1e03c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0cfaf63adb83bc34245928b0","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1a44f10e9ae135a135d879a9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b122578cc3317672fb771098","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a92cc9c13e19f4defda98fe1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:ad39097a7cdb36b3d7502414","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9f9e496b57132b635526bde2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:ad013883cd9b7dff67e8cc26","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3d9e2eb6b0b31d6761592fff"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d9006784f782462f2f13f21f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:edbc0eef9e19c3aa3dfbdb37"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:acf8509aaa5b0e0337175b87","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1cc9ae928ab68350d7c7477d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fb989e5c191c6d09fd887a27"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d326543e5168003bc8fa98d6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1d4cbdb5a3f3ad7799e2a619","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8460b8a4d14c0f79c0bbcee6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:6facf1efbc7137fb570fd8f6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:219843d89f34e6d8eee191c1","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:39f8baf5267cc8b89fa46367"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:4e75431fca3d788a7bcf030b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2262df384d5adb4e539c50e6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fd3776fc203026d666074912"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:391770c75248db4efafafbe4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:23f6ab7a9657dd024034517c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6a53e8980725e114219c8e4f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:a065eada937e66468e172ad9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2792e777e5688ad51226131f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1c96a46b044c370ada45c0e8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:2d4e8235a5a1ffe3c665b69f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2852d8bafe181c7fc72c895e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:584d5df5067b449a9224d431"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:75157b3a25dba9f45bcc8cce","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:298e8c2d4a6734c6220a1775","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f63e9e169632bb572605f927"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:6789431d0c61302a7c63e031","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2aa17c96bb7f4fc5dc73f221","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b38aa168ca193c0a239a7aa4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:844d344752cf148bbfddf379","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2aa17c96bb7f4fc5dc73f221","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2c624c523cbf57db46e7a0d7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:bda99cfa73b34eb9749e1722","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2ae4bfdcf2f16f238d8d2abf","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:89ecdaf3fdac527816d29050"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:67f6ecf160a6d860b750fd9d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2ae4bfdcf2f16f238d8d2abf","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5ca2f5d7967bc39f2bd8949f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:714760a120a725dd44f64a84","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2dbd8e5c1820ba5d73143ee4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5551a05dd78c9a63c24bb762"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e8fd5dab347fa47c34a3e5f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30061cd328bdf760025c9cad","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:11783182be0a4a06dcdbf271"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:a9e45d62c85b661de4110f63","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:33e9d45362a2c7b7b52d633d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:77b7e5c77efbc72bb3d15de0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e83e977713cf7fac5b42d4c2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:36c764d82e231fa18da3c875","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:276af305ca7b19e93562cf46"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:ea7d758bf2706babad40b2d2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3db99799eb1bf48acaadfb95","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c70bbf0d73d339dbbc4b1ef2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:9425453d875fce1054d12c01","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:41a91dc10d6f826c31a2daf5","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:300ae04dc3f3135b6b2973bb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:3b14240f76f4f9b08965abe8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:46e4d6d19961e900df94f002","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:54e1cc2008327b5a9fe62efb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:10aa1a1b0ec0eb03983b084f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:55746eecca1eeae205a62d8d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d44157e0f127fb343d4c42d5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0572df3f24a6e38032588664","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a076790ec4a6915fcebfa53","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:08f5cdac083b846d0ddb1a72"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:067b8eb6994a1029f3991737","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a1f8cbfc6da9b1169d4531c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6171d7a8b1caff94be1b236d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:056546c91f6cb04320693b38","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a1f8cbfc6da9b1169d4531c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f063b9529459b4f68affa937"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b0bb6090e51d22f7c61ec749","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5b0298079118381b9a313910","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:74215e346668bf593a5c53e0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:65a8aea97e1cf8b141e27fb0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5c1edf487d57cdaba1b745df","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:00cdcb80a9908d3515b96867"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:7ee364d52d2f3d1bf5f5b11c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5c3a078108bf6ce0c08e9941","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:69aa8020f3e136dafbb596a8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:be2506f5c0a6a98977ce0656","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5c3a078108bf6ce0c08e9941","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6f910b549c9817b9ba625ea6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:91c5ade12d12a795e37c7144","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6256447064a5390ad917f264","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:eac0c8ed001479ef536f88cc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:1d45c3271c0b0e9491da1867","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7201dbb1a2959ba551b4f915","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a79c86f6ed54584b600e3e66"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:7df4e616e7c8b00f9a43ccf7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:72668b0ed9a050cf6dab9b00","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4306360b5e7e5976b8512dae"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:59b277d3f091f582b156773f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7587370c1a2d80e96695fd85","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6d33d4e710b497a34bd1a9eb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:6e69339723ac7bd5939e38fb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7bf0570a768ebb0ffecc1587","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6028bc62152f12d1198e79bb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0de55649b90f52d491b78200","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7cbca15d67e40d53c37e270b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9354249343c881b6c3aed8d9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:effc0776064343fd0bf2a2b1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7f14543cc65c9efa007746e5","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8217d62910632660de27d83b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:3e3e8e523cdc746ffb4dece9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8089a0cde25c2d480a717f8e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:34fb1b88d1d8d54226d9f63e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0616dfda8a300e0f79fdc6cd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8362dd13eca89ef7aec6020a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cdea39f1cf8b87fc74f41f4b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:2cc2d191aaf3fb3352c84527","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8c07ae93ebfbcdb0f28bd480","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:32c134a0238d1d25eea2f63b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:62d26390139e255072101bd3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:93af6a3b1e844e1b7e5fff79","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c1ed18644f52f3969dc7ff29"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e3120032dd093f26ca0b7afd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:005096cd4e6228fade0533a5","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a8f5e128ed87d4c7d476c612"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d20cb98003dc6f85602f24ac","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0660f43457b2c15764ee0753","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:30f190c97537c5f2747b5b93"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:36a570558c325cc2e09f3bfe","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0753a33beb0bc935596315e3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c4cdf89869f01bb686ffc80c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:f8d76f9fb7e08def6f94cc90","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0760628f1c54e851dd39ee51","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c079bed0a1e68895887b9d63"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:481ecc45ca74b8635da2ffa1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0760628f1c54e851dd39ee51","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:76505f15d334de2a8e41ec97"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:485d6b68b786c44ff2940d4c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0b5426eb25da6c4f99bfa10b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3a7dd5ccd157b3887c4080a2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:2bdbaa723e33bbdbbd36ed16","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:0cfaf63adb83bc34245928b0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:72d0bdcd201b21eadd04e04a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:ab821eff050e8eda6b20954c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b5723e782d46471817430fa4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:abb651dd0660f30cf24c12bd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd45d3de2726a0f63a3c06bb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:7f9d3ac36f1bb5c8042d1a88","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d2d2ed018ea0e016134e5538"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:78e1f2827a62d6ca8c0822aa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1a8493e97948ee12a02a1476","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:583291ad09189ab7b00ae846"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:4a5db3613038caedcf7f3155","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1cc9ae928ab68350d7c7477d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ad976f59e4d9e5126636f146"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:feb9a5f36a7e10ba5335c506","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:1d4cbdb5a3f3ad7799e2a619","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:86f4fe28f6d7c96647d6a4af"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:3cf431aa5cc37ba7567b56b4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:219843d89f34e6d8eee191c1","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:abc4b2012414aa58a193b946"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:14de270f5cf946349accfd17","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2262df384d5adb4e539c50e6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:44f8844849119543e8af2514"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:74f93941e0fde87df20e178f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:23f6ab7a9657dd024034517c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fc27b86f8db2fafa4a66e003"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:7d3ea86a6e572057d245b1de","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2792e777e5688ad51226131f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e7922a0968fba69cc64e9c1c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:29a7959e529d74d3b14d710d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2852d8bafe181c7fc72c895e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1eb8f357366a7b420ed42715"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b3bb272b5213d95bca9bb2c4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:298e8c2d4a6734c6220a1775","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:135fb902b4e3055f055a90e8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:736c47d2f0f857a3d51c4ed0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2aa17c96bb7f4fc5dc73f221","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dbfafee0c51e28668ee791d5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:219e8a66e0c38ade052a990b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2aa17c96bb7f4fc5dc73f221","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:94da823bdee2b7e9190972ab"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b7af7f36537ff5cc668e8c57","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2ae4bfdcf2f16f238d8d2abf","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b47f6f452f60bf0fae4ab2e0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:42484faae0e9941828cfb721","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2ae4bfdcf2f16f238d8d2abf","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ae801fd749877db7a0407dc4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0f80a38e4d3668d796bf340b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:2dbd8e5c1820ba5d73143ee4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3f6f4e239ef717e22cc00347"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:9719d40481f42c0d1d590a50","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30061cd328bdf760025c9cad","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:433f644a11a8cdc48fa5683b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:63e630a981db71dadcd03390","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:33e9d45362a2c7b7b52d633d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f7ef39232ea0d82ec239658c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:46f26902baa6e4d01dac2980","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:36c764d82e231fa18da3c875","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:35e9dde72cea315b7f031a02"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:c64a94b1e104c52d99f3c64e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:3db99799eb1bf48acaadfb95","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2ff7220341144c593dd2d4ae"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:f4f3c5d75ca32d492896ad60","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:41a91dc10d6f826c31a2daf5","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9a860ac54b658074d8457933"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:87e06ea13eb74b821fcabda6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:46e4d6d19961e900df94f002","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:79e624d39f13d3b27a829352"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:808657ca543c12ca9397d25d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:55746eecca1eeae205a62d8d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c56bd0a4443763cd86334320"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:f754a6f2f97fbabc16703f8c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a076790ec4a6915fcebfa53","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:62fff6b81d11ef55558676fa"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0888b39a544ce34d1ce37d20","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a1f8cbfc6da9b1169d4531c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:380be89153a9dca9eda1644c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:9657517721724467fe455917","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a1f8cbfc6da9b1169d4531c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:17faa69909c1d9172df9957b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:4cdfe174451775949377f713","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5b0298079118381b9a313910","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:daa543049d3e8aa6860e5ca4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:00106bf4ed353dac20b207dc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5c1edf487d57cdaba1b745df","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6e8f1221622831887f24609b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:a2fdacfd5a6b2c7ad459bf0e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5c3a078108bf6ce0c08e9941","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d0ce6494260614012f08fffc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e2dda6dee9b36f459675628b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5c3a078108bf6ce0c08e9941","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:133db99689a690ce980cc253"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d0081b9c885c6f7fbd3ba30d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6256447064a5390ad917f264","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5a9d37a2508f0975bd88f39a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:a7a8e977444903f348fbb7f7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7201dbb1a2959ba551b4f915","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:efe4ac4b2940632a034c0dde"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:14cb37b8a2c171ff4b08e46a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:72668b0ed9a050cf6dab9b00","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd66f2e6dbd5b17792c6e3d0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:7430adfe9e573c71190a31f0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7587370c1a2d80e96695fd85","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6cd7aa788575f0238fe0c608"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:afd705528bd2230e3b1972e9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7bf0570a768ebb0ffecc1587","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:77a8883ba7410e3566c324b5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:141b58d39a9b0ab3405b3aae","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7cbca15d67e40d53c37e270b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:adbf083b823cae86e98db680"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:1b53a5b4b04f97853cbb1506","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7f14543cc65c9efa007746e5","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:20720ad0ed8f404ad96da7c0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:a60d93bac79d638ef1a7cd3b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8089a0cde25c2d480a717f8e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dc6ffe6c66d9c176bc343356"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:cb02779200e7fc9a263174c0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8362dd13eca89ef7aec6020a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2e976f6334131ec24fe73159"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:623af62061dfe5b5f2e375b3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:907d0838657d0450aada7398"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:46298f1128a34e0951435f19","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8c07ae93ebfbcdb0f28bd480","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9ff2e67ca46207b6eb8c7d2b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:07336fceded6f4a48487c81a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:93af6a3b1e844e1b7e5fff79","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:69ec9116908bc927d920b13a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d63a36d0fc026c730084b2ae","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9a2ab01879b8826a731fbfe4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:70a72fbf811d81f782485761"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:2432e13497fdb6dff6ab8cc6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9bb555e5edc3739ccb297b87","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7c2438c1fd13c04ac4cc00f1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:8c109b48cdffe9e987373baa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b68a6033d36949ef51cee33f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:19d58a75aae6363cd301a12f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a188dc3799555ece3826cb61","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d955a2bbe573c0ffb5ed1afb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b30b53c8d369367594fab3ec","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a302fe3d20586550997179ce","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8e9c639cd9ca5be7a2647e52"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e8c912aa1463ca24fe87384f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a3b573d5b574941c3cb54f45","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c424e6aefdcbf5e72defd2f7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:8f9136eb54ee9abdf660865e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a460dc12d9847ce18e0f3d2e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4430d0649b796b0d1f3ea2f5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e567b946a7f41e1087a2b174","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9bb555e5edc3739ccb297b87","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d4ff3b139b0c5766bb392a48"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:11827f2131c8f105469fd12c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9e266e042011c41484b5db1a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7e41883ba804ba8e227a66ef"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b59d0daa4b6076909cfed2c1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a188dc3799555ece3826cb61","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:24c5aa4606be9382fe6786a7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d3b9e8b9e1cf43ab167d4374","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a302fe3d20586550997179ce","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8d62131131465263227ad049"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:272a3d3dbffa3f155afc9654","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a3b573d5b574941c3cb54f45","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c0c880a4f53c702921107c0b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:2f13ccd1f6feec194c553745","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a460dc12d9847ce18e0f3d2e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:74343b2227bb1453d2408fa0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:55cef2b068806479f929c7b9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8e112c17a8baa631c07359d7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:6923d78beb576ab9a244afcc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a76af6313902ef6cc88b8ebd","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:da74b729f26e841ef02065fa"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:5fad58771164241cf55eeed2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a76af6313902ef6cc88b8ebd","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:84b55750fee798526e3f8700"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:bf3a70c6eaa4c284b9ffa580","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:aab58c157b74669997f79d98","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6eaea905e09fb7f9ed87a47e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:56fa6202492942e2210d213c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:ac96ec5fc190fe8bddcfecb4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2d85b4c541f27f575317f338"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:97a9bb32a2c83e713b46739a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b16ccad9d7080baa19c64402","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:36a05062624f781b372e2d3c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:abcbe386fcb7adbe1f33d984","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b1b997a86c119d019c1835ef","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cafa51a0e1877f188aa6f737"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:7dea3ef5f34f487229cca994","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b2d429b7d320cb9bb279a0cd","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5c43def1e1fb4a4198ae17bb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:c38f20d8b524331282a6134e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b3ed6e8cc30884df83d2cf3b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8e1669ed7fb8ad166c69fa47"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:3ea801f3999484f12a73d3d3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b3ed6e8cc30884df83d2cf3b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5f532cedb074e68c6972f164"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:27cb7c2e44f3127f2f5dc193","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a76af6313902ef6cc88b8ebd","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fff03189bab2c70f68848bb3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:bdf726202826e9d28dc6f55f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a76af6313902ef6cc88b8ebd","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e8af6acec4e334faa3bceb4d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:30cefbffd2ac26e1530edd51","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:aab58c157b74669997f79d98","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:db0460a88ae1e89ffd1ee1e3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b46f5c009c4736ab5dede867","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:ac96ec5fc190fe8bddcfecb4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a74a297b0b9b417a60899c15"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0a69559fae5046e6c883513f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b16ccad9d7080baa19c64402","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8a396f0a2016060a1698d3e6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:3638768dbf43f13909de8819","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b1b997a86c119d019c1835ef","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4796373cb9a812a9ae063aac"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:473988671354a47156f9c9af","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b2d429b7d320cb9bb279a0cd","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2f30caf04b8767d6f0c0d049"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0fa4c70bb2cda3aff5108c9e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b3ed6e8cc30884df83d2cf3b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:aa1ec9d6c7fb3a05a6bf5be8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:ced3dcf55fa1bce8a3590851","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b3ed6e8cc30884df83d2cf3b","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1dedf758cc3931dee6fe4562"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:fea5eb7c256f60e79f48cbcf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b423ccc3bc299d13a0bfb338","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:31754c19badcd3bffd57caa8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:ec8b2e13fd03d35c17fb272f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b427604591becd5686656dcf","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c2122bc9b7c8ae6369797547"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:5ba14fccf1d3ae0ae409ddcd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b7d22ca17504d16b23c2a050","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cf8a73580763c7c8940b0c96"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0353b6adf8e2a19c85059839","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b7d22ca17504d16b23c2a050","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:033fd77aaa83231f17a4f939"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:88cf05cb69738ae696003afa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bd37edcadae821d3cc405bef","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0e0e0f7da8bd5279136dfc77"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:86d0a1991023743e92684e0f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:beb6db40f520e8b4c51f876a","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9bbad17842e682634f27be65"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:c9cc78184c76f593d631700c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bec9b219e1e05fee0d16a32f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:709448b1c76c9b51d68d35d9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e1bfd198546921d17cf6c95f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bec9b219e1e05fee0d16a32f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0dd7fcc9ee617df0d387b6f7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:80f3c3f7e7b5bdeff5fc7d00","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bfd0781c321d696204707698","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c11dd489c227315bff6f7484"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:7882035e2382853c4cb602c3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c2794d35d391c05cae798ce6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:72daa9804c9f1ae73f085154"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:5757887afc2fa02ee14d9599","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c2794d35d391c05cae798ce6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:95ea06fbbb267d9dfc5480f0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:fc136befd37827aa78dcd5f8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c325ac7872a4018aa16a4bc4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6519a0f3b2ff41ba2adb779c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b3a645a7e8bc9b5e5f89f0de","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c78d1f6761f563cb12c77eb4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ffd557b30774100f57b26d8c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:c1bf4defa20fa228fb8569d4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c81b021ae7960f4070ac3112","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5e27e5aa65f685c9e7da007a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:74b81067b581fe0589ca0b24","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c81b021ae7960f4070ac3112","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ce0772477c574cfa5c034ebc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b66448318c93326dcdabb5f3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c878897a98cbdaa8fb45b8c1","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:23f50d1c808add60bdf301a1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:68527509e77ad0ea541685d4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c8a0060b9d6d9ba930622821","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d8873fa69eb3147f0180913b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:307055560d03d62dd300bc92","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c9ce9bbcc4dd77e828bec54e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6d010d6a0027241c36576b8e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:72b0a147cbe0819634c0669c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c9ce9bbcc4dd77e828bec54e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d9f229adcc76ac2995c8422f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:00716cccf94aa9445eee8ac8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:cbea0846087a6cef8f4976da","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b10012dd34b325d2787ec6bf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:3032601c34024207b01e0401","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:cbea0846087a6cef8f4976da","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0cdd959e2463b3457588fc0d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:cadb204216bbcfe60d365c5d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:cd1484adae1c5dc5da8ad538","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:366c9128768829b84b91807e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:52e2f177a901bdd7bb4b8c9a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d4c63523de46edbfeb5cd031","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:08317dd66274af76f5b25c10"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:808b5a1588075c90acb1d8a5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d51db91846c21574e88037e5","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bba197e32b6198247162c804"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:f4bdc7f4ddf2e2ac263d78f3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d54653655e7c53a8a1f998fb","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5a3c857c3aad3a02a45d2d3a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d0d21f29c10c2c2cb08125e5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d93ae63f6605a8426e4531ea","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1fcaf1ec6adc77bc4c46a22b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:7a6afc0fc3a11274882f7f25","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da4801eacd603b9bb77770c9","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4b57dadaaa4471ff7f37a948"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:30fdb4182eca06a02200f1b0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e149c66942cf4a3849902e23","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4bf2e117b44672233e4442c4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:706e679321e65e7bcdd12adf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e2875af0756418592a444192","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fa8bf756c28866854fd7dc90"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0c3194689f3ece4566b576e4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e29272bc453292968bd08c2c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:31e6e601bbddaf1d92315d4b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:4ffa3da24cb6e3ea387ed895","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e29272bc453292968bd08c2c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b6182a17f4fdbcf224ce09d9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:f396d17e15bdc0fa5a0c117b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e2d94c0f3933b65d0a8c9fbc","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e0396d9a478c3afbb5e658d4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:712692b65f93e5bd2e433035","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e2f469f2662138ff6802edab","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9b37060e6d2433947069d6ee"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0b3d371202d713386f67e29f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:eb8ece9755c73ab5e71209ff","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:180b4aba374d9ffccdb76d9a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d576420b2d43af8bc0ee5112","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f0d2165525908c661bf5542b","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ebcd0083dc16a7a2df4636e7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d1b0d5da3465dbc14b9064cf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f10f61a9171a9dfce45b8e4c","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4801b2241c5e9b901f25da6f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:dc2c88376bae1b8c15dcaad5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1615a3346f961e904a56fae","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2fc3e165ca4c5b78513bc7f6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:9cab4eaa63afc55c7d222636","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f2eabda5b60ef92690ec5584","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:30e9fcc674ab1201ed41cd20"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:93a78bea48980a02867d13c0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f5860eb710d14c22b1910541","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:771931e9c8c4fe2e145490f3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:734a4486ac2f5511b1db7c74","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f5860eb710d14c22b1910541","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bce83f31c67daf8596ece049"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:dee68f13210f8f0abe88f0da","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f6616d7afc732a3a3b990158","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:553620bc24dd75189aac4f3e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0a28fa456b4c0585cb9daea7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:faabba6a1a7809c96a39d8a6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c6aa467d9ee878ef23fe7c1d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:6ae7490af43a44d13b8a2b7e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fe0cee08666cff5a547745e4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d798afc2dd2bd3cb3151048"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d98120d301e14cd0a8f32c9a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fe0cee08666cff5a547745e4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1cb41d009d7aac1245889c6f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:bb3bb72b3088e16e204dc1a6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b427604591becd5686656dcf","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0ac36f2ce568930f9569d70b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b790ec4c02f941378f85eb8a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b7d22ca17504d16b23c2a050","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bc672f6a8e70831f536c3d31"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:c85fffde7f35bfbebbadfeb0","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b7d22ca17504d16b23c2a050","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2782ab4f6a88d08ddccca5f0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:12ba69c9797d411ee5a515f7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bd37edcadae821d3cc405bef","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3b327f7703ec1dd32b402e24"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:9f72b8021f9adc0e99fcb472","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:beb6db40f520e8b4c51f876a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f3f6ef4143a9c3ff47288760"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:5804627fc48c16d4590da146","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bec9b219e1e05fee0d16a32f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fbfdb4ebb0a225c68c8ec7f1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:44130a91916c683023c3e535","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bec9b219e1e05fee0d16a32f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fd03e767686fca3b1a6636c0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:81f72c7da8f7b3c5164fe85f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bfd0781c321d696204707698","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1618fb74e581fa3b4533fb50"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:13dc1a959bde16b4ef15413d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c2794d35d391c05cae798ce6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:876c5c66ab9854b9b6705e2e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:924e91dd84558b1f01b0d990","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c2794d35d391c05cae798ce6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8dcefd6706555343a9af4d14"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:dd50e44fab7a91a8be53724b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c325ac7872a4018aa16a4bc4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:047088e85491de714ff28114"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:f79c1fce8def7f69eaf34d69","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c78d1f6761f563cb12c77eb4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1734118c6e2b5e0ba9d1d6b1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e7dacefadeb217f939d8fcdb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c81b021ae7960f4070ac3112","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:717c2a276abf218e7cdc195c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0ea2d67e6ca30f6a2b4db948","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c81b021ae7960f4070ac3112","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fd68f28dfd3f60375ffb05ce"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:85255a0b23a6716fc36d7970","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c878897a98cbdaa8fb45b8c1","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:828c9f4d8832bef171c529b3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:2521094cd443732478b20834","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c8a0060b9d6d9ba930622821","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2fb57428d39487900685eedf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:2b218cd048e7fcfd6c185eed","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c9ce9bbcc4dd77e828bec54e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:aa6cad36ed8e8c969fd30ad5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:d25de4ec43371d48237e5a59","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c9ce9bbcc4dd77e828bec54e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4039e81d61ae336f45c3252c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:0e9fa3eee5aeca5f7ffe1caa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:cbea0846087a6cef8f4976da","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ed0ec7634690073e2ed308dc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:52321c2859272c8e2f3e26af","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:cbea0846087a6cef8f4976da","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bb7706b287c6ed1dccb09623"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:bd5ecb4c4c1d71db0e20e0d3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:cd1484adae1c5dc5da8ad538","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cdda600e6fb2c45597539d73"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b85b2c110ddc7724d10e9ff8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d4c63523de46edbfeb5cd031","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:31af998caad6c612757c53a1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:abda6d5c36573da5168b7546","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d51db91846c21574e88037e5","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5032127ff263a5268c0edde8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:48a3deb170f65ac05f04a74e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d54653655e7c53a8a1f998fb","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c737395c2e33d9b8c4e24c47"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:154c55c7f7aa119136415250","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d93ae63f6605a8426e4531ea","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ee31ed5d7491b3d96c2701fe"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:42f18e50265b2e27bfa3ecf6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da4801eacd603b9bb77770c9","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6ef78e7f2de53e0b977dc410"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b9a091a443bb153186f25cbc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e149c66942cf4a3849902e23","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7ff638f3f024aa395df5b306"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:9deb0fa16cf159f2701378cb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e2875af0756418592a444192","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d42156651a7b9560ff873a1c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:63145dad9eb45e632b329cec","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e29272bc453292968bd08c2c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0dffd623861b6a96cb578090"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:e2c8af0a8c8a8dc1903bf39f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e29272bc453292968bd08c2c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:03af3072ed1deeabce1d5465"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:50e77b8061714af88623f03d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e2d94c0f3933b65d0a8c9fbc","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:37168002fee9fbe0749ef753"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:2b0487cc31c6d36f824596f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e2f469f2662138ff6802edab","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:93d4b42364dac428e8f218a1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b7ba0d0f917d260058425205","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:eb8ece9755c73ab5e71209ff","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:80e4cd1142589bf7656f4b47"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:ccd0abd406a016acaa687852","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f0d2165525908c661bf5542b","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:40f66d70ef0c4a52ab7834b3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:cc342a82409d17f91cc76b23","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f10f61a9171a9dfce45b8e4c","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b634d8e4da3a8ce2a772cb53"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:6949e14c9d6edc5486d164f3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1615a3346f961e904a56fae","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3b5508f45fbd59f65af45626"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:9810224ecaae9d72eee6f8c1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f2eabda5b60ef92690ec5584","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0ec6a097ff687c2ca7ea7367"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:a1d5a4cddc7d440f04460b57","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f5860eb710d14c22b1910541","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd917a52a04022a1cbb257a5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:006a6b10830e201ea41eb35f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f5860eb710d14c22b1910541","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b960808c670570a7cb9c1f31"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:86aecaab2a680fb50cdc84bb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f6616d7afc732a3a3b990158","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ca636d9d90bf9d9adcabc723"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b90ee9b28300910d2bac9b45","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:faabba6a1a7809c96a39d8a6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:64cabfe89f5f4432e57c4a38"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:b3714bf2a1844324cf9f3bb2","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fe0cee08666cff5a547745e4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:02a17be5750afbe58e607e93"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e2d47a93e2a149a76e782319","id":"aoa:aoa-techniques:relation:3140e93afe5d09b49c401d38","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fe0cee08666cff5a547745e4","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a60fbcac367c16b49206e163"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e3cb48f37e8bfa1aaab9fd0f","id":"aoa:aoa-techniques:relation:8e4a0f81c038c48a867ab382","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:16cce21da1006eb3ad143335","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d3e8138df1b7b87828ca90fe"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e3cb48f37e8bfa1aaab9fd0f","id":"aoa:aoa-techniques:relation:1f06e10515a7e8ed107c6d7f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cb2ce35f63fbd58c0d85208f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:e3cb48f37e8bfa1aaab9fd0f","id":"aoa:aoa-techniques:relation:0a970174351f35101b09789a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:69990758f4e77ebf427a86eb","trust_ref":"deterministic"}, @@ -16070,51 +16100,53 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:19f21a5bb2a0500a60aa2bea"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f85572c6d3211ce62312ab00","id":"aoa:aoa-techniques:relation:e804e55338691b9b35ce8b9f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f5860eb710d14c22b1910541","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:828863c5ac01df28605e34f5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f85572c6d3211ce62312ab00","id":"aoa:aoa-techniques:relation:4b7789e2cd2a4381527f70fa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f6616d7afc732a3a3b990158","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5170d6aa5adaa3504a087889"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91468866b8c619b5eaeae00","id":"aoa:aoa-techniques:relation:ab003b2e2d48ac2dc9f7bf38","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:7f14543cc65c9efa007746e5","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cfba5cd00e9791c29b9ad0ad"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:b4cadcd74c427fdf88a0f04a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1453d073bc31cae67c2400a7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f61483fff4a2b88c948a5198","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c10861f71ddbe10cb69886c6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:977962716c9b6016f73885fc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:90e2f7b71c9ed11355ea82db"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:d49b7025960e4e625e459110","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e2c8a29bb19d3099d7934938"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:c54fcaf8a7cb2cb89f5e1a99","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3453604a5639da0dcc6fdfbf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:e34e2f7248b9c42dfc2fac05","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:21f1eb065165f20e8e73a666"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:71ca45565f982c1dcf49a744","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a34f8bd13081729e06819b6e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:a1d3ca9c7fd50afde668b7c8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:02287707dace2f07879b7452"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:8ea32ffe35c1c97fa22a0db3","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c139a461010ac16e732454be"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:71f83d8389919c9563bae8df","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:58778a95328c2aa088c3af89","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:368693287819d84dc7bc4fbb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:c43bb7b5c299a1ed58f9efb6","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:58778a95328c2aa088c3af89","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:03e7707bce2abb92ee2a4130"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:3804d4a65024ffdcd80eff25","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a32988e7a50edfe0d3504dc","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:951c4ae7ac2cf4c0a0c7f94c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f9ba42c737f60db662e7708d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:62974c378ed3c976b7376b53","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c2f116da7d360f4e0d5bec9b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:fb2a9897d9d0de63f1619852","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6c0487ab5c82a135bb9d646d","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a6240e58998c1fe7723a00bb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:9a6124f5bfff46d67306e756","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0c525535f7eeb73a22df9ab5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:1a7376563a1b72c1f762ec9a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9e07ff0583aefc32fa24128d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f9ccba9795f4ca8d3ff5baf9","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d67501a76168e7f50c3b00e7"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:8d2904ba6d0279cb64e22ac1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9085af304337f27e6a1ffb2e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dcb1e09085d6bce30b047bd8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:19711bc1a55c962cfc4f8656","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5e3f539ff95a717d019b0086"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:619964b1138665e74d3d50cf","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:22e6dab5715494fa06bfe317"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:92f5069ca3e3fa0f9c6992ac","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:77b997645928268663bfc321"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:9060ade47f181f5eb33a183e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a14bc0d03fe3ed1ea2c454cb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:250dfaed385e85c806a5dd4a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2e6d30d6ffdf319bfb9b229f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:96dd4f37bdbd0ede32c4a1cd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e605e42c31e5bae93f3145c1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:d9f831a8477c5d9de02590a1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:48d8975a8c39a2e9d232d548"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:b8ded5cafc939673c231720b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:429afc9cb5f5b53405402a20"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:37314adb1b817a23d4326bdd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:43f20032a71d61032521d7d2"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:bc24207f0048355cb72b6593","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:88f16bd7cbe58e6308a9d377"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f2193960109fa59cbb82817d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0116b3ca01d409294f051b5f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:e5520f7b9bb8e225dc988b26","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a3f9bc7a90fbb91b226d1de5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:4ce8b92070d7fe37fab01cbc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c073f923084e3be188dc6970","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d9244e22d8742b773bce9ed5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:8cb5195377f6686310ace925","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a0e5850bb0600398ecd00b50"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:5ffe7a1356be9ff692fd7f5b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9f8c5b5299ed887d6a2563fb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:80acfc28afe864b99a269ba1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da1e1168d10f7d81758e66b6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d86c6ecb2d3504c2009f57bc"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:d02fe7c7820913566c51bcc7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da1e1168d10f7d81758e66b6","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:39ce7a6d2ea258f7316ed21a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:185afac35f5c7f5bc214321b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9e14bbaf50341f89d645a2ae"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:9d35713bd9890cd1db817326","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2d66eb2f290f94557bab7262"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f0ad72f22f4a04e9dd6dc0ee","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9d461cb002fe87e4bfa345d1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:1160256792252719e993d060","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:984c51e5cd174162d46a71d4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:16d6f3d58484a2115f46a0bc","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:e8797a499ff469c20e088276"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:15865d1b0eaaedc4491c3eea","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:621b26893fc316d3234d4d39"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:435ac8a00b8996dead7572cd","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f52b31200117cf58f657747e","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2a090acf9434ebb24a23cb13"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:85d6d234edd8b3e72407b5a7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:64472a616021b103fe61486a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:483e988795d9340486a45b51","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:581e9749cdd2db16f6ce3b80","trust_ref":"deterministic"}, - {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5fe5233cf23bb6eae2c6b43a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:5f8d40e4fa998cca0fe6e937","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:8f6d010c33282800ec214de3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2c222e41c108df75fd5f5537"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:e313fc42e2a1db6ce629e644","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d282dc7b1e5b35ee436a1b41"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:d499e58f394aa83343373602","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:07c204cfe6d62afd7d2d8bb3","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:43cb93965c277605aaaf9ef5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:7e4410435035b9a1cb98216b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:30b868d8d788bb5d90a11ae7","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:05ffacbb2ce4c4221b21488d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:d69241868bd22c087a5196b5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:82eca3b4c7738ab96585b303"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:647582f739436c9c0998804c","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:458cf7f891f83d9606d09688","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:fb14ced764be749f595ed32f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:a8fc617f13a15d6671006ec8","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:514c19cd0e657d6ce9c431fa","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8a789783fa52718b2b9276d5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:666a5e6f85f72582f98ca112","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9fb6bb7331181925281abde0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:94b7819b3c18bcb5867e2bbe","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1dd46488097510941cb09429"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f64145afa9a3ea6d96260605","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:53d6c7effe52cf37791e7387","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c13d9c01d5395371f5d5eb80"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:cd20fa01d13006df2071ba13","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:58778a95328c2aa088c3af89","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:07efbd02212669b432559da3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:9155a22279bfd91e4429c42d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:58778a95328c2aa088c3af89","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f2ce60536e09ba762b2188e5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:68b44f5ca38ba2c384f35d34","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:5a32988e7a50edfe0d3504dc","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dd5891e3cf1de49b22cda859"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:2b5918dc350796eab1709736","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:62974c378ed3c976b7376b53","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:700a483c5eaf7db1d0d69595"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:c9017cde235f928258c7b9b5","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6c0487ab5c82a135bb9d646d","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f4a7b885186c6363df5a3d51"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:da8b6a75545ec2ca2f5dc499","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:18f3af2b46aed514a36210e8"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:9efe378d74a0aa9142ab3687","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:9dd4cd5cc4933684969046a6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:1be441c70381623e13d6ac70","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:6ec95f8cfbe9685d5e9889e0","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bbe416603ed692f5f79f522f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:7cb8bb870c9af3c9c536c0e1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:da6cc923308fd3ba7d481ceb"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:02d1d50392986b19017a5271","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:3b4a5f7d003ac279fadde58a"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:70346ecd6b69a65e8b520208","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:9085af304337f27e6a1ffb2e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:81e3a4bba16a9b3e60fa301b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f72ef7bca7cebe0f0eac67f1","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:0a913978bfc2eae8079bb703"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:78bf07187af6ef2b9f60c489","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a01f4ba8670297316a01a2bf","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f52a8319522c8a7673c3c636"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:a186719b30b761757a7a3057","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f3c688f5804ea9ee36c0289d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:67e06a1c8f84344b5165e03b","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:170d676b1f20fd7d7ce4bd17"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:b9bb659704409042421c2c8f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a5b062bfac7d1fb39cdae4a2","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8927db91f71dbb5bd3681c75"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:72a555a666b00802383843c7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:acc164ce2e7122a23f49e3b6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:5769a8639f2995620d8c91ba","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a658057f502887df6009c134","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4167a69736987057c6a7f6f3"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:5d1687c1d20e2960a7edee91","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:a6e861a520fac2d0426754b4","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:77bb3b22324d338cc2b67077"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:35608186ea4e23ebb93f062f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7664d1146b8ca28a28efba31"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:724be12111a8af749176f452","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:5eba21ed39c3b90ad039a243"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:9e3d6289703de17a45929123","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:b941b860b72291d7495d37d8","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f969c864f7a49260b2cbb907"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f208452234becf331ee86e7a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:bf3ba266f90214631e99fd12","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:951b3f72ac9b3e0dd7575e0e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:7cdefc2541fd9a712955bb5d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:c073f923084e3be188dc6970","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:aabb13ce836d312305dc5a3c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:aff6072e228061718a8f383a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:05cfb4955ba12fa10807acca"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:003bef7cab96f48c4bec982a","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:d2c03cd7341ae760ef8ea4db","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ad7f6d106be0523b2292880f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:70fc05a941974026d986ac5e","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da1e1168d10f7d81758e66b6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:42628f513030d2f6328df1e0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:e193fd56ac0f466d1e8c46eb","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:da1e1168d10f7d81758e66b6","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c11be9b8831abff1a866ae75"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:c842d4016abe0ed156548aaa","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8a12810e84328c18b2797c7c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:f276a88bfb035d9a43394814","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:e6cb38b286685bb7994a177f","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:799799f13327188d24707552"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:b96e512fe6ba321ce1e1a8b4","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:edab43c8bfe0875489b6e637","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:d24ccb57e832729b95500dff"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:2b3afe46b36aba5f05a680af","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:276d49c99f6b4dbb906b98d6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:1970ee506d578b4e317f7516","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1ab8ba7ab90b108d6208b07b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:0befede886621ded71ff1b05","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f1cc87617e6f09446659cb48","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a6d80cd98daa7425c0740522"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:42c4efb033b442710d7579a7","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:f52b31200117cf58f657747e","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:ba2ed9f8f4c941f64fada6b9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:eac5c9d0e6e543f1e9799636","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:fb303f7132bda3ee7aa66fcd","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:aa0dbf8d0848328ded4fe6e0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:147048b105ef15b0dca20d6d","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:581e9749cdd2db16f6ce3b80","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:4d3f4ef66f189532e2a0baa4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f91ea17320db754d8ddcb151","id":"aoa:aoa-techniques:relation:3f35c9b6cca5fc9770a24a2f","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:8f6d010c33282800ec214de3","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd09b521b4dcd3ec3890457c"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f97f6eba9784339dc96a06b0","id":"aoa:aoa-techniques:relation:55f0f77e04b69989d815c354","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:00c61e6409abd64cea21273a","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:35c89b76908d99a86b9cdb81"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f97f6eba9784339dc96a06b0","id":"aoa:aoa-techniques:relation:9f8356beddc6cf5ec8391219","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:011977f7749984902d88b61f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a02dc365c6551db8decb4c1f"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:entity:f97f6eba9784339dc96a06b0","id":"aoa:aoa-techniques:relation:5219127accd0e8db6f3410ea","provenance_ref":"deterministic","relation_kind":"references","temporal_ref":"current","to_id":"aoa:aoa-techniques:anchor:017c780a9c4552ea7f038cef","trust_ref":"deterministic"}, @@ -17100,6 +17132,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8896dfd177a1666dbc203202"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:3f29c341908125fe27778aef","id":"aoa:aoa-techniques:relation:cc894400f2d433ab8363c90f","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:58a61b37fb9f855ee89378ed","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:2129cc6ab0ae64aab4507db5"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:3f501b7b16e871d49ec9709d","id":"aoa:aoa-techniques:relation:5bd43ddda71a974acfac6ac1","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:7498b3a6f7b4ab607a1bc18e","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7ef663d772ba62584e8f93ef"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","id":"aoa:aoa-techniques:relation:0fb6b439260f55717024db8a","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:1ce27798ea70791c739d14e7","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bd8cc9e78040994c01f4a703"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","id":"aoa:aoa-techniques:relation:fa9c209c8802fb4d0e1f9d33","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:7bfa6104649e975409ad1aa7","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a32eaa6335966eec7b1a1e2d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:3fa812b46ea169d823155f3c","id":"aoa:aoa-techniques:relation:d63b0f667718eba8d28ff983","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:9add4912ae92cf85c20961aa","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c776ec5b2e0d95daef8773cf"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:3fa839ffbc7f7e3ef4aea075","id":"aoa:aoa-techniques:relation:39cff36e3d4540f54dd1ac91","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:85997516d8a2a70085d147a7","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:daacf55144c3dff2f738cb23"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:3faea6ec16c782a2552f82dc","id":"aoa:aoa-techniques:relation:e97bd17a3048d3e3e62f7a09","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:5bde163627e021134b4f7e50","trust_ref":"deterministic"}, @@ -17410,6 +17443,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:c90514efe4c6f02678b8fbe6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:6b742cefa7d28236093d7a8e","id":"aoa:aoa-techniques:relation:7b82a87a926978bd39c3411d","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:3d2fc5b64c256d73441d39d2","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:42661e4ea58c46356b794c94"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:6b7d6ccea097ae14a6c98d6c","id":"aoa:aoa-techniques:relation:be753f3c514e7eb9f6f989e8","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:97d2b0de388eea00039af7b6","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:58e01a3fbf6a66fcdd246a67"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","id":"aoa:aoa-techniques:relation:948047cad067e6e8613066d1","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:12a608701279ca013e7d1f2a","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:8b257527c88cfa94221b4904"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","id":"aoa:aoa-techniques:relation:8b82cf3ffc3d7c50b68063bc","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:b598581a0af3f1b0bcccf026","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:73d6e655cdd42c12629bd5d4"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:6bbd8af245b85a91e9690c99","id":"aoa:aoa-techniques:relation:4ce08623e328ebde3d99edec","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:f6dbeee636db3112c28dad0f","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:07d2283661b6173af8df0399"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:6be2d5a266f8a31f35dafc6f","id":"aoa:aoa-techniques:relation:422bedc0280d74e4d63c48be","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:ddd032bc0e4c7bbd774a178a","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:6c1ed5fe78fcc8e49a1f045e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:6becd745ed2dbfa4b6e4e6f1","id":"aoa:aoa-techniques:relation:184b8d931317023373f33526","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:74b73c558b826d510f589058","trust_ref":"deterministic"}, @@ -17525,6 +17559,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:7bb286afd32f30de3ff4b3a6"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7b55c8d13fa2d110fa3a6daa","id":"aoa:aoa-techniques:relation:f5aa1340af9b499d223a74e6","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:90f6252772fa3dced8357725","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:575946391cdaa8ff6a82b97e"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7b8605db8641e13d6b613b32","id":"aoa:aoa-techniques:relation:5a7a592b6dbe34e0a9645e0c","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:43110fb41e4749d876589a73","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:951f052a3c46f816fecc2f3b"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","id":"aoa:aoa-techniques:relation:2a8b59bdf24b4d88ac9caf8e","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:e44bfb55f56e312551f91113","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:a34e409cad41c756827551c1"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","id":"aoa:aoa-techniques:relation:2e18b1ab687286d1df40f2c8","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:c2a8f797810fd066c29ce179","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:cd7aa78cd08df9b305f86628"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c4158a807d03e8b332141dc","id":"aoa:aoa-techniques:relation:f0801be9934115ca044a12e5","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:ca6ed2b50f354d9ee0e1c314","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:59444a2ca3b50c1062309d27"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c63d46303d9a2a5bbaff428","id":"aoa:aoa-techniques:relation:df6f3b7ec23fed32d55492c8","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:82458a541bd8751c4ea57750","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:420afbe013e1cbe8e51eb202"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:7c746b9da408c8d8b064e8f1","id":"aoa:aoa-techniques:relation:b1e29e3bf60b7dfe08bb5dce","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:658056c9732e430c16cae813","trust_ref":"deterministic"}, @@ -18339,6 +18374,7 @@ {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:dc3af6b732a018a5a4a06413"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:e96a2cda0b11c8e8f0ef99c8","id":"aoa:aoa-techniques:relation:9577c237e159291d09ef0bc1","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:192050dfd8ce57d9aba4f32a","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:16e431f327930deab13b43a9"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:e9e61706c923e104fe6f7fd6","id":"aoa:aoa-techniques:relation:6eea67cade40817784597db8","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:23a651a0c43af36fe9787d98","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:96fba1c5a54973c7cb44ce25"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:ea01bf569282a2d342458c63","id":"aoa:aoa-techniques:relation:199826f5f622975c7881d12e","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:a0710fe0cb5c83009e9d84ea","trust_ref":"deterministic"}, + {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:b368056cdb3ab8be415745b0"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","id":"aoa:aoa-techniques:relation:842cb3c56c2b688a2c80fa40","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:494d21737a2c0e9d75dffbea","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:bdf86ca77718a43ce5faf19d"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5","id":"aoa:aoa-techniques:relation:eb4254d4b2808281b6b158da","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:5ef3dacb9b199212df592339","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:f20d173e0089aba8f4d5f5ca"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:ea74f3c9a143c34fa99dfde8","id":"aoa:aoa-techniques:relation:db2b80ee6fa72200a4c71837","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:dd4bce8ab05c554941108ec0","trust_ref":"deterministic"}, {"confidence":1.0,"evidence_anchor_ids":["aoa:aoa-techniques:anchor:1d8a578d637ce806b419c2fa"],"evidence_class":"deterministic","from_id":"aoa:aoa-techniques:artifact:ea92140f28054170798bcbe9","id":"aoa:aoa-techniques:relation:03843a2e77cc942345bcbfd8","provenance_ref":"deterministic","relation_kind":"represents","temporal_ref":"current","to_id":"aoa:aoa-techniques:entity:ecf67c3797921321e0a25c30","trust_ref":"deterministic"}, @@ -18491,7 +18527,7 @@ ], "index_identity": { "artifact_kind": "repository_relation_index", - "content_digest": "812e5a1f659a4ce87016e5e8d35775065b5a4cd3bf4cd9782a9d61bdf01a71f0", + "content_digest": "c9434acef95ea966800a25bc4e6c19fd133deb695864c610d676ed55083cc448", "index_kind": "relation", "local_id": "index:repo-local:relations", "schema_ref": "aoa-kag:schemas/repo-local-kag-repository-index.schema.json" @@ -18577,18 +18613,18 @@ }, "schema_version": "aoa-repo-local-kag-repository-index-v2", "source_index": { - "content_digest": "6f6234e98c9535e09c594f0067aaa9b7cf200315fe9ad4614fc56f068764f93e", + "content_digest": "5ac3215479d6a47cceccef0d681726080f6f044829400eb36c014b65d84b9c79", "local_id": "index:repo-local:source-surfaces", "path": "kag/indexes/source_surface_index.json" }, "summary": { - "entry_count": 18488, + "entry_count": 18524, "kind_counts": { - "calls": 1072, - "contains": 3073, - "defines": 1460, - "references": 10994, - "represents": 1889 + "calls": 1079, + "contains": 3081, + "defines": 1471, + "references": 11000, + "represents": 1893 } } } diff --git a/kag/indexes/source_surface_index.json b/kag/indexes/source_surface_index.json index ddaac3b3..2d873460 100644 --- a/kag/indexes/source_surface_index.json +++ b/kag/indexes/source_surface_index.json @@ -2,11 +2,11 @@ "classification_summary": { "artifact_kind": { "asset": 50, - "config": 114, + "config": 116, "data_table": 1, "dependency_manifest": 1, "directory_marker": 4, - "document": 1631, + "document": 1633, "generated_readmodel": 49, "index": 1, "license": 1, @@ -19,19 +19,19 @@ "script": 36, "security": 1, "source_code": 19, - "test": 74, - "validator": 17 + "test": 75, + "validator": 18 }, "command_role": { "builder": 25, "lane_entrypoint": 3, - "none": 1952, + "none": 1956, "script": 8, - "test": 74, - "validator": 17 + "test": 75, + "validator": 18 }, "document_role": { - "agents": 94, + "agents": 95, "audit": 14, "changelog": 1, "decision": 75, @@ -39,10 +39,10 @@ "design_agents": 1, "handoff": 69, "mechanics_doc": 250, - "none": 410, + "none": 414, "parts": 13, "provenance": 13, - "readme": 168, + "readme": 169, "release_notes": 4, "roadmap": 14, "testing_doc": 1, @@ -53,7 +53,7 @@ "legacy": 117, "mechanic_package": 141, "mechanic_part": 41, - "none": 1479, + "none": 1485, "part_doc": 261, "part_schema": 22, "part_script": 13, @@ -61,33 +61,33 @@ }, "primary_kind": { "artifact": 103, - "command": 127, - "document": 1669, - "surface": 180 + "command": 129, + "document": 1671, + "surface": 182 }, "surface_state": { - "authored_source": 1870, + "authored_source": 1876, "generated_readmodel": 53, "legacy": 155, "receipt": 1 } }, "coverage_summary": { - "command_count": 127, - "document_count": 1669, + "command_count": 129, + "document_count": 1671, "generated_count": 53, - "heading_count": 12631, + "heading_count": 12641, "mechanics_count": 600, - "record_count": 2079, + "record_count": 2085, "schema_count": 39, "script_count": 36, - "test_count": 74, + "test_count": 75, "unknown_count": 0, - "validator_count": 17 + "validator_count": 18 }, "index_identity": { "artifact_kind": "source_surface_index", - "content_digest": "6f6234e98c9535e09c594f0067aaa9b7cf200315fe9ad4614fc56f068764f93e", + "content_digest": "5ac3215479d6a47cceccef0d681726080f6f044829400eb36c014b65d84b9c79", "local_id": "index:repo-local:source-surfaces", "schema_ref": "aoa-kag:schemas/repo-local-kag-index.schema.json" }, @@ -307,7 +307,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0c3b53314671ffa75a899cc12532eb55bda69b97b5d032339fe6a34db5420e58","git_blob_id":"912e1b836cdb56863edc20556a4dd168edcd847f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:551a1bddabb3258d62a261b0","lineage_path":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md","logical_id":"aoa:aoa-techniques:artifact:551a1bddabb3258d62a261b0","mime":"text/markdown","path":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md","repo":"aoa-techniques","size_bytes":3573,"version_id":"aoa:aoa-techniques:artifact-version:39ecd70624d04bd048710051"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"tdd-slice-shapes","level":1,"line":1,"ref":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md#tdd-slice-shapes","title":"TDD Slice Shapes"},{"anchor":"how-to-use","level":2,"line":8,"ref":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md#how-to-use","title":"How To Use"},{"anchor":"shape-set","level":2,"line":16,"ref":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md#shape-set","title":"Shape Set"},{"anchor":"compact-slice-pass","level":2,"line":29,"ref":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md#compact-slice-pass","title":"Compact Slice Pass"},{"anchor":"verification","level":2,"line":42,"ref":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md#verification","title":"Verification"}],"line_refs":[".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md:1"],"path_ref":".agents/skills/aoa-tdd-slice/references/tdd-slice-shapes.md"},"signs":{"attestation_ref":"","digest":"0c3b53314671ffa75a899cc12532eb55bda69b97b5d032339fe6a34db5420e58","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d6b9ad231144e3099391deaac2303e6691680382215a9cfa4247a7501c41e17d","git_blob_id":"e35e7cfa3b78dfd1cfd598c962ccde58d8b8feab","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2a7e780aaf2647f7cde8a07c","lineage_path":"Spark/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:2a7e780aaf2647f7cde8a07c","mime":"text/markdown","path":".agents/spark/AGENTS.md","repo":"aoa-techniques","size_bytes":3410,"version_id":"aoa:aoa-techniques:artifact-version:2841f1cf07e8507db6ad2a21"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":".agents/spark/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":".agents/spark/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":".agents/spark/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":20,"ref":".agents/spark/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":34,"ref":".agents/spark/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":61,"ref":".agents/spark/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":81,"ref":".agents/spark/AGENTS.md#closeout","title":"Closeout"}],"line_refs":[".agents/spark/AGENTS.md:1"],"path_ref":".agents/spark/AGENTS.md"},"signs":{"attestation_ref":"","digest":"d6b9ad231144e3099391deaac2303e6691680382215a9cfa4247a7501c41e17d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"70a928b195e79eca627e64cdc4c4c9dbf21b83a335451288d5cbe09f462b43cd","git_blob_id":"d2caf042f7317d6fbac0aa233a3e4aa8dab0f06d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:31d28326ecca1cf901d91b46","lineage_path":".agents/spark/README.md","logical_id":"aoa:aoa-techniques:artifact:31d28326ecca1cf901d91b46","mime":"text/markdown","path":".agents/spark/README.md","repo":"aoa-techniques","size_bytes":2608,"version_id":"aoa:aoa-techniques:artifact-version:2de690d45ff54722fae66762"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-lane","level":1,"line":1,"ref":".agents/spark/README.md#spark-lane","title":"Spark Lane"},{"anchor":"operating-route","level":2,"line":13,"ref":".agents/spark/README.md#operating-route","title":"Operating Route"},{"anchor":"scenarios","level":2,"line":24,"ref":".agents/spark/README.md#scenarios","title":"Scenarios"},{"anchor":"output-homes","level":2,"line":36,"ref":".agents/spark/README.md#output-homes","title":"Output Homes"}],"line_refs":[".agents/spark/README.md:1"],"path_ref":".agents/spark/README.md"},"signs":{"attestation_ref":"","digest":"70a928b195e79eca627e64cdc4c4c9dbf21b83a335451288d5cbe09f462b43cd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"af82684abeaad91f17be8297df6899ebc463344dca0016672b4188095508df0f","git_blob_id":"e97fd9c370ffdad6c5ddeff700cecaa47c11d35a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","lineage_path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","logical_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","mime":"text/markdown","path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","repo":"aoa-techniques","size_bytes":11590,"version_id":"aoa:aoa-techniques:artifact-version:d1a6e5d3d115f18d982a93b2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-extrapolation-notebook","level":1,"line":1,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#spark-extrapolation-notebook","title":"Spark Extrapolation Notebook"},{"anchor":"source-studied","level":2,"line":11,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#source-studied","title":"Source Studied"},{"anchor":"center-pattern-to-preserve","level":2,"line":44,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#center-pattern-to-preserve","title":"Center Pattern To Preserve"},{"anchor":"web-calibration","level":2,"line":73,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#web-calibration","title":"Web Calibration"},{"anchor":"technique-canon-adaptation","level":2,"line":102,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#technique-canon-adaptation","title":"Technique-Canon Adaptation"},{"anchor":"local-implementation-status","level":2,"line":133,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#local-implementation-status","title":"Local Implementation Status"},{"anchor":"target-structure","level":2,"line":159,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#target-structure","title":"Target Structure"},{"anchor":"scenario-sketches","level":2,"line":199,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#scenario-sketches","title":"Scenario Sketches"},{"anchor":"technique-audit","level":3,"line":201,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#technique-audit","title":"`technique-audit`"},{"anchor":"technique-refinement","level":3,"line":211,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#technique-refinement","title":"`technique-refinement`"},{"anchor":"candidate-scout","level":3,"line":221,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#candidate-scout","title":"`candidate-scout`"},{"anchor":"diff-review","level":3,"line":232,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#diff-review","title":"`diff-review`"},{"anchor":"registry-sync","level":3,"line":241,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#registry-sync","title":"`registry-sync`"},{"anchor":"test-factory","level":3,"line":250,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#test-factory","title":"`test-factory`"},{"anchor":"release-prep","level":3,"line":259,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#release-prep","title":"`release-prep`"},{"anchor":"implementation-order-used","level":2,"line":270,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#implementation-order-used","title":"Implementation Order Used"},{"anchor":"open-design-questions","level":2,"line":298,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#open-design-questions","title":"Open Design Questions"},{"anchor":"non-negotiables-for-the-future-pass","level":2,"line":312,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#non-negotiables-for-the-future-pass","title":"Non-Negotiables For The Future Pass"}],"line_refs":[".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md:1"],"path_ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md"},"signs":{"attestation_ref":"","digest":"af82684abeaad91f17be8297df6899ebc463344dca0016672b4188095508df0f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"280978d4c11c4e4a598634d240723c3487c01c38b4d24887a78eb0714a208e09","git_blob_id":"bc1fbb49eaa0b27612be19de8f26079892fae012","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","lineage_path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","logical_id":"aoa:aoa-techniques:artifact:1d00f3183a26fa3258156678","mime":"text/markdown","path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","repo":"aoa-techniques","size_bytes":11313,"version_id":"aoa:aoa-techniques:artifact-version:41ab9a43bc10d8e64fd036c2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-extrapolation-notebook","level":1,"line":1,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#spark-extrapolation-notebook","title":"Spark Extrapolation Notebook"},{"anchor":"source-studied","level":2,"line":11,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#source-studied","title":"Source Studied"},{"anchor":"center-pattern-to-preserve","level":2,"line":44,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#center-pattern-to-preserve","title":"Center Pattern To Preserve"},{"anchor":"web-calibration","level":2,"line":73,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#web-calibration","title":"Web Calibration"},{"anchor":"technique-canon-adaptation","level":2,"line":102,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#technique-canon-adaptation","title":"Technique-Canon Adaptation"},{"anchor":"local-implementation-status","level":2,"line":133,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#local-implementation-status","title":"Local Implementation Status"},{"anchor":"target-structure","level":2,"line":159,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#target-structure","title":"Target Structure"},{"anchor":"scenario-sketches","level":2,"line":199,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#scenario-sketches","title":"Scenario Sketches"},{"anchor":"technique-audit","level":3,"line":201,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#technique-audit","title":"`technique-audit`"},{"anchor":"technique-refinement","level":3,"line":211,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#technique-refinement","title":"`technique-refinement`"},{"anchor":"candidate-scout","level":3,"line":221,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#candidate-scout","title":"`candidate-scout`"},{"anchor":"diff-review","level":3,"line":232,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#diff-review","title":"`diff-review`"},{"anchor":"registry-sync","level":3,"line":241,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#registry-sync","title":"`registry-sync`"},{"anchor":"test-factory","level":3,"line":250,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#test-factory","title":"`test-factory`"},{"anchor":"release-prep","level":3,"line":259,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#release-prep","title":"`release-prep`"},{"anchor":"implementation-order-used","level":2,"line":270,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#implementation-order-used","title":"Implementation Order Used"},{"anchor":"open-design-questions","level":2,"line":288,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#open-design-questions","title":"Open Design Questions"},{"anchor":"non-negotiables-for-the-future-pass","level":2,"line":302,"ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md#non-negotiables-for-the-future-pass","title":"Non-Negotiables For The Future Pass"}],"line_refs":[".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md:1"],"path_ref":".agents/spark/SPARK_EXTRAPOLATION_NOTEBOOK.md"},"signs":{"attestation_ref":"","digest":"280978d4c11c4e4a598634d240723c3487c01c38b4d24887a78eb0714a208e09","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1578d1a3a35bafd23d0e3f97a9e24340ebb9b49be4f448647467032dedec2a6b","git_blob_id":"b63acf3a147f3b1807b0e377dd6b5ba9dbdbe6d0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:24477d1d7cb209d1fbbdf83e","lineage_path":"Spark/SWARM.md","logical_id":"aoa:aoa-techniques:artifact:24477d1d7cb209d1fbbdf83e","mime":"text/markdown","path":".agents/spark/SWARM.md","repo":"aoa-techniques","size_bytes":2229,"version_id":"aoa:aoa-techniques:artifact-version:62b8a52722d07b547ad1b1e4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/SWARM.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/SWARM.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-swarm","level":1,"line":1,"ref":".agents/spark/SWARM.md#spark-swarm","title":"Spark Swarm"},{"anchor":"swarm-rule","level":2,"line":10,"ref":".agents/spark/SWARM.md#swarm-rule","title":"Swarm Rule"},{"anchor":"launch-context","level":2,"line":21,"ref":".agents/spark/SWARM.md#launch-context","title":"Launch Context"},{"anchor":"roles","level":2,"line":27,"ref":".agents/spark/SWARM.md#roles","title":"Roles"},{"anchor":"parallel-lanes","level":2,"line":37,"ref":".agents/spark/SWARM.md#parallel-lanes","title":"Parallel Lanes"},{"anchor":"coordinator-launch-packet","level":2,"line":47,"ref":".agents/spark/SWARM.md#coordinator-launch-packet","title":"Coordinator Launch Packet"},{"anchor":"worker-launch-packet","level":2,"line":62,"ref":".agents/spark/SWARM.md#worker-launch-packet","title":"Worker Launch Packet"}],"line_refs":[".agents/spark/SWARM.md:1"],"path_ref":".agents/spark/SWARM.md"},"signs":{"attestation_ref":"","digest":"1578d1a3a35bafd23d0e3f97a9e24340ebb9b49be4f448647467032dedec2a6b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2bb42e618f46e2c5cd8b82cf70a74e8cc6edbd72da7c98f5e85fb064346d3250","git_blob_id":"2fc772f8c41b2745604fd090e353848747e973f5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fbda403a1d57ade65895abc0","lineage_path":".agents/spark/handoffs/README.md","logical_id":"aoa:aoa-techniques:artifact:fbda403a1d57ade65895abc0","mime":"text/markdown","path":".agents/spark/handoffs/README.md","repo":"aoa-techniques","size_bytes":537,"version_id":"aoa:aoa-techniques:artifact-version:78a22761e0a7cf8a3ed84704"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/handoffs/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/handoffs/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-handoffs","level":1,"line":1,"ref":".agents/spark/handoffs/README.md#spark-handoffs","title":"Spark Handoffs"},{"anchor":"homes","level":2,"line":10,"ref":".agents/spark/handoffs/README.md#homes","title":"Homes"}],"line_refs":[".agents/spark/handoffs/README.md:1"],"path_ref":".agents/spark/handoffs/README.md"},"signs":{"attestation_ref":"","digest":"2bb42e618f46e2c5cd8b82cf70a74e8cc6edbd72da7c98f5e85fb064346d3250","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fddaf24157687836860efbc3bcb59189a89ce012dc7f17618d3173774a27a213","git_blob_id":"ad7407b820fb426d9d7e8c07c25d8aba9f691f3c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c3a8f9e5d38903da595aeb00","lineage_path":".agents/spark/handoffs/closed/README.md","logical_id":"aoa:aoa-techniques:artifact:c3a8f9e5d38903da595aeb00","mime":"text/markdown","path":".agents/spark/handoffs/closed/README.md","repo":"aoa-techniques","size_bytes":214,"version_id":"aoa:aoa-techniques:artifact-version:72c19d1ea7e5258233157f75"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/handoffs/closed/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/handoffs/closed/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"closed-spark-handoffs","level":1,"line":1,"ref":".agents/spark/handoffs/closed/README.md#closed-spark-handoffs","title":"Closed Spark Handoffs"}],"line_refs":[".agents/spark/handoffs/closed/README.md:1"],"path_ref":".agents/spark/handoffs/closed/README.md"},"signs":{"attestation_ref":"","digest":"fddaf24157687836860efbc3bcb59189a89ce012dc7f17618d3173774a27a213","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -321,18 +321,18 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"handoff","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fa1d63ea1a7b3b686c2ca2c56a613659a1922c02d30df8ce785e331157c7c691","git_blob_id":"4d014d2b3ecab8843783a2bfe0ed21c07e9782d6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:99f84619d10cdce2e5c30f5b","lineage_path":".agents/spark/scenarios/candidate-scout/templates/handoff.md","logical_id":"aoa:aoa-techniques:artifact:99f84619d10cdce2e5c30f5b","mime":"text/markdown","path":".agents/spark/scenarios/candidate-scout/templates/handoff.md","repo":"aoa-techniques","size_bytes":214,"version_id":"aoa:aoa-techniques:artifact-version:d4d3e36e73300df470e891b4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/candidate-scout/templates/handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/candidate-scout/templates/handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-handoff","level":1,"line":1,"ref":".agents/spark/scenarios/candidate-scout/templates/handoff.md#spark-handoff","title":"Spark Handoff"}],"line_refs":[".agents/spark/scenarios/candidate-scout/templates/handoff.md:1"],"path_ref":".agents/spark/scenarios/candidate-scout/templates/handoff.md"},"signs":{"attestation_ref":"","digest":"fa1d63ea1a7b3b686c2ca2c56a613659a1922c02d30df8ce785e331157c7c691","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d323be1cce6f605c3bceaca987a63b2958d25aaa2b90bbd280dd8224742eb2b4","git_blob_id":"11d5fbd87b4bc7bf44411d992bf76be5e19b9104","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8da191a41a5772fed0590bf9","lineage_path":".agents/spark/scenarios/candidate-scout/templates/result.md","logical_id":"aoa:aoa-techniques:artifact:8da191a41a5772fed0590bf9","mime":"text/markdown","path":".agents/spark/scenarios/candidate-scout/templates/result.md","repo":"aoa-techniques","size_bytes":171,"version_id":"aoa:aoa-techniques:artifact-version:357d13113ed84ab484d563f3"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/candidate-scout/templates/result.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/candidate-scout/templates/result.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/candidate-scout/templates/result.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/candidate-scout/templates/result.md:1"],"path_ref":".agents/spark/scenarios/candidate-scout/templates/result.md"},"signs":{"attestation_ref":"","digest":"d323be1cce6f605c3bceaca987a63b2958d25aaa2b90bbd280dd8224742eb2b4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"826002ed4bb1be91d1eed8622d9753ac155ca675be2a5634d94a3084308adfea","git_blob_id":"11e0f5058d3a9ff89ca889feb64f7272858c3447","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:813b84f7862c973ab53f383e","lineage_path":".agents/spark/scenarios/diff-review/PROMPT.md","logical_id":"aoa:aoa-techniques:artifact:813b84f7862c973ab53f383e","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/PROMPT.md","repo":"aoa-techniques","size_bytes":638,"version_id":"aoa:aoa-techniques:artifact-version:e7fc990709df3e5314bfa1cb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/diff-review/PROMPT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/diff-review/PROMPT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-prompt-diff-review","level":1,"line":1,"ref":".agents/spark/scenarios/diff-review/PROMPT.md#spark-prompt-diff-review","title":"Spark Prompt: diff-review"}],"line_refs":[".agents/spark/scenarios/diff-review/PROMPT.md:1"],"path_ref":".agents/spark/scenarios/diff-review/PROMPT.md"},"signs":{"attestation_ref":"","digest":"826002ed4bb1be91d1eed8622d9753ac155ca675be2a5634d94a3084308adfea","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"602cb7492ed0f1cc4d993d4bb7884c9d4c4f09062ad07c04bea4b27887dc98a7","git_blob_id":"8a629a2f2aacb73f8258f1702803631dbf8b212b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","lineage_path":".agents/spark/scenarios/diff-review/README.md","logical_id":"aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/README.md","repo":"aoa-techniques","size_bytes":674,"version_id":"aoa:aoa-techniques:artifact-version:101abd7d210f2cb17b00e12f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/diff-review/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/diff-review/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-diff-review","level":1,"line":1,"ref":".agents/spark/scenarios/diff-review/README.md#spark-scenario-diff-review","title":"Spark Scenario: diff-review"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/diff-review/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":10,"ref":".agents/spark/scenarios/diff-review/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":15,"ref":".agents/spark/scenarios/diff-review/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":19,"ref":".agents/spark/scenarios/diff-review/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":24,"ref":".agents/spark/scenarios/diff-review/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/diff-review/README.md:1"],"path_ref":".agents/spark/scenarios/diff-review/README.md"},"signs":{"attestation_ref":"","digest":"602cb7492ed0f1cc4d993d4bb7884c9d4c4f09062ad07c04bea4b27887dc98a7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b18915aba07163261af3351ae10ccfbb7df2784ef5db0446fd511f31a3c4755d","git_blob_id":"a1c62c8ecc47c9f32a46447d8e60976e32ccc5bc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","lineage_path":".agents/spark/scenarios/diff-review/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/examples/result.example.md","repo":"aoa-techniques","size_bytes":454,"version_id":"aoa:aoa-techniques:artifact-version:58b7f684cca41b3b250a32a9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/diff-review/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/diff-review/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/diff-review/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/diff-review/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/diff-review/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"b18915aba07163261af3351ae10ccfbb7df2784ef5db0446fd511f31a3c4755d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a6eddd20f6d0711f310eec9abafdea31ba69a52dd4c1a41a2437d0ca3b373568","git_blob_id":"e7f3ae6819c49849dfcc008e1890102fc87dd8c8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","lineage_path":".agents/spark/scenarios/diff-review/README.md","logical_id":"aoa:aoa-techniques:artifact:54e9c59f5e0b91c702ee6ba3","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/README.md","repo":"aoa-techniques","size_bytes":678,"version_id":"aoa:aoa-techniques:artifact-version:fe20b89e83462ac86b61e255"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/diff-review/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/diff-review/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-diff-review","level":1,"line":1,"ref":".agents/spark/scenarios/diff-review/README.md#spark-scenario-diff-review","title":"Spark Scenario: diff-review"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/diff-review/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":10,"ref":".agents/spark/scenarios/diff-review/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":15,"ref":".agents/spark/scenarios/diff-review/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":19,"ref":".agents/spark/scenarios/diff-review/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":24,"ref":".agents/spark/scenarios/diff-review/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/diff-review/README.md:1"],"path_ref":".agents/spark/scenarios/diff-review/README.md"},"signs":{"attestation_ref":"","digest":"a6eddd20f6d0711f310eec9abafdea31ba69a52dd4c1a41a2437d0ca3b373568","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"51d5a51874760f902efcbb3ff7981e22d7b8ca21fefd1b77f9051df884a8f3d9","git_blob_id":"baa5b8e32b7b83a6ac6614cb92639ea622737f5e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","lineage_path":".agents/spark/scenarios/diff-review/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:95ebeed7dcca1f96c8cb1667","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/examples/result.example.md","repo":"aoa-techniques","size_bytes":454,"version_id":"aoa:aoa-techniques:artifact-version:1ed8d254494c017a0306aba8"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/diff-review/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/diff-review/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/diff-review/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/diff-review/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/diff-review/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"51d5a51874760f902efcbb3ff7981e22d7b8ca21fefd1b77f9051df884a8f3d9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"handoff","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b8268b211c9f92be661c300a96fc923d9f63c7b815474aa6d6160e4d8d4075ab","git_blob_id":"1118201684debb083b8bfda09bd9dc44d649528b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3e9189e1241a3ac1cdf107d8","lineage_path":".agents/spark/scenarios/diff-review/templates/handoff.md","logical_id":"aoa:aoa-techniques:artifact:3e9189e1241a3ac1cdf107d8","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/templates/handoff.md","repo":"aoa-techniques","size_bytes":210,"version_id":"aoa:aoa-techniques:artifact-version:2c6b9555c022e15049c6142a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/diff-review/templates/handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/diff-review/templates/handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-handoff","level":1,"line":1,"ref":".agents/spark/scenarios/diff-review/templates/handoff.md#spark-handoff","title":"Spark Handoff"}],"line_refs":[".agents/spark/scenarios/diff-review/templates/handoff.md:1"],"path_ref":".agents/spark/scenarios/diff-review/templates/handoff.md"},"signs":{"attestation_ref":"","digest":"b8268b211c9f92be661c300a96fc923d9f63c7b815474aa6d6160e4d8d4075ab","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"40c93c224cba45fcc343763602668b7c48e1e608d0c9c70288aa74b8156844bc","git_blob_id":"ebf142cf4192cdab6e10d99f7f5dc5f330226c02","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:82cdde37af7f6baeb44668fd","lineage_path":".agents/spark/scenarios/diff-review/templates/result.md","logical_id":"aoa:aoa-techniques:artifact:82cdde37af7f6baeb44668fd","mime":"text/markdown","path":".agents/spark/scenarios/diff-review/templates/result.md","repo":"aoa-techniques","size_bytes":167,"version_id":"aoa:aoa-techniques:artifact-version:43c3a72de294cdf18558ff9d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/diff-review/templates/result.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/diff-review/templates/result.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/diff-review/templates/result.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/diff-review/templates/result.md:1"],"path_ref":".agents/spark/scenarios/diff-review/templates/result.md"},"signs":{"attestation_ref":"","digest":"40c93c224cba45fcc343763602668b7c48e1e608d0c9c70288aa74b8156844bc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"30aa577c86c2ec10a35c030837063c82e93aec726550772d2e3c86c374fc3f17","git_blob_id":"183556f2350d13114a2df99c16ed7deafcf81867","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:aea204fadf73ee5718d5415b","lineage_path":".agents/spark/scenarios/registry-sync/PROMPT.md","logical_id":"aoa:aoa-techniques:artifact:aea204fadf73ee5718d5415b","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/PROMPT.md","repo":"aoa-techniques","size_bytes":704,"version_id":"aoa:aoa-techniques:artifact-version:d4f865a7cdf99143581f59ad"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/registry-sync/PROMPT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/registry-sync/PROMPT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-prompt-registry-sync","level":1,"line":1,"ref":".agents/spark/scenarios/registry-sync/PROMPT.md#spark-prompt-registry-sync","title":"Spark Prompt: registry-sync"}],"line_refs":[".agents/spark/scenarios/registry-sync/PROMPT.md:1"],"path_ref":".agents/spark/scenarios/registry-sync/PROMPT.md"},"signs":{"attestation_ref":"","digest":"30aa577c86c2ec10a35c030837063c82e93aec726550772d2e3c86c374fc3f17","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"03c525a9abeb6373565e83db969b2f6eece103fd369f6047f8de5e3924a44f5b","git_blob_id":"da8e0c64e99034fadfc7a7a5be3c50be65ad121a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cb07dc041136d352abc5b2e8","lineage_path":".agents/spark/scenarios/registry-sync/README.md","logical_id":"aoa:aoa-techniques:artifact:cb07dc041136d352abc5b2e8","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/README.md","repo":"aoa-techniques","size_bytes":687,"version_id":"aoa:aoa-techniques:artifact-version:af08125fc059cff4a989b43b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/registry-sync/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/registry-sync/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-registry-sync","level":1,"line":1,"ref":".agents/spark/scenarios/registry-sync/README.md#spark-scenario-registry-sync","title":"Spark Scenario: registry-sync"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/registry-sync/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":10,"ref":".agents/spark/scenarios/registry-sync/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":14,"ref":".agents/spark/scenarios/registry-sync/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":18,"ref":".agents/spark/scenarios/registry-sync/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":23,"ref":".agents/spark/scenarios/registry-sync/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/registry-sync/README.md:1"],"path_ref":".agents/spark/scenarios/registry-sync/README.md"},"signs":{"attestation_ref":"","digest":"03c525a9abeb6373565e83db969b2f6eece103fd369f6047f8de5e3924a44f5b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"42611cb4028d8aa440519aad018747a1512ec0e70543e667dbe1e0b6ae8c82aa","git_blob_id":"41bb2ca4238ef1fe087cf232e73b38d3217c9bdc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","lineage_path":".agents/spark/scenarios/registry-sync/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/examples/result.example.md","repo":"aoa-techniques","size_bytes":549,"version_id":"aoa:aoa-techniques:artifact-version:a0f564794f835c0305c3aa97"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/registry-sync/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/registry-sync/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/registry-sync/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/registry-sync/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/registry-sync/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"42611cb4028d8aa440519aad018747a1512ec0e70543e667dbe1e0b6ae8c82aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7beee243f94f67632188a8503b6a7a6aae4b0533802d05dd026898649b7ee29d","git_blob_id":"2ee1361a220db31acc65673e36bf32992f626d35","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","lineage_path":".agents/spark/scenarios/registry-sync/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:81d7516fc77abc81b4b2f7b6","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/examples/result.example.md","repo":"aoa-techniques","size_bytes":516,"version_id":"aoa:aoa-techniques:artifact-version:53f927414e3a5c65a37b941e"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/registry-sync/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/registry-sync/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/registry-sync/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/registry-sync/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/registry-sync/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"7beee243f94f67632188a8503b6a7a6aae4b0533802d05dd026898649b7ee29d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"handoff","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"799652bb9309bc53af44b7e8dcfd4b9f81fb4275e75128ef5118eafae493d061","git_blob_id":"10ece1c1dd9df8972dddcce1bab23d632bfc8ab0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:674bbb8aa8fc8c67dceccf36","lineage_path":".agents/spark/scenarios/registry-sync/templates/handoff.md","logical_id":"aoa:aoa-techniques:artifact:674bbb8aa8fc8c67dceccf36","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/templates/handoff.md","repo":"aoa-techniques","size_bytes":212,"version_id":"aoa:aoa-techniques:artifact-version:284e867fd14d429f2d6e8eb6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/registry-sync/templates/handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/registry-sync/templates/handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-handoff","level":1,"line":1,"ref":".agents/spark/scenarios/registry-sync/templates/handoff.md#spark-handoff","title":"Spark Handoff"}],"line_refs":[".agents/spark/scenarios/registry-sync/templates/handoff.md:1"],"path_ref":".agents/spark/scenarios/registry-sync/templates/handoff.md"},"signs":{"attestation_ref":"","digest":"799652bb9309bc53af44b7e8dcfd4b9f81fb4275e75128ef5118eafae493d061","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a5e5a905d14bc953eb123e19f7701e4eafa4047666c4244cb242596bb5b8d2aa","git_blob_id":"c3912ec57327ced84c480d787acca18e990be47b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:40e8a6bc4b95a6ec0a50833b","lineage_path":".agents/spark/scenarios/registry-sync/templates/result.md","logical_id":"aoa:aoa-techniques:artifact:40e8a6bc4b95a6ec0a50833b","mime":"text/markdown","path":".agents/spark/scenarios/registry-sync/templates/result.md","repo":"aoa-techniques","size_bytes":169,"version_id":"aoa:aoa-techniques:artifact-version:3145f2ee6a8638778bc2def0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/registry-sync/templates/result.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/registry-sync/templates/result.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/registry-sync/templates/result.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/registry-sync/templates/result.md:1"],"path_ref":".agents/spark/scenarios/registry-sync/templates/result.md"},"signs":{"attestation_ref":"","digest":"a5e5a905d14bc953eb123e19f7701e4eafa4047666c4244cb242596bb5b8d2aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"release_notes","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"718f0ecadb2586743383739904ae996f3acc03ffa7e2b2c6be18428cb3819989","git_blob_id":"5d7e6c424188dc002da0ba846d9d787961c7ee20","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fb787d85b0f7f26229cbdd9a","lineage_path":".agents/spark/scenarios/release-prep/PROMPT.md","logical_id":"aoa:aoa-techniques:artifact:fb787d85b0f7f26229cbdd9a","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/PROMPT.md","repo":"aoa-techniques","size_bytes":660,"version_id":"aoa:aoa-techniques:artifact-version:44312ec90a54912b699186f6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/release-prep/PROMPT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/release-prep/PROMPT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-prompt-release-prep","level":1,"line":1,"ref":".agents/spark/scenarios/release-prep/PROMPT.md#spark-prompt-release-prep","title":"Spark Prompt: release-prep"}],"line_refs":[".agents/spark/scenarios/release-prep/PROMPT.md:1"],"path_ref":".agents/spark/scenarios/release-prep/PROMPT.md"},"signs":{"attestation_ref":"","digest":"718f0ecadb2586743383739904ae996f3acc03ffa7e2b2c6be18428cb3819989","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"33062d1b4084a1f615841659f31436e221f97e0044842416e3a5cd654db202fa","git_blob_id":"69d9691399414de1475a7b77641ba27f05b382e6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","lineage_path":".agents/spark/scenarios/release-prep/README.md","logical_id":"aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/README.md","repo":"aoa-techniques","size_bytes":689,"version_id":"aoa:aoa-techniques:artifact-version:d09e39debbb1e41c2c4b26c6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/release-prep/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/release-prep/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-release-prep","level":1,"line":1,"ref":".agents/spark/scenarios/release-prep/README.md#spark-scenario-release-prep","title":"Spark Scenario: release-prep"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/release-prep/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":11,"ref":".agents/spark/scenarios/release-prep/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":16,"ref":".agents/spark/scenarios/release-prep/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":20,"ref":".agents/spark/scenarios/release-prep/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":25,"ref":".agents/spark/scenarios/release-prep/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/release-prep/README.md:1"],"path_ref":".agents/spark/scenarios/release-prep/README.md"},"signs":{"attestation_ref":"","digest":"33062d1b4084a1f615841659f31436e221f97e0044842416e3a5cd654db202fa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"release_notes","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5067555ba333636f8709254aff92abf1ed9ef2f5a33a779a9c921f63a870a90a","git_blob_id":"030e7f17cd973300a5eff8be8f8928e3b28169ce","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d2953f59029c3da963218542","lineage_path":".agents/spark/scenarios/release-prep/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:d2953f59029c3da963218542","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/examples/result.example.md","repo":"aoa-techniques","size_bytes":416,"version_id":"aoa:aoa-techniques:artifact-version:7603204d2e85e1060378d0e2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/release-prep/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/release-prep/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/release-prep/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/release-prep/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/release-prep/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"5067555ba333636f8709254aff92abf1ed9ef2f5a33a779a9c921f63a870a90a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6e138b83a1f0d06fe38f2a3a0bad77ebcfeccec93f13a41bcee788d121cca87b","git_blob_id":"fdc9a85e617de35c7718d9fd69c39121fb3c2aae","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","lineage_path":".agents/spark/scenarios/release-prep/README.md","logical_id":"aoa:aoa-techniques:artifact:5fb3ee27c558cb8a9b2367aa","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/README.md","repo":"aoa-techniques","size_bytes":672,"version_id":"aoa:aoa-techniques:artifact-version:28df53a09e63e9cab8aa2867"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/release-prep/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/release-prep/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-release-prep","level":1,"line":1,"ref":".agents/spark/scenarios/release-prep/README.md#spark-scenario-release-prep","title":"Spark Scenario: release-prep"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/release-prep/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":11,"ref":".agents/spark/scenarios/release-prep/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":16,"ref":".agents/spark/scenarios/release-prep/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":20,"ref":".agents/spark/scenarios/release-prep/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":25,"ref":".agents/spark/scenarios/release-prep/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/release-prep/README.md:1"],"path_ref":".agents/spark/scenarios/release-prep/README.md"},"signs":{"attestation_ref":"","digest":"6e138b83a1f0d06fe38f2a3a0bad77ebcfeccec93f13a41bcee788d121cca87b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"release_notes","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"14ca72fc0d4f25848702f856c98efa5cb9013db0e8c21ae890c66bb7dc143905","git_blob_id":"5cb1bc9874249c7b4b396a945f7eaf66e3fb8043","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d2953f59029c3da963218542","lineage_path":".agents/spark/scenarios/release-prep/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:d2953f59029c3da963218542","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/examples/result.example.md","repo":"aoa-techniques","size_bytes":395,"version_id":"aoa:aoa-techniques:artifact-version:0ad5b8b6b836e38ae82fc73c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/release-prep/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/release-prep/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/release-prep/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/release-prep/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/release-prep/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"14ca72fc0d4f25848702f856c98efa5cb9013db0e8c21ae890c66bb7dc143905","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"release_notes","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f1b43dabf8d911b81c634e1a26d29a23d6bd8d9daf3b27b562a221c7ea166939","git_blob_id":"9c46794e0a68084c723ead27e32ef0d2224a8a5a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d25de013576826a78e43c29f","lineage_path":".agents/spark/scenarios/release-prep/templates/handoff.md","logical_id":"aoa:aoa-techniques:artifact:d25de013576826a78e43c29f","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/templates/handoff.md","repo":"aoa-techniques","size_bytes":211,"version_id":"aoa:aoa-techniques:artifact-version:23725aa58dbf18ba07c248b2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/release-prep/templates/handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/release-prep/templates/handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-handoff","level":1,"line":1,"ref":".agents/spark/scenarios/release-prep/templates/handoff.md#spark-handoff","title":"Spark Handoff"}],"line_refs":[".agents/spark/scenarios/release-prep/templates/handoff.md:1"],"path_ref":".agents/spark/scenarios/release-prep/templates/handoff.md"},"signs":{"attestation_ref":"","digest":"f1b43dabf8d911b81c634e1a26d29a23d6bd8d9daf3b27b562a221c7ea166939","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"release_notes","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"54e1d549e4c067af70c285378f869058a6107d37bf7d641a6ba74dec848c9f19","git_blob_id":"b5851f30c54756a2a5bdd08b86b182d08fbe158b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:65d22157cb3e19f21f274b8c","lineage_path":".agents/spark/scenarios/release-prep/templates/result.md","logical_id":"aoa:aoa-techniques:artifact:65d22157cb3e19f21f274b8c","mime":"text/markdown","path":".agents/spark/scenarios/release-prep/templates/result.md","repo":"aoa-techniques","size_bytes":168,"version_id":"aoa:aoa-techniques:artifact-version:64791d2b954890e785bd8ae1"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/release-prep/templates/result.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/release-prep/templates/result.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/release-prep/templates/result.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/release-prep/templates/result.md:1"],"path_ref":".agents/spark/scenarios/release-prep/templates/result.md"},"signs":{"attestation_ref":"","digest":"54e1d549e4c067af70c285378f869058a6107d37bf7d641a6ba74dec848c9f19","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"audit","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cdd1e5a26ffda0c4c4f66cef1cad82b4859217555336a0db16369c5f429edef9","git_blob_id":"969d30b7c7782c2ea07e1665fae3e37f170e26f7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:40831c23552cd401c18fd933","lineage_path":".agents/spark/scenarios/technique-audit/PROMPT.md","logical_id":"aoa:aoa-techniques:artifact:40831c23552cd401c18fd933","mime":"text/markdown","path":".agents/spark/scenarios/technique-audit/PROMPT.md","repo":"aoa-techniques","size_bytes":699,"version_id":"aoa:aoa-techniques:artifact-version:269ab41118b7ab0e82875b16"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-audit/PROMPT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-audit/PROMPT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-prompt-technique-audit","level":1,"line":1,"ref":".agents/spark/scenarios/technique-audit/PROMPT.md#spark-prompt-technique-audit","title":"Spark Prompt: technique-audit"}],"line_refs":[".agents/spark/scenarios/technique-audit/PROMPT.md:1"],"path_ref":".agents/spark/scenarios/technique-audit/PROMPT.md"},"signs":{"attestation_ref":"","digest":"cdd1e5a26ffda0c4c4f66cef1cad82b4859217555336a0db16369c5f429edef9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -341,13 +341,13 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"audit","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fb9cf27741b3f44b703bc4e2d5b4d1464c262c049c526d1ab32ec32f5ff299ef","git_blob_id":"52713fa4577ae6abe960de2edd8116be09615b54","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e7573ccc777897e914ac9e99","lineage_path":".agents/spark/scenarios/technique-audit/templates/handoff.md","logical_id":"aoa:aoa-techniques:artifact:e7573ccc777897e914ac9e99","mime":"text/markdown","path":".agents/spark/scenarios/technique-audit/templates/handoff.md","repo":"aoa-techniques","size_bytes":214,"version_id":"aoa:aoa-techniques:artifact-version:ad31ce5a11075ceecd08a42e"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-audit/templates/handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-audit/templates/handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-handoff","level":1,"line":1,"ref":".agents/spark/scenarios/technique-audit/templates/handoff.md#spark-handoff","title":"Spark Handoff"}],"line_refs":[".agents/spark/scenarios/technique-audit/templates/handoff.md:1"],"path_ref":".agents/spark/scenarios/technique-audit/templates/handoff.md"},"signs":{"attestation_ref":"","digest":"fb9cf27741b3f44b703bc4e2d5b4d1464c262c049c526d1ab32ec32f5ff299ef","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"audit","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8dd0f1ba539016adbc23cdb704f707012c69b54fea8e7f6f32bd63e3fe903ba9","git_blob_id":"9306402dc34fe868366b4e38d6ec19051663b8e7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f6b137bbaa5d00fc24fd68d4","lineage_path":".agents/spark/scenarios/technique-audit/templates/result.md","logical_id":"aoa:aoa-techniques:artifact:f6b137bbaa5d00fc24fd68d4","mime":"text/markdown","path":".agents/spark/scenarios/technique-audit/templates/result.md","repo":"aoa-techniques","size_bytes":171,"version_id":"aoa:aoa-techniques:artifact-version:3787031dff9ed64e3d4e49fc"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-audit/templates/result.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-audit/templates/result.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/technique-audit/templates/result.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/technique-audit/templates/result.md:1"],"path_ref":".agents/spark/scenarios/technique-audit/templates/result.md"},"signs":{"attestation_ref":"","digest":"8dd0f1ba539016adbc23cdb704f707012c69b54fea8e7f6f32bd63e3fe903ba9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6f69234461d39d83e06e1448414dafb4023503cd6a3b6876b958ba709c2f5c93","git_blob_id":"2e5664dc4cb82e4f2df00301f33be7a37d049bb1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c6df1331bef3ab8eb6356bdb","lineage_path":".agents/spark/scenarios/technique-refinement/PROMPT.md","logical_id":"aoa:aoa-techniques:artifact:c6df1331bef3ab8eb6356bdb","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/PROMPT.md","repo":"aoa-techniques","size_bytes":826,"version_id":"aoa:aoa-techniques:artifact-version:f89735a0c35ee77650b20b9b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-refinement/PROMPT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-refinement/PROMPT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-prompt-technique-refinement","level":1,"line":1,"ref":".agents/spark/scenarios/technique-refinement/PROMPT.md#spark-prompt-technique-refinement","title":"Spark Prompt: technique-refinement"}],"line_refs":[".agents/spark/scenarios/technique-refinement/PROMPT.md:1"],"path_ref":".agents/spark/scenarios/technique-refinement/PROMPT.md"},"signs":{"attestation_ref":"","digest":"6f69234461d39d83e06e1448414dafb4023503cd6a3b6876b958ba709c2f5c93","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"86d8e7a5f9cc5f3cb226a1571d0efedc984a8724a837cc3b2c77e6ab73c55f60","git_blob_id":"e2c079df4bb236332652401f3d26f5c7ca6e3c09","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","lineage_path":".agents/spark/scenarios/technique-refinement/README.md","logical_id":"aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/README.md","repo":"aoa-techniques","size_bytes":1049,"version_id":"aoa:aoa-techniques:artifact-version:01a26dd203f03323d23b166d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-refinement/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-refinement/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-technique-refinement","level":1,"line":1,"ref":".agents/spark/scenarios/technique-refinement/README.md#spark-scenario-technique-refinement","title":"Spark Scenario: technique-refinement"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/technique-refinement/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":11,"ref":".agents/spark/scenarios/technique-refinement/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":16,"ref":".agents/spark/scenarios/technique-refinement/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":22,"ref":".agents/spark/scenarios/technique-refinement/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":27,"ref":".agents/spark/scenarios/technique-refinement/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/technique-refinement/README.md:1"],"path_ref":".agents/spark/scenarios/technique-refinement/README.md"},"signs":{"attestation_ref":"","digest":"86d8e7a5f9cc5f3cb226a1571d0efedc984a8724a837cc3b2c77e6ab73c55f60","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cea21afaa19f0a81635026f13c5081a3c77d01d10491e49f292263f6c34e9a60","git_blob_id":"03751cc0aadea38951b44fa1eb1a325e85d14cbb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","lineage_path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","repo":"aoa-techniques","size_bytes":754,"version_id":"aoa:aoa-techniques:artifact-version:eb7e0b1af3c51f0b0ce4c0bc"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-refinement/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/technique-refinement/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/technique-refinement/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/technique-refinement/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"cea21afaa19f0a81635026f13c5081a3c77d01d10491e49f292263f6c34e9a60","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f6f9828d64f104fb78f0b2fadda5eb2557655856d01aab4fabb41bf3b3af61e9","git_blob_id":"60c2eb872151b35c311ce76dca65032ac2f12c3a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","lineage_path":".agents/spark/scenarios/technique-refinement/README.md","logical_id":"aoa:aoa-techniques:artifact:8cd97322065435f2f2b26027","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/README.md","repo":"aoa-techniques","size_bytes":1041,"version_id":"aoa:aoa-techniques:artifact-version:7b6c88293e19b574e3acdf4e"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-refinement/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-refinement/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-technique-refinement","level":1,"line":1,"ref":".agents/spark/scenarios/technique-refinement/README.md#spark-scenario-technique-refinement","title":"Spark Scenario: technique-refinement"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/technique-refinement/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":11,"ref":".agents/spark/scenarios/technique-refinement/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":16,"ref":".agents/spark/scenarios/technique-refinement/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":22,"ref":".agents/spark/scenarios/technique-refinement/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":27,"ref":".agents/spark/scenarios/technique-refinement/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/technique-refinement/README.md:1"],"path_ref":".agents/spark/scenarios/technique-refinement/README.md"},"signs":{"attestation_ref":"","digest":"f6f9828d64f104fb78f0b2fadda5eb2557655856d01aab4fabb41bf3b3af61e9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d2f8a2e2945feaf4c6956cfb4e23ee6bc38ca839b09d2b03981e7ceef5f192aa","git_blob_id":"dd3d8b68822bb7a429b4a5fd90463636a25b595e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","lineage_path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:689d4a71eb2e7c036a1b66a6","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","repo":"aoa-techniques","size_bytes":742,"version_id":"aoa:aoa-techniques:artifact-version:34bdced3490ced58f88668bd"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-refinement/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-refinement/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/technique-refinement/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/technique-refinement/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/technique-refinement/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"d2f8a2e2945feaf4c6956cfb4e23ee6bc38ca839b09d2b03981e7ceef5f192aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"handoff","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b86b21330b0da44a8826eea65d99d3c1ce24f2e192df00bdf07914453c93dfca","git_blob_id":"cdcac275414dc93ce5d5034be4e556d7f7a57bfd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:65aab6e00bd219449f8e0604","lineage_path":".agents/spark/scenarios/technique-refinement/templates/handoff.md","logical_id":"aoa:aoa-techniques:artifact:65aab6e00bd219449f8e0604","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/templates/handoff.md","repo":"aoa-techniques","size_bytes":219,"version_id":"aoa:aoa-techniques:artifact-version:912d6e69410ee10882fc47ce"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-refinement/templates/handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-refinement/templates/handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-handoff","level":1,"line":1,"ref":".agents/spark/scenarios/technique-refinement/templates/handoff.md#spark-handoff","title":"Spark Handoff"}],"line_refs":[".agents/spark/scenarios/technique-refinement/templates/handoff.md:1"],"path_ref":".agents/spark/scenarios/technique-refinement/templates/handoff.md"},"signs":{"attestation_ref":"","digest":"b86b21330b0da44a8826eea65d99d3c1ce24f2e192df00bdf07914453c93dfca","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ad5cfe8f4f0075afd5ec7665249c2b0950bc4aa43530f62a5fa63ea2bfd60a36","git_blob_id":"4b01cefb64ab5163e6cea39c152648e189d981d9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:96e6b1ce02c4f43c1da2bb66","lineage_path":".agents/spark/scenarios/technique-refinement/templates/result.md","logical_id":"aoa:aoa-techniques:artifact:96e6b1ce02c4f43c1da2bb66","mime":"text/markdown","path":".agents/spark/scenarios/technique-refinement/templates/result.md","repo":"aoa-techniques","size_bytes":176,"version_id":"aoa:aoa-techniques:artifact-version:4f2e2c6c35880e0cda96a6d2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/technique-refinement/templates/result.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/technique-refinement/templates/result.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/technique-refinement/templates/result.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/technique-refinement/templates/result.md:1"],"path_ref":".agents/spark/scenarios/technique-refinement/templates/result.md"},"signs":{"attestation_ref":"","digest":"ad5cfe8f4f0075afd5ec7665249c2b0950bc4aa43530f62a5fa63ea2bfd60a36","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"04efb76a0c222b0c050857ce2e00d9bbd09ecd4b1016006ec866dc6502a42c2e","git_blob_id":"525b2ec59f79da84fe28f836c9e6f04f2959824e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0f6efa61982a73a1287839d9","lineage_path":".agents/spark/scenarios/test-factory/PROMPT.md","logical_id":"aoa:aoa-techniques:artifact:0f6efa61982a73a1287839d9","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/PROMPT.md","repo":"aoa-techniques","size_bytes":631,"version_id":"aoa:aoa-techniques:artifact-version:62dbc8fb4a2f9a6cae75fc6c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/test-factory/PROMPT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/test-factory/PROMPT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-prompt-test-factory","level":1,"line":1,"ref":".agents/spark/scenarios/test-factory/PROMPT.md#spark-prompt-test-factory","title":"Spark Prompt: test-factory"}],"line_refs":[".agents/spark/scenarios/test-factory/PROMPT.md:1"],"path_ref":".agents/spark/scenarios/test-factory/PROMPT.md"},"signs":{"attestation_ref":"","digest":"04efb76a0c222b0c050857ce2e00d9bbd09ecd4b1016006ec866dc6502a42c2e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"35e117dcb1aeae9779f54b228dcc67c8c462887ba09dd23557fa32be01c2afd2","git_blob_id":"dc04cb0bd13cff05fd23827b0a3872d09c267b5a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","lineage_path":".agents/spark/scenarios/test-factory/README.md","logical_id":"aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/README.md","repo":"aoa-techniques","size_bytes":724,"version_id":"aoa:aoa-techniques:artifact-version:1df67cabd936768343f296f6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/test-factory/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/test-factory/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-test-factory","level":1,"line":1,"ref":".agents/spark/scenarios/test-factory/README.md#spark-scenario-test-factory","title":"Spark Scenario: test-factory"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/test-factory/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":10,"ref":".agents/spark/scenarios/test-factory/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":14,"ref":".agents/spark/scenarios/test-factory/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":18,"ref":".agents/spark/scenarios/test-factory/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":23,"ref":".agents/spark/scenarios/test-factory/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/test-factory/README.md:1"],"path_ref":".agents/spark/scenarios/test-factory/README.md"},"signs":{"attestation_ref":"","digest":"35e117dcb1aeae9779f54b228dcc67c8c462887ba09dd23557fa32be01c2afd2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6846832d4d8535375c3efd95d930776fb3a525d9a64294f836f830ccd44e9c51","git_blob_id":"10af2fba164a552529a2efde066ef8edb72dbe9d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","lineage_path":".agents/spark/scenarios/test-factory/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/examples/result.example.md","repo":"aoa-techniques","size_bytes":552,"version_id":"aoa:aoa-techniques:artifact-version:e505889f15fab5c28bd15b22"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/test-factory/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/test-factory/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/test-factory/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/test-factory/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/test-factory/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"6846832d4d8535375c3efd95d930776fb3a525d9a64294f836f830ccd44e9c51","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fa82f0e7f6b0a395dc378bcbaa822d13dc39b923ff730951a5a0e1f95b26a288","git_blob_id":"c4a3da78104efebd349e6d75027e286284e6d6d2","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","lineage_path":".agents/spark/scenarios/test-factory/README.md","logical_id":"aoa:aoa-techniques:artifact:2cb5add0c4c07364045149fc","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/README.md","repo":"aoa-techniques","size_bytes":721,"version_id":"aoa:aoa-techniques:artifact-version:1a5e1564c135d47ffdba7741"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/test-factory/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/test-factory/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-scenario-test-factory","level":1,"line":1,"ref":".agents/spark/scenarios/test-factory/README.md#spark-scenario-test-factory","title":"Spark Scenario: test-factory"},{"anchor":"scope","level":2,"line":6,"ref":".agents/spark/scenarios/test-factory/README.md#scope","title":"Scope"},{"anchor":"done-signal","level":2,"line":10,"ref":".agents/spark/scenarios/test-factory/README.md#done-signal","title":"Done Signal"},{"anchor":"stop-line","level":2,"line":14,"ref":".agents/spark/scenarios/test-factory/README.md#stop-line","title":"Stop-line"},{"anchor":"handoff-route","level":2,"line":18,"ref":".agents/spark/scenarios/test-factory/README.md#handoff-route","title":"Handoff Route"},{"anchor":"validation","level":2,"line":23,"ref":".agents/spark/scenarios/test-factory/README.md#validation","title":"Validation"}],"line_refs":[".agents/spark/scenarios/test-factory/README.md:1"],"path_ref":".agents/spark/scenarios/test-factory/README.md"},"signs":{"attestation_ref":"","digest":"fa82f0e7f6b0a395dc378bcbaa822d13dc39b923ff730951a5a0e1f95b26a288","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"945a7915d73a82734836f2545364c5c13d9ccaa25b9e45de201ce0156eed09cb","git_blob_id":"a7f97fc50bbf0a48946235d73d2e9a0effd91db4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","lineage_path":".agents/spark/scenarios/test-factory/examples/result.example.md","logical_id":"aoa:aoa-techniques:artifact:97d951cd0207080221b62d57","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/examples/result.example.md","repo":"aoa-techniques","size_bytes":502,"version_id":"aoa:aoa-techniques:artifact-version:6af52393d52f978140e9a96f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/test-factory/examples/result.example.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/test-factory/examples/result.example.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/test-factory/examples/result.example.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/test-factory/examples/result.example.md:1"],"path_ref":".agents/spark/scenarios/test-factory/examples/result.example.md"},"signs":{"attestation_ref":"","digest":"945a7915d73a82734836f2545364c5c13d9ccaa25b9e45de201ce0156eed09cb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"handoff","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"989a99c6ec230f8303706c24a6d8f485e8894abaae90d9210adc096e7fffb2e2","git_blob_id":"39f9a43a5216832186cc1f8eba47edd144d18ebb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f9a0d6347c48e626cb968dc1","lineage_path":".agents/spark/scenarios/test-factory/templates/handoff.md","logical_id":"aoa:aoa-techniques:artifact:f9a0d6347c48e626cb968dc1","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/templates/handoff.md","repo":"aoa-techniques","size_bytes":211,"version_id":"aoa:aoa-techniques:artifact-version:54755671c9da1d27491c1e16"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/test-factory/templates/handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/test-factory/templates/handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-handoff","level":1,"line":1,"ref":".agents/spark/scenarios/test-factory/templates/handoff.md#spark-handoff","title":"Spark Handoff"}],"line_refs":[".agents/spark/scenarios/test-factory/templates/handoff.md:1"],"path_ref":".agents/spark/scenarios/test-factory/templates/handoff.md"},"signs":{"attestation_ref":"","digest":"989a99c6ec230f8303706c24a6d8f485e8894abaae90d9210adc096e7fffb2e2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f2e1da2865fd9b1ae3b62bfe4b3419ccac3e7a080d454983c4988de686e04058","git_blob_id":"231465fb41bbe7cd3bb9a638e9cae64e3dd105a2","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2d4324af86755a673c1fded3","lineage_path":".agents/spark/scenarios/test-factory/templates/result.md","logical_id":"aoa:aoa-techniques:artifact:2d4324af86755a673c1fded3","mime":"text/markdown","path":".agents/spark/scenarios/test-factory/templates/result.md","repo":"aoa-techniques","size_bytes":168,"version_id":"aoa:aoa-techniques:artifact-version:1c67ae0e421a8e8f9043a744"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".agents/spark/scenarios/test-factory/templates/result.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scenarios/test-factory/templates/result.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-result","level":1,"line":1,"ref":".agents/spark/scenarios/test-factory/templates/result.md#spark-result","title":"Spark Result"}],"line_refs":[".agents/spark/scenarios/test-factory/templates/result.md:1"],"path_ref":".agents/spark/scenarios/test-factory/templates/result.md"},"signs":{"attestation_ref":"","digest":"f2e1da2865fd9b1ae3b62bfe4b3419ccac3e7a080d454983c4988de686e04058","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"schema","compatibility":"stable","contract_version":"aoa_techniques_spark_handoff_v1","schema_version":"https://json-schema.org/draft/2020-12/schema"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"schema","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"342b3926cee66f3e4a556e22803b4fab43a5de845cbfdef2c3cf577b2c6bb917","git_blob_id":"096d5c315541377e9356b60363eb0b8e1377cf56","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:84dea1f2d0e604c945f35906","lineage_path":".agents/spark/schemas/spark-handoff.schema.json","logical_id":"aoa:aoa-techniques:artifact:84dea1f2d0e604c945f35906","mime":"application/json","path":".agents/spark/schemas/spark-handoff.schema.json","repo":"aoa-techniques","size_bytes":1337,"version_id":"aoa:aoa-techniques:artifact-version:6d5e116763bcbe8b3b52b0f8"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"schema_owner","surface":".agents/spark/schemas/spark-handoff.schema.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/schemas/spark-handoff.schema.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".agents/spark/schemas/spark-handoff.schema.json:1"],"path_ref":".agents/spark/schemas/spark-handoff.schema.json"},"signs":{"attestation_ref":"","digest":"342b3926cee66f3e4a556e22803b4fab43a5de845cbfdef2c3cf577b2c6bb917","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -356,44 +356,44 @@ {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e9b6aa304f03cd3d573283040717dce7cc022186b16b5f20933fb15b10089922","git_blob_id":"9e38b2781a694bca6842d6e003b803101a8def75","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:80adbf9807a80432bf32a44f","lineage_path":".agents/spark/scripts/validate_spark_lane.py","logical_id":"aoa:aoa-techniques:artifact:80adbf9807a80432bf32a44f","mime":"text/x-python","path":".agents/spark/scripts/validate_spark_lane.py","repo":"aoa-techniques","size_bytes":12468,"version_id":"aoa:aoa-techniques:artifact-version:5ae6eaf5d1e1cc2ebe6b259f"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":".agents/spark/scripts/validate_spark_lane.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/scripts/validate_spark_lane.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".agents/spark/scripts/validate_spark_lane.py:1"],"path_ref":".agents/spark/scripts/validate_spark_lane.py"},"signs":{"attestation_ref":"","digest":"e9b6aa304f03cd3d573283040717dce7cc022186b16b5f20933fb15b10089922","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python .agents/spark/scripts/validate_spark_lane.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"218073a99eeccb5503fda3ac7ab3c30cffa4151432ad400956f4d7b5d0fba65d","git_blob_id":"561696c19feb62a89d407f7bcf9dbd04d2f25e0a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2b31a3041fd1f1fcf0b72bc0","lineage_path":".agents/spark/tests/test_spark_lane.py","logical_id":"aoa:aoa-techniques:artifact:2b31a3041fd1f1fcf0b72bc0","mime":"text/x-python","path":".agents/spark/tests/test_spark_lane.py","repo":"aoa-techniques","size_bytes":5114,"version_id":"aoa:aoa-techniques:artifact-version:d8b6d265e2372b507e71a3b6"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":".agents/spark/tests/test_spark_lane.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".agents/spark/tests/test_spark_lane.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".agents/spark/tests/test_spark_lane.py:1"],"path_ref":".agents/spark/tests/test_spark_lane.py"},"signs":{"attestation_ref":"","digest":"218073a99eeccb5503fda3ac7ab3c30cffa4151432ad400956f4d7b5d0fba65d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest .agents/spark/tests/test_spark_lane.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"613833c8cab13f9573c3b9756d00b3208c2ba9369e761f9f37d4658f2c3fcb48","git_blob_id":"6f543410cc7afbacc8759843fad9df68fa5fb00d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f0cbd6aa0372f04d8e3ab075","lineage_path":".github/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:f0cbd6aa0372f04d8e3ab075","mime":"text/markdown","path":".github/AGENTS.md","repo":"aoa-techniques","size_bytes":3172,"version_id":"aoa:aoa-techniques:artifact-version:10249b56972440f44a26e8fe"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".github/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":".github/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":".github/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":".github/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":18,"ref":".github/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":30,"ref":".github/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"platform-sync","level":2,"line":39,"ref":".github/AGENTS.md#platform-sync","title":"Platform sync"},{"anchor":"validation","level":2,"line":58,"ref":".github/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":77,"ref":".github/AGENTS.md#closeout","title":"Closeout"}],"line_refs":[".github/AGENTS.md:1"],"path_ref":".github/AGENTS.md"},"signs":{"attestation_ref":"","digest":"613833c8cab13f9573c3b9756d00b3208c2ba9369e761f9f37d4658f2c3fcb48","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"owner_metadata","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"owner_metadata","classification":{"confidence":"high","primary_kind":"artifact"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"105869639af2999982ee4bba2900acbd1e53e319ec5df2f602a468203818e0e7","git_blob_id":"0c3eed73e4b929758fb207708b48c451b6c86a3e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","lineage_path":".github/CODEOWNERS","logical_id":"aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","mime":"text/plain","path":".github/CODEOWNERS","repo":"aoa-techniques","size_bytes":805,"version_id":"aoa:aoa-techniques:artifact-version:22060068e6648835315f970f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/CODEOWNERS"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/CODEOWNERS","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/CODEOWNERS:1"],"path_ref":".github/CODEOWNERS"},"signs":{"attestation_ref":"","digest":"105869639af2999982ee4bba2900acbd1e53e319ec5df2f602a468203818e0e7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"owner_metadata","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"owner_metadata","classification":{"confidence":"high","primary_kind":"artifact"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d4617ca7439571e36d1ed70a72529e5e72f75f531c45afececa42a82f9c40eab","git_blob_id":"481af1beace1410e0f677941ba370338ee65058c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","lineage_path":".github/CODEOWNERS","logical_id":"aoa:aoa-techniques:artifact:3d36a1bf06148bc6ba1ce2ed","mime":"text/plain","path":".github/CODEOWNERS","repo":"aoa-techniques","size_bytes":824,"version_id":"aoa:aoa-techniques:artifact-version:cc0fdf3fe234d3cad6287b60"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/CODEOWNERS"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/CODEOWNERS","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/CODEOWNERS:1"],"path_ref":".github/CODEOWNERS"},"signs":{"attestation_ref":"","digest":"d4617ca7439571e36d1ed70a72529e5e72f75f531c45afececa42a82f9c40eab","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bcdd6efa3b08b2343d993b6ae746f81160b5dc1e78a86448b0d34f69f7086b28","git_blob_id":"9b4b79fa88ea840196a48911a0e879f578012daf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5ea6a99ea509e9210150d813","lineage_path":".github/ISSUE_TEMPLATE/canonical-promotion.md","logical_id":"aoa:aoa-techniques:artifact:5ea6a99ea509e9210150d813","mime":"text/markdown","path":".github/ISSUE_TEMPLATE/canonical-promotion.md","repo":"aoa-techniques","size_bytes":1025,"version_id":"aoa:aoa-techniques:artifact-version:ae3476e69fc86ba284eadd56"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".github/ISSUE_TEMPLATE/canonical-promotion.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/ISSUE_TEMPLATE/canonical-promotion.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique","level":2,"line":7,"ref":".github/ISSUE_TEMPLATE/canonical-promotion.md#technique","title":"Technique"},{"anchor":"review-contract","level":2,"line":13,"ref":".github/ISSUE_TEMPLATE/canonical-promotion.md#review-contract","title":"Review Contract"},{"anchor":"default-use-rationale","level":2,"line":18,"ref":".github/ISSUE_TEMPLATE/canonical-promotion.md#default-use-rationale","title":"Default-Use Rationale"},{"anchor":"reuse-beyond-origin","level":2,"line":23,"ref":".github/ISSUE_TEMPLATE/canonical-promotion.md#reuse-beyond-origin","title":"Reuse Beyond Origin"},{"anchor":"stronger-validation-than-initial-promotion-baseline","level":2,"line":28,"ref":".github/ISSUE_TEMPLATE/canonical-promotion.md#stronger-validation-than-initial-promotion-baseline","title":"Stronger Validation Than Initial Promotion Baseline"},{"anchor":"adaptation-boundary-check","level":2,"line":33,"ref":".github/ISSUE_TEMPLATE/canonical-promotion.md#adaptation-boundary-check","title":"Adaptation Boundary Check"},{"anchor":"public-safety-recheck","level":2,"line":38,"ref":".github/ISSUE_TEMPLATE/canonical-promotion.md#public-safety-recheck","title":"Public-Safety Recheck"},{"anchor":"recommendation","level":2,"line":44,"ref":".github/ISSUE_TEMPLATE/canonical-promotion.md#recommendation","title":"Recommendation"}],"line_refs":[".github/ISSUE_TEMPLATE/canonical-promotion.md:1"],"path_ref":".github/ISSUE_TEMPLATE/canonical-promotion.md"},"signs":{"attestation_ref":"","digest":"bcdd6efa3b08b2343d993b6ae746f81160b5dc1e78a86448b0d34f69f7086b28","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"658fc205fdab772a7a2ff6d634f703f89945c84ed4965ebec662ae5624379293","git_blob_id":"2e44df885a722febb9bd4e9b738a03cfb0a4ac85","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1c0d972ee49103af56fd608a","lineage_path":".github/ISSUE_TEMPLATE/config.yml","logical_id":"aoa:aoa-techniques:artifact:1c0d972ee49103af56fd608a","mime":"application/yaml","path":".github/ISSUE_TEMPLATE/config.yml","repo":"aoa-techniques","size_bytes":481,"version_id":"aoa:aoa-techniques:artifact-version:42cdd31c45296f42987a7478"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/ISSUE_TEMPLATE/config.yml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/ISSUE_TEMPLATE/config.yml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/ISSUE_TEMPLATE/config.yml:1"],"path_ref":".github/ISSUE_TEMPLATE/config.yml"},"signs":{"attestation_ref":"","digest":"658fc205fdab772a7a2ff6d634f703f89945c84ed4965ebec662ae5624379293","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9d4845cdafbac6af2cd450cafe069ba52f0d0241725203f2184dbc6a0f8b4175","git_blob_id":"18db679aed6fdf05bf55eab879289d5ba1316679","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:196c84a93a07a7c2622a6d37","lineage_path":".github/ISSUE_TEMPLATE/external-import-review.md","logical_id":"aoa:aoa-techniques:artifact:196c84a93a07a7c2622a6d37","mime":"text/markdown","path":".github/ISSUE_TEMPLATE/external-import-review.md","repo":"aoa-techniques","size_bytes":956,"version_id":"aoa:aoa-techniques:artifact-version:0e54ce3c8c5eaaef37489251"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".github/ISSUE_TEMPLATE/external-import-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/ISSUE_TEMPLATE/external-import-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"source","level":2,"line":7,"ref":".github/ISSUE_TEMPLATE/external-import-review.md#source","title":"Source"},{"anchor":"proposed-technique","level":2,"line":14,"ref":".github/ISSUE_TEMPLATE/external-import-review.md#proposed-technique","title":"Proposed technique"},{"anchor":"adaptation-summary","level":2,"line":22,"ref":".github/ISSUE_TEMPLATE/external-import-review.md#adaptation-summary","title":"Adaptation summary"},{"anchor":"validation-and-reuse","level":2,"line":29,"ref":".github/ISSUE_TEMPLATE/external-import-review.md#validation-and-reuse","title":"Validation and reuse"},{"anchor":"public-safety-review","level":2,"line":38,"ref":".github/ISSUE_TEMPLATE/external-import-review.md#public-safety-review","title":"Public-safety review"}],"line_refs":[".github/ISSUE_TEMPLATE/external-import-review.md:1"],"path_ref":".github/ISSUE_TEMPLATE/external-import-review.md"},"signs":{"attestation_ref":"","digest":"9d4845cdafbac6af2cd450cafe069ba52f0d0241725203f2184dbc6a0f8b4175","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"155e65f100ed61414b709a8fe74dcb393050a716a67c7caee8dcc5459cc6ac53","git_blob_id":"45bd3d99a1bc6a7cf82362b093ddc9ea5ddd2019","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a238084f3b16092d1ec2e4bb","lineage_path":".github/ISSUE_TEMPLATE/technique-proposal.md","logical_id":"aoa:aoa-techniques:artifact:a238084f3b16092d1ec2e4bb","mime":"text/markdown","path":".github/ISSUE_TEMPLATE/technique-proposal.md","repo":"aoa-techniques","size_bytes":911,"version_id":"aoa:aoa-techniques:artifact-version:9cb3c2bfe1f156a8b0989dcd"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".github/ISSUE_TEMPLATE/technique-proposal.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/ISSUE_TEMPLATE/technique-proposal.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"summary","level":2,"line":7,"ref":".github/ISSUE_TEMPLATE/technique-proposal.md#summary","title":"Summary"},{"anchor":"why-it-belongs-here","level":2,"line":11,"ref":".github/ISSUE_TEMPLATE/technique-proposal.md#why-it-belongs-here","title":"Why it belongs here"},{"anchor":"evidence-and-validation","level":2,"line":19,"ref":".github/ISSUE_TEMPLATE/technique-proposal.md#evidence-and-validation","title":"Evidence and validation"},{"anchor":"public-safety","level":2,"line":26,"ref":".github/ISSUE_TEMPLATE/technique-proposal.md#public-safety","title":"Public safety"},{"anchor":"expected-contribution-shape","level":2,"line":32,"ref":".github/ISSUE_TEMPLATE/technique-proposal.md#expected-contribution-shape","title":"Expected contribution shape"}],"line_refs":[".github/ISSUE_TEMPLATE/technique-proposal.md:1"],"path_ref":".github/ISSUE_TEMPLATE/technique-proposal.md"},"signs":{"attestation_ref":"","digest":"155e65f100ed61414b709a8fe74dcb393050a716a67c7caee8dcc5459cc6ac53","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"59b6b6199b3a988800c2de06a5076282ac3bf0e6e8c7f88eefead3d18b45824c","git_blob_id":"111f29b9ae586f481bd47a371497e311b5b279d4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:18813c86948efc57e661623d","lineage_path":".github/PULL_REQUEST_TEMPLATE.md","logical_id":"aoa:aoa-techniques:artifact:18813c86948efc57e661623d","mime":"text/markdown","path":".github/PULL_REQUEST_TEMPLATE.md","repo":"aoa-techniques","size_bytes":2634,"version_id":"aoa:aoa-techniques:artifact-version:ec06ba65ad83c081cb6f2c27"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":".github/PULL_REQUEST_TEMPLATE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/PULL_REQUEST_TEMPLATE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"summary","level":2,"line":1,"ref":".github/PULL_REQUEST_TEMPLATE.md#summary","title":"Summary"},{"anchor":"validation","level":2,"line":10,"ref":".github/PULL_REQUEST_TEMPLATE.md#validation","title":"Validation"},{"anchor":"notes","level":2,"line":17,"ref":".github/PULL_REQUEST_TEMPLATE.md#notes","title":"Notes"},{"anchor":"checklist","level":2,"line":43,"ref":".github/PULL_REQUEST_TEMPLATE.md#checklist","title":"Checklist"}],"line_refs":[".github/PULL_REQUEST_TEMPLATE.md:1"],"path_ref":".github/PULL_REQUEST_TEMPLATE.md"},"signs":{"attestation_ref":"","digest":"59b6b6199b3a988800c2de06a5076282ac3bf0e6e8c7f88eefead3d18b45824c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"17921ddde13fe05ea843c6b6cdbe18a09230821dc917485c789b03ec36b7b77b","git_blob_id":"be4f0b376dff090eee4bd9566706d59dee3abd3d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","lineage_path":".github/workflows/nightly-sentinel.yml","logical_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","mime":"application/yaml","path":".github/workflows/nightly-sentinel.yml","repo":"aoa-techniques","size_bytes":2558,"version_id":"aoa:aoa-techniques:artifact-version:0918eeda510a5b587d3f55b2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/workflows/nightly-sentinel.yml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/workflows/nightly-sentinel.yml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/workflows/nightly-sentinel.yml:1"],"path_ref":".github/workflows/nightly-sentinel.yml"},"signs":{"attestation_ref":"","digest":"17921ddde13fe05ea843c6b6cdbe18a09230821dc917485c789b03ec36b7b77b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"08969a15784b1e3c96ab8384c7692bd92bd886a36dda8a2216a00c65e9d330da","git_blob_id":"06bd9bfe1506ff0ec93a3dedf1d893f451ae97ee","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","lineage_path":".github/workflows/release-audit.yml","logical_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","mime":"application/yaml","path":".github/workflows/release-audit.yml","repo":"aoa-techniques","size_bytes":1072,"version_id":"aoa:aoa-techniques:artifact-version:a030b2ab3bedd5c5562257a1"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/workflows/release-audit.yml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/workflows/release-audit.yml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/workflows/release-audit.yml:1"],"path_ref":".github/workflows/release-audit.yml"},"signs":{"attestation_ref":"","digest":"08969a15784b1e3c96ab8384c7692bd92bd886a36dda8a2216a00c65e9d330da","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8ff20d917c3303b5b17370fb05cc992329e01425694033c459f52bd624695882","git_blob_id":"81f977bf88b4118a1ae1feb417fffb3caf4c3df3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","lineage_path":".github/workflows/repo-validation.yml","logical_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","mime":"application/yaml","path":".github/workflows/repo-validation.yml","repo":"aoa-techniques","size_bytes":1525,"version_id":"aoa:aoa-techniques:artifact-version:e36bdb5c019f87abb9e4389c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/workflows/repo-validation.yml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/workflows/repo-validation.yml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/workflows/repo-validation.yml:1"],"path_ref":".github/workflows/repo-validation.yml"},"signs":{"attestation_ref":"","digest":"8ff20d917c3303b5b17370fb05cc992329e01425694033c459f52bd624695882","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e7e25c393ad6b73c9f78754b5f4de36922156e7bf2f6c05b1c3b56478cf8b31d","git_blob_id":"b10576830031ff82b6ac027bc18ac89dbb73cc05","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","lineage_path":".github/workflows/nightly-sentinel.yml","logical_id":"aoa:aoa-techniques:artifact:e170c6c6c0457f3e420b254f","mime":"application/yaml","path":".github/workflows/nightly-sentinel.yml","repo":"aoa-techniques","size_bytes":3205,"version_id":"aoa:aoa-techniques:artifact-version:8cc18f35266876b9868ef9b6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/workflows/nightly-sentinel.yml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/workflows/nightly-sentinel.yml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/workflows/nightly-sentinel.yml:1"],"path_ref":".github/workflows/nightly-sentinel.yml"},"signs":{"attestation_ref":"","digest":"e7e25c393ad6b73c9f78754b5f4de36922156e7bf2f6c05b1c3b56478cf8b31d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"05667122ca3180e8a90056114bc95a8444b22c49c37cd688ccfc830ee5a8c555","git_blob_id":"b99ef56f914f2a2d458f56433a87e0ecd3457ebf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","lineage_path":".github/workflows/release-audit.yml","logical_id":"aoa:aoa-techniques:artifact:1e069fa70593cb526b7819fc","mime":"application/yaml","path":".github/workflows/release-audit.yml","repo":"aoa-techniques","size_bytes":1403,"version_id":"aoa:aoa-techniques:artifact-version:600a0055a5995ff11670cd74"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/workflows/release-audit.yml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/workflows/release-audit.yml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/workflows/release-audit.yml:1"],"path_ref":".github/workflows/release-audit.yml"},"signs":{"attestation_ref":"","digest":"05667122ca3180e8a90056114bc95a8444b22c49c37cd688ccfc830ee5a8c555","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"92f33b2bb1139a4803e801e05d41893a4d5df253d56454fb4b44aa3f4a723130","git_blob_id":"b499e24dfc9ae66b47f307433e02d2072e1719e3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","lineage_path":".github/workflows/repo-validation.yml","logical_id":"aoa:aoa-techniques:artifact:3affb923d04bc06217e2c3a1","mime":"application/yaml","path":".github/workflows/repo-validation.yml","repo":"aoa-techniques","size_bytes":1856,"version_id":"aoa:aoa-techniques:artifact-version:9f39983291c9f947a7d6413b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".github/workflows/repo-validation.yml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".github/workflows/repo-validation.yml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".github/workflows/repo-validation.yml:1"],"path_ref":".github/workflows/repo-validation.yml"},"signs":{"attestation_ref":"","digest":"92f33b2bb1139a4803e801e05d41893a4d5df253d56454fb4b44aa3f4a723130","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"owner_metadata","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"owner_metadata","classification":{"confidence":"high","primary_kind":"artifact"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"344eb56a6bcb0d6385373560f6071c3abc5d4016f1805d29d0f3e26b8baea3e9","git_blob_id":"ca1c897fc005e621839e4b77a54ca02680214d44","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bc37d034bad564583790a46f","lineage_path":".gitignore","logical_id":"aoa:aoa-techniques:artifact:bc37d034bad564583790a46f","mime":"text/plain","path":".gitignore","repo":"aoa-techniques","size_bytes":322,"version_id":"aoa:aoa-techniques:artifact-version:30c61c27aaf74a0aea56741c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":".gitignore"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":".gitignore","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":[".gitignore:1"],"path_ref":".gitignore"},"signs":{"attestation_ref":"","digest":"344eb56a6bcb0d6385373560f6071c3abc5d4016f1805d29d0f3e26b8baea3e9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e8f950fd581a75da8a284f43a7734046153e04dae046b10eff8bb39f26e98e3c","git_blob_id":"4ce0b734c26ee5725b168a395fc1a2dd89d7c1db","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","lineage_path":"AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","mime":"text/markdown","path":"AGENTS.md","repo":"aoa-techniques","size_bytes":11217,"version_id":"aoa:aoa-techniques:artifact-version:da8199a9bcf48f631900805a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":5,"ref":"AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":10,"ref":"AGENTS.md#role","title":"Role"},{"anchor":"owner-lane","level":2,"line":19,"ref":"AGENTS.md#owner-lane","title":"Owner lane"},{"anchor":"read-before-editing","level":2,"line":39,"ref":"AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"route-modes","level":2,"line":62,"ref":"AGENTS.md#route-modes","title":"Route modes"},{"anchor":"agents-stack-law","level":2,"line":76,"ref":"AGENTS.md#agents-stack-law","title":"AGENTS stack law"},{"anchor":"memory-route","level":2,"line":85,"ref":"AGENTS.md#memory-route","title":"Memory route"},{"anchor":"github-landing-workflow","level":2,"line":93,"ref":"AGENTS.md#github-landing-workflow","title":"GitHub landing workflow"},{"anchor":"post-change-route-review","level":2,"line":116,"ref":"AGENTS.md#post-change-route-review","title":"Post-change route review"},{"anchor":"boundaries","level":2,"line":137,"ref":"AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"route-away-when","level":2,"line":150,"ref":"AGENTS.md#route-away-when","title":"Route away when"},{"anchor":"validation","level":2,"line":157,"ref":"AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":181,"ref":"AGENTS.md#closeout","title":"Closeout"},{"anchor":"historical-reference","level":2,"line":188,"ref":"AGENTS.md#historical-reference","title":"Historical Reference"}],"line_refs":["AGENTS.md:1"],"path_ref":"AGENTS.md"},"signs":{"attestation_ref":"","digest":"e8f950fd581a75da8a284f43a7734046153e04dae046b10eff8bb39f26e98e3c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"changelog","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"caaf21212ff13194c7dcfff254e3c18eec3039197c5d97afb55448a4f096a5f5","git_blob_id":"4b0fb10d312700334d82ed7dc7dbd308cfa10226","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","lineage_path":"CHANGELOG.md","logical_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","mime":"text/markdown","path":"CHANGELOG.md","repo":"aoa-techniques","size_bytes":82014,"version_id":"aoa:aoa-techniques:artifact-version:5efc863533daa0d87e2b9815"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"CHANGELOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"CHANGELOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"changelog","level":1,"line":1,"ref":"CHANGELOG.md#changelog","title":"Changelog"},{"anchor":"unreleased","level":2,"line":7,"ref":"CHANGELOG.md#unreleased","title":"[Unreleased]"},{"anchor":"changed","level":3,"line":9,"ref":"CHANGELOG.md#changed","title":"Changed"},{"anchor":"045-2026-05-18","level":2,"line":62,"ref":"CHANGELOG.md#045-2026-05-18","title":"[0.4.5] - 2026-05-18"},{"anchor":"summary","level":3,"line":64,"ref":"CHANGELOG.md#summary","title":"Summary"},{"anchor":"added","level":3,"line":79,"ref":"CHANGELOG.md#added","title":"Added"},{"anchor":"changed-1","level":3,"line":115,"ref":"CHANGELOG.md#changed-1","title":"Changed"},{"anchor":"included-in-this-release","level":3,"line":919,"ref":"CHANGELOG.md#included-in-this-release","title":"Included in this release"},{"anchor":"validation","level":3,"line":946,"ref":"CHANGELOG.md#validation","title":"Validation"},{"anchor":"notes","level":3,"line":953,"ref":"CHANGELOG.md#notes","title":"Notes"},{"anchor":"042-2026-04-23","level":2,"line":968,"ref":"CHANGELOG.md#042-2026-04-23","title":"[0.4.2] - 2026-04-23"},{"anchor":"summary-1","level":3,"line":970,"ref":"CHANGELOG.md#summary-1","title":"Summary"},{"anchor":"added-1","level":3,"line":982,"ref":"CHANGELOG.md#added-1","title":"Added"},{"anchor":"changed-2","level":3,"line":995,"ref":"CHANGELOG.md#changed-2","title":"Changed"},{"anchor":"validation-1","level":3,"line":1003,"ref":"CHANGELOG.md#validation-1","title":"Validation"},{"anchor":"notes-1","level":3,"line":1010,"ref":"CHANGELOG.md#notes-1","title":"Notes"},{"anchor":"041-2026-04-19","level":2,"line":1015,"ref":"CHANGELOG.md#041-2026-04-19","title":"[0.4.1] - 2026-04-19"},{"anchor":"summary-2","level":3,"line":1017,"ref":"CHANGELOG.md#summary-2","title":"Summary"},{"anchor":"added-2","level":3,"line":1026,"ref":"CHANGELOG.md#added-2","title":"Added"},{"anchor":"changed-3","level":3,"line":1031,"ref":"CHANGELOG.md#changed-3","title":"Changed"},{"anchor":"validation-2","level":3,"line":1037,"ref":"CHANGELOG.md#validation-2","title":"Validation"},{"anchor":"notes-2","level":3,"line":1041,"ref":"CHANGELOG.md#notes-2","title":"Notes"},{"anchor":"040-2026-04-10","level":2,"line":1046,"ref":"CHANGELOG.md#040-2026-04-10","title":"[0.4.0] - 2026-04-10"},{"anchor":"summary-3","level":3,"line":1048,"ref":"CHANGELOG.md#summary-3","title":"Summary"},{"anchor":"validation-3","level":3,"line":1054,"ref":"CHANGELOG.md#validation-3","title":"Validation"},{"anchor":"notes-3","level":3,"line":1058,"ref":"CHANGELOG.md#notes-3","title":"Notes"},{"anchor":"added-3","level":3,"line":1062,"ref":"CHANGELOG.md#added-3","title":"Added"},{"anchor":"changed-4","level":3,"line":1071,"ref":"CHANGELOG.md#changed-4","title":"Changed"},{"anchor":"included-in-this-release-1","level":3,"line":1078,"ref":"CHANGELOG.md#included-in-this-release-1","title":"Included in this release"},{"anchor":"030-2026-04-01","level":2,"line":1090,"ref":"CHANGELOG.md#030-2026-04-01","title":"[0.3.0] - 2026-04-01"},{"anchor":"summary-4","level":3,"line":1096,"ref":"CHANGELOG.md#summary-4","title":"Summary"},{"anchor":"added-4","level":3,"line":1102,"ref":"CHANGELOG.md#added-4","title":"Added"},{"anchor":"changed-5","level":3,"line":1133,"ref":"CHANGELOG.md#changed-5","title":"Changed"},{"anchor":"included-in-this-release-2","level":3,"line":1141,"ref":"CHANGELOG.md#included-in-this-release-2","title":"Included in this release"},{"anchor":"validation-4","level":3,"line":1146,"ref":"CHANGELOG.md#validation-4","title":"Validation"},{"anchor":"notes-4","level":3,"line":1150,"ref":"CHANGELOG.md#notes-4","title":"Notes"},{"anchor":"020-2026-03-23","level":2,"line":1154,"ref":"CHANGELOG.md#020-2026-03-23","title":"[0.2.0] - 2026-03-23"},{"anchor":"added-5","level":3,"line":1160,"ref":"CHANGELOG.md#added-5","title":"Added"},{"anchor":"changed-6","level":3,"line":1169,"ref":"CHANGELOG.md#changed-6","title":"Changed"},{"anchor":"included-in-this-release-3","level":3,"line":1177,"ref":"CHANGELOG.md#included-in-this-release-3","title":"Included in this release"},{"anchor":"validation-5","level":3,"line":1186,"ref":"CHANGELOG.md#validation-5","title":"Validation"},{"anchor":"notes-5","level":3,"line":1191,"ref":"CHANGELOG.md#notes-5","title":"Notes"},{"anchor":"010-2026-03-17","level":2,"line":1197,"ref":"CHANGELOG.md#010-2026-03-17","title":"[0.1.0] - 2026-03-17"},{"anchor":"added-6","level":3,"line":1204,"ref":"CHANGELOG.md#added-6","title":"Added"},{"anchor":"included-in-this-release-4","level":3,"line":1214,"ref":"CHANGELOG.md#included-in-this-release-4","title":"Included in this release"},{"anchor":"validation-6","level":3,"line":1226,"ref":"CHANGELOG.md#validation-6","title":"Validation"},{"anchor":"notes-6","level":3,"line":1233,"ref":"CHANGELOG.md#notes-6","title":"Notes"}],"line_refs":["CHANGELOG.md:1"],"path_ref":"CHANGELOG.md"},"signs":{"attestation_ref":"","digest":"caaf21212ff13194c7dcfff254e3c18eec3039197c5d97afb55448a4f096a5f5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2baf594ab9f8e7ed6efb041872cfd5a9bf9e07becc167089b6fff6d0a9e6b6a6","git_blob_id":"a90ebdcae5e9ed7acc9d2bf19012e386815606bd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","lineage_path":"AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:a54ff182c7e8acf56acfd6e4","mime":"text/markdown","path":"AGENTS.md","repo":"aoa-techniques","size_bytes":11752,"version_id":"aoa:aoa-techniques:artifact-version:e63bdffd05b61be8f9bc7ef7"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":5,"ref":"AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":10,"ref":"AGENTS.md#role","title":"Role"},{"anchor":"owner-lane","level":2,"line":19,"ref":"AGENTS.md#owner-lane","title":"Owner lane"},{"anchor":"read-before-editing","level":2,"line":42,"ref":"AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"route-modes","level":2,"line":66,"ref":"AGENTS.md#route-modes","title":"Route modes"},{"anchor":"agents-stack-law","level":2,"line":81,"ref":"AGENTS.md#agents-stack-law","title":"AGENTS stack law"},{"anchor":"memory-route","level":2,"line":90,"ref":"AGENTS.md#memory-route","title":"Memory route"},{"anchor":"github-landing-workflow","level":2,"line":98,"ref":"AGENTS.md#github-landing-workflow","title":"GitHub landing workflow"},{"anchor":"post-change-route-review","level":2,"line":121,"ref":"AGENTS.md#post-change-route-review","title":"Post-change route review"},{"anchor":"boundaries","level":2,"line":142,"ref":"AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"route-away-when","level":2,"line":157,"ref":"AGENTS.md#route-away-when","title":"Route away when"},{"anchor":"validation","level":2,"line":164,"ref":"AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":188,"ref":"AGENTS.md#closeout","title":"Closeout"},{"anchor":"historical-reference","level":2,"line":195,"ref":"AGENTS.md#historical-reference","title":"Historical Reference"}],"line_refs":["AGENTS.md:1"],"path_ref":"AGENTS.md"},"signs":{"attestation_ref":"","digest":"2baf594ab9f8e7ed6efb041872cfd5a9bf9e07becc167089b6fff6d0a9e6b6a6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"changelog","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7c49ca5d70522727e2c42ad30c6982df3e4b4664ce28319d0bb4b68117990a5a","git_blob_id":"2b22d18e27ae14a227cfd809f8998fa2c45a396a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","lineage_path":"CHANGELOG.md","logical_id":"aoa:aoa-techniques:artifact:06572a96a58dc510037d5efa","mime":"text/markdown","path":"CHANGELOG.md","repo":"aoa-techniques","size_bytes":81850,"version_id":"aoa:aoa-techniques:artifact-version:2fffaeaa203d636b9eec9f12"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"CHANGELOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"CHANGELOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"changelog","level":1,"line":1,"ref":"CHANGELOG.md#changelog","title":"Changelog"},{"anchor":"unreleased","level":2,"line":7,"ref":"CHANGELOG.md#unreleased","title":"[Unreleased]"},{"anchor":"changed","level":3,"line":9,"ref":"CHANGELOG.md#changed","title":"Changed"},{"anchor":"045-2026-05-18","level":2,"line":65,"ref":"CHANGELOG.md#045-2026-05-18","title":"[0.4.5] - 2026-05-18"},{"anchor":"summary","level":3,"line":67,"ref":"CHANGELOG.md#summary","title":"Summary"},{"anchor":"added","level":3,"line":82,"ref":"CHANGELOG.md#added","title":"Added"},{"anchor":"changed-1","level":3,"line":118,"ref":"CHANGELOG.md#changed-1","title":"Changed"},{"anchor":"included-in-this-release","level":3,"line":922,"ref":"CHANGELOG.md#included-in-this-release","title":"Included in this release"},{"anchor":"validation","level":3,"line":949,"ref":"CHANGELOG.md#validation","title":"Validation"},{"anchor":"notes","level":3,"line":956,"ref":"CHANGELOG.md#notes","title":"Notes"},{"anchor":"042-2026-04-23","level":2,"line":971,"ref":"CHANGELOG.md#042-2026-04-23","title":"[0.4.2] - 2026-04-23"},{"anchor":"summary-1","level":3,"line":973,"ref":"CHANGELOG.md#summary-1","title":"Summary"},{"anchor":"added-1","level":3,"line":985,"ref":"CHANGELOG.md#added-1","title":"Added"},{"anchor":"changed-2","level":3,"line":998,"ref":"CHANGELOG.md#changed-2","title":"Changed"},{"anchor":"validation-1","level":3,"line":1006,"ref":"CHANGELOG.md#validation-1","title":"Validation"},{"anchor":"notes-1","level":3,"line":1013,"ref":"CHANGELOG.md#notes-1","title":"Notes"},{"anchor":"041-2026-04-19","level":2,"line":1018,"ref":"CHANGELOG.md#041-2026-04-19","title":"[0.4.1] - 2026-04-19"},{"anchor":"summary-2","level":3,"line":1020,"ref":"CHANGELOG.md#summary-2","title":"Summary"},{"anchor":"added-2","level":3,"line":1029,"ref":"CHANGELOG.md#added-2","title":"Added"},{"anchor":"changed-3","level":3,"line":1034,"ref":"CHANGELOG.md#changed-3","title":"Changed"},{"anchor":"validation-2","level":3,"line":1040,"ref":"CHANGELOG.md#validation-2","title":"Validation"},{"anchor":"notes-2","level":3,"line":1044,"ref":"CHANGELOG.md#notes-2","title":"Notes"},{"anchor":"040-2026-04-10","level":2,"line":1049,"ref":"CHANGELOG.md#040-2026-04-10","title":"[0.4.0] - 2026-04-10"},{"anchor":"summary-3","level":3,"line":1051,"ref":"CHANGELOG.md#summary-3","title":"Summary"},{"anchor":"validation-3","level":3,"line":1057,"ref":"CHANGELOG.md#validation-3","title":"Validation"},{"anchor":"notes-3","level":3,"line":1061,"ref":"CHANGELOG.md#notes-3","title":"Notes"},{"anchor":"added-3","level":3,"line":1065,"ref":"CHANGELOG.md#added-3","title":"Added"},{"anchor":"changed-4","level":3,"line":1074,"ref":"CHANGELOG.md#changed-4","title":"Changed"},{"anchor":"included-in-this-release-1","level":3,"line":1081,"ref":"CHANGELOG.md#included-in-this-release-1","title":"Included in this release"},{"anchor":"030-2026-04-01","level":2,"line":1093,"ref":"CHANGELOG.md#030-2026-04-01","title":"[0.3.0] - 2026-04-01"},{"anchor":"summary-4","level":3,"line":1099,"ref":"CHANGELOG.md#summary-4","title":"Summary"},{"anchor":"added-4","level":3,"line":1105,"ref":"CHANGELOG.md#added-4","title":"Added"},{"anchor":"changed-5","level":3,"line":1136,"ref":"CHANGELOG.md#changed-5","title":"Changed"},{"anchor":"included-in-this-release-2","level":3,"line":1144,"ref":"CHANGELOG.md#included-in-this-release-2","title":"Included in this release"},{"anchor":"validation-4","level":3,"line":1149,"ref":"CHANGELOG.md#validation-4","title":"Validation"},{"anchor":"notes-4","level":3,"line":1153,"ref":"CHANGELOG.md#notes-4","title":"Notes"},{"anchor":"020-2026-03-23","level":2,"line":1157,"ref":"CHANGELOG.md#020-2026-03-23","title":"[0.2.0] - 2026-03-23"},{"anchor":"added-5","level":3,"line":1163,"ref":"CHANGELOG.md#added-5","title":"Added"},{"anchor":"changed-6","level":3,"line":1172,"ref":"CHANGELOG.md#changed-6","title":"Changed"},{"anchor":"included-in-this-release-3","level":3,"line":1180,"ref":"CHANGELOG.md#included-in-this-release-3","title":"Included in this release"},{"anchor":"validation-5","level":3,"line":1189,"ref":"CHANGELOG.md#validation-5","title":"Validation"},{"anchor":"notes-5","level":3,"line":1194,"ref":"CHANGELOG.md#notes-5","title":"Notes"},{"anchor":"010-2026-03-17","level":2,"line":1200,"ref":"CHANGELOG.md#010-2026-03-17","title":"[0.1.0] - 2026-03-17"},{"anchor":"added-6","level":3,"line":1207,"ref":"CHANGELOG.md#added-6","title":"Added"},{"anchor":"included-in-this-release-4","level":3,"line":1217,"ref":"CHANGELOG.md#included-in-this-release-4","title":"Included in this release"},{"anchor":"validation-6","level":3,"line":1229,"ref":"CHANGELOG.md#validation-6","title":"Validation"},{"anchor":"notes-6","level":3,"line":1236,"ref":"CHANGELOG.md#notes-6","title":"Notes"}],"line_refs":["CHANGELOG.md:1"],"path_ref":"CHANGELOG.md"},"signs":{"attestation_ref":"","digest":"7c49ca5d70522727e2c42ad30c6982df3e4b4664ce28319d0bb4b68117990a5a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"df287641481eea425003be6f3ca02b958e6e82763cb6248ea4ed21fd8dddd7ae","git_blob_id":"0766025e3777e9b156ea85245e78f9b368298898","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:91d16dd057bd39f6431e90a1","lineage_path":"CHARTER.md","logical_id":"aoa:aoa-techniques:artifact:91d16dd057bd39f6431e90a1","mime":"text/markdown","path":"CHARTER.md","repo":"aoa-techniques","size_bytes":5336,"version_id":"aoa:aoa-techniques:artifact-version:1ab1972e3362f5cf69edc3b6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"CHARTER.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"CHARTER.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-techniques-charter","level":1,"line":1,"ref":"CHARTER.md#aoa-techniques-charter","title":"aoa-techniques Charter"},{"anchor":"purpose","level":2,"line":3,"ref":"CHARTER.md#purpose","title":"Purpose"},{"anchor":"authority-boundary","level":2,"line":15,"ref":"CHARTER.md#authority-boundary","title":"Authority Boundary"},{"anchor":"mission","level":2,"line":26,"ref":"CHARTER.md#mission","title":"Mission"},{"anchor":"what-this-repository-owns","level":2,"line":43,"ref":"CHARTER.md#what-this-repository-owns","title":"What This Repository Owns"},{"anchor":"routed-to-stronger-owners","level":2,"line":56,"ref":"CHARTER.md#routed-to-stronger-owners","title":"Routed To Stronger Owners"},{"anchor":"canon-discipline","level":2,"line":72,"ref":"CHARTER.md#canon-discipline","title":"Canon Discipline"},{"anchor":"review-rule","level":2,"line":90,"ref":"CHARTER.md#review-rule","title":"Review Rule"}],"line_refs":["CHARTER.md:1"],"path_ref":"CHARTER.md"},"signs":{"attestation_ref":"","digest":"df287641481eea425003be6f3ca02b958e6e82763cb6248ea4ed21fd8dddd7ae","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"75b3203a9f5560c31909041cb3c3ee1d6bd3e62977b409f919463e3d027c489f","git_blob_id":"7c4839d4e80d1424b3b5fef780c6c388662f775b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ffdbe3a1e7ee93cacfc080b6","lineage_path":"CODE_OF_CONDUCT.md","logical_id":"aoa:aoa-techniques:artifact:ffdbe3a1e7ee93cacfc080b6","mime":"text/markdown","path":"CODE_OF_CONDUCT.md","repo":"aoa-techniques","size_bytes":684,"version_id":"aoa:aoa-techniques:artifact-version:4ac2e6edb2b1352798e94a5c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"CODE_OF_CONDUCT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"CODE_OF_CONDUCT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"code-of-conduct","level":1,"line":1,"ref":"CODE_OF_CONDUCT.md#code-of-conduct","title":"Code of Conduct"},{"anchor":"our-standard","level":2,"line":3,"ref":"CODE_OF_CONDUCT.md#our-standard","title":"Our standard"},{"anchor":"enforcement","level":2,"line":23,"ref":"CODE_OF_CONDUCT.md#enforcement","title":"Enforcement"}],"line_refs":["CODE_OF_CONDUCT.md:1"],"path_ref":"CODE_OF_CONDUCT.md"},"signs":{"attestation_ref":"","digest":"75b3203a9f5560c31909041cb3c3ee1d6bd3e62977b409f919463e3d027c489f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f7e4f4007a7d94fcb13f5dbb64cfe05eab2e24af82e714d425a86bf5ae7cc161","git_blob_id":"8cea1b45f919ad62d61fefc44894c3f53f5ea4f4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:eca12c0a30e25b4b46522ebf","lineage_path":"CONTRIBUTING.md","logical_id":"aoa:aoa-techniques:artifact:eca12c0a30e25b4b46522ebf","mime":"text/markdown","path":"CONTRIBUTING.md","repo":"aoa-techniques","size_bytes":5775,"version_id":"aoa:aoa-techniques:artifact-version:70a3ce989a2ebd4b046e5af0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"CONTRIBUTING.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"CONTRIBUTING.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"contributing-to-aoa-techniques","level":1,"line":1,"ref":"CONTRIBUTING.md#contributing-to-aoa-techniques","title":"Contributing to aoa-techniques"},{"anchor":"what-belongs-here","level":2,"line":5,"ref":"CONTRIBUTING.md#what-belongs-here","title":"What belongs here"},{"anchor":"before-opening-a-pr","level":2,"line":20,"ref":"CONTRIBUTING.md#before-opening-a-pr","title":"Before opening a PR"},{"anchor":"external-provenance","level":2,"line":49,"ref":"CONTRIBUTING.md#external-provenance","title":"External provenance"},{"anchor":"github-intake-surfaces","level":2,"line":66,"ref":"CONTRIBUTING.md#github-intake-surfaces","title":"GitHub intake surfaces"},{"anchor":"preferred-pr-scope","level":2,"line":99,"ref":"CONTRIBUTING.md#preferred-pr-scope","title":"Preferred PR scope"},{"anchor":"recommended-pr-title-format","level":2,"line":106,"ref":"CONTRIBUTING.md#recommended-pr-title-format","title":"Recommended PR title format"},{"anchor":"review-criteria","level":2,"line":115,"ref":"CONTRIBUTING.md#review-criteria","title":"Review criteria"},{"anchor":"status-transitions","level":2,"line":126,"ref":"CONTRIBUTING.md#status-transitions","title":"Status transitions"},{"anchor":"promoted-canonical","level":3,"line":128,"ref":"CONTRIBUTING.md#promoted-canonical","title":"promoted -> canonical"},{"anchor":"canonical-deprecated","level":3,"line":138,"ref":"CONTRIBUTING.md#canonical-deprecated","title":"canonical -> deprecated"},{"anchor":"security","level":2,"line":144,"ref":"CONTRIBUTING.md#security","title":"Security"}],"line_refs":["CONTRIBUTING.md:1"],"path_ref":"CONTRIBUTING.md"},"signs":{"attestation_ref":"","digest":"f7e4f4007a7d94fcb13f5dbb64cfe05eab2e24af82e714d425a86bf5ae7cc161","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"design_agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c2b3ca0c8941b88591d527f7f8c407860f7fe35eb3920e0abe9ea0d599e2d78d","git_blob_id":"cd4b41c3cde106069ab4e01abbe704a390124613","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:42d9f271dea9edd048f8e120","lineage_path":"DESIGN.AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:42d9f271dea9edd048f8e120","mime":"text/markdown","path":"DESIGN.AGENTS.md","repo":"aoa-techniques","size_bytes":6698,"version_id":"aoa:aoa-techniques:artifact-version:5aeb638d2529232edb16bad0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"DESIGN.AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"DESIGN.AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-techniques-agent-surface-design","level":1,"line":1,"ref":"DESIGN.AGENTS.md#aoa-techniques-agent-surface-design","title":"aoa-techniques Agent Surface Design"},{"anchor":"role","level":2,"line":3,"ref":"DESIGN.AGENTS.md#role","title":"Role"},{"anchor":"design-thesis","level":2,"line":17,"ref":"DESIGN.AGENTS.md#design-thesis","title":"Design Thesis"},{"anchor":"design-as-appearance","level":2,"line":37,"ref":"DESIGN.AGENTS.md#design-as-appearance","title":"Design as Appearance"},{"anchor":"design-as-anatomy","level":2,"line":59,"ref":"DESIGN.AGENTS.md#design-as-anatomy","title":"Design as Anatomy"},{"anchor":"design-as-operation","level":2,"line":75,"ref":"DESIGN.AGENTS.md#design-as-operation","title":"Design as Operation"},{"anchor":"design-as-authority","level":2,"line":89,"ref":"DESIGN.AGENTS.md#design-as-authority","title":"Design as Authority"},{"anchor":"canonical-card-shape","level":2,"line":118,"ref":"DESIGN.AGENTS.md#canonical-card-shape","title":"Canonical Card Shape"},{"anchor":"migration-posture","level":2,"line":154,"ref":"DESIGN.AGENTS.md#migration-posture","title":"Migration Posture"},{"anchor":"design-principles","level":2,"line":169,"ref":"DESIGN.AGENTS.md#design-principles","title":"Design Principles"}],"line_refs":["DESIGN.AGENTS.md:1"],"path_ref":"DESIGN.AGENTS.md"},"signs":{"attestation_ref":"","digest":"c2b3ca0c8941b88591d527f7f8c407860f7fe35eb3920e0abe9ea0d599e2d78d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"design","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8b75f6fd8315e0ad560286be23a5b1bcdbd13473e3841ce9c1fc8b06375efbf8","git_blob_id":"1f7f4ec5b5049281523cf4e36e092df7fab64565","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","lineage_path":"DESIGN.md","logical_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","mime":"text/markdown","path":"DESIGN.md","repo":"aoa-techniques","size_bytes":6113,"version_id":"aoa:aoa-techniques:artifact-version:844a952d23aa16d9dc2910b4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"DESIGN.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"DESIGN.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-techniques-system-design","level":1,"line":1,"ref":"DESIGN.md#aoa-techniques-system-design","title":"aoa-techniques System Design"},{"anchor":"role","level":2,"line":3,"ref":"DESIGN.md#role","title":"Role"},{"anchor":"design-thesis","level":2,"line":15,"ref":"DESIGN.md#design-thesis","title":"Design Thesis"},{"anchor":"design-as-appearance","level":2,"line":28,"ref":"DESIGN.md#design-as-appearance","title":"Design as Appearance"},{"anchor":"design-as-anatomy","level":2,"line":44,"ref":"DESIGN.md#design-as-anatomy","title":"Design as Anatomy"},{"anchor":"design-as-operation","level":2,"line":60,"ref":"DESIGN.md#design-as-operation","title":"Design as Operation"},{"anchor":"design-as-aim","level":2,"line":75,"ref":"DESIGN.md#design-as-aim","title":"Design as Aim"},{"anchor":"design-principles","level":2,"line":92,"ref":"DESIGN.md#design-principles","title":"Design Principles"},{"anchor":"1-atomic-practice-before-orchestration","level":3,"line":94,"ref":"DESIGN.md#1-atomic-practice-before-orchestration","title":"1. Atomic practice before orchestration"},{"anchor":"2-source-before-generated","level":3,"line":99,"ref":"DESIGN.md#2-source-before-generated","title":"2. Source before generated"},{"anchor":"3-standalone-before-hidden-ecosystem-dependency","level":3,"line":104,"ref":"DESIGN.md#3-standalone-before-hidden-ecosystem-dependency","title":"3. Standalone before hidden ecosystem dependency"},{"anchor":"4-topology-before-sprawl","level":3,"line":109,"ref":"DESIGN.md#4-topology-before-sprawl","title":"4. Topology before sprawl"},{"anchor":"5-mechanics-before-promotion-pressure","level":3,"line":115,"ref":"DESIGN.md#5-mechanics-before-promotion-pressure","title":"5. Mechanics before promotion pressure"},{"anchor":"6-owner-split-before-absorption","level":3,"line":120,"ref":"DESIGN.md#6-owner-split-before-absorption","title":"6. Owner split before absorption"},{"anchor":"7-validation-before-confidence","level":3,"line":126,"ref":"DESIGN.md#7-validation-before-confidence","title":"7. Validation before confidence"},{"anchor":"8-agent-guidance-is-a-route-layer","level":3,"line":131,"ref":"DESIGN.md#8-agent-guidance-is-a-route-layer","title":"8. Agent guidance is a route layer"},{"anchor":"good-design-feels-like","level":2,"line":137,"ref":"DESIGN.md#good-design-feels-like","title":"Good Design Feels Like"},{"anchor":"bad-design-smells-like","level":2,"line":147,"ref":"DESIGN.md#bad-design-smells-like","title":"Bad Design Smells Like"},{"anchor":"relationship-to-other-root-surfaces","level":2,"line":158,"ref":"DESIGN.md#relationship-to-other-root-surfaces","title":"Relationship to Other Root Surfaces"},{"anchor":"use-by-agents","level":2,"line":167,"ref":"DESIGN.md#use-by-agents","title":"Use by Agents"}],"line_refs":["DESIGN.md:1"],"path_ref":"DESIGN.md"},"signs":{"attestation_ref":"","digest":"8b75f6fd8315e0ad560286be23a5b1bcdbd13473e3841ce9c1fc8b06375efbf8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"design","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d0beb1c14e292bcb38af7f015e592b61dba7dae9f066892e999e873b61ac1127","git_blob_id":"0d114aad1a7b71498b6d6e09341c0c99c5d86e33","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","lineage_path":"DESIGN.md","logical_id":"aoa:aoa-techniques:artifact:3dc5dd454e080eb849ee5efa","mime":"text/markdown","path":"DESIGN.md","repo":"aoa-techniques","size_bytes":6440,"version_id":"aoa:aoa-techniques:artifact-version:96b76b92c2ea4b55ead56ca9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"DESIGN.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"DESIGN.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-techniques-system-design","level":1,"line":1,"ref":"DESIGN.md#aoa-techniques-system-design","title":"aoa-techniques System Design"},{"anchor":"role","level":2,"line":3,"ref":"DESIGN.md#role","title":"Role"},{"anchor":"design-thesis","level":2,"line":15,"ref":"DESIGN.md#design-thesis","title":"Design Thesis"},{"anchor":"design-as-appearance","level":2,"line":28,"ref":"DESIGN.md#design-as-appearance","title":"Design as Appearance"},{"anchor":"design-as-anatomy","level":2,"line":44,"ref":"DESIGN.md#design-as-anatomy","title":"Design as Anatomy"},{"anchor":"design-as-operation","level":2,"line":61,"ref":"DESIGN.md#design-as-operation","title":"Design as Operation"},{"anchor":"design-as-aim","level":2,"line":76,"ref":"DESIGN.md#design-as-aim","title":"Design as Aim"},{"anchor":"design-principles","level":2,"line":93,"ref":"DESIGN.md#design-principles","title":"Design Principles"},{"anchor":"1-atomic-practice-before-orchestration","level":3,"line":95,"ref":"DESIGN.md#1-atomic-practice-before-orchestration","title":"1. Atomic practice before orchestration"},{"anchor":"2-source-before-generated","level":3,"line":100,"ref":"DESIGN.md#2-source-before-generated","title":"2. Source before generated"},{"anchor":"3-standalone-before-hidden-ecosystem-dependency","level":3,"line":105,"ref":"DESIGN.md#3-standalone-before-hidden-ecosystem-dependency","title":"3. Standalone before hidden ecosystem dependency"},{"anchor":"4-topology-before-sprawl","level":3,"line":110,"ref":"DESIGN.md#4-topology-before-sprawl","title":"4. Topology before sprawl"},{"anchor":"5-mechanics-before-promotion-pressure","level":3,"line":116,"ref":"DESIGN.md#5-mechanics-before-promotion-pressure","title":"5. Mechanics before promotion pressure"},{"anchor":"6-owner-split-before-absorption","level":3,"line":121,"ref":"DESIGN.md#6-owner-split-before-absorption","title":"6. Owner split before absorption"},{"anchor":"7-validation-before-confidence","level":3,"line":132,"ref":"DESIGN.md#7-validation-before-confidence","title":"7. Validation before confidence"},{"anchor":"8-agent-guidance-is-a-route-layer","level":3,"line":137,"ref":"DESIGN.md#8-agent-guidance-is-a-route-layer","title":"8. Agent guidance is a route layer"},{"anchor":"good-design-feels-like","level":2,"line":143,"ref":"DESIGN.md#good-design-feels-like","title":"Good Design Feels Like"},{"anchor":"bad-design-smells-like","level":2,"line":153,"ref":"DESIGN.md#bad-design-smells-like","title":"Bad Design Smells Like"},{"anchor":"relationship-to-other-root-surfaces","level":2,"line":164,"ref":"DESIGN.md#relationship-to-other-root-surfaces","title":"Relationship to Other Root Surfaces"},{"anchor":"use-by-agents","level":2,"line":173,"ref":"DESIGN.md#use-by-agents","title":"Use by Agents"}],"line_refs":["DESIGN.md:1"],"path_ref":"DESIGN.md"},"signs":{"attestation_ref":"","digest":"d0beb1c14e292bcb38af7f015e592b61dba7dae9f066892e999e873b61ac1127","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"license","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"license","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0b81e2ea9cf9c447b3317b84e5bbaca9f3cf98a5d08ef8d754a3286f21c3392a","git_blob_id":"cb195e3fddfca17dd4bf334fe3b53d3d487a2c79","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c693279643b8cd5d248172d9","lineage_path":"LICENSE","logical_id":"aoa:aoa-techniques:artifact:c693279643b8cd5d248172d9","mime":"text/plain","path":"LICENSE","repo":"aoa-techniques","size_bytes":10775,"version_id":"aoa:aoa-techniques:artifact-version:2fb84d8e2342aa860af61102"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"LICENSE"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"LICENSE","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["LICENSE:1"],"path_ref":"LICENSE"},"signs":{"attestation_ref":"","digest":"0b81e2ea9cf9c447b3317b84e5bbaca9f3cf98a5d08ef8d754a3286f21c3392a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e382c891fa872f7681a665453b42e14bbf91537c84224f4d5f173c10c9959c56","git_blob_id":"f9741d734113f3522a6b1f9aa596e8ca303cb325","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f154afc903516acbc3b82fb5","lineage_path":"QUESTBOOK.md","logical_id":"aoa:aoa-techniques:artifact:f154afc903516acbc3b82fb5","mime":"text/markdown","path":"QUESTBOOK.md","repo":"aoa-techniques","size_bytes":3352,"version_id":"aoa:aoa-techniques:artifact-version:263cb372de519e9bc2c52164"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"QUESTBOOK.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"QUESTBOOK.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbookmd-aoa-techniques","level":1,"line":1,"ref":"QUESTBOOK.md#questbookmd-aoa-techniques","title":"QUESTBOOK.md — aoa-techniques"},{"anchor":"update-trigger","level":2,"line":27,"ref":"QUESTBOOK.md#update-trigger","title":"Update trigger"},{"anchor":"frontier","level":2,"line":45,"ref":"QUESTBOOK.md#frontier","title":"Frontier"},{"anchor":"near","level":2,"line":48,"ref":"QUESTBOOK.md#near","title":"Near"},{"anchor":"latent-parked","level":2,"line":54,"ref":"QUESTBOOK.md#latent-parked","title":"Latent / parked"},{"anchor":"harvest-candidates","level":2,"line":57,"ref":"QUESTBOOK.md#harvest-candidates","title":"Harvest candidates"},{"anchor":"backing-files","level":2,"line":62,"ref":"QUESTBOOK.md#backing-files","title":"Backing files"},{"anchor":"rule","level":2,"line":70,"ref":"QUESTBOOK.md#rule","title":"Rule"}],"line_refs":["QUESTBOOK.md:1"],"path_ref":"QUESTBOOK.md"},"signs":{"attestation_ref":"","digest":"e382c891fa872f7681a665453b42e14bbf91537c84224f4d5f173c10c9959c56","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5546bacae7c949fa8358ad1abbfcd74b4bd8c06f77239a456facb0d162e0de99","git_blob_id":"92a5b2f572d2693d51bf665ff447dbc20998bdc2","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","lineage_path":"README.md","logical_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","mime":"text/markdown","path":"README.md","repo":"aoa-techniques","size_bytes":8096,"version_id":"aoa:aoa-techniques:artifact-version:e0d5921cbaf9aca830e41b79"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-techniques","level":1,"line":1,"ref":"README.md#aoa-techniques","title":"aoa-techniques"},{"anchor":"what-this-repository-does","level":2,"line":16,"ref":"README.md#what-this-repository-does","title":"What This Repository Does"},{"anchor":"start-here","level":2,"line":37,"ref":"README.md#start-here","title":"Start Here"},{"anchor":"route-modes","level":2,"line":68,"ref":"README.md#route-modes","title":"Route Modes"},{"anchor":"technique-check","level":2,"line":80,"ref":"README.md#technique-check","title":"Technique Check"},{"anchor":"current-contour","level":2,"line":97,"ref":"README.md#current-contour","title":"Current Contour"},{"anchor":"practice-mechanics","level":2,"line":107,"ref":"README.md#practice-mechanics","title":"Practice Mechanics"},{"anchor":"technical-districts","level":2,"line":116,"ref":"README.md#technical-districts","title":"Technical Districts"},{"anchor":"machine-companions","level":2,"line":134,"ref":"README.md#machine-companions","title":"Machine Companions"},{"anchor":"working-rule","level":2,"line":152,"ref":"README.md#working-rule","title":"Working Rule"}],"line_refs":["README.md:1"],"path_ref":"README.md"},"signs":{"attestation_ref":"","digest":"5546bacae7c949fa8358ad1abbfcd74b4bd8c06f77239a456facb0d162e0de99","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"973df08abed27eb109f85dc678a9352a42f690076a06217fa13e0f0b424839d7","git_blob_id":"bfdee22e87f7b627be214915c5f0d57dfa0b6639","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","lineage_path":"README.md","logical_id":"aoa:aoa-techniques:artifact:b335630551682c19a781afeb","mime":"text/markdown","path":"README.md","repo":"aoa-techniques","size_bytes":8290,"version_id":"aoa:aoa-techniques:artifact-version:8f511f6952e46b2d3a8e9239"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-techniques","level":1,"line":1,"ref":"README.md#aoa-techniques","title":"aoa-techniques"},{"anchor":"what-this-repository-does","level":2,"line":16,"ref":"README.md#what-this-repository-does","title":"What This Repository Does"},{"anchor":"start-here","level":2,"line":37,"ref":"README.md#start-here","title":"Start Here"},{"anchor":"route-modes","level":2,"line":68,"ref":"README.md#route-modes","title":"Route Modes"},{"anchor":"technique-check","level":2,"line":81,"ref":"README.md#technique-check","title":"Technique Check"},{"anchor":"current-contour","level":2,"line":98,"ref":"README.md#current-contour","title":"Current Contour"},{"anchor":"practice-mechanics","level":2,"line":108,"ref":"README.md#practice-mechanics","title":"Practice Mechanics"},{"anchor":"technical-districts","level":2,"line":117,"ref":"README.md#technical-districts","title":"Technical Districts"},{"anchor":"machine-companions","level":2,"line":136,"ref":"README.md#machine-companions","title":"Machine Companions"},{"anchor":"working-rule","level":2,"line":154,"ref":"README.md#working-rule","title":"Working Rule"}],"line_refs":["README.md:1"],"path_ref":"README.md"},"signs":{"attestation_ref":"","digest":"973df08abed27eb109f85dc678a9352a42f690076a06217fa13e0f0b424839d7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"roadmap","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a0b4f23735d1407f706369cb3c436277d59bb1d6caf175515a68d6cb2e86776d","git_blob_id":"63b99fc7972ed07e6ddf61d2010e587987284fe9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","lineage_path":"ROADMAP.md","logical_id":"aoa:aoa-techniques:artifact:683343bdf93f55ed3cada861","mime":"text/markdown","path":"ROADMAP.md","repo":"aoa-techniques","size_bytes":11250,"version_id":"aoa:aoa-techniques:artifact-version:408ca46930477ee29395da51"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"ROADMAP.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"ROADMAP.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"roadmap","level":1,"line":1,"ref":"ROADMAP.md#roadmap","title":"Roadmap"},{"anchor":"authority","level":2,"line":9,"ref":"ROADMAP.md#authority","title":"Authority"},{"anchor":"update-rule","level":2,"line":44,"ref":"ROADMAP.md#update-rule","title":"Update Rule"},{"anchor":"current-direction","level":2,"line":54,"ref":"ROADMAP.md#current-direction","title":"Current Direction"},{"anchor":"current-checked-contour","level":2,"line":80,"ref":"ROADMAP.md#current-checked-contour","title":"Current Checked Contour"},{"anchor":"horizon-root-clarity","level":2,"line":117,"ref":"ROADMAP.md#horizon-root-clarity","title":"Horizon: Root Clarity"},{"anchor":"horizon-technique-atom","level":2,"line":129,"ref":"ROADMAP.md#horizon-technique-atom","title":"Horizon: Technique Atom"},{"anchor":"horizon-corpus-topology","level":2,"line":138,"ref":"ROADMAP.md#horizon-corpus-topology","title":"Horizon: Corpus Topology"},{"anchor":"horizon-corpus-tree","level":2,"line":151,"ref":"ROADMAP.md#horizon-corpus-tree","title":"Horizon: Corpus Tree"},{"anchor":"horizon-small-agent-usability","level":2,"line":162,"ref":"ROADMAP.md#horizon-small-agent-usability","title":"Horizon: Small-Agent Usability"},{"anchor":"horizon-mechanics-to-canon","level":2,"line":172,"ref":"ROADMAP.md#horizon-mechanics-to-canon","title":"Horizon: Mechanics To Canon"},{"anchor":"horizon-evidence-and-promotion","level":2,"line":182,"ref":"ROADMAP.md#horizon-evidence-and-promotion","title":"Horizon: Evidence And Promotion"},{"anchor":"horizon-standalone-portability","level":2,"line":191,"ref":"ROADMAP.md#horizon-standalone-portability","title":"Horizon: Standalone Portability"},{"anchor":"horizon-generated-companions","level":2,"line":199,"ref":"ROADMAP.md#horizon-generated-companions","title":"Horizon: Generated Companions"},{"anchor":"when-the-time-comes","level":2,"line":211,"ref":"ROADMAP.md#when-the-time-comes","title":"When The Time Comes"},{"anchor":"standing-direction","level":2,"line":231,"ref":"ROADMAP.md#standing-direction","title":"Standing Direction"}],"line_refs":["ROADMAP.md:1"],"path_ref":"ROADMAP.md"},"signs":{"attestation_ref":"","digest":"a0b4f23735d1407f706369cb3c436277d59bb1d6caf175515a68d6cb2e86776d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"security","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"security","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6f3a7dee9a9a09b7f389be59610a44bf12a907a78aa75191091bbb3caff072a7","git_blob_id":"94af07c18c0fbefb14b71e61865dafb2993fa7f4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f6ed156e4bf5c79168066246","lineage_path":"SECURITY.md","logical_id":"aoa:aoa-techniques:artifact:f6ed156e4bf5c79168066246","mime":"text/markdown","path":"SECURITY.md","repo":"aoa-techniques","size_bytes":894,"version_id":"aoa:aoa-techniques:artifact-version:dc08173f83b1193a39bf11c2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"SECURITY.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"SECURITY.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"securitymd","level":1,"line":1,"ref":"SECURITY.md#securitymd","title":"SECURITY.md"},{"anchor":"purpose","level":2,"line":3,"ref":"SECURITY.md#purpose","title":"Purpose"},{"anchor":"report-privately-if-you-find","level":2,"line":7,"ref":"SECURITY.md#report-privately-if-you-find","title":"Report privately if you find"},{"anchor":"do-not-post-publicly","level":2,"line":16,"ref":"SECURITY.md#do-not-post-publicly","title":"Do not post publicly"},{"anchor":"security-expectations-for-contributors","level":2,"line":24,"ref":"SECURITY.md#security-expectations-for-contributors","title":"Security expectations for contributors"},{"anchor":"public-hygiene-checklist","level":2,"line":32,"ref":"SECURITY.md#public-hygiene-checklist","title":"Public hygiene checklist"}],"line_refs":["SECURITY.md:1"],"path_ref":"SECURITY.md"},"signs":{"attestation_ref":"","digest":"6f3a7dee9a9a09b7f389be59610a44bf12a907a78aa75191091bbb3caff072a7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2084b736d15f8894f87db90d0274686bd45e40d834190657a30d3d6452bd72b4","git_blob_id":"a1b79d29a7fe3280795f23e87cf49465ba7655d9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f04f81f6c36ffeba6398f4aa","lineage_path":"TECHNIQUE_INDEX.md","logical_id":"aoa:aoa-techniques:artifact:f04f81f6c36ffeba6398f4aa","mime":"text/markdown","path":"TECHNIQUE_INDEX.md","repo":"aoa-techniques","size_bytes":27445,"version_id":"aoa:aoa-techniques:artifact-version:a8aaebb170cf44a3c5c71f5c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"TECHNIQUE_INDEX.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"TECHNIQUE_INDEX.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique_index","level":1,"line":1,"ref":"TECHNIQUE_INDEX.md#technique_index","title":"TECHNIQUE_INDEX"},{"anchor":"canonical-techniques","level":2,"line":5,"ref":"TECHNIQUE_INDEX.md#canonical-techniques","title":"Canonical techniques"},{"anchor":"promoted-techniques","level":2,"line":108,"ref":"TECHNIQUE_INDEX.md#promoted-techniques","title":"Promoted techniques"},{"anchor":"deprecated-techniques","level":2,"line":122,"ref":"TECHNIQUE_INDEX.md#deprecated-techniques","title":"Deprecated techniques"},{"anchor":"notes","level":2,"line":128,"ref":"TECHNIQUE_INDEX.md#notes","title":"Notes"}],"line_refs":["TECHNIQUE_INDEX.md:1"],"path_ref":"TECHNIQUE_INDEX.md"},"signs":{"attestation_ref":"","digest":"2084b736d15f8894f87db90d0274686bd45e40d834190657a30d3d6452bd72b4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4249336cd0715f26a08618b7667bd459a3339d9a7ab00fa0fdf6df3f62c35107","git_blob_id":"6666b05ed8b822a118605a4dd834254dac9ee072","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e0bf6e32145dd6f877587469","lineage_path":"config/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:e0bf6e32145dd6f877587469","mime":"text/markdown","path":"config/AGENTS.md","repo":"aoa-techniques","size_bytes":1947,"version_id":"aoa:aoa-techniques:artifact-version:7efeaecfe769cedaf2ecd28d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"config/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"config/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"config/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"config/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"config/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":22,"ref":"config/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":30,"ref":"config/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":38,"ref":"config/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":53,"ref":"config/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["config/AGENTS.md:1"],"path_ref":"config/AGENTS.md"},"signs":{"attestation_ref":"","digest":"4249336cd0715f26a08618b7667bd459a3339d9a7ab00fa0fdf6df3f62c35107","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"aoa_techniques_agents_mesh_v1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2190dec63c794d87f1dd62970c09bf2ed569ae2f9de9336600100809ee4dd8e3","git_blob_id":"c4541a9bb39aac9c9aad00153b075f5348afdb77","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","lineage_path":"config/agents_mesh.json","logical_id":"aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","mime":"application/json","path":"config/agents_mesh.json","repo":"aoa-techniques","size_bytes":4689,"version_id":"aoa:aoa-techniques:artifact-version:cbd99c65cea739e82c600e23"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"config/agents_mesh.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"config/agents_mesh.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["config/agents_mesh.json:1"],"path_ref":"config/agents_mesh.json"},"signs":{"attestation_ref":"","digest":"2190dec63c794d87f1dd62970c09bf2ed569ae2f9de9336600100809ee4dd8e3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"aoa_techniques_agents_mesh_v1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"73c9c9c5fc846e654890da47b2953adfb2d051f51befa93f9b7b71aa9f348135","git_blob_id":"df44444331a13baa0eddf41be3d1b11cd17da53e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","lineage_path":"config/agents_mesh.json","logical_id":"aoa:aoa-techniques:artifact:059dbc8b138cefbb4a820dea","mime":"application/json","path":"config/agents_mesh.json","repo":"aoa-techniques","size_bytes":4712,"version_id":"aoa:aoa-techniques:artifact-version:e6d2aa5f8006acc7da7208e2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"config/agents_mesh.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"config/agents_mesh.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["config/agents_mesh.json:1"],"path_ref":"config/agents_mesh.json"},"signs":{"attestation_ref":"","digest":"73c9c9c5fc846e654890da47b2953adfb2d051f51befa93f9b7b71aa9f348135","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"42492db0b1fa0118bd631cde0cde59deff1c9a528c8081f5ca24ac151c26707b","git_blob_id":"a8fc92864c1c844c548dde2feaaa734dbac66f7f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:78a8dfbaa559f938cc3b5b5b","lineage_path":"config/technique_kind_registry.yaml","logical_id":"aoa:aoa-techniques:artifact:78a8dfbaa559f938cc3b5b5b","mime":"application/yaml","path":"config/technique_kind_registry.yaml","repo":"aoa-techniques","size_bytes":7170,"version_id":"aoa:aoa-techniques:artifact-version:cb2fe6c1361e1c599e476da5"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"config/technique_kind_registry.yaml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"config/technique_kind_registry.yaml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["config/technique_kind_registry.yaml:1"],"path_ref":"config/technique_kind_registry.yaml"},"signs":{"attestation_ref":"","digest":"42492db0b1fa0118bd631cde0cde59deff1c9a528c8081f5ca24ac151c26707b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f401c0b77831fef1e8aa58ac5d891bae65b78bba220cbdb0cba18392f6b855f6","git_blob_id":"d76c79ed46ddcf9efe042b70712d7fa91ccb03b7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","lineage_path":"config/validation_lanes.json","logical_id":"aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","mime":"application/json","path":"config/validation_lanes.json","repo":"aoa-techniques","size_bytes":14235,"version_id":"aoa:aoa-techniques:artifact-version:8a78e665fd98ab94669895b8"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"config/validation_lanes.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"config/validation_lanes.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["config/validation_lanes.json:1"],"path_ref":"config/validation_lanes.json"},"signs":{"attestation_ref":"","digest":"f401c0b77831fef1e8aa58ac5d891bae65b78bba220cbdb0cba18392f6b855f6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"92d449faa490fc13a606e06c9bbe09caeb43c3b17e78427ee7554513e1d61f32","git_blob_id":"643999e6364f487e07013564d6d6606f2b6a1ead","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","lineage_path":"config/validation_lanes.json","logical_id":"aoa:aoa-techniques:artifact:44a533a030dd6a9abbeaa7fa","mime":"application/json","path":"config/validation_lanes.json","repo":"aoa-techniques","size_bytes":14423,"version_id":"aoa:aoa-techniques:artifact-version:ae26faab06c081cd14affeb4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"config/validation_lanes.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"config/validation_lanes.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["config/validation_lanes.json:1"],"path_ref":"config/validation_lanes.json"},"signs":{"attestation_ref":"","digest":"92d449faa490fc13a606e06c9bbe09caeb43c3b17e78427ee7554513e1d61f32","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"25501b6bd53ae906a645c06229c6870e4c1a64278e329667dde12630fe62acc9","git_blob_id":"a5a2c9addfd8bea6ec9aa948e1379004377de433","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d00743dc4e878f258330dead","lineage_path":"docs/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:d00743dc4e878f258330dead","mime":"text/markdown","path":"docs/AGENTS.md","repo":"aoa-techniques","size_bytes":2784,"version_id":"aoa:aoa-techniques:artifact-version:42d915c4657ca67e43804e9e"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"docs/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"docs/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"docs/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":17,"ref":"docs/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":33,"ref":"docs/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":46,"ref":"docs/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":63,"ref":"docs/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["docs/AGENTS.md:1"],"path_ref":"docs/AGENTS.md"},"signs":{"attestation_ref":"","digest":"25501b6bd53ae906a645c06229c6870e4c1a64278e329667dde12630fe62acc9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"dad13d2e9ebd3cf05eb0f3470766284146540cb4737ec51ae367d7612434c20c","git_blob_id":"2ca6cf0785ba6f438cd38b84181c0d0b533ff9cc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3f501b7b16e871d49ec9709d","lineage_path":"docs/DOMAIN_MAP.md","logical_id":"aoa:aoa-techniques:artifact:3f501b7b16e871d49ec9709d","mime":"text/markdown","path":"docs/DOMAIN_MAP.md","repo":"aoa-techniques","size_bytes":2424,"version_id":"aoa:aoa-techniques:artifact-version:de5e27e8105634d181fad8eb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/DOMAIN_MAP.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/DOMAIN_MAP.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"domain-map","level":1,"line":1,"ref":"docs/DOMAIN_MAP.md#domain-map","title":"Domain Map"},{"anchor":"current-domains","level":2,"line":10,"ref":"docs/DOMAIN_MAP.md#current-domains","title":"Current domains"},{"anchor":"domain-rules","level":2,"line":21,"ref":"docs/DOMAIN_MAP.md#domain-rules","title":"Domain rules"}],"line_refs":["docs/DOMAIN_MAP.md:1"],"path_ref":"docs/DOMAIN_MAP.md"},"signs":{"attestation_ref":"","digest":"dad13d2e9ebd3cf05eb0f3470766284146540cb4737ec51ae367d7612434c20c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f0c408204861629b1b2489dee5eddb209a1086d6c2f775c36aa45206ad757144","git_blob_id":"b69beac4def0516e87e87b5de5778c0024a8c51c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:564d64d6e09515e2490437b2","lineage_path":"docs/ECOSYSTEM_CONTEXT.md","logical_id":"aoa:aoa-techniques:artifact:564d64d6e09515e2490437b2","mime":"text/markdown","path":"docs/ECOSYSTEM_CONTEXT.md","repo":"aoa-techniques","size_bytes":2727,"version_id":"aoa:aoa-techniques:artifact-version:0ea8b3a7236eb24880cb0a97"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/ECOSYSTEM_CONTEXT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/ECOSYSTEM_CONTEXT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"ecosystem-context","level":1,"line":1,"ref":"docs/ECOSYSTEM_CONTEXT.md#ecosystem-context","title":"Ecosystem Context"},{"anchor":"why-this-repo-exists","level":2,"line":9,"ref":"docs/ECOSYSTEM_CONTEXT.md#why-this-repo-exists","title":"Why This Repo Exists"},{"anchor":"ontology-spine-inheritance","level":2,"line":23,"ref":"docs/ECOSYSTEM_CONTEXT.md#ontology-spine-inheritance","title":"Ontology Spine Inheritance"},{"anchor":"method-and-neighboring-layers","level":2,"line":39,"ref":"docs/ECOSYSTEM_CONTEXT.md#method-and-neighboring-layers","title":"Method And Neighboring Layers"},{"anchor":"boundary-reminder","level":2,"line":56,"ref":"docs/ECOSYSTEM_CONTEXT.md#boundary-reminder","title":"Boundary Reminder"}],"line_refs":["docs/ECOSYSTEM_CONTEXT.md:1"],"path_ref":"docs/ECOSYSTEM_CONTEXT.md"},"signs":{"attestation_ref":"","digest":"f0c408204861629b1b2489dee5eddb209a1086d6c2f775c36aa45206ad757144","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6ad5390bd12e01f8b4a1a5a166645a95639278fa4d5a49e71fe27a764383a7d7","git_blob_id":"734cdeecffee8ea1fc6116b3dfa07b0c2a6190b0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","lineage_path":"docs/README.md","logical_id":"aoa:aoa-techniques:artifact:0b5ca119d2be595aa307d345","mime":"text/markdown","path":"docs/README.md","repo":"aoa-techniques","size_bytes":11943,"version_id":"aoa:aoa-techniques:artifact-version:e0276bf01ff17d13cc3ca8df"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"documentation-map","level":1,"line":1,"ref":"docs/README.md#documentation-map","title":"Documentation Map"},{"anchor":"start-here","level":2,"line":13,"ref":"docs/README.md#start-here","title":"Start Here"},{"anchor":"root-docs","level":2,"line":28,"ref":"docs/README.md#root-docs","title":"Root Docs"},{"anchor":"districts","level":2,"line":43,"ref":"docs/README.md#districts","title":"Districts"},{"anchor":"reader-routes","level":2,"line":60,"ref":"docs/README.md#reader-routes","title":"Reader Routes"},{"anchor":"lift-anchors","level":2,"line":75,"ref":"docs/README.md#lift-anchors","title":"Lift Anchors"},{"anchor":"claim-routes","level":2,"line":88,"ref":"docs/README.md#claim-routes","title":"Claim Routes"},{"anchor":"change-routes","level":2,"line":100,"ref":"docs/README.md#change-routes","title":"Change Routes"},{"anchor":"recommended-reading-paths","level":2,"line":117,"ref":"docs/README.md#recommended-reading-paths","title":"Recommended Reading Paths"},{"anchor":"adjacent-routes","level":2,"line":138,"ref":"docs/README.md#adjacent-routes","title":"Adjacent Routes"},{"anchor":"notes","level":2,"line":157,"ref":"docs/README.md#notes","title":"Notes"}],"line_refs":["docs/README.md:1"],"path_ref":"docs/README.md"},"signs":{"attestation_ref":"","digest":"6ad5390bd12e01f8b4a1a5a166645a95639278fa4d5a49e71fe27a764383a7d7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e3ec75c3489a5208ca224d6e8d51e8482616f4effc615931193a8a5201817905","git_blob_id":"27024b038569e9b4c86a6d13ace172801c9b7a0f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8936340d2e7844f9c8b77f67","lineage_path":"docs/RELEASING.md","logical_id":"aoa:aoa-techniques:artifact:8936340d2e7844f9c8b77f67","mime":"text/markdown","path":"docs/RELEASING.md","repo":"aoa-techniques","size_bytes":5473,"version_id":"aoa:aoa-techniques:artifact-version:52bb01f703b26aa4412ece61"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/RELEASING.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/RELEASING.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"releasing-aoa-techniques","level":1,"line":1,"ref":"docs/RELEASING.md#releasing-aoa-techniques","title":"Releasing `aoa-techniques`"},{"anchor":"release-goals","level":2,"line":10,"ref":"docs/RELEASING.md#release-goals","title":"Release goals"},{"anchor":"recommended-release-flow","level":2,"line":15,"ref":"docs/RELEASING.md#recommended-release-flow","title":"Recommended release flow"},{"anchor":"generated-surface-checklist","level":2,"line":42,"ref":"docs/RELEASING.md#generated-surface-checklist","title":"Generated surface checklist"},{"anchor":"release-note-shape","level":2,"line":63,"ref":"docs/RELEASING.md#release-note-shape","title":"Release note shape"},{"anchor":"versioning-guidance","level":2,"line":70,"ref":"docs/RELEASING.md#versioning-guidance","title":"Versioning guidance"},{"anchor":"what-not-to-optimize-yet","level":2,"line":76,"ref":"docs/RELEASING.md#what-not-to-optimize-yet","title":"What not to optimize yet"},{"anchor":"current-stance","level":2,"line":82,"ref":"docs/RELEASING.md#current-stance","title":"Current stance"}],"line_refs":["docs/RELEASING.md:1"],"path_ref":"docs/RELEASING.md"},"signs":{"attestation_ref":"","digest":"e3ec75c3489a5208ca224d6e8d51e8482616f4effc615931193a8a5201817905","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"33ae3abf6584777520fd3127af969ab0d04348bc937f0f9731205316988a5715","git_blob_id":"b0a97cb41c9eaf368be2d4fd91d1c914f9c0d234","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","lineage_path":"docs/ROOT_SURFACE_LAW.md","logical_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","mime":"text/markdown","path":"docs/ROOT_SURFACE_LAW.md","repo":"aoa-techniques","size_bytes":8353,"version_id":"aoa:aoa-techniques:artifact-version:523b2d63ccaebc21daa338c8"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/ROOT_SURFACE_LAW.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/ROOT_SURFACE_LAW.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-surface-law","level":1,"line":1,"ref":"docs/ROOT_SURFACE_LAW.md#root-surface-law","title":"Root Surface Law"},{"anchor":"root-principle","level":2,"line":11,"ref":"docs/ROOT_SURFACE_LAW.md#root-principle","title":"Root Principle"},{"anchor":"docs-root-principle","level":2,"line":26,"ref":"docs/ROOT_SURFACE_LAW.md#docs-root-principle","title":"Docs-Root Principle"},{"anchor":"allowed-root-surfaces","level":2,"line":49,"ref":"docs/ROOT_SURFACE_LAW.md#allowed-root-surfaces","title":"Allowed Root Surfaces"},{"anchor":"surfaces-that-should-not-live-in-root","level":2,"line":61,"ref":"docs/ROOT_SURFACE_LAW.md#surfaces-that-should-not-live-in-root","title":"Surfaces That Should Not Live In Root"},{"anchor":"decision-procedure-before-adding-a-root-file","level":2,"line":76,"ref":"docs/ROOT_SURFACE_LAW.md#decision-procedure-before-adding-a-root-file","title":"Decision Procedure Before Adding A Root File"},{"anchor":"current-root-decisions","level":2,"line":95,"ref":"docs/ROOT_SURFACE_LAW.md#current-root-decisions","title":"Current Root Decisions"},{"anchor":"final-rule","level":2,"line":109,"ref":"docs/ROOT_SURFACE_LAW.md#final-rule","title":"Final Rule"}],"line_refs":["docs/ROOT_SURFACE_LAW.md:1"],"path_ref":"docs/ROOT_SURFACE_LAW.md"},"signs":{"attestation_ref":"","digest":"33ae3abf6584777520fd3127af969ab0d04348bc937f0f9731205316988a5715","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"36f32c805587a141ec7c36dca39a5835ac1de130bc6136dbc77f671e33c34ccb","git_blob_id":"15a74dad79357a7310c8649b8e9fb9eeac6d70a6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","lineage_path":"docs/ROOT_SURFACE_LAW.md","logical_id":"aoa:aoa-techniques:artifact:bcd6f8e331307b5e1ad6cc19","mime":"text/markdown","path":"docs/ROOT_SURFACE_LAW.md","repo":"aoa-techniques","size_bytes":8578,"version_id":"aoa:aoa-techniques:artifact-version:64aaed5446ed09a430f902b6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/ROOT_SURFACE_LAW.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/ROOT_SURFACE_LAW.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-surface-law","level":1,"line":1,"ref":"docs/ROOT_SURFACE_LAW.md#root-surface-law","title":"Root Surface Law"},{"anchor":"root-principle","level":2,"line":11,"ref":"docs/ROOT_SURFACE_LAW.md#root-principle","title":"Root Principle"},{"anchor":"docs-root-principle","level":2,"line":26,"ref":"docs/ROOT_SURFACE_LAW.md#docs-root-principle","title":"Docs-Root Principle"},{"anchor":"allowed-root-surfaces","level":2,"line":49,"ref":"docs/ROOT_SURFACE_LAW.md#allowed-root-surfaces","title":"Allowed Root Surfaces"},{"anchor":"surfaces-that-should-not-live-in-root","level":2,"line":61,"ref":"docs/ROOT_SURFACE_LAW.md#surfaces-that-should-not-live-in-root","title":"Surfaces That Should Not Live In Root"},{"anchor":"decision-procedure-before-adding-a-root-file","level":2,"line":76,"ref":"docs/ROOT_SURFACE_LAW.md#decision-procedure-before-adding-a-root-file","title":"Decision Procedure Before Adding A Root File"},{"anchor":"current-root-decisions","level":2,"line":95,"ref":"docs/ROOT_SURFACE_LAW.md#current-root-decisions","title":"Current Root Decisions"},{"anchor":"final-rule","level":2,"line":110,"ref":"docs/ROOT_SURFACE_LAW.md#final-rule","title":"Final Rule"}],"line_refs":["docs/ROOT_SURFACE_LAW.md:1"],"path_ref":"docs/ROOT_SURFACE_LAW.md"},"signs":{"attestation_ref":"","digest":"36f32c805587a141ec7c36dca39a5835ac1de130bc6136dbc77f671e33c34ccb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f83f94cc72c5d58a82e565e66feb1c65c68825bc858cd5d4c119c6e1d07931c6","git_blob_id":"c3dca5500cb2c5eb1a9bb58c89a5211539911440","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","lineage_path":"docs/START_HERE.md","logical_id":"aoa:aoa-techniques:artifact:3ff203f7e345b35e48a8c96a","mime":"text/markdown","path":"docs/START_HERE.md","repo":"aoa-techniques","size_bytes":6990,"version_id":"aoa:aoa-techniques:artifact-version:366da78a6fe16f498dd4c08b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/START_HERE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/START_HERE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"start-here","level":1,"line":1,"ref":"docs/START_HERE.md#start-here","title":"Start Here"},{"anchor":"what-this-repo-is","level":2,"line":9,"ref":"docs/START_HERE.md#what-this-repo-is","title":"What This Repo Is"},{"anchor":"if-you-need-one-technique-now","level":2,"line":27,"ref":"docs/START_HERE.md#if-you-need-one-technique-now","title":"If You Need One Technique Now"},{"anchor":"if-you-need-to-understand-maturity-and-review","level":2,"line":46,"ref":"docs/START_HERE.md#if-you-need-to-understand-maturity-and-review","title":"If You Need To Understand Maturity And Review"},{"anchor":"if-you-need-derived-surfaces","level":2,"line":60,"ref":"docs/START_HERE.md#if-you-need-derived-surfaces","title":"If You Need Derived Surfaces"},{"anchor":"current-corpus-posture","level":2,"line":74,"ref":"docs/START_HERE.md#current-corpus-posture","title":"Current Corpus Posture"},{"anchor":"repo-only-operating-contract","level":2,"line":89,"ref":"docs/START_HERE.md#repo-only-operating-contract","title":"Repo-Only Operating Contract"},{"anchor":"when-to-leave-this-repo","level":2,"line":101,"ref":"docs/START_HERE.md#when-to-leave-this-repo","title":"When To Leave This Repo"},{"anchor":"release-and-validation","level":2,"line":111,"ref":"docs/START_HERE.md#release-and-validation","title":"Release And Validation"}],"line_refs":["docs/START_HERE.md:1"],"path_ref":"docs/START_HERE.md"},"signs":{"attestation_ref":"","digest":"f83f94cc72c5d58a82e565e66feb1c65c68825bc858cd5d4c119c6e1d07931c6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1552053a44d3c80e31023fa34880ab4c75dc4ef497ab806be4b1b1a2aa48afe1","git_blob_id":"f9bb0b02c27816794620bd5a99baf0e2775734a6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:df5aa70387b8b66abd31b7c1","lineage_path":"docs/TECHNIQUE_ATOM_CONTRACT.md","logical_id":"aoa:aoa-techniques:artifact:df5aa70387b8b66abd31b7c1","mime":"text/markdown","path":"docs/TECHNIQUE_ATOM_CONTRACT.md","repo":"aoa-techniques","size_bytes":5515,"version_id":"aoa:aoa-techniques:artifact-version:0bc59c25f706eb1a375e709d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/TECHNIQUE_ATOM_CONTRACT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/TECHNIQUE_ATOM_CONTRACT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-atom-contract","level":1,"line":1,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#technique-atom-contract","title":"Technique Atom Contract"},{"anchor":"core-contract","level":2,"line":13,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#core-contract","title":"Core Contract"},{"anchor":"standalone-portability-target","level":2,"line":27,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#standalone-portability-target","title":"Standalone Portability Target"},{"anchor":"small-agent-target","level":2,"line":37,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#small-agent-target","title":"Small-Agent Target"},{"anchor":"scale-target","level":2,"line":47,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#scale-target","title":"Scale Target"},{"anchor":"not-a-skill","level":2,"line":62,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#not-a-skill","title":"Not A Skill"},{"anchor":"authoring-checks","level":2,"line":78,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#authoring-checks","title":"Authoring Checks"},{"anchor":"via-negativa-checks","level":3,"line":88,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#via-negativa-checks","title":"Via negativa checks"},{"anchor":"distillation-rule","level":2,"line":102,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#distillation-rule","title":"Distillation Rule"},{"anchor":"template-and-capsule-implication","level":2,"line":112,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#template-and-capsule-implication","title":"Template And Capsule Implication"},{"anchor":"review-outcome","level":2,"line":122,"ref":"docs/TECHNIQUE_ATOM_CONTRACT.md#review-outcome","title":"Review Outcome"}],"line_refs":["docs/TECHNIQUE_ATOM_CONTRACT.md:1"],"path_ref":"docs/TECHNIQUE_ATOM_CONTRACT.md"},"signs":{"attestation_ref":"","digest":"1552053a44d3c80e31023fa34880ab4c75dc4ef497ab806be4b1b1a2aa48afe1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"aae3f60876e0fea81fe34cd57b7fa4b9626a2633aa56429f672b1fa414ca0830","git_blob_id":"7fe4abf6374745887b6fa1eb33d33456ee35b83b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9f5122ba6b49b003ce4d99e8","lineage_path":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","logical_id":"aoa:aoa-techniques:artifact:9f5122ba6b49b003ce4d99e8","mime":"text/markdown","path":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","repo":"aoa-techniques","size_bytes":8580,"version_id":"aoa:aoa-techniques:artifact-version:17b2f453298703273bb44e98"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-topology-contract","level":1,"line":1,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#technique-topology-contract","title":"Technique Topology Contract"},{"anchor":"purpose","level":2,"line":10,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#purpose","title":"Purpose"},{"anchor":"topology-law","level":2,"line":22,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#topology-law","title":"Topology Law"},{"anchor":"axis-stack","level":2,"line":44,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#axis-stack","title":"Axis Stack"},{"anchor":"current-axes","level":2,"line":58,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#current-axes","title":"Current Axes"},{"anchor":"future-axes","level":2,"line":79,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#future-axes","title":"Future Axes"},{"anchor":"relation-topology","level":2,"line":115,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#relation-topology","title":"Relation Topology"},{"anchor":"growth-rules","level":2,"line":125,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#growth-rules","title":"Growth Rules"},{"anchor":"mechanics-interface","level":2,"line":137,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#mechanics-interface","title":"Mechanics Interface"},{"anchor":"next-honest-build-path","level":2,"line":149,"ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md#next-honest-build-path","title":"Next Honest Build Path"}],"line_refs":["docs/TECHNIQUE_TOPOLOGY_CONTRACT.md:1"],"path_ref":"docs/TECHNIQUE_TOPOLOGY_CONTRACT.md"},"signs":{"attestation_ref":"","digest":"aae3f60876e0fea81fe34cd57b7fa4b9626a2633aa56429f672b1fa414ca0830","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d4d9287e572fc65d394cd11363fd3090bad145dd1239ee207b6cde3d31a1984d","git_blob_id":"3ddac1da8fd2722704d9b1cc82a02af0bcfbb5b3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:79eeacf6b8500c3529e09a8e","lineage_path":"docs/TECHNIQUE_TREE_CONTRACT.md","logical_id":"aoa:aoa-techniques:artifact:79eeacf6b8500c3529e09a8e","mime":"text/markdown","path":"docs/TECHNIQUE_TREE_CONTRACT.md","repo":"aoa-techniques","size_bytes":7403,"version_id":"aoa:aoa-techniques:artifact-version:a07d904c5255d8f6bbbe6706"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/TECHNIQUE_TREE_CONTRACT.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/TECHNIQUE_TREE_CONTRACT.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-tree-contract","level":1,"line":1,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#technique-tree-contract","title":"Technique Tree Contract"},{"anchor":"purpose","level":2,"line":13,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#purpose","title":"Purpose"},{"anchor":"tree-law","level":2,"line":23,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#tree-law","title":"Tree Law"},{"anchor":"tree-stack","level":2,"line":37,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#tree-stack","title":"Tree Stack"},{"anchor":"current-trunks","level":2,"line":58,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#current-trunks","title":"Current Trunks"},{"anchor":"tree-versus-facets","level":2,"line":75,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#tree-versus-facets","title":"Tree Versus Facets"},{"anchor":"path-change-rules","level":2,"line":93,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#path-change-rules","title":"Path Change Rules"},{"anchor":"leaf-bundle-rules","level":2,"line":105,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#leaf-bundle-rules","title":"Leaf Bundle Rules"},{"anchor":"generated-projection-path","level":2,"line":119,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#generated-projection-path","title":"Generated Projection Path"},{"anchor":"stop-lines","level":2,"line":133,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#stop-lines","title":"Stop Lines"},{"anchor":"current-closeout","level":2,"line":142,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#current-closeout","title":"Current Closeout"},{"anchor":"next-honest-build-path","level":2,"line":163,"ref":"docs/TECHNIQUE_TREE_CONTRACT.md#next-honest-build-path","title":"Next Honest Build Path"}],"line_refs":["docs/TECHNIQUE_TREE_CONTRACT.md:1"],"path_ref":"docs/TECHNIQUE_TREE_CONTRACT.md"},"signs":{"attestation_ref":"","digest":"d4d9287e572fc65d394cd11363fd3090bad145dd1239ee207b6cde3d31a1984d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e701822f01613a64b36afc0314bfab791c3607a708ece4905f42355e0b0eabe9","git_blob_id":"1e76f2ac30f6570e97910f7631b04e18966b1ce4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","lineage_path":"docs/decisions/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","mime":"text/markdown","path":"docs/decisions/AGENTS.md","repo":"aoa-techniques","size_bytes":2821,"version_id":"aoa:aoa-techniques:artifact-version:b294523e46bebd0032c8b48b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"docs/decisions/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"docs/decisions/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"docs/decisions/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":17,"ref":"docs/decisions/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":29,"ref":"docs/decisions/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":43,"ref":"docs/decisions/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":73,"ref":"docs/decisions/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["docs/decisions/AGENTS.md:1"],"path_ref":"docs/decisions/AGENTS.md"},"signs":{"attestation_ref":"","digest":"e701822f01613a64b36afc0314bfab791c3607a708ece4905f42355e0b0eabe9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f3cbb0acbf4daa2717006fcc0007b8e5b89f5e8d59d9bd2f06163d08c178e1aa","git_blob_id":"c8222a8e82f68b3f36a362723b893c6a4ed68233","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","lineage_path":"docs/decisions/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:1a4fdefcef7bcd50a7d8b088","mime":"text/markdown","path":"docs/decisions/AGENTS.md","repo":"aoa-techniques","size_bytes":2672,"version_id":"aoa:aoa-techniques:artifact-version:5f8ab702bfb224ebcc8c5192"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"docs/decisions/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"docs/decisions/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"docs/decisions/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":17,"ref":"docs/decisions/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":29,"ref":"docs/decisions/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":43,"ref":"docs/decisions/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":71,"ref":"docs/decisions/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["docs/decisions/AGENTS.md:1"],"path_ref":"docs/decisions/AGENTS.md"},"signs":{"attestation_ref":"","digest":"f3cbb0acbf4daa2717006fcc0007b8e5b89f5e8d59d9bd2f06163d08c178e1aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"935f34d1b92cd35748ac1d98a86aead80661d67b8f3f67320f9a9fd89edf7108","git_blob_id":"8a794627f9a56b8ff43cc90053bb15258e1d7d8f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","lineage_path":"docs/decisions/2026-05-01-agon-active-legacy-split.md","logical_id":"aoa:aoa-techniques:artifact:939b92ee2a02b155da259bfc","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md","repo":"aoa-techniques","size_bytes":2160,"version_id":"aoa:aoa-techniques:artifact-version:a9a8fed438ca44af2ad316cd"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"split-agon-mechanics-into-active-parts-and-legacy-provenance","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md#split-agon-mechanics-into-active-parts-and-legacy-provenance","title":"Split Agon Mechanics Into Active Parts And Legacy Provenance"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md#context","title":"Context"},{"anchor":"options","level":2,"line":25,"ref":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md#options","title":"Options"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0001-agon-active-legacy-split.md"},"signs":{"attestation_ref":"","digest":"935f34d1b92cd35748ac1d98a86aead80661d67b8f3f67320f9a9fd89edf7108","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c0f1deccea5243a74e52b9141a8153d6adf30804c3655a285c3d456b4c48936e","git_blob_id":"fadbb8ce25810c5477694f5460ad2fe62914af12","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fdd58aeb6b4fafa71844c566","lineage_path":"docs/decisions/2026-05-01-agon-part-local-artifacts.md","logical_id":"aoa:aoa-techniques:artifact:fdd58aeb6b4fafa71844c566","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md","repo":"aoa-techniques","size_bytes":2440,"version_id":"aoa:aoa-techniques:artifact-version:b3317845376e3a31d794d205"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"move-agon-technical-artifacts-into-part-local-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md#move-agon-technical-artifacts-into-part-local-homes","title":"Move Agon Technical Artifacts Into Part-Local Homes"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md#context","title":"Context"},{"anchor":"options","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md#options","title":"Options"},{"anchor":"decision","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0002-agon-part-local-artifacts.md"},"signs":{"attestation_ref":"","digest":"c0f1deccea5243a74e52b9141a8153d6adf30804c3655a285c3d456b4c48936e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"05230f2c2c1237dd526d520c18749e874aa92351f47d6f5e5f362232f3886bdf","git_blob_id":"61ec573b70b1821ddcdd7757730b9d30f92dd9d5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:51af704d4fce18536bbf0d79","lineage_path":"docs/decisions/2026-05-01-audit-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:51af704d4fce18536bbf0d79","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md","repo":"aoa-techniques","size_bytes":2002,"version_id":"aoa:aoa-techniques:artifact-version:88625c3858cef44407342be4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md#audit-active-parts-split","title":"Audit Active Parts Split"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md#context","title":"Context"},{"anchor":"options","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md#options","title":"Options"},{"anchor":"decision","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":49,"ref":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0003-audit-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"05230f2c2c1237dd526d520c18749e874aa92351f47d6f5e5f362232f3886bdf","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -401,69 +401,69 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4dfb240cc118c202869589798a7f516971ff63b419ad8efa8422a9a8dd0d46e1","git_blob_id":"45827722eda2b4adaabeaa9fd9e30a95861dc258","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6ae513b765f8285d63a685c1","lineage_path":"docs/decisions/2026-05-01-distillation-cross-layer-candidate-registry.md","logical_id":"aoa:aoa-techniques:artifact:6ae513b765f8285d63a685c1","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md","repo":"aoa-techniques","size_bytes":2278,"version_id":"aoa:aoa-techniques:artifact-version:533051b046ffce768f493b9c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-cross-layer-candidate-registry","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md#distillation-cross-layer-candidate-registry","title":"Distillation Cross-Layer Candidate Registry"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md#context","title":"Context"},{"anchor":"decision","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":47,"ref":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0005-distillation-cross-layer-candidate-registry.md"},"signs":{"attestation_ref":"","digest":"4dfb240cc118c202869589798a7f516971ff63b419ad8efa8422a9a8dd0d46e1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"eeb3471999a0eafd2cd254e8f502ee8583e8b8a0ff8b8d10a58db413c3d8446d","git_blob_id":"f58122a53b6a456c24c0327a7c607d0f8a57c65d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9fe03959b607e5b273766019","lineage_path":"docs/decisions/2026-05-01-distillation-external-candidate-registry.md","logical_id":"aoa:aoa-techniques:artifact:9fe03959b607e5b273766019","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md","repo":"aoa-techniques","size_bytes":2113,"version_id":"aoa:aoa-techniques:artifact-version:6b51d1a3663fedbd4bafa636"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-external-candidate-registry","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md#distillation-external-candidate-registry","title":"Distillation External Candidate Registry"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md#context","title":"Context"},{"anchor":"decision","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0006-distillation-external-candidate-registry.md"},"signs":{"attestation_ref":"","digest":"eeb3471999a0eafd2cd254e8f502ee8583e8b8a0ff8b8d10a58db413c3d8446d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f735344271c5e69689dad57b0c9601aff26cbe11ed19c1c1a863c37af7ed3209","git_blob_id":"de24db0ef4cf739f5e216e978cbc0656f8a98231","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:06e9e8aaedfd37a6721abd79","lineage_path":"docs/decisions/2026-05-01-distillation-gate-alignment.md","logical_id":"aoa:aoa-techniques:artifact:06e9e8aaedfd37a6721abd79","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md","repo":"aoa-techniques","size_bytes":2424,"version_id":"aoa:aoa-techniques:artifact-version:656b684ec5e2e2cc54c0d1c7"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-gate-alignment","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md#distillation-gate-alignment","title":"Distillation Gate Alignment"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md#context","title":"Context"},{"anchor":"options","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md#options","title":"Options"},{"anchor":"decision","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":55,"ref":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0007-distillation-gate-alignment.md"},"signs":{"attestation_ref":"","digest":"f735344271c5e69689dad57b0c9601aff26cbe11ed19c1c1a863c37af7ed3209","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cccafeee249ad719747e282bbafe18a2d6eea24bcc11d89e429246e9c8731b94","git_blob_id":"ef192293eb3c80d818f3ee964d3e59b142333f1b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","lineage_path":"docs/decisions/2026-05-01-experience-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md","repo":"aoa-techniques","size_bytes":2079,"version_id":"aoa:aoa-techniques:artifact-version:3aa045c4fcfcb0d493050d3d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"experience-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#experience-active-parts-split","title":"Experience Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":60,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"cccafeee249ad719747e282bbafe18a2d6eea24bcc11d89e429246e9c8731b94","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"689883c866b6988d39cf5846897361391991286bb869312ecd4e79c175e34e09","git_blob_id":"7e9dfacf2c207a0b2522f91175c0d114ad1cf626","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","lineage_path":"docs/decisions/2026-05-01-growth-cycle-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md","repo":"aoa-techniques","size_bytes":2507,"version_id":"aoa:aoa-techniques:artifact-version:9ca0d75a655f3eb550895e3b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"growth-cycle-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#growth-cycle-active-parts-split","title":"Growth Cycle Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":68,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"689883c866b6988d39cf5846897361391991286bb869312ecd4e79c175e34e09","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0fa4c375fa4128f55772886416754d87a0a49d0508c2f0ae0a07f6884b4e8b40","git_blob_id":"79532693187e10ec64b27e7e552c9a2156a13747","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","lineage_path":"docs/decisions/2026-05-01-experience-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:f7080147a9b36e8aa1aa201f","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md","repo":"aoa-techniques","size_bytes":2029,"version_id":"aoa:aoa-techniques:artifact-version:e81aac42bca9b4b9debf98b8"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"experience-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#experience-active-parts-split","title":"Experience Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":60,"ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0008-experience-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"0fa4c375fa4128f55772886416754d87a0a49d0508c2f0ae0a07f6884b4e8b40","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1d0033380c8d1fcf2182cba16eee9f087041e13cb234d80c687f0475934204c5","git_blob_id":"2c0fdc87ab0c5a3f24fded3823dde3d51e2b47e6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","lineage_path":"docs/decisions/2026-05-01-growth-cycle-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:66c9da7139c879aa59436976","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md","repo":"aoa-techniques","size_bytes":2392,"version_id":"aoa:aoa-techniques:artifact-version:bb3bae28192127af01758417"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"growth-cycle-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#growth-cycle-active-parts-split","title":"Growth Cycle Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":68,"ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0009-growth-cycle-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"1d0033380c8d1fcf2182cba16eee9f087041e13cb234d80c687f0475934204c5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a0c585ce03b3a00ba98baaa661bf4c36a85cca31bda08226b9ba09fc98d8752f","git_blob_id":"50faf34b163161fcd8dc1768baff2c479d3172b8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a645a53577db8efd068433c5","lineage_path":"docs/decisions/2026-05-01-mechanics-boundary-language-correction.md","logical_id":"aoa:aoa-techniques:artifact:a645a53577db8efd068433c5","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md","repo":"aoa-techniques","size_bytes":1969,"version_id":"aoa:aoa-techniques:artifact-version:c0fb76aa67f30a5b456e0ce2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-boundary-language-correction","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md#mechanics-boundary-language-correction","title":"Mechanics Boundary Language Correction"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md#context","title":"Context"},{"anchor":"decision","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0010-mechanics-boundary-language-correction.md"},"signs":{"attestation_ref":"","digest":"a0c585ce03b3a00ba98baaa661bf4c36a85cca31bda08226b9ba09fc98d8752f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"86646cad93127ee7a8bdb7c8a082b0986e08d3c225db633e47aba75653b7fb96","git_blob_id":"dd26313ede259ce15d51c8171a01536c8a45505c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c2e10157e4040acd07ee7659","lineage_path":"docs/decisions/2026-05-01-mechanics-law-local-bridge-alignment.md","logical_id":"aoa:aoa-techniques:artifact:c2e10157e4040acd07ee7659","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md","repo":"aoa-techniques","size_bytes":1855,"version_id":"aoa:aoa-techniques:artifact-version:497c5c80715a5a3038b8812f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-boundary-posture-alignment","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md#mechanics-boundary-posture-alignment","title":"Mechanics Boundary Posture Alignment"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md#context","title":"Context"},{"anchor":"decision","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0011-mechanics-law-local-bridge-alignment.md"},"signs":{"attestation_ref":"","digest":"86646cad93127ee7a8bdb7c8a082b0986e08d3c225db633e47aba75653b7fb96","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"dff5d4aec952949cccb113b437d94b2b8f46406ca1fc1e56042eecfc26953782","git_blob_id":"8bbc428de13ec7599f5f1147e64953d38e4cdb62","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","lineage_path":"docs/decisions/2026-05-01-mechanics-owner-request-receipts.md","logical_id":"aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md","repo":"aoa-techniques","size_bytes":2146,"version_id":"aoa:aoa-techniques:artifact-version:420f48f3ac6483becd6f1344"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-owner-request-receipts","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#mechanics-owner-request-receipts","title":"Mechanics Owner Request Receipts"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md"},"signs":{"attestation_ref":"","digest":"dff5d4aec952949cccb113b437d94b2b8f46406ca1fc1e56042eecfc26953782","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d7af4bba7de90e199a2730ffcef5dce05a87aa7de4c3c9ea3b8ba44aef8a4481","git_blob_id":"dbb29b7196c123b6e2e4e02550b64da50e2f339f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","lineage_path":"docs/decisions/2026-05-01-mechanics-owner-request-receipts.md","logical_id":"aoa:aoa-techniques:artifact:15dc5a8bbb75af350385eaa3","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md","repo":"aoa-techniques","size_bytes":2156,"version_id":"aoa:aoa-techniques:artifact-version:1af37ff9b19a736dc3ddbb36"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-owner-request-receipts","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#mechanics-owner-request-receipts","title":"Mechanics Owner Request Receipts"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0012-mechanics-owner-request-receipts.md"},"signs":{"attestation_ref":"","digest":"d7af4bba7de90e199a2730ffcef5dce05a87aa7de4c3c9ea3b8ba44aef8a4481","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3a727a08cb795fd3ed16c33399fd6ae5ef45d97ab6c6f712d792c8d8f9da0a41","git_blob_id":"a222cf2a4be8b9e6b09328704904b7b13e69e66f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bafb21d6b5f0a0ecf11c99ca","lineage_path":"docs/decisions/2026-05-01-mechanics-surface-split.md","logical_id":"aoa:aoa-techniques:artifact:bafb21d6b5f0a0ecf11c99ca","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md","repo":"aoa-techniques","size_bytes":2397,"version_id":"aoa:aoa-techniques:artifact-version:782437cd508e38c84facf10d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"split-mechanics-surfaces-from-general-docs","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md#split-mechanics-surfaces-from-general-docs","title":"Split Mechanics Surfaces From General Docs"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0013-mechanics-surface-split.md"},"signs":{"attestation_ref":"","digest":"3a727a08cb795fd3ed16c33399fd6ae5ef45d97ab6c6f712d792c8d8f9da0a41","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"265f3156afffe27da663fa89a4af3931f1bc2f42a92f9cb1fa555340fb0cb903","git_blob_id":"1b0abd0a3a1002c09124b116bc9329d153f55fc0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","lineage_path":"docs/decisions/2026-05-01-method-growth-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md","repo":"aoa-techniques","size_bytes":1903,"version_id":"aoa:aoa-techniques:artifact-version:d6d434f5137ed5816c3db5cf"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#method-growth-active-parts-split","title":"Method-Growth Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":57,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"265f3156afffe27da663fa89a4af3931f1bc2f42a92f9cb1fa555340fb0cb903","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"125225bce69958dbd62dedd96ddd0efe60d8dd97f5a1bdcc0f3d5b2f018dd81c","git_blob_id":"1850478d0eb6ef2b337a63805b45bccc1d43f32e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","lineage_path":"docs/decisions/2026-05-01-method-growth-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:910010c180e4969fdaf5b366","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md","repo":"aoa-techniques","size_bytes":1850,"version_id":"aoa:aoa-techniques:artifact-version:3786fde4e272fea5f0c66dd9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#method-growth-active-parts-split","title":"Method-Growth Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":57,"ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0014-method-growth-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"125225bce69958dbd62dedd96ddd0efe60d8dd97f5a1bdcc0f3d5b2f018dd81c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ec30e2bf8274c8bbfde7616152dcf09292c233b05268e508545d2ad414c4f428","git_blob_id":"d1c867a9d4eddb59a4f529c7b609a32bfd55ffb8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3d786881b22173d939f0ab17","lineage_path":"docs/decisions/2026-05-01-recurrence-cross-layer-registry-observation.md","logical_id":"aoa:aoa-techniques:artifact:3d786881b22173d939f0ab17","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md","repo":"aoa-techniques","size_bytes":1914,"version_id":"aoa:aoa-techniques:artifact-version:d6b323101e575481e68ec849"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-cross-layer-registry-observation","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md#recurrence-cross-layer-registry-observation","title":"Recurrence Cross-Layer Registry Observation"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md#context","title":"Context"},{"anchor":"decision","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":40,"ref":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0015-recurrence-cross-layer-registry-observation.md"},"signs":{"attestation_ref":"","digest":"ec30e2bf8274c8bbfde7616152dcf09292c233b05268e508545d2ad414c4f428","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6398ec035d0f0e1656e15a6421b72b2c8bf42a25991d15820767e809e21d8365","git_blob_id":"854800fe6502bc9b166fba59caa1ae9edddaa4fb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e3e4a4873319fe4d1455d781","lineage_path":"docs/decisions/2026-05-01-standalone-portable-technique-posture.md","logical_id":"aoa:aoa-techniques:artifact:e3e4a4873319fe4d1455d781","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md","repo":"aoa-techniques","size_bytes":1802,"version_id":"aoa:aoa-techniques:artifact-version:fa72d40c32a7980b82f73f57"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"standalone-portable-technique-posture","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md#standalone-portable-technique-posture","title":"Standalone Portable Technique Posture"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0016-standalone-portable-technique-posture.md"},"signs":{"attestation_ref":"","digest":"6398ec035d0f0e1656e15a6421b72b2c8bf42a25991d15820767e809e21d8365","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a1242a4fa3694dff8e46b12427519b22be4ad66a3e9ec7b025c2dd7fc29134a0","git_blob_id":"a034c51ccac5d2e1d6d236dec807a0ebfafba961","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3ca81daef9bca21d83cd08a7","lineage_path":"docs/decisions/2026-05-01-technique-atom-contract.md","logical_id":"aoa:aoa-techniques:artifact:3ca81daef9bca21d83cd08a7","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md","repo":"aoa-techniques","size_bytes":2412,"version_id":"aoa:aoa-techniques:artifact-version:2000008efb23e5b848727446"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-atom-contract","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md#technique-atom-contract","title":"Technique Atom Contract"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md#context","title":"Context"},{"anchor":"options","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md#options","title":"Options"},{"anchor":"decision","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0017-technique-atom-contract.md"},"signs":{"attestation_ref":"","digest":"a1242a4fa3694dff8e46b12427519b22be4ad66a3e9ec7b025c2dd7fc29134a0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"17877b114b55fe0a808efd9170833792f0a13a12faa72b666a3a2b1992335e6e","git_blob_id":"03d0e158b120dec36ef02809b98703711bf7b2b7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:134373df2c095a53729fb244","lineage_path":"docs/decisions/2026-05-01-technique-topology-contract.md","logical_id":"aoa:aoa-techniques:artifact:134373df2c095a53729fb244","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md","repo":"aoa-techniques","size_bytes":2357,"version_id":"aoa:aoa-techniques:artifact-version:ccc480d69a35dcb6f8e12281"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-topology-contract","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md#technique-topology-contract","title":"Technique Topology Contract"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md#context","title":"Context"},{"anchor":"options","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md#options","title":"Options"},{"anchor":"decision","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0018-technique-topology-contract.md"},"signs":{"attestation_ref":"","digest":"17877b114b55fe0a808efd9170833792f0a13a12faa72b666a3a2b1992335e6e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"780275d89443040baebd603131b2a953380f1d7ee6bea9c0d7afa33eb4e1bcc6","git_blob_id":"448720538e0205112baf126e6d8f74315cef2176","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","lineage_path":"docs/decisions/2026-05-02-antifragility-active-legacy-split.md","logical_id":"aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md","repo":"aoa-techniques","size_bytes":2761,"version_id":"aoa:aoa-techniques:artifact-version:8a1fd5b48bf2d10f00eb3dc2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"antifragility-active-legacy-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#antifragility-active-legacy-split","title":"Antifragility Active Legacy Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#options-considered","title":"Options Considered"},{"anchor":"decision","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":68,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":81,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md"},"signs":{"attestation_ref":"","digest":"780275d89443040baebd603131b2a953380f1d7ee6bea9c0d7afa33eb4e1bcc6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"86a172779a80924732652221e6b1853ce267614845315b445ebf1e814bcd369a","git_blob_id":"ac13bea4f6c24147b70bb6f4eed97f29ac034bc7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","lineage_path":"docs/decisions/2026-05-02-recurrence-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md","repo":"aoa-techniques","size_bytes":2560,"version_id":"aoa:aoa-techniques:artifact-version:cc0696187d8494740036a3e5"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#recurrence-active-parts-split","title":"Recurrence Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":69,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"86a172779a80924732652221e6b1853ce267614845315b445ebf1e814bcd369a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"39fe416f32c18284f37b4e302f28618c6677de78bf2f89210f3032c64b42148c","git_blob_id":"1f69c27c4380de201ac3d4a0b4887f9729aae70c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc","lineage_path":"docs/decisions/2026-05-02-release-support-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md","repo":"aoa-techniques","size_bytes":2744,"version_id":"aoa:aoa-techniques:artifact-version:2e0ffb70bc8b08419d957e6a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"release-support-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#release-support-active-parts-split","title":"Release Support Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":71,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"39fe416f32c18284f37b4e302f28618c6677de78bf2f89210f3032c64b42148c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3d49ff887ced6763cffd46e514fde8dbc5d51da42fc990eb31648cfeaad912da","git_blob_id":"0e3bdc24dcf899c0b5a39abe97bc3a33bb429349","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4614e41d34def3148f269991","lineage_path":"docs/decisions/2026-05-03-boundary-bridge-candidate-mechanic.md","logical_id":"aoa:aoa-techniques:artifact:4614e41d34def3148f269991","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md","repo":"aoa-techniques","size_bytes":3112,"version_id":"aoa:aoa-techniques:artifact-version:bd87cba2ec7173c65d1262ba"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"boundary-bridge-candidate-mechanic","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#boundary-bridge-candidate-mechanic","title":"Boundary Bridge Candidate Mechanic"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#context","title":"Context"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":67,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":82,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md"},"signs":{"attestation_ref":"","digest":"3d49ff887ced6763cffd46e514fde8dbc5d51da42fc990eb31648cfeaad912da","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"14b43e9757b9e9197ae7b134db055a069c0a4a3d7de1909bd0b4850031aac2c4","git_blob_id":"0862b92a6bce4dc725d2c19315059fac12643233","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","lineage_path":"docs/decisions/2026-05-03-checkpoint-candidate-mechanic.md","logical_id":"aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md","repo":"aoa-techniques","size_bytes":2987,"version_id":"aoa:aoa-techniques:artifact-version:4fabf1813539fdc47852e4a0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"checkpoint-candidate-mechanic","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#checkpoint-candidate-mechanic","title":"Checkpoint Candidate Mechanic"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#context","title":"Context"},{"anchor":"decision","level":2,"line":36,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":79,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md"},"signs":{"attestation_ref":"","digest":"14b43e9757b9e9197ae7b134db055a069c0a4a3d7de1909bd0b4850031aac2c4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ab97c68fca4ee9c737654c8a95c1a0e7b6ec300eda8064c68babe926823e9888","git_blob_id":"1850f09b425e1ca8b59681759aba9060ccdd1ddb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","lineage_path":"docs/decisions/2026-05-03-distillation-agon-candidate-handoff.md","logical_id":"aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md","repo":"aoa-techniques","size_bytes":3265,"version_id":"aoa:aoa-techniques:artifact-version:e62bc661bf2e87ab8d3e9198"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-agon-candidate-handoff","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#distillation-agon-candidate-handoff","title":"Distillation Agon Candidate Handoff"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#context","title":"Context"},{"anchor":"decision","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":50,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":73,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md"},"signs":{"attestation_ref":"","digest":"ab97c68fca4ee9c737654c8a95c1a0e7b6ec300eda8064c68babe926823e9888","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f5322e55550acf4f71f233ebc10848b19f5755f9abfdb6280e573519c28da9cd","git_blob_id":"ee9fe8fcf07b5ac46a0de431ad7dbee1e97dd971","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","lineage_path":"docs/decisions/2026-05-03-mechanics-legacy-scaffold-bridge.md","logical_id":"aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md","repo":"aoa-techniques","size_bytes":2061,"version_id":"aoa:aoa-techniques:artifact-version:5ef24bde6a617df03ee89b44"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-legacy-scaffold-bridge","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#mechanics-legacy-scaffold-bridge","title":"Mechanics Legacy Scaffold Bridge"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#context","title":"Context"},{"anchor":"decision","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":66,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md"},"signs":{"attestation_ref":"","digest":"f5322e55550acf4f71f233ebc10848b19f5755f9abfdb6280e573519c28da9cd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"467d63b6d993d789bfc38ae43394e466fe5c98d71d927b84e513ee52353a5c66","git_blob_id":"993844ee85b2e845779eca505c8d89a075928612","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","lineage_path":"docs/decisions/2026-05-03-mechanics-package-card-standard.md","logical_id":"aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md","repo":"aoa-techniques","size_bytes":3600,"version_id":"aoa:aoa-techniques:artifact-version:230083afd657a5faa41f5bad"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-package-card-standard","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#mechanics-package-card-standard","title":"Mechanics Package Card Standard"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#context","title":"Context"},{"anchor":"options","level":2,"line":35,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#options","title":"Options"},{"anchor":"decision","level":2,"line":43,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":73,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":87,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md"},"signs":{"attestation_ref":"","digest":"467d63b6d993d789bfc38ae43394e466fe5c98d71d927b84e513ee52353a5c66","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"27194a7ec23a3abc5737e584ece0918bf12ef8ea5605269ea31b8bf59d227e4a","git_blob_id":"498395a3ee038e2bf2b1bda24e718394812f85b6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","lineage_path":"docs/decisions/2026-05-03-method-growth-obsolescence-route.md","logical_id":"aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md","repo":"aoa-techniques","size_bytes":2545,"version_id":"aoa:aoa-techniques:artifact-version:19f801d334bfe389a70c9927"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-obsolescence-route","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#method-growth-obsolescence-route","title":"Method-Growth Obsolescence Route"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#context","title":"Context"},{"anchor":"options","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#options","title":"Options"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":63,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md"},"signs":{"attestation_ref":"","digest":"27194a7ec23a3abc5737e584ece0918bf12ef8ea5605269ea31b8bf59d227e4a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d80b4772b65bad6cb05f8bd0da6e120aecf23650dde931201672f0d939ac3f0c","git_blob_id":"3b05fd937e1c9525b141ab82a332b84aa910e627","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","lineage_path":"docs/decisions/2026-05-03-method-growth-pattern-adoption-gate.md","logical_id":"aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md","repo":"aoa-techniques","size_bytes":2592,"version_id":"aoa:aoa-techniques:artifact-version:c8f24458f4a91bfba23ae57d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-pattern-adoption-gate","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#method-growth-pattern-adoption-gate","title":"Method-Growth Pattern Adoption Gate"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#context","title":"Context"},{"anchor":"options","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#options","title":"Options"},{"anchor":"decision","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md"},"signs":{"attestation_ref":"","digest":"d80b4772b65bad6cb05f8bd0da6e120aecf23650dde931201672f0d939ac3f0c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"605a26d80d137acab628f3c3ea938059909e622c6c6754dcce36fefe911d55aa","git_blob_id":"2a09e6217d4882c28e361a22ebfe7333932f3966","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","lineage_path":"docs/decisions/2026-05-03-method-growth-retention-review.md","logical_id":"aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md","repo":"aoa-techniques","size_bytes":2299,"version_id":"aoa:aoa-techniques:artifact-version:bf624ff929bf3e099c3b0b8c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-retention-review","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#method-growth-retention-review","title":"Method-Growth Retention Review"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#context","title":"Context"},{"anchor":"options","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#options","title":"Options"},{"anchor":"decision","level":2,"line":35,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":47,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":59,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md"},"signs":{"attestation_ref":"","digest":"605a26d80d137acab628f3c3ea938059909e622c6c6754dcce36fefe911d55aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3a61235def835c97fd5951deab5d900af2d16d827a7a0adefb217fc31416d6ba","git_blob_id":"170c6d9483d8daba3a3b2f97357e67d0ddf0acaf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","lineage_path":"docs/decisions/2026-05-03-method-growth-skill-proposal-handoff.md","logical_id":"aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md","repo":"aoa-techniques","size_bytes":2484,"version_id":"aoa:aoa-techniques:artifact-version:bf6263a4631816c49f30d702"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-skill-proposal-handoff","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#method-growth-skill-proposal-handoff","title":"Method-Growth Skill Proposal Handoff"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#context","title":"Context"},{"anchor":"options","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#options","title":"Options"},{"anchor":"decision","level":2,"line":35,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":49,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md"},"signs":{"attestation_ref":"","digest":"3a61235def835c97fd5951deab5d900af2d16d827a7a0adefb217fc31416d6ba","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"16d596dee8776147f05dd952af50411753d60257fcb978775667c3cc33e7c31a","git_blob_id":"e69b09b9816fe60410abcddcbf117de41c12e012","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","lineage_path":"docs/decisions/2026-05-03-questbook-candidate-mechanic.md","logical_id":"aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md","repo":"aoa-techniques","size_bytes":3277,"version_id":"aoa:aoa-techniques:artifact-version:f54476027ed68360bb03bc11"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-candidate-mechanic","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#questbook-candidate-mechanic","title":"Questbook Candidate Mechanic"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#context","title":"Context"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":71,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":84,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md"},"signs":{"attestation_ref":"","digest":"16d596dee8776147f05dd952af50411753d60257fcb978775667c3cc33e7c31a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5133852b93e3bda5f0a2cd57be95b4657878d25d597695fdbaf232f798d5d2ef","git_blob_id":"94fe521af4cabf9dc4838e85776ed02271562fbf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","lineage_path":"docs/decisions/2026-05-03-questbook-lane-first-source-store.md","logical_id":"aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md","repo":"aoa-techniques","size_bytes":1939,"version_id":"aoa:aoa-techniques:artifact-version:c66b9adda45089c17db94c4c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-lane-first-source-store","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#questbook-lane-first-source-store","title":"Questbook Lane-first Source Store"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md"},"signs":{"attestation_ref":"","digest":"5133852b93e3bda5f0a2cd57be95b4657878d25d597695fdbaf232f798d5d2ef","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"aa19044634a101cd89d206bf67bc825216083e4086a77511d04fc91aa7c9c6fc","git_blob_id":"360cae4aca56d6840ab42a28d722d6fb88245e35","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","lineage_path":"docs/decisions/2026-05-02-antifragility-active-legacy-split.md","logical_id":"aoa:aoa-techniques:artifact:9347f36b72284c1dc85d2b95","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md","repo":"aoa-techniques","size_bytes":2645,"version_id":"aoa:aoa-techniques:artifact-version:ab746dfc4736464da8562feb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"antifragility-active-legacy-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#antifragility-active-legacy-split","title":"Antifragility Active Legacy Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#options-considered","title":"Options Considered"},{"anchor":"decision","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":68,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":81,"ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0019-antifragility-active-legacy-split.md"},"signs":{"attestation_ref":"","digest":"aa19044634a101cd89d206bf67bc825216083e4086a77511d04fc91aa7c9c6fc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"18bcc95707f5b38c0ff2f67c3157dcbdd0f0bfb078c9b1492855e0525b32bf60","git_blob_id":"ec66f0220a6930cbbe8c0dbda4ee7569e71b451e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","lineage_path":"docs/decisions/2026-05-02-recurrence-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:147e1bd4f3723cc566fc2cd6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md","repo":"aoa-techniques","size_bytes":2407,"version_id":"aoa:aoa-techniques:artifact-version:53f5f2122b44d6980e3e47ba"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#recurrence-active-parts-split","title":"Recurrence Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":69,"ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0020-recurrence-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"18bcc95707f5b38c0ff2f67c3157dcbdd0f0bfb078c9b1492855e0525b32bf60","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6280482b51d535cb9978bb2975387adf80d98110e742a6f8c92755eac785101a","git_blob_id":"814c33388d3babbb5c1e2378d81bb6d7a3f1063d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc","lineage_path":"docs/decisions/2026-05-02-release-support-active-parts-split.md","logical_id":"aoa:aoa-techniques:artifact:fdad960302612c2bc69753dc","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md","repo":"aoa-techniques","size_bytes":2626,"version_id":"aoa:aoa-techniques:artifact-version:50ced0fc9a4a4ce4d87b2ede"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"release-support-active-parts-split","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#release-support-active-parts-split","title":"Release Support Active Parts Split"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#context","title":"Context"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":71,"ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0021-release-support-active-parts-split.md"},"signs":{"attestation_ref":"","digest":"6280482b51d535cb9978bb2975387adf80d98110e742a6f8c92755eac785101a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2f2d0f591b12942626320b0f7461bb97a6aed4e17fe78c0cc801a8e1ff3dd804","git_blob_id":"0024ab8ee4dcb97c4f78dea0efe61bb5146f75c4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4614e41d34def3148f269991","lineage_path":"docs/decisions/2026-05-03-boundary-bridge-candidate-mechanic.md","logical_id":"aoa:aoa-techniques:artifact:4614e41d34def3148f269991","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md","repo":"aoa-techniques","size_bytes":2994,"version_id":"aoa:aoa-techniques:artifact-version:11940ba177454c5a50bdec9f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"boundary-bridge-candidate-mechanic","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#boundary-bridge-candidate-mechanic","title":"Boundary Bridge Candidate Mechanic"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#context","title":"Context"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":67,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":82,"ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0022-boundary-bridge-candidate-mechanic.md"},"signs":{"attestation_ref":"","digest":"2f2d0f591b12942626320b0f7461bb97a6aed4e17fe78c0cc801a8e1ff3dd804","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"dd6919a049add62e1edd5bcdbc25ac13cf0d3cff65f0185fbaeae26ed0861235","git_blob_id":"a8cdd95aa7b6a4430ffcd00989b24dce36e7be2b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","lineage_path":"docs/decisions/2026-05-03-checkpoint-candidate-mechanic.md","logical_id":"aoa:aoa-techniques:artifact:7a2f1bf7fdb7561d742c9ec9","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md","repo":"aoa-techniques","size_bytes":2874,"version_id":"aoa:aoa-techniques:artifact-version:de48c5b5f6b3c3398e50cb13"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"checkpoint-candidate-mechanic","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#checkpoint-candidate-mechanic","title":"Checkpoint Candidate Mechanic"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#context","title":"Context"},{"anchor":"decision","level":2,"line":36,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":79,"ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0023-checkpoint-candidate-mechanic.md"},"signs":{"attestation_ref":"","digest":"dd6919a049add62e1edd5bcdbc25ac13cf0d3cff65f0185fbaeae26ed0861235","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"08233c6985ee6bb1ecccbdbfc5a14b7f6fc4199bc60be372ae140ee66d60bc5c","git_blob_id":"ca8b2cc4fb359e0bc0573530f5a13f57ddd6e291","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","lineage_path":"docs/decisions/2026-05-03-distillation-agon-candidate-handoff.md","logical_id":"aoa:aoa-techniques:artifact:0ea885b3861d2dc4374d2246","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md","repo":"aoa-techniques","size_bytes":2860,"version_id":"aoa:aoa-techniques:artifact-version:b33ab5069448eb9c76bc115a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-agon-candidate-handoff","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#distillation-agon-candidate-handoff","title":"Distillation Agon Candidate Handoff"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#context","title":"Context"},{"anchor":"decision","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":50,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":73,"ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0024-distillation-agon-candidate-handoff.md"},"signs":{"attestation_ref":"","digest":"08233c6985ee6bb1ecccbdbfc5a14b7f6fc4199bc60be372ae140ee66d60bc5c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e4511ebfabbb282e947fc4fedd2ccb0bf602788f4bb89ac5d1d0b3e42849006e","git_blob_id":"74052dc044201b75327467d442c6ffb6ef520ca7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","lineage_path":"docs/decisions/2026-05-03-mechanics-legacy-scaffold-bridge.md","logical_id":"aoa:aoa-techniques:artifact:9d47504d46b52519ac28e004","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md","repo":"aoa-techniques","size_bytes":1973,"version_id":"aoa:aoa-techniques:artifact-version:e9b822ddf71b1d7e5731c5cd"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-legacy-scaffold-bridge","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#mechanics-legacy-scaffold-bridge","title":"Mechanics Legacy Scaffold Bridge"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#context","title":"Context"},{"anchor":"decision","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":66,"ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0025-mechanics-legacy-scaffold-bridge.md"},"signs":{"attestation_ref":"","digest":"e4511ebfabbb282e947fc4fedd2ccb0bf602788f4bb89ac5d1d0b3e42849006e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3c740dcdb0f0dd6747d109fa952215db8e8ac92b133ad07dce228c56afa73f56","git_blob_id":"334538aed4668394ac05947115e84c1d7361c965","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","lineage_path":"docs/decisions/2026-05-03-mechanics-package-card-standard.md","logical_id":"aoa:aoa-techniques:artifact:953aa38f18288b54eece690b","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md","repo":"aoa-techniques","size_bytes":3535,"version_id":"aoa:aoa-techniques:artifact-version:7da36c3d2efdaef5c3d5cacb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-package-card-standard","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#mechanics-package-card-standard","title":"Mechanics Package Card Standard"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#context","title":"Context"},{"anchor":"options","level":2,"line":35,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#options","title":"Options"},{"anchor":"decision","level":2,"line":43,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":73,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":87,"ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0026-mechanics-package-card-standard.md"},"signs":{"attestation_ref":"","digest":"3c740dcdb0f0dd6747d109fa952215db8e8ac92b133ad07dce228c56afa73f56","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"22bf9e377f9b0c930042583d854eefe39b95f4c1568a4f593ee790b8778f3a96","git_blob_id":"d403650f805874e5b4a56a0257d8eebc5c7bbf26","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","lineage_path":"docs/decisions/2026-05-03-method-growth-obsolescence-route.md","logical_id":"aoa:aoa-techniques:artifact:7509581fdecfac52b10fbe11","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md","repo":"aoa-techniques","size_bytes":2555,"version_id":"aoa:aoa-techniques:artifact-version:8f11cb4e80d418da542e6b57"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-obsolescence-route","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#method-growth-obsolescence-route","title":"Method-Growth Obsolescence Route"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#context","title":"Context"},{"anchor":"options","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#options","title":"Options"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":63,"ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0027-method-growth-obsolescence-route.md"},"signs":{"attestation_ref":"","digest":"22bf9e377f9b0c930042583d854eefe39b95f4c1568a4f593ee790b8778f3a96","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7b0143e85be3b1905bd2dab0d549c29fdf7c49fbcd5af4c9600bc6e6310bff38","git_blob_id":"8f147b6057634430b3cfbbebb28b09ce4ab3ed6b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","lineage_path":"docs/decisions/2026-05-03-method-growth-pattern-adoption-gate.md","logical_id":"aoa:aoa-techniques:artifact:29fadf3816529f045ee4b961","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md","repo":"aoa-techniques","size_bytes":2602,"version_id":"aoa:aoa-techniques:artifact-version:8f9420452348cc5f1b9d8c64"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-pattern-adoption-gate","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#method-growth-pattern-adoption-gate","title":"Method-Growth Pattern Adoption Gate"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#context","title":"Context"},{"anchor":"options","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#options","title":"Options"},{"anchor":"decision","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0028-method-growth-pattern-adoption-gate.md"},"signs":{"attestation_ref":"","digest":"7b0143e85be3b1905bd2dab0d549c29fdf7c49fbcd5af4c9600bc6e6310bff38","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8b78f9bc837f12bca43155f12784a99af1b581a640c1aa115c71090bc7bf1244","git_blob_id":"bd13d24839455bb265aec3a6f0f944f3c0bed3a3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","lineage_path":"docs/decisions/2026-05-03-method-growth-retention-review.md","logical_id":"aoa:aoa-techniques:artifact:fd22b0eabcb0aad8a6d82627","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md","repo":"aoa-techniques","size_bytes":2309,"version_id":"aoa:aoa-techniques:artifact-version:7e828dfcf08ab913f6dd5dc8"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-retention-review","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#method-growth-retention-review","title":"Method-Growth Retention Review"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#context","title":"Context"},{"anchor":"options","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#options","title":"Options"},{"anchor":"decision","level":2,"line":35,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":47,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":59,"ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0029-method-growth-retention-review.md"},"signs":{"attestation_ref":"","digest":"8b78f9bc837f12bca43155f12784a99af1b581a640c1aa115c71090bc7bf1244","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6f6f5026672ac57611c590f4f89655d32581d83f15cef2a0ff0b7d43efa91d18","git_blob_id":"27b367306d1369defabe445be62c415672dc2e3e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","lineage_path":"docs/decisions/2026-05-03-method-growth-skill-proposal-handoff.md","logical_id":"aoa:aoa-techniques:artifact:394f0ffcb3af69898e4b9b31","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md","repo":"aoa-techniques","size_bytes":2494,"version_id":"aoa:aoa-techniques:artifact-version:9dc87c50994d955ab8d3a4ab"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-skill-proposal-handoff","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#method-growth-skill-proposal-handoff","title":"Method-Growth Skill Proposal Handoff"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#context","title":"Context"},{"anchor":"options","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#options","title":"Options"},{"anchor":"decision","level":2,"line":35,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":49,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0030-method-growth-skill-proposal-handoff.md"},"signs":{"attestation_ref":"","digest":"6f6f5026672ac57611c590f4f89655d32581d83f15cef2a0ff0b7d43efa91d18","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7240b4ff150e5cb4762ef2f4d1e91b180a67e64b1b8c1fd5e7b9366f595c5658","git_blob_id":"ad36dcd5905d0591c71c88b95885626c077006b8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","lineage_path":"docs/decisions/2026-05-03-questbook-candidate-mechanic.md","logical_id":"aoa:aoa-techniques:artifact:757e2a99b8a1456db342687f","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md","repo":"aoa-techniques","size_bytes":3165,"version_id":"aoa:aoa-techniques:artifact-version:5d53795a54b946838cbe5719"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-candidate-mechanic","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#questbook-candidate-mechanic","title":"Questbook Candidate Mechanic"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#context","title":"Context"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":71,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":84,"ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0031-questbook-candidate-mechanic.md"},"signs":{"attestation_ref":"","digest":"7240b4ff150e5cb4762ef2f4d1e91b180a67e64b1b8c1fd5e7b9366f595c5658","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"268c3f8b54436d239b4bd1c2d8cc757cee417fb71866110104fc91c908abfda8","git_blob_id":"5055134610cc2969f5529211072d6b2f1688b412","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","lineage_path":"docs/decisions/2026-05-03-questbook-lane-first-source-store.md","logical_id":"aoa:aoa-techniques:artifact:1661c6889f89a2f6c67d45cc","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md","repo":"aoa-techniques","size_bytes":1790,"version_id":"aoa:aoa-techniques:artifact-version:fd0accf388200f8161c017eb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-lane-first-source-store","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#questbook-lane-first-source-store","title":"Questbook Lane-first Source Store"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0032-questbook-lane-first-source-store.md"},"signs":{"attestation_ref":"","digest":"268c3f8b54436d239b4bd1c2d8cc757cee417fb71866110104fc91c908abfda8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6bb71485d8f6a4cc529a7c4ae18787c7745c596acaaff30455331d0e5f3abee5","git_blob_id":"f3ddc3ba62aa2f1d46c7041a0ccba0f1f79cbffe","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ca350bc94751a5f794c8b900","lineage_path":"docs/decisions/2026-05-03-root-source-of-truth-topology.md","logical_id":"aoa:aoa-techniques:artifact:ca350bc94751a5f794c8b900","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md","repo":"aoa-techniques","size_bytes":2552,"version_id":"aoa:aoa-techniques:artifact-version:0ac836c718f3088a3aa96888"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"2026-05-03-root-source-of-truth-topology","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md#2026-05-03-root-source-of-truth-topology","title":"2026-05-03 - Root source-of-truth topology"},{"anchor":"index-metadata","level":2,"line":3,"ref":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":13,"ref":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md#context","title":"Context"},{"anchor":"options","level":2,"line":25,"ref":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md#options","title":"Options"},{"anchor":"decision","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":47,"ref":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":58,"ref":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0033-root-source-of-truth-topology.md"},"signs":{"attestation_ref":"","digest":"6bb71485d8f6a4cc529a7c4ae18787c7745c596acaaff30455331d0e5f3abee5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c26c4e1e50965519841f5bd93ac00b1bfdd6ff81706e4e033c5cc88b006f6b79","git_blob_id":"c0dfd3405dcd81debdd14f34e5fdd734f393c00d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","lineage_path":"docs/decisions/2026-05-03-rpg-candidate-mechanic.md","logical_id":"aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md","repo":"aoa-techniques","size_bytes":2400,"version_id":"aoa:aoa-techniques:artifact-version:b07d86a57f88a7c9d6b9f8e5"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"rpg-candidate-mechanic","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#rpg-candidate-mechanic","title":"RPG Candidate Mechanic"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#context","title":"Context"},{"anchor":"decision","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":47,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md"},"signs":{"attestation_ref":"","digest":"c26c4e1e50965519841f5bd93ac00b1bfdd6ff81706e4e033c5cc88b006f6b79","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"25d005066ac7ef62287056d965ebfa2c32b7ed2f9a872c1fdd7a03d0055280d1","git_blob_id":"cc769ce536ed4b6035997ab227decb9f1d64407b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2d91002001af478a6259135d","lineage_path":"docs/decisions/2026-05-03-technique-reform-ingress-packet.md","logical_id":"aoa:aoa-techniques:artifact:2d91002001af478a6259135d","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","repo":"aoa-techniques","size_bytes":2618,"version_id":"aoa:aoa-techniques:artifact-version:a1c71196387be4577dbfb040"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-reform-ingress-packet","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#technique-reform-ingress-packet","title":"Technique Reform Ingress Packet"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":40,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":66,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md"},"signs":{"attestation_ref":"","digest":"25d005066ac7ef62287056d965ebfa2c32b7ed2f9a872c1fdd7a03d0055280d1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ad02a2eda8403271346163026aa933ce5ffd402eb173331caab120b2b2ca7312","git_blob_id":"f8a7cf1d23b56883d5ef84deed8dc2c1250339a9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","lineage_path":"docs/decisions/2026-05-04-0005-kind-remap.md","logical_id":"aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md","repo":"aoa-techniques","size_bytes":2033,"version_id":"aoa:aoa-techniques:artifact-version:0638b931355f2b44361e3e25"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-t-0005-kind-remap","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#aoa-t-0005-kind-remap","title":"AOA-T-0005 Kind Remap"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#context","title":"Context"},{"anchor":"decision","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":50,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":57,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md"},"signs":{"attestation_ref":"","digest":"ad02a2eda8403271346163026aa933ce5ffd402eb173331caab120b2b2ca7312","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d30508513c96da337ef00ae45665d815ae2d27bb49175cef42a9a0b31e80d003","git_blob_id":"422f111dce5a5cc8939581394fd11ac16a99bdd5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","lineage_path":"docs/decisions/2026-05-04-0052-kind-remap.md","logical_id":"aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md","repo":"aoa-techniques","size_bytes":2354,"version_id":"aoa:aoa-techniques:artifact-version:2b99d8e1964a0b7281122354"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-t-0052-kind-remap","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#aoa-t-0052-kind-remap","title":"AOA-T-0052 Kind Remap"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#context","title":"Context"},{"anchor":"decision","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md"},"signs":{"attestation_ref":"","digest":"d30508513c96da337ef00ae45665d815ae2d27bb49175cef42a9a0b31e80d003","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"47578d1ce3f675d599f8af2507a8a692ad5da356a1d927d56cf7aa450a549aa9","git_blob_id":"2973ebd34240c2f6574fdd0a4b50b0858161c498","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","lineage_path":"docs/decisions/2026-05-04-0054-kind-remap.md","logical_id":"aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md","repo":"aoa-techniques","size_bytes":2160,"version_id":"aoa:aoa-techniques:artifact-version:104c793bc1207e169280f136"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-t-0054-kind-remap","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#aoa-t-0054-kind-remap","title":"AOA-T-0054 Kind Remap"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":60,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md"},"signs":{"attestation_ref":"","digest":"47578d1ce3f675d599f8af2507a8a692ad5da356a1d927d56cf7aa450a549aa9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7e79aa40d7a5df5bc3e6f4ce0e2ee1258f66e3b7c5aa6ee3b01946af0f6f8fed","git_blob_id":"945aa82f1181a53d8fbe62d2271059e513a9e423","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","lineage_path":"docs/decisions/2026-05-04-0085-kind-remap.md","logical_id":"aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md","repo":"aoa-techniques","size_bytes":1985,"version_id":"aoa:aoa-techniques:artifact-version:95ab1f9cbbb1a364a8f91ac7"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-t-0085-kind-remap","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#aoa-t-0085-kind-remap","title":"AOA-T-0085 Kind Remap"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#context","title":"Context"},{"anchor":"decision","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":36,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":48,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":56,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md"},"signs":{"attestation_ref":"","digest":"7e79aa40d7a5df5bc3e6f4ce0e2ee1258f66e3b7c5aa6ee3b01946af0f6f8fed","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"553bb835557041943cc20f23a7a8b9022bf2d3ac66e56eb34c895a051f05553c","git_blob_id":"e191cb6ec0ed351ac0c55b3230df0a935703e9db","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","lineage_path":"docs/decisions/2026-05-03-rpg-candidate-mechanic.md","logical_id":"aoa:aoa-techniques:artifact:f34ee51dc5bea53ea047e502","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md","repo":"aoa-techniques","size_bytes":2278,"version_id":"aoa:aoa-techniques:artifact-version:acecaab2f9e13a4f8f6c7ce7"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"rpg-candidate-mechanic","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#rpg-candidate-mechanic","title":"RPG Candidate Mechanic"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#context","title":"Context"},{"anchor":"decision","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":47,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0034-rpg-candidate-mechanic.md"},"signs":{"attestation_ref":"","digest":"553bb835557041943cc20f23a7a8b9022bf2d3ac66e56eb34c895a051f05553c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"626dc0198cc6402fad36587e0a1c7791ce75e520108a3f190b6f566c46a0a85a","git_blob_id":"7a86ae22a4cdf1130aab27ad775abb5e4acd3951","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2d91002001af478a6259135d","lineage_path":"docs/decisions/2026-05-03-technique-reform-ingress-packet.md","logical_id":"aoa:aoa-techniques:artifact:2d91002001af478a6259135d","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","repo":"aoa-techniques","size_bytes":2534,"version_id":"aoa:aoa-techniques:artifact-version:ded4da16bf5da90e61b457fb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-reform-ingress-packet","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#technique-reform-ingress-packet","title":"Technique Reform Ingress Packet"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":40,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":66,"ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0035-technique-reform-ingress-packet.md"},"signs":{"attestation_ref":"","digest":"626dc0198cc6402fad36587e0a1c7791ce75e520108a3f190b6f566c46a0a85a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"38a400893885adf63d7a211e7bfe45c84210ce4612bc630be439a620be2b89dc","git_blob_id":"80b1a51d9a2aeee77143d2d4d5b8d326862e6193","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","lineage_path":"docs/decisions/2026-05-04-0005-kind-remap.md","logical_id":"aoa:aoa-techniques:artifact:2a74cf7f972372310df9db05","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md","repo":"aoa-techniques","size_bytes":1949,"version_id":"aoa:aoa-techniques:artifact-version:b3ad6fe1c774ece9266b34c3"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-t-0005-kind-remap","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#aoa-t-0005-kind-remap","title":"AOA-T-0005 Kind Remap"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#context","title":"Context"},{"anchor":"decision","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":50,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":57,"ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0036-0005-kind-remap.md"},"signs":{"attestation_ref":"","digest":"38a400893885adf63d7a211e7bfe45c84210ce4612bc630be439a620be2b89dc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"78062c5da7f8037b4e060663465a3dc3280948465538da115cfd6e230c2cfcfc","git_blob_id":"485ff9c30e17591464498a26204b5d88a3860ba0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","lineage_path":"docs/decisions/2026-05-04-0052-kind-remap.md","logical_id":"aoa:aoa-techniques:artifact:8f4efc05ca7b82225960ce11","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md","repo":"aoa-techniques","size_bytes":2270,"version_id":"aoa:aoa-techniques:artifact-version:9c32f53d461e09f6763962e4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-t-0052-kind-remap","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#aoa-t-0052-kind-remap","title":"AOA-T-0052 Kind Remap"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#context","title":"Context"},{"anchor":"decision","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0037-0052-kind-remap.md"},"signs":{"attestation_ref":"","digest":"78062c5da7f8037b4e060663465a3dc3280948465538da115cfd6e230c2cfcfc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f906786681a48a4512b94d446879a2953c88fe4e0f2d25007ab254689db6bfe2","git_blob_id":"3f7074a88e19a5a6b490257928785930fcb8f4ec","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","lineage_path":"docs/decisions/2026-05-04-0054-kind-remap.md","logical_id":"aoa:aoa-techniques:artifact:2495eb573c05b7b350310f4a","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md","repo":"aoa-techniques","size_bytes":2076,"version_id":"aoa:aoa-techniques:artifact-version:296bf7cb7bf1248e05e90349"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-t-0054-kind-remap","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#aoa-t-0054-kind-remap","title":"AOA-T-0054 Kind Remap"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":60,"ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0038-0054-kind-remap.md"},"signs":{"attestation_ref":"","digest":"f906786681a48a4512b94d446879a2953c88fe4e0f2d25007ab254689db6bfe2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8796ec99dfbc5964139565ac24dfc050c53d5a2015e3654668a138d88caccf7f","git_blob_id":"787da08ed3c0dc6bba0550967f7310c6f139c795","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","lineage_path":"docs/decisions/2026-05-04-0085-kind-remap.md","logical_id":"aoa:aoa-techniques:artifact:769eecba9656c1d0bbb6cce6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md","repo":"aoa-techniques","size_bytes":1901,"version_id":"aoa:aoa-techniques:artifact-version:4d74ad10e936f2c5fa7e38b9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"aoa-t-0085-kind-remap","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#aoa-t-0085-kind-remap","title":"AOA-T-0085 Kind Remap"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#context","title":"Context"},{"anchor":"decision","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":36,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":48,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":56,"ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0039-0085-kind-remap.md"},"signs":{"attestation_ref":"","digest":"8796ec99dfbc5964139565ac24dfc050c53d5a2015e3654668a138d88caccf7f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"841089efff8de746fa9ae808bad06cdb9d9f8da1b19c58255f0c04589438f5c2","git_blob_id":"022dd411db4e2f1c52697f3f0297d3f6f9867cf5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2ece547f2466235afc086518","lineage_path":"docs/decisions/2026-05-04-root-legacy-provenance-district.md","logical_id":"aoa:aoa-techniques:artifact:2ece547f2466235afc086518","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md","repo":"aoa-techniques","size_bytes":2362,"version_id":"aoa:aoa-techniques:artifact-version:374af576d5b7b8800ce47e5d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-legacy-provenance-district","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md#root-legacy-provenance-district","title":"Root Legacy Provenance District"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md#context","title":"Context"},{"anchor":"options","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md#options","title":"Options"},{"anchor":"decision","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":56,"ref":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0040-root-legacy-provenance-district.md"},"signs":{"attestation_ref":"","digest":"841089efff8de746fa9ae808bad06cdb9d9f8da1b19c58255f0c04589438f5c2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2cd6d633e94d5cc258f68970a51ccfa2118b4227ab2041d1eb24e70fe0855eef","git_blob_id":"7023ead0e1ee303bdfbd314c48ce6a33a2ab1cd4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5c40cd95be35506f0f55d8d6","lineage_path":"docs/decisions/2026-05-04-technique-tree-contract.md","logical_id":"aoa:aoa-techniques:artifact:5c40cd95be35506f0f55d8d6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md","repo":"aoa-techniques","size_bytes":2451,"version_id":"aoa:aoa-techniques:artifact-version:8b34f661eae2cd510d92c601"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-tree-contract","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md#technique-tree-contract","title":"Technique Tree Contract"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md#context","title":"Context"},{"anchor":"options","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md#options","title":"Options"},{"anchor":"decision","level":2,"line":40,"ref":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":56,"ref":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0041-technique-tree-contract.md"},"signs":{"attestation_ref":"","digest":"2cd6d633e94d5cc258f68970a51ccfa2118b4227ab2041d1eb24e70fe0855eef","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6bc05415a77c156346b78fabbd79058503107294d11ee1ef57064ed0743edf45","git_blob_id":"8713fc7d95532395a85f22b5dbd6ccba48c1817d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","lineage_path":"docs/decisions/2026-05-04-topology-scout-axis-registry.md","logical_id":"aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md","repo":"aoa-techniques","size_bytes":2694,"version_id":"aoa:aoa-techniques:artifact-version:88702bfffca3dd4e4093bc86"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"topology-scout-axis-registry","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#topology-scout-axis-registry","title":"Topology Scout Axis Registry"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#context","title":"Context"},{"anchor":"decision","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md"},"signs":{"attestation_ref":"","digest":"6bc05415a77c156346b78fabbd79058503107294d11ee1ef57064ed0743edf45","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5077b8792c006db195f9747086972cfda9723f94905647d602f9aab0b21bdeb4","git_blob_id":"0b44855d2bd7cd95de53f576b42bf9ebe8af4a01","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","lineage_path":"docs/decisions/2026-05-06-github-landing-and-mechanics-roadmap-route.md","logical_id":"aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md","repo":"aoa-techniques","size_bytes":5388,"version_id":"aoa:aoa-techniques:artifact-version:512180f02f4965f23f9d3861"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"github-landing-and-mechanics-direction-split-correction","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#github-landing-and-mechanics-direction-split-correction","title":"GitHub Landing And Mechanics Direction Split Correction"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#context","title":"Context"},{"anchor":"options","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#options","title":"Options"},{"anchor":"decision","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":73,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":96,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":113,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md"},"signs":{"attestation_ref":"","digest":"5077b8792c006db195f9747086972cfda9723f94905647d602f9aab0b21bdeb4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c2b88a5311389ff8b12bfe1d755731bf44b70653ee88c74e354af43790499bb4","git_blob_id":"96bd7377c903a9ec903d11f7c48757ea7a7e5cf1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","lineage_path":"docs/decisions/2026-05-06-template-modernization-optional-sections.md","logical_id":"aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md","repo":"aoa-techniques","size_bytes":3139,"version_id":"aoa:aoa-techniques:artifact-version:01ecbab36245284eccae16d2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-optional-sections","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#template-modernization-optional-sections","title":"Template Modernization Optional Sections"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#context","title":"Context"},{"anchor":"decision","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":55,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":68,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":82,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md"},"signs":{"attestation_ref":"","digest":"c2b88a5311389ff8b12bfe1d755731bf44b70653ee88c74e354af43790499bb4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"01952b03ad270a773d944f55eea0e2e5e17524f07d4f8c029338226f0704b14b","git_blob_id":"cc92ed81af2c569d210964b835d927c8dc6bb3ac","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","lineage_path":"docs/decisions/2026-05-14-agent-surface-design-and-mesh.md","logical_id":"aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md","repo":"aoa-techniques","size_bytes":3906,"version_id":"aoa:aoa-techniques:artifact-version:c6138127766e1ca3984c9fbc"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-agent-surface-design-and-mesh","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#decision-note-agent-surface-design-and-mesh","title":"Decision Note: Agent Surface Design And Mesh"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":64,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":74,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":89,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":96,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md"},"signs":{"attestation_ref":"","digest":"01952b03ad270a773d944f55eea0e2e5e17524f07d4f8c029338226f0704b14b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8906b9300ceefce7eeb81d9436b801ff247c9d83f4a027130ccd6cf5245f7163","git_blob_id":"7a9b385a3ef3df6ba0a8ddb2607a9e8a01a40005","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","lineage_path":"docs/decisions/2026-05-04-topology-scout-axis-registry.md","logical_id":"aoa:aoa-techniques:artifact:1bd6d819df2bd9f64717bc13","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md","repo":"aoa-techniques","size_bytes":2628,"version_id":"aoa:aoa-techniques:artifact-version:75bd51fdee1990fee26b7c39"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"topology-scout-axis-registry","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#topology-scout-axis-registry","title":"Topology Scout Axis Registry"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#context","title":"Context"},{"anchor":"decision","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0042-topology-scout-axis-registry.md"},"signs":{"attestation_ref":"","digest":"8906b9300ceefce7eeb81d9436b801ff247c9d83f4a027130ccd6cf5245f7163","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0e4ae4ecb068a41b6a2229f6862ddf3cf2525354f754cd5d771fab9b60e99c0d","git_blob_id":"b979d6426daa43a4bb72e7f9a89783c04ebd59e5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","lineage_path":"docs/decisions/2026-05-06-github-landing-and-mechanics-roadmap-route.md","logical_id":"aoa:aoa-techniques:artifact:437bbafa01be8a4a62c73945","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md","repo":"aoa-techniques","size_bytes":5288,"version_id":"aoa:aoa-techniques:artifact-version:6a882bba5bcfe150c713c7c7"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"github-landing-and-mechanics-direction-split-correction","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#github-landing-and-mechanics-direction-split-correction","title":"GitHub Landing And Mechanics Direction Split Correction"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#context","title":"Context"},{"anchor":"options","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#options","title":"Options"},{"anchor":"decision","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":73,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":96,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":113,"ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0043-github-landing-and-mechanics-roadmap-route.md"},"signs":{"attestation_ref":"","digest":"0e4ae4ecb068a41b6a2229f6862ddf3cf2525354f754cd5d771fab9b60e99c0d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"01ba834a2dbe649e9131b233aa5a0fc93dc92a8aca0def9032b1a27b97db6b29","git_blob_id":"7a0ea61dd4415b0a20ff74d8e3f62f8518332d3e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","lineage_path":"docs/decisions/2026-05-06-template-modernization-optional-sections.md","logical_id":"aoa:aoa-techniques:artifact:92f6cb933d1234200cf42296","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md","repo":"aoa-techniques","size_bytes":3073,"version_id":"aoa:aoa-techniques:artifact-version:aef426bb10936e96d8fcecf2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-optional-sections","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#template-modernization-optional-sections","title":"Template Modernization Optional Sections"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#index-metadata","title":"Index Metadata"},{"anchor":"status","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#status","title":"Status"},{"anchor":"context","level":2,"line":19,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#context","title":"Context"},{"anchor":"decision","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#decision","title":"Decision"},{"anchor":"alternatives","level":2,"line":55,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#alternatives","title":"Alternatives"},{"anchor":"consequences","level":2,"line":68,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":82,"ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0044-template-modernization-optional-sections.md"},"signs":{"attestation_ref":"","digest":"01ba834a2dbe649e9131b233aa5a0fc93dc92a8aca0def9032b1a27b97db6b29","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f9cecba8536bc405711b1186aba62917dd39c69436fb85d4524d13a992d9e650","git_blob_id":"9e3d914317241da24f2b1c3a8bdfa896d7c66bec","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","lineage_path":"docs/decisions/2026-05-14-agent-surface-design-and-mesh.md","logical_id":"aoa:aoa-techniques:artifact:25548ca6869965daad3c9589","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md","repo":"aoa-techniques","size_bytes":3808,"version_id":"aoa:aoa-techniques:artifact-version:8a7e7881e269b08a287508c9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-agent-surface-design-and-mesh","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#decision-note-agent-surface-design-and-mesh","title":"Decision Note: Agent Surface Design And Mesh"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":64,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":74,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":89,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":96,"ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0045-agent-surface-design-and-mesh.md"},"signs":{"attestation_ref":"","digest":"f9cecba8536bc405711b1186aba62917dd39c69436fb85d4524d13a992d9e650","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"97a8fc71d0129f5315f2db05983209eb798106593ef168b63aa42aa7f1943d48","git_blob_id":"017bfff1d3f3b32dbf6892102ecf4d807715e440","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:99eb5f0598cd3ce7b0d0facd","lineage_path":"docs/decisions/2026-05-14-canonical-retro-audit-part.md","logical_id":"aoa:aoa-techniques:artifact:99eb5f0598cd3ce7b0d0facd","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md","repo":"aoa-techniques","size_bytes":2078,"version_id":"aoa:aoa-techniques:artifact-version:2b3e29b69dd69022c694ea33"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"canonical-retro-audit-part","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md#canonical-retro-audit-part","title":"Canonical Retro Audit Part"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md#context","title":"Context"},{"anchor":"options","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md#options","title":"Options"},{"anchor":"decision","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":46,"ref":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md#consequences","title":"Consequences"}],"line_refs":["docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0046-canonical-retro-audit-part.md"},"signs":{"attestation_ref":"","digest":"97a8fc71d0129f5315f2db05983209eb798106593ef168b63aa42aa7f1943d48","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1e26616dbe4a654cc44e1d7d43db8480b1a56bf2f1e6cbeb6b09e0a30abcc728","git_blob_id":"2a2ce6c371b3bb303a0936b598b5ca466f463742","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","lineage_path":"docs/decisions/2026-05-14-mechanic-contract-packet-homes.md","logical_id":"aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md","repo":"aoa-techniques","size_bytes":2812,"version_id":"aoa:aoa-techniques:artifact-version:8632936c3c91f51f4c61c68b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanic-contract-packet-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#mechanic-contract-packet-homes","title":"Mechanic Contract Packet Homes"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#context","title":"Context"},{"anchor":"decision","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md"},"signs":{"attestation_ref":"","digest":"1e26616dbe4a654cc44e1d7d43db8480b1a56bf2f1e6cbeb6b09e0a30abcc728","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"923a4de334671cffe329fc29b41d37bfe00ab3d33356232c872ed1f6ad913142","git_blob_id":"96de472231cd1d547d60c48180612a3dbba5b1d9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","lineage_path":"docs/decisions/2026-05-14-mechanic-script-homes.md","logical_id":"aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","repo":"aoa-techniques","size_bytes":3020,"version_id":"aoa:aoa-techniques:artifact-version:b15f4ae8ec3f0d5ac7106676"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanic-script-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#mechanic-script-homes","title":"Mechanic Script Homes"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#decision","title":"Decision"},{"anchor":"root-pass","level":2,"line":40,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#root-pass","title":"Root Pass"},{"anchor":"consequences","level":2,"line":59,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":69,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md"},"signs":{"attestation_ref":"","digest":"923a4de334671cffe329fc29b41d37bfe00ab3d33356232c872ed1f6ad913142","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c1467175850c1cbad63bf9baa51ca939938344af956319c6fca6f3311045b779","git_blob_id":"26dc9c13f3ac9f761ad4dc56100b4f6ac7cd5c69","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","lineage_path":"docs/decisions/2026-05-14-mechanic-test-homes.md","logical_id":"aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md","repo":"aoa-techniques","size_bytes":2251,"version_id":"aoa:aoa-techniques:artifact-version:9783d746557ccb8ba77bca39"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanic-test-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#mechanic-test-homes","title":"Mechanic Test Homes"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#context","title":"Context"},{"anchor":"decision","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md"},"signs":{"attestation_ref":"","digest":"c1467175850c1cbad63bf9baa51ca939938344af956319c6fca6f3311045b779","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"82225311bd0edc0578f3c24582c5d34ee95ca5cb0cf401a0272d11a42b37d709","git_blob_id":"8324140ca2c092cc1c67446337a37dd45cc9dbc0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","lineage_path":"docs/decisions/2026-05-14-recurrence-manifest-part-home.md","logical_id":"aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md","repo":"aoa-techniques","size_bytes":2262,"version_id":"aoa:aoa-techniques:artifact-version:92df6fe6a4ddd55e54bf820c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-manifest-part-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#recurrence-manifest-part-home","title":"Recurrence Manifest Part Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#context","title":"Context"},{"anchor":"options","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#options","title":"Options"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":49,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":59,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md"},"signs":{"attestation_ref":"","digest":"82225311bd0edc0578f3c24582c5d34ee95ca5cb0cf401a0272d11a42b37d709","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0b3dc95be937d835bd131e933f6cfe30a18770402d8a57c1768131ce2c84dcd7","git_blob_id":"ff3d88b7d177fdf6100bcaae95929e7c9cbb6cc5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","lineage_path":"docs/decisions/2026-05-14-review-packet-mechanics-home.md","logical_id":"aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","repo":"aoa-techniques","size_bytes":2449,"version_id":"aoa:aoa-techniques:artifact-version:698aedcb4f8edb44b297b1a1"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-packet-mechanics-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#review-packet-mechanics-home","title":"Review Packet Mechanics Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#context","title":"Context"},{"anchor":"options","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#options","title":"Options"},{"anchor":"decision","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md"},"signs":{"attestation_ref":"","digest":"0b3dc95be937d835bd131e933f6cfe30a18770402d8a57c1768131ce2c84dcd7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4079420c2c637698a1ea39a0f1444ea48e7c137006b5b95ebf7bd86c08d464ee","git_blob_id":"9f6991c7becd4f63e2b57a3791f8f2290c35fd70","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","lineage_path":"docs/decisions/2026-05-14-root-data-retirement.md","logical_id":"aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md","repo":"aoa-techniques","size_bytes":1781,"version_id":"aoa:aoa-techniques:artifact-version:6247a34ac94d5c48d5173cd3"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-data-retirement","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#root-data-retirement","title":"Root Data Retirement"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":43,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":50,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0052-root-data-retirement.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md"},"signs":{"attestation_ref":"","digest":"4079420c2c637698a1ea39a0f1444ea48e7c137006b5b95ebf7bd86c08d464ee","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f78380b3c2468c2045b68c9132a61ed2890bbb512ace829452eb4fe1988ff2a4","git_blob_id":"cc9685e5641fc06bae5fdfe795251840089bfb63","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","lineage_path":"docs/decisions/2026-05-14-mechanic-contract-packet-homes.md","logical_id":"aoa:aoa-techniques:artifact:68d1acbead326413b0a3381c","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md","repo":"aoa-techniques","size_bytes":2497,"version_id":"aoa:aoa-techniques:artifact-version:f6d29e230c06da5108efa858"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanic-contract-packet-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#mechanic-contract-packet-homes","title":"Mechanic Contract Packet Homes"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#context","title":"Context"},{"anchor":"decision","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0047-mechanic-contract-packet-homes.md"},"signs":{"attestation_ref":"","digest":"f78380b3c2468c2045b68c9132a61ed2890bbb512ace829452eb4fe1988ff2a4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7126bacf97a5edde239d5326cf2b77b98ff7054d0a1a11fbd8b5238e1ef88932","git_blob_id":"2f71f3ce1da0b5eb4b7fbe6f2b6b0376773476bf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","lineage_path":"docs/decisions/2026-05-14-mechanic-script-homes.md","logical_id":"aoa:aoa-techniques:artifact:5a1e159b8d8c1e740e7f819d","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","repo":"aoa-techniques","size_bytes":2651,"version_id":"aoa:aoa-techniques:artifact-version:e14819639a5aa36fcd6fdba9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanic-script-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#mechanic-script-homes","title":"Mechanic Script Homes"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#context","title":"Context"},{"anchor":"decision","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#decision","title":"Decision"},{"anchor":"root-pass","level":2,"line":40,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#root-pass","title":"Root Pass"},{"anchor":"consequences","level":2,"line":59,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":69,"ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0048-mechanic-script-homes.md"},"signs":{"attestation_ref":"","digest":"7126bacf97a5edde239d5326cf2b77b98ff7054d0a1a11fbd8b5238e1ef88932","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4fa143607bd99bd4d0d0d03262e526288d7e34f3793cb9df63e0c5426404db84","git_blob_id":"78bf9e05feb3a06e820a8f9b05be6827ea962da6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","lineage_path":"docs/decisions/2026-05-14-mechanic-test-homes.md","logical_id":"aoa:aoa-techniques:artifact:0fe95e87cea317c6e77f45a6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md","repo":"aoa-techniques","size_bytes":2167,"version_id":"aoa:aoa-techniques:artifact-version:f41efd45eb7ea3502c7cfe71"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanic-test-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#mechanic-test-homes","title":"Mechanic Test Homes"},{"anchor":"index-metadata","level":2,"line":5,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":15,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#context","title":"Context"},{"anchor":"decision","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0049-mechanic-test-homes.md"},"signs":{"attestation_ref":"","digest":"4fa143607bd99bd4d0d0d03262e526288d7e34f3793cb9df63e0c5426404db84","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"df621a6d63232f6f33ef29a6803cf7e0c71e6fbe3d93206e72157161002a510e","git_blob_id":"2b3204ba266a0009d2e82d96655465b0c6af9a45","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","lineage_path":"docs/decisions/2026-05-14-recurrence-manifest-part-home.md","logical_id":"aoa:aoa-techniques:artifact:ab38de2a8e2dae2b1a213192","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md","repo":"aoa-techniques","size_bytes":2136,"version_id":"aoa:aoa-techniques:artifact-version:4c5ddce029481dbf6950b88f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-manifest-part-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#recurrence-manifest-part-home","title":"Recurrence Manifest Part Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#context","title":"Context"},{"anchor":"options","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#options","title":"Options"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":49,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":59,"ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0050-recurrence-manifest-part-home.md"},"signs":{"attestation_ref":"","digest":"df621a6d63232f6f33ef29a6803cf7e0c71e6fbe3d93206e72157161002a510e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7a70dad632fb2824ed5ccd090c376acb2f60b58997dc4558ba0cca1a9e4099e0","git_blob_id":"efc5c58a454852118218adfb3f3871e170452c9c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","lineage_path":"docs/decisions/2026-05-14-review-packet-mechanics-home.md","logical_id":"aoa:aoa-techniques:artifact:46d47212f8b63f5b7011e3f2","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","repo":"aoa-techniques","size_bytes":2321,"version_id":"aoa:aoa-techniques:artifact-version:fd910166e4c4c482746c5148"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-packet-mechanics-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#review-packet-mechanics-home","title":"Review Packet Mechanics Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#context","title":"Context"},{"anchor":"options","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#options","title":"Options"},{"anchor":"decision","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0051-review-packet-mechanics-home.md"},"signs":{"attestation_ref":"","digest":"7a70dad632fb2824ed5ccd090c376acb2f60b58997dc4558ba0cca1a9e4099e0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3db3aebdec4de773e7bda9067661baaaa1d6ae938251255c3bf53ff91c778016","git_blob_id":"f9af6be6d7b70b2811133b11d55007cc864ec48b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","lineage_path":"docs/decisions/2026-05-14-root-data-retirement.md","logical_id":"aoa:aoa-techniques:artifact:351454b54fbbcc270019a868","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md","repo":"aoa-techniques","size_bytes":1736,"version_id":"aoa:aoa-techniques:artifact-version:36575328237c2d66e273f77a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-data-retirement","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#root-data-retirement","title":"Root Data Retirement"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#context","title":"Context"},{"anchor":"decision","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":43,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":50,"ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0052-root-data-retirement.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0052-root-data-retirement.md"},"signs":{"attestation_ref":"","digest":"3db3aebdec4de773e7bda9067661baaaa1d6ae938251255c3bf53ff91c778016","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cf43a0655ec8abe27c083beb53de34e172a35360dd37e632e979f3a946ea0586","git_blob_id":"79d53d89e5aa0742f2c4d22d24802e815bde4c85","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fa841ed2f6a97edcbb053b47","lineage_path":"docs/decisions/2026-05-14-root-md-surface-slimming.md","logical_id":"aoa:aoa-techniques:artifact:fa841ed2f6a97edcbb053b47","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md","repo":"aoa-techniques","size_bytes":5565,"version_id":"aoa:aoa-techniques:artifact-version:684127cd63c53380270ada6a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-root-markdown-surface-slimming","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#decision-note-root-markdown-surface-slimming","title":"Decision Note: Root Markdown Surface Slimming"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":35,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":64,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":78,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":90,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":108,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":114,"ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0053-root-md-surface-slimming.md"},"signs":{"attestation_ref":"","digest":"cf43a0655ec8abe27c083beb53de34e172a35360dd37e632e979f3a946ea0586","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"db2cea2c5f50bc055bf23cc778f01770dac773178cb7840884ae13c8ea71b9a6","git_blob_id":"203d5acde341f01338cba5103704938add710328","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","lineage_path":"docs/decisions/2026-05-14-spark-agent-lane-home.md","logical_id":"aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md","repo":"aoa-techniques","size_bytes":1801,"version_id":"aoa:aoa-techniques:artifact-version:32358fdd914cf0aaea3196b6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-agent-lane-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#spark-agent-lane-home","title":"Spark Agent Lane Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#context","title":"Context"},{"anchor":"options","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#options","title":"Options"},{"anchor":"decision","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":46,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md"},"signs":{"attestation_ref":"","digest":"db2cea2c5f50bc055bf23cc778f01770dac773178cb7840884ae13c8ea71b9a6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7ac525aab9321a9dc9bcd5e96607b4870e176f341d2745184ece0ab2155074de","git_blob_id":"b1e837d2ae5e851c61f3add0025aa92e044f6b77","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","lineage_path":"docs/decisions/2026-05-14-technique-reform-report-home.md","logical_id":"aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","repo":"aoa-techniques","size_bytes":2503,"version_id":"aoa:aoa-techniques:artifact-version:0000444c597dc90b60f57009"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-reform-report-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#technique-reform-report-home","title":"Technique Reform Report Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#context","title":"Context"},{"anchor":"options","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#options","title":"Options"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md"},"signs":{"attestation_ref":"","digest":"7ac525aab9321a9dc9bcd5e96607b4870e176f341d2745184ece0ab2155074de","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3db272c23ae57f8a4c50bbd238382fb66b9ab51e74d3a10717573a7ff8ce8c8c","git_blob_id":"89cf37fc714d88fa8e96289e280971e574ecd917","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","lineage_path":"docs/decisions/2026-05-14-technique-reform-scout-input-homes.md","logical_id":"aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md","repo":"aoa-techniques","size_bytes":2439,"version_id":"aoa:aoa-techniques:artifact-version:8ad2f9515eea92cbe763ce75"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-reform-scout-input-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#technique-reform-scout-input-homes","title":"Technique Reform Scout Input Homes"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#context","title":"Context"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":57,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md"},"signs":{"attestation_ref":"","digest":"3db272c23ae57f8a4c50bbd238382fb66b9ab51e74d3a10717573a7ff8ce8c8c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"675b8e7d1e2afc2c9e9ee02febd7748cc01c2aec3a57eacae67c9c250e5111da","git_blob_id":"8bafb65577b36e9b0779cba91302983652279577","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","lineage_path":"docs/decisions/2026-05-15-spark-registry-backed-technique-lane.md","logical_id":"aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md","repo":"aoa-techniques","size_bytes":4961,"version_id":"aoa:aoa-techniques:artifact-version:3dfdda0e8041a12c72bbcad3"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-spark-registry-backed-technique-lane","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#decision-note-spark-registry-backed-technique-lane","title":"Decision Note: Spark Registry-Backed Technique Lane"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":40,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":66,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":78,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":93,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":109,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":116,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md"},"signs":{"attestation_ref":"","digest":"675b8e7d1e2afc2c9e9ee02febd7748cc01c2aec3a57eacae67c9c250e5111da","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1b4f8a65fa0d49b768fde4ab47fa386c25ae22450a036e8ccf15ea8732367784","git_blob_id":"a5e17a2cedbed1b7df3b62dcf8d83f757ae168f0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","lineage_path":"docs/decisions/2026-05-16-docs-surface-guardrails-and-tree-contract-slimming.md","logical_id":"aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md","repo":"aoa-techniques","size_bytes":7752,"version_id":"aoa:aoa-techniques:artifact-version:2f15933e24f415b287f1eaf0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-docs-surface-guardrails-and-tree-contract-slimming","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#decision-note-docs-surface-guardrails-and-tree-contract-slimming","title":"Decision Note: Docs Surface Guardrails And Tree Contract Slimming"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":76,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":119,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":143,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":150,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md"},"signs":{"attestation_ref":"","digest":"1b4f8a65fa0d49b768fde4ab47fa386c25ae22450a036e8ccf15ea8732367784","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"40ae303c4d412a3487a2a706627eed0032b48107cbd908a352eb3656a8c49222","git_blob_id":"545c4e6417edd605e83bcf9015117d56b3f2f059","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","lineage_path":"docs/decisions/2026-05-17-agent-neighbor-doc-command-ownership.md","logical_id":"aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md","repo":"aoa-techniques","size_bytes":4058,"version_id":"aoa:aoa-techniques:artifact-version:a1b007325c0be5432b71efe2"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agent-neighbor-doc-command-ownership","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#agent-neighbor-doc-command-ownership","title":"Agent Neighbor Doc Command Ownership"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":64,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":75,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":88,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":98,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":105,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md"},"signs":{"attestation_ref":"","digest":"40ae303c4d412a3487a2a706627eed0032b48107cbd908a352eb3656a8c49222","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"944736d074643950ea2c9e618b4947d948b75188b84531389d3d9bb2d624a2ba","git_blob_id":"6dc3d4bc0207b8e6e0b9da22557250c423d27f80","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","lineage_path":"docs/decisions/2026-05-17-agents-mesh-canonical-closure.md","logical_id":"aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md","repo":"aoa-techniques","size_bytes":3367,"version_id":"aoa:aoa-techniques:artifact-version:0e33c2428cace9bb342e740b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-agents-mesh-canonical-closure","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#decision-note-agents-mesh-canonical-closure","title":"Decision Note: AGENTS Mesh Canonical Closure"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":55,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":78,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":84,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md"},"signs":{"attestation_ref":"","digest":"944736d074643950ea2c9e618b4947d948b75188b84531389d3d9bb2d624a2ba","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"71839e76185487fdfdadc956626c34b0a5559ae51339e7b132a3137e1e9a05fa","git_blob_id":"15456b0cb699cbc69a3b551bd01b4a6ac5255a17","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","lineage_path":"docs/decisions/2026-05-18-candidate-intake-active-part-home.md","logical_id":"aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md","repo":"aoa-techniques","size_bytes":2989,"version_id":"aoa:aoa-techniques:artifact-version:93586b73aeb72e192a800796"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"candidate-intake-active-part-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#candidate-intake-active-part-home","title":"Candidate Intake Active Part Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":26,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":70,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":77,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md"},"signs":{"attestation_ref":"","digest":"71839e76185487fdfdadc956626c34b0a5559ae51339e7b132a3137e1e9a05fa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f1a9bbd5898fae4f0b8c754cabc989591c03d676bd4d514758981cd5f40dcd2a","git_blob_id":"c2047cf19affaf710c2615800be7edeecee9f409","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","lineage_path":"docs/decisions/2026-05-18-closed-incoming-packets-distillation-legacy.md","logical_id":"aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","repo":"aoa-techniques","size_bytes":3335,"version_id":"aoa:aoa-techniques:artifact-version:95cb942b6707f6c68948db2b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"closed-incoming-packets-distillation-legacy","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#closed-incoming-packets-distillation-legacy","title":"Closed Incoming Packets Distillation Legacy"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":64,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":73,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":79,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md"},"signs":{"attestation_ref":"","digest":"f1a9bbd5898fae4f0b8c754cabc989591c03d676bd4d514758981cd5f40dcd2a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"27df91414eb56810bab19ffa3d0dc264aa7800f327e43ffba1cd7bc37d4b4c08","git_blob_id":"83e791743d42ed2074545ef968f44373471bb0b7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","lineage_path":"docs/decisions/2026-05-18-incoming-evidence-only-closeout.md","logical_id":"aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","repo":"aoa-techniques","size_bytes":3607,"version_id":"aoa:aoa-techniques:artifact-version:160408c995ebe4664b17e5ad"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"incoming-evidence-only-closeout","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#incoming-evidence-only-closeout","title":"Incoming Evidence-Only Closeout"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":26,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":49,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":56,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":67,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":76,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":83,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md"},"signs":{"attestation_ref":"","digest":"27df91414eb56810bab19ffa3d0dc264aa7800f327e43ffba1cd7bc37d4b4c08","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fcb4b594d8b99f87072bf24b27f5efe2c2e328b2f68fdb301748b4674177bbe1","git_blob_id":"9a30b6ca7f6357510a4681277191c7d653c0c732","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","lineage_path":"docs/decisions/2026-05-18-technique-intelligence-move-registry.md","logical_id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md","repo":"aoa-techniques","size_bytes":3682,"version_id":"aoa:aoa-techniques:artifact-version:5113395e07ccba2fe2aff7df"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-intelligence-move-registry","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#technique-intelligence-move-registry","title":"Technique Intelligence Move Registry"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":26,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":50,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":72,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":82,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":91,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md"},"signs":{"attestation_ref":"","digest":"fcb4b594d8b99f87072bf24b27f5efe2c2e328b2f68fdb301748b4674177bbe1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f8f9fa72d2b042a49be230baa8e501e26680149138d132ff84d6af10a31304d1","git_blob_id":"acb949a1a465939cd9cb8de2b591d9df626f50cc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","lineage_path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","logical_id":"aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","repo":"aoa-techniques","size_bytes":4164,"version_id":"aoa:aoa-techniques:artifact-version:0759ac36d1a56fa80cf15d9d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"canonical-decision-ids-and-indexes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#canonical-decision-ids-and-indexes","title":"Canonical Decision IDs And Indexes"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":69,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":81,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":94,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":104,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md"},"signs":{"attestation_ref":"","digest":"f8f9fa72d2b042a49be230baa8e501e26680149138d132ff84d6af10a31304d1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e235769a68c162a427d6dd6f42fd8a947226ad2c34c37da60ad6f8553dd3c40c","git_blob_id":"797c92289f3c7bb036285a1c4262408e06dedb7d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","lineage_path":"docs/decisions/2026-05-14-spark-agent-lane-home.md","logical_id":"aoa:aoa-techniques:artifact:0914e3c074cf8e909266390d","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md","repo":"aoa-techniques","size_bytes":1646,"version_id":"aoa:aoa-techniques:artifact-version:9560e644ab5ad9ecf488777f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"spark-agent-lane-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#spark-agent-lane-home","title":"Spark Agent Lane Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#context","title":"Context"},{"anchor":"options","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#options","title":"Options"},{"anchor":"decision","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":46,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0054-spark-agent-lane-home.md"},"signs":{"attestation_ref":"","digest":"e235769a68c162a427d6dd6f42fd8a947226ad2c34c37da60ad6f8553dd3c40c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2acfd067656072a669c71a1292527402d437809c660e118ba6b91cb1e886befe","git_blob_id":"aa8fc390e01007aeef8664fd366fdc441833da2f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","lineage_path":"docs/decisions/2026-05-14-technique-reform-report-home.md","logical_id":"aoa:aoa-techniques:artifact:00e21bd5f33436c86d020716","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","repo":"aoa-techniques","size_bytes":2090,"version_id":"aoa:aoa-techniques:artifact-version:8bc7429ad70095b669658f60"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-reform-report-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#technique-reform-report-home","title":"Technique Reform Report Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#context","title":"Context"},{"anchor":"options","level":2,"line":30,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#options","title":"Options"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":52,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0055-technique-reform-report-home.md"},"signs":{"attestation_ref":"","digest":"2acfd067656072a669c71a1292527402d437809c660e118ba6b91cb1e886befe","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"41e30d07e11ccbec1331065e6da2d460e18304a15d803e16a8f4f306c766d990","git_blob_id":"1f6a942e2752b93114fcde412594c3fa8b91840d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","lineage_path":"docs/decisions/2026-05-14-technique-reform-scout-input-homes.md","logical_id":"aoa:aoa-techniques:artifact:f8e9c37d744ed6172657881b","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md","repo":"aoa-techniques","size_bytes":2105,"version_id":"aoa:aoa-techniques:artifact-version:b298424b5fb126db39334728"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-reform-scout-input-homes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#technique-reform-scout-input-homes","title":"Technique Reform Scout Input Homes"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#context","title":"Context"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#decision","title":"Decision"},{"anchor":"consequences","level":2,"line":45,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#consequences","title":"Consequences"},{"anchor":"verification","level":2,"line":57,"ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0056-technique-reform-scout-input-homes.md"},"signs":{"attestation_ref":"","digest":"41e30d07e11ccbec1331065e6da2d460e18304a15d803e16a8f4f306c766d990","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"82e5068f5020778ac0eac2fe16738e9c13834a353235d2bdb778d462fd4c12fa","git_blob_id":"0f701d74f7497bfa93c6a0b9e30212a6b4a40dab","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","lineage_path":"docs/decisions/2026-05-15-spark-registry-backed-technique-lane.md","logical_id":"aoa:aoa-techniques:artifact:878a5b5dceb71a951622f3e6","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md","repo":"aoa-techniques","size_bytes":4714,"version_id":"aoa:aoa-techniques:artifact-version:b5c0bc783fd76b463e67c7a3"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-spark-registry-backed-technique-lane","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#decision-note-spark-registry-backed-technique-lane","title":"Decision Note: Spark Registry-Backed Technique Lane"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":40,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":66,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":78,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":93,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":109,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":116,"ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0057-spark-registry-backed-technique-lane.md"},"signs":{"attestation_ref":"","digest":"82e5068f5020778ac0eac2fe16738e9c13834a353235d2bdb778d462fd4c12fa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7243db56a066626420701082f64901e2764452fa1fb088c3090318c0fe7bf3e8","git_blob_id":"7beb019e848b57a1195955c68a7f5c7ff21a9fdf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","lineage_path":"docs/decisions/2026-05-16-docs-surface-guardrails-and-tree-contract-slimming.md","logical_id":"aoa:aoa-techniques:artifact:98726549e96e94fb3a0c9f73","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md","repo":"aoa-techniques","size_bytes":7717,"version_id":"aoa:aoa-techniques:artifact-version:770a95c4695871101d360bfb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-docs-surface-guardrails-and-tree-contract-slimming","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#decision-note-docs-surface-guardrails-and-tree-contract-slimming","title":"Decision Note: Docs Surface Guardrails And Tree Contract Slimming"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":31,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":76,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":119,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":143,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":150,"ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0058-docs-surface-guardrails-and-tree-contract-slimming.md"},"signs":{"attestation_ref":"","digest":"7243db56a066626420701082f64901e2764452fa1fb088c3090318c0fe7bf3e8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"caceaf58dbc776bbd376aa3a05d0046b5ff8837b8b49dba7cd8293f9158e3871","git_blob_id":"e747b7250196843641b085b49f54b6619a7a643d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","lineage_path":"docs/decisions/2026-05-17-agent-neighbor-doc-command-ownership.md","logical_id":"aoa:aoa-techniques:artifact:cd3dcd02ce7c26afc781ea86","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md","repo":"aoa-techniques","size_bytes":3877,"version_id":"aoa:aoa-techniques:artifact-version:dcf24823c2009326b2269983"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agent-neighbor-doc-command-ownership","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#agent-neighbor-doc-command-ownership","title":"Agent Neighbor Doc Command Ownership"},{"anchor":"index-metadata","level":2,"line":7,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":17,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":29,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":39,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":64,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":75,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":88,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":98,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":105,"ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0059-agent-neighbor-doc-command-ownership.md"},"signs":{"attestation_ref":"","digest":"caceaf58dbc776bbd376aa3a05d0046b5ff8837b8b49dba7cd8293f9158e3871","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f15bbb2b9f0877c43488dc2220f7c317d1e1248a4863c4f65af501fecf3c3ca7","git_blob_id":"7bfa44a3b5db1a246be117743f4f7b6a08745145","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","lineage_path":"docs/decisions/2026-05-17-agents-mesh-canonical-closure.md","logical_id":"aoa:aoa-techniques:artifact:36ba783140c1bec340f64427","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md","repo":"aoa-techniques","size_bytes":3196,"version_id":"aoa:aoa-techniques:artifact-version:bce61e03f35c930e0906347f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-agents-mesh-canonical-closure","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#decision-note-agents-mesh-canonical-closure","title":"Decision Note: AGENTS Mesh Canonical Closure"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":55,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":65,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":78,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":84,"ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0060-agents-mesh-canonical-closure.md"},"signs":{"attestation_ref":"","digest":"f15bbb2b9f0877c43488dc2220f7c317d1e1248a4863c4f65af501fecf3c3ca7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"810cb5c050390c92d1d6a3b064e1068b5755946744133835a323dae0a61c5456","git_blob_id":"dc6d99d08c31c255e3b201e5ecfe8c773b12f819","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","lineage_path":"docs/decisions/2026-05-18-candidate-intake-active-part-home.md","logical_id":"aoa:aoa-techniques:artifact:c787e280fd85964945ece4db","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md","repo":"aoa-techniques","size_bytes":2715,"version_id":"aoa:aoa-techniques:artifact-version:de2454445bc5eaabda35ac95"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"candidate-intake-active-part-home","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#candidate-intake-active-part-home","title":"Candidate Intake Active Part Home"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":26,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":32,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":42,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":70,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":77,"ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0061-candidate-intake-active-part-home.md"},"signs":{"attestation_ref":"","digest":"810cb5c050390c92d1d6a3b064e1068b5755946744133835a323dae0a61c5456","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"52cbe7ea21f2fbb5343dc5c5c8a7e40b183893fbb76cd8c61031d51427fd73c5","git_blob_id":"db698d08892a8105ca15a9e5c3bc44d5147f4b71","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","lineage_path":"docs/decisions/2026-05-18-closed-incoming-packets-distillation-legacy.md","logical_id":"aoa:aoa-techniques:artifact:63fc5e90642d9c12570091bd","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","repo":"aoa-techniques","size_bytes":3238,"version_id":"aoa:aoa-techniques:artifact-version:9323884cc454b72a969929d7"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"closed-incoming-packets-distillation-legacy","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#closed-incoming-packets-distillation-legacy","title":"Closed Incoming Packets Distillation Legacy"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":41,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":53,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":64,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":73,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":79,"ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0062-closed-incoming-packets-distillation-legacy.md"},"signs":{"attestation_ref":"","digest":"52cbe7ea21f2fbb5343dc5c5c8a7e40b183893fbb76cd8c61031d51427fd73c5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5aae4ec0b01258ec691ae84626a3d406f2368cf58436e7032ef8d2a8249c013e","git_blob_id":"97ce2bc79a38e1fb129b1973f2e3792e0b36120c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","lineage_path":"docs/decisions/2026-05-18-incoming-evidence-only-closeout.md","logical_id":"aoa:aoa-techniques:artifact:2cad95855c82105d96f64d4c","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","repo":"aoa-techniques","size_bytes":3510,"version_id":"aoa:aoa-techniques:artifact-version:db72c1600546e251ac161ea3"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"incoming-evidence-only-closeout","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#incoming-evidence-only-closeout","title":"Incoming Evidence-Only Closeout"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":26,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":34,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":49,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":56,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":67,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":76,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":83,"ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0063-incoming-evidence-only-closeout.md"},"signs":{"attestation_ref":"","digest":"5aae4ec0b01258ec691ae84626a3d406f2368cf58436e7032ef8d2a8249c013e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"671b916dcda8cdde5a16c703c3136f968eca11a7421b9bd6f2c6c67c028cdef9","git_blob_id":"aead653cf7f5c6492ab19406f7e906f4fc6413cd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","lineage_path":"docs/decisions/2026-05-18-technique-intelligence-move-registry.md","logical_id":"aoa:aoa-techniques:artifact:782ea0c0c214cb284e5fcf46","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md","repo":"aoa-techniques","size_bytes":3567,"version_id":"aoa:aoa-techniques:artifact-version:4ab03d971e8cb91ed7901bef"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-intelligence-move-registry","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#technique-intelligence-move-registry","title":"Technique Intelligence Move Registry"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":26,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":33,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":50,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":61,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":72,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":82,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":91,"ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0064-technique-intelligence-move-registry.md"},"signs":{"attestation_ref":"","digest":"671b916dcda8cdde5a16c703c3136f968eca11a7421b9bd6f2c6c67c028cdef9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a262632695a2b8238b6ad2bc92bb9729818b467a597188e39e2bb90a158c82fe","git_blob_id":"9bf3bbc5688c2049584d09fa03ccf850a94fb08b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","lineage_path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","logical_id":"aoa:aoa-techniques:artifact:96f7fe7867381f514657b5fd","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","repo":"aoa-techniques","size_bytes":4092,"version_id":"aoa:aoa-techniques:artifact-version:34bb8fdb17fdca209964efb6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"canonical-decision-ids-and-indexes","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#canonical-decision-ids-and-indexes","title":"Canonical Decision IDs And Indexes"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":37,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":69,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":81,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":94,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":104,"ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0065-canonical-decision-ids-and-indexes.md"},"signs":{"attestation_ref":"","digest":"a262632695a2b8238b6ad2bc92bb9729818b467a597188e39e2bb90a158c82fe","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9c1bc1f4dffd8970f30f1aa89cd1565cc9a348c77ea3c65effd8dbdff9daf857","git_blob_id":"0b686171cda598d661d4aaae6013ca68a3458b0f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:262a18d53e3b21e5a529bd9b","lineage_path":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md","logical_id":"aoa:aoa-techniques:artifact:262a18d53e3b21e5a529bd9b","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md","repo":"aoa-techniques","size_bytes":4619,"version_id":"aoa:aoa-techniques:artifact-version:dcc7748957c5f6b6c9939863"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"validation-lane-command-authority","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#validation-lane-command-authority","title":"Validation Lane Command Authority"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":27,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":38,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":56,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":67,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":81,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":100,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":106,"ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0066-validation-lane-command-authority.md"},"signs":{"attestation_ref":"","digest":"9c1bc1f4dffd8970f30f1aa89cd1565cc9a348c77ea3c65effd8dbdff9daf857","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9111c46bab296a730fa5cd5114d035fb1547e7dd90e5a7081d09a01f04c4b1aa","git_blob_id":"cad3f816677f06a084bb548f43d1511321cd01ef","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3570302f879fbf8bebc76db7","lineage_path":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md","logical_id":"aoa:aoa-techniques:artifact:3570302f879fbf8bebc76db7","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md","repo":"aoa-techniques","size_bytes":4095,"version_id":"aoa:aoa-techniques:artifact-version:a54fcbc60800f1674ec6813f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"validator-owner-modules","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md#validator-owner-modules","title":"Validator Owner Modules"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md#context","title":"Context"},{"anchor":"decision","level":2,"line":26,"ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":51,"ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":62,"ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":74,"ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md#source-surfaces","title":"Source surfaces"},{"anchor":"verification","level":2,"line":87,"ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0067-validator-owner-modules.md"},"signs":{"attestation_ref":"","digest":"9111c46bab296a730fa5cd5114d035fb1547e7dd90e5a7081d09a01f04c4b1aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a25d7ae71c9e58ed097eed8733a858f699ea80e0373a9579a5c3e7c6beeee265","git_blob_id":"75d94fa2727a10a7f48a61006667d5c0f0d1afcb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8bf5f4dcc2591df286544649","lineage_path":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md","logical_id":"aoa:aoa-techniques:artifact:8bf5f4dcc2591df286544649","mime":"text/markdown","path":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md","repo":"aoa-techniques","size_bytes":4144,"version_id":"aoa:aoa-techniques:artifact-version:1ca2a896090038db0bf17414"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"script-surface-inventory","level":1,"line":1,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#script-surface-inventory","title":"Script Surface Inventory"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":28,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":35,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":54,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":66,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":77,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":88,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":95,"ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md#verification","title":"Verification"}],"line_refs":["docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md:1"],"path_ref":"docs/decisions/AOA-TECH-D-0068-script-surface-inventory.md"},"signs":{"attestation_ref":"","digest":"a25d7ae71c9e58ed097eed8733a858f699ea80e0373a9579a5c3e7c6beeee265","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d9c21c7db161a78f299ff7831f31bf23a01e2d870afbdf439239ecbf96e02875","git_blob_id":"2aff8cbdc6d7f82d44802b90d4ba2f90afaad938","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e5ec0e7030077b7cf1bfed98","lineage_path":"docs/decisions/README.md","logical_id":"aoa:aoa-techniques:artifact:e5ec0e7030077b7cf1bfed98","mime":"text/markdown","path":"docs/decisions/README.md","repo":"aoa-techniques","size_bytes":4100,"version_id":"aoa:aoa-techniques:artifact-version:5a1e6ea20847434393c8eeea"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decisions-district","level":1,"line":1,"ref":"docs/decisions/README.md#decisions-district","title":"Decisions District"},{"anchor":"district-law","level":2,"line":8,"ref":"docs/decisions/README.md#district-law","title":"District Law"},{"anchor":"current-surface-families","level":2,"line":17,"ref":"docs/decisions/README.md#current-surface-families","title":"Current Surface Families"},{"anchor":"index-shape","level":2,"line":27,"ref":"docs/decisions/README.md#index-shape","title":"Index Shape"},{"anchor":"addressing","level":2,"line":58,"ref":"docs/decisions/README.md#addressing","title":"Addressing"},{"anchor":"record-shape","level":2,"line":69,"ref":"docs/decisions/README.md#record-shape","title":"Record Shape"},{"anchor":"must-not-claim","level":2,"line":90,"ref":"docs/decisions/README.md#must-not-claim","title":"Must Not Claim"},{"anchor":"promotion-path","level":2,"line":97,"ref":"docs/decisions/README.md#promotion-path","title":"Promotion Path"}],"line_refs":["docs/decisions/README.md:1"],"path_ref":"docs/decisions/README.md"},"signs":{"attestation_ref":"","digest":"d9c21c7db161a78f299ff7831f31bf23a01e2d870afbdf439239ecbf96e02875","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1dd6942642fa34f7109b3807ff58631aa3b38949f74b0bc0093eff5f42e7cb37","git_blob_id":"28cbc9c50eb4b54872cd8141ae4530a13d4be5e1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:874770b82440579ca24bf934","lineage_path":"docs/decisions/TEMPLATE.md","logical_id":"aoa:aoa-techniques:artifact:874770b82440579ca24bf934","mime":"text/markdown","path":"docs/decisions/TEMPLATE.md","repo":"aoa-techniques","size_bytes":1269,"version_id":"aoa:aoa-techniques:artifact-version:f033c330b571249ee7c519bd"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/TEMPLATE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/TEMPLATE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-title","level":1,"line":1,"ref":"docs/decisions/TEMPLATE.md#decision-note-title","title":"Decision Note: Title"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/TEMPLATE.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/TEMPLATE.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":20,"ref":"docs/decisions/TEMPLATE.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":25,"ref":"docs/decisions/TEMPLATE.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":29,"ref":"docs/decisions/TEMPLATE.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":33,"ref":"docs/decisions/TEMPLATE.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":38,"ref":"docs/decisions/TEMPLATE.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":42,"ref":"docs/decisions/TEMPLATE.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":47,"ref":"docs/decisions/TEMPLATE.md#verification","title":"Verification"}],"line_refs":["docs/decisions/TEMPLATE.md:1"],"path_ref":"docs/decisions/TEMPLATE.md"},"signs":{"attestation_ref":"","digest":"1dd6942642fa34f7109b3807ff58631aa3b38949f74b0bc0093eff5f42e7cb37","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c48a95e5591c43ec553f58a51af2e2b394e08e3ab5f3bd9deb0346f0cdacf438","git_blob_id":"74e126ead0e613d2d58ab2941f523e92dac5192c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:874770b82440579ca24bf934","lineage_path":"docs/decisions/TEMPLATE.md","logical_id":"aoa:aoa-techniques:artifact:874770b82440579ca24bf934","mime":"text/markdown","path":"docs/decisions/TEMPLATE.md","repo":"aoa-techniques","size_bytes":1102,"version_id":"aoa:aoa-techniques:artifact-version:b316213530298e47fc4961ac"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/TEMPLATE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/decisions/TEMPLATE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-note-title","level":1,"line":1,"ref":"docs/decisions/TEMPLATE.md#decision-note-title","title":"Decision Note: Title"},{"anchor":"index-metadata","level":2,"line":6,"ref":"docs/decisions/TEMPLATE.md#index-metadata","title":"Index Metadata"},{"anchor":"context","level":2,"line":16,"ref":"docs/decisions/TEMPLATE.md#context","title":"Context"},{"anchor":"options-considered","level":2,"line":20,"ref":"docs/decisions/TEMPLATE.md#options-considered","title":"Options considered"},{"anchor":"decision","level":2,"line":25,"ref":"docs/decisions/TEMPLATE.md#decision","title":"Decision"},{"anchor":"rationale","level":2,"line":29,"ref":"docs/decisions/TEMPLATE.md#rationale","title":"Rationale"},{"anchor":"consequences","level":2,"line":33,"ref":"docs/decisions/TEMPLATE.md#consequences","title":"Consequences"},{"anchor":"source-surfaces","level":2,"line":38,"ref":"docs/decisions/TEMPLATE.md#source-surfaces","title":"Source surfaces"},{"anchor":"follow-up-route","level":2,"line":42,"ref":"docs/decisions/TEMPLATE.md#follow-up-route","title":"Follow-up route"},{"anchor":"verification","level":2,"line":47,"ref":"docs/decisions/TEMPLATE.md#verification","title":"Verification"}],"line_refs":["docs/decisions/TEMPLATE.md:1"],"path_ref":"docs/decisions/TEMPLATE.md"},"signs":{"attestation_ref":"","digest":"c48a95e5591c43ec553f58a51af2e2b394e08e3ab5f3bd9deb0346f0cdacf438","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"generated_readmodel","compatibility":"generated","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"generated_readmodel","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8d332b838126191be5997c309d29c1bbae4eb1ee74525c0a69ded28ef8d4fb5e","git_blob_id":"0f3216f5ca99de87f4bb223d5a64aef790b8ed3d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:16f69bcd84ec7a895c63a279","lineage_path":"docs/decisions/indexes/README.md","logical_id":"aoa:aoa-techniques:artifact:16f69bcd84ec7a895c63a279","mime":"text/markdown","path":"docs/decisions/indexes/README.md","repo":"aoa-techniques","size_bytes":496,"version_id":"aoa:aoa-techniques:artifact-version:aa73dac3d0008fade704c4ca"},"mechanics_role":"none","observed_form":"generated_output","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/indexes/README.md"},"provenance":{"generated_by":"scripts/generate_decision_indexes.py","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"derived_readmodel","path":"docs/decisions/indexes/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-lookup-indexes","level":1,"line":1,"ref":"docs/decisions/indexes/README.md#decision-lookup-indexes","title":"Decision Lookup Indexes"},{"anchor":"indexes","level":2,"line":8,"ref":"docs/decisions/indexes/README.md#indexes","title":"Indexes"}],"line_refs":["docs/decisions/indexes/README.md:1"],"path_ref":"docs/decisions/indexes/README.md"},"signs":{"attestation_ref":"","digest":"8d332b838126191be5997c309d29c1bbae4eb1ee74525c0a69ded28ef8d4fb5e","signature_ref":"","verification_state":"digest-only"},"surface_state":"generated_readmodel","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"generated_readmodel","compatibility":"generated","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"generated_readmodel","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e8aee2a967d176ddf8f7b5914340e3c95367a7a9356e3f761a0f1ea73f205be4","git_blob_id":"16a2cfc9825314a4067acd72ae7291f43923496a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7f76a83a939eefd1ee2b3fe1","lineage_path":"docs/decisions/indexes/by-date.md","logical_id":"aoa:aoa-techniques:artifact:7f76a83a939eefd1ee2b3fe1","mime":"text/markdown","path":"docs/decisions/indexes/by-date.md","repo":"aoa-techniques","size_bytes":12276,"version_id":"aoa:aoa-techniques:artifact-version:06f8ab00ace8035ea04d2f7e"},"mechanics_role":"none","observed_form":"generated_output","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/indexes/by-date.md"},"provenance":{"generated_by":"scripts/generate_decision_indexes.py","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"derived_readmodel","path":"docs/decisions/indexes/by-date.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decisions-by-date","level":1,"line":1,"ref":"docs/decisions/indexes/by-date.md#decisions-by-date","title":"Decisions By Date"},{"anchor":"2026-05-01","level":2,"line":5,"ref":"docs/decisions/indexes/by-date.md#2026-05-01","title":"2026-05-01"},{"anchor":"2026-05-02","level":2,"line":26,"ref":"docs/decisions/indexes/by-date.md#2026-05-02","title":"2026-05-02"},{"anchor":"2026-05-03","level":2,"line":32,"ref":"docs/decisions/indexes/by-date.md#2026-05-03","title":"2026-05-03"},{"anchor":"2026-05-04","level":2,"line":49,"ref":"docs/decisions/indexes/by-date.md#2026-05-04","title":"2026-05-04"},{"anchor":"2026-05-06","level":2,"line":59,"ref":"docs/decisions/indexes/by-date.md#2026-05-06","title":"2026-05-06"},{"anchor":"2026-05-14","level":2,"line":64,"ref":"docs/decisions/indexes/by-date.md#2026-05-14","title":"2026-05-14"},{"anchor":"2026-05-15","level":2,"line":79,"ref":"docs/decisions/indexes/by-date.md#2026-05-15","title":"2026-05-15"},{"anchor":"2026-05-16","level":2,"line":83,"ref":"docs/decisions/indexes/by-date.md#2026-05-16","title":"2026-05-16"},{"anchor":"2026-05-17","level":2,"line":87,"ref":"docs/decisions/indexes/by-date.md#2026-05-17","title":"2026-05-17"},{"anchor":"2026-05-18","level":2,"line":92,"ref":"docs/decisions/indexes/by-date.md#2026-05-18","title":"2026-05-18"},{"anchor":"2026-05-31","level":2,"line":99,"ref":"docs/decisions/indexes/by-date.md#2026-05-31","title":"2026-05-31"},{"anchor":"2026-06-02","level":2,"line":103,"ref":"docs/decisions/indexes/by-date.md#2026-06-02","title":"2026-06-02"},{"anchor":"2026-06-03","level":2,"line":108,"ref":"docs/decisions/indexes/by-date.md#2026-06-03","title":"2026-06-03"}],"line_refs":["docs/decisions/indexes/by-date.md:1"],"path_ref":"docs/decisions/indexes/by-date.md"},"signs":{"attestation_ref":"","digest":"e8aee2a967d176ddf8f7b5914340e3c95367a7a9356e3f761a0f1ea73f205be4","signature_ref":"","verification_state":"digest-only"},"surface_state":"generated_readmodel","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"generated_readmodel","compatibility":"generated","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"generated_readmodel","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"decision","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b50bd53e5a30ad254f69df0317af67a8b304f8cb6b783db288037d5a1d33831d","git_blob_id":"369887e694568f2a6a96cdefae725938cffbaf7e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8ae406686a02a37522de1f6a","lineage_path":"docs/decisions/indexes/by-guard.md","logical_id":"aoa:aoa-techniques:artifact:8ae406686a02a37522de1f6a","mime":"text/markdown","path":"docs/decisions/indexes/by-guard.md","repo":"aoa-techniques","size_bytes":20730,"version_id":"aoa:aoa-techniques:artifact-version:1d8e603a870856a53dab2b7e"},"mechanics_role":"none","observed_form":"generated_output","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/decisions/indexes/by-guard.md"},"provenance":{"generated_by":"scripts/generate_decision_indexes.py","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"derived_readmodel","path":"docs/decisions/indexes/by-guard.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decisions-by-validation-or-guard-family","level":1,"line":1,"ref":"docs/decisions/indexes/by-guard.md#decisions-by-validation-or-guard-family","title":"Decisions By Validation Or Guard Family"},{"anchor":"decision-indexread-model","level":2,"line":5,"ref":"docs/decisions/indexes/by-guard.md#decision-indexread-model","title":"decision index/read-model"},{"anchor":"docs-route","level":2,"line":9,"ref":"docs/decisions/indexes/by-guard.md#docs-route","title":"docs route"},{"anchor":"root-surface","level":2,"line":17,"ref":"docs/decisions/indexes/by-guard.md#root-surface","title":"root surface"},{"anchor":"technique-atom","level":2,"line":25,"ref":"docs/decisions/indexes/by-guard.md#technique-atom","title":"technique atom"},{"anchor":"technique-topology","level":2,"line":29,"ref":"docs/decisions/indexes/by-guard.md#technique-topology","title":"technique topology"},{"anchor":"technique-tree","level":2,"line":34,"ref":"docs/decisions/indexes/by-guard.md#technique-tree","title":"technique tree"},{"anchor":"kind-remap","level":2,"line":38,"ref":"docs/decisions/indexes/by-guard.md#kind-remap","title":"kind remap"},{"anchor":"template-validation","level":2,"line":45,"ref":"docs/decisions/indexes/by-guard.md#template-validation","title":"template validation"},{"anchor":"mechanic-topology","level":2,"line":49,"ref":"docs/decisions/indexes/by-guard.md#mechanic-topology","title":"mechanic topology"},{"anchor":"part-local-artifact","level":2,"line":88,"ref":"docs/decisions/indexes/by-guard.md#part-local-artifact","title":"part-local artifact"},{"anchor":"generatedread-model","level":2,"line":108,"ref":"docs/decisions/indexes/by-guard.md#generatedread-model","title":"generated/read-model"},{"anchor":"agentsmesh","level":2,"line":121,"ref":"docs/decisions/indexes/by-guard.md#agentsmesh","title":"AGENTS/mesh"},{"anchor":"releasetooling","level":2,"line":129,"ref":"docs/decisions/indexes/by-guard.md#releasetooling","title":"release/tooling"},{"anchor":"public-safety","level":2,"line":135,"ref":"docs/decisions/indexes/by-guard.md#public-safety","title":"public-safety"},{"anchor":"sibling-owner-boundary","level":2,"line":139,"ref":"docs/decisions/indexes/by-guard.md#sibling-owner-boundary","title":"sibling-owner boundary"},{"anchor":"evidence-intake","level":2,"line":146,"ref":"docs/decisions/indexes/by-guard.md#evidence-intake","title":"evidence intake"},{"anchor":"legacyprovenance","level":2,"line":153,"ref":"docs/decisions/indexes/by-guard.md#legacyprovenance","title":"legacy/provenance"},{"anchor":"questbook","level":2,"line":161,"ref":"docs/decisions/indexes/by-guard.md#questbook","title":"questbook"},{"anchor":"ci-lane","level":2,"line":166,"ref":"docs/decisions/indexes/by-guard.md#ci-lane","title":"CI lane"},{"anchor":"command-authority","level":2,"line":170,"ref":"docs/decisions/indexes/by-guard.md#command-authority","title":"command authority"},{"anchor":"script-topology","level":2,"line":174,"ref":"docs/decisions/indexes/by-guard.md#script-topology","title":"script topology"},{"anchor":"source-contract","level":2,"line":178,"ref":"docs/decisions/indexes/by-guard.md#source-contract","title":"source contract"},{"anchor":"validator-topology","level":2,"line":183,"ref":"docs/decisions/indexes/by-guard.md#validator-topology","title":"validator topology"}],"line_refs":["docs/decisions/indexes/by-guard.md:1"],"path_ref":"docs/decisions/indexes/by-guard.md"},"signs":{"attestation_ref":"","digest":"b50bd53e5a30ad254f69df0317af67a8b304f8cb6b783db288037d5a1d33831d","signature_ref":"","verification_state":"digest-only"},"surface_state":"generated_readmodel","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -475,7 +475,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e148b1e72b725e4920425ffca74a0d7181bb016de59add14e3bc1e8dc039c827","git_blob_id":"ffb5baad8a2e1a12b01867b258ea1d69702c5a4b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1d8b9b7788329ad7f8b9f7c2","lineage_path":"docs/guardrails/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:1d8b9b7788329ad7f8b9f7c2","mime":"text/markdown","path":"docs/guardrails/AGENTS.md","repo":"aoa-techniques","size_bytes":2061,"version_id":"aoa:aoa-techniques:artifact-version:1885b4bb4fe4f57faa42d653"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/guardrails/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/guardrails/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"docs/guardrails/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"docs/guardrails/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"docs/guardrails/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":16,"ref":"docs/guardrails/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":38,"ref":"docs/guardrails/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":47,"ref":"docs/guardrails/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":65,"ref":"docs/guardrails/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["docs/guardrails/AGENTS.md:1"],"path_ref":"docs/guardrails/AGENTS.md"},"signs":{"attestation_ref":"","digest":"e148b1e72b725e4920425ffca74a0d7181bb016de59add14e3bc1e8dc039c827","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"53341597d4038e60cb4ab4714511915af4090ba678b72b850c0ff6b6779e86c5","git_blob_id":"4530ce451ae63ac50974893e5a23637b6935404e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a30377afed4eebade38c0468","lineage_path":"docs/guardrails/AGENTS_MESH_INDEX.md","logical_id":"aoa:aoa-techniques:artifact:a30377afed4eebade38c0468","mime":"text/markdown","path":"docs/guardrails/AGENTS_MESH_INDEX.md","repo":"aoa-techniques","size_bytes":1914,"version_id":"aoa:aoa-techniques:artifact-version:7705851a0e473c00764d25cb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/guardrails/AGENTS_MESH_INDEX.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/guardrails/AGENTS_MESH_INDEX.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agents-mesh-index","level":1,"line":1,"ref":"docs/guardrails/AGENTS_MESH_INDEX.md#agents-mesh-index","title":"AGENTS Mesh Index"},{"anchor":"current-mesh","level":2,"line":3,"ref":"docs/guardrails/AGENTS_MESH_INDEX.md#current-mesh","title":"Current Mesh"},{"anchor":"core-surfaces","level":2,"line":8,"ref":"docs/guardrails/AGENTS_MESH_INDEX.md#core-surfaces","title":"Core Surfaces"},{"anchor":"growth-posture","level":2,"line":22,"ref":"docs/guardrails/AGENTS_MESH_INDEX.md#growth-posture","title":"Growth Posture"},{"anchor":"migration-posture","level":2,"line":28,"ref":"docs/guardrails/AGENTS_MESH_INDEX.md#migration-posture","title":"Migration Posture"},{"anchor":"release-posture","level":2,"line":37,"ref":"docs/guardrails/AGENTS_MESH_INDEX.md#release-posture","title":"Release Posture"}],"line_refs":["docs/guardrails/AGENTS_MESH_INDEX.md:1"],"path_ref":"docs/guardrails/AGENTS_MESH_INDEX.md"},"signs":{"attestation_ref":"","digest":"53341597d4038e60cb4ab4714511915af4090ba678b72b850c0ff6b6779e86c5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"292aa11b6a456a6ec709ccdac7262b151078ffeb27ef8fefd853cd79a1957242","git_blob_id":"28d5748741266fce2c66b911e5a3e4f4637b63b9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a6035ffadf74cdaa5ce7242d","lineage_path":"docs/guardrails/AGENTS_MESH_PROTOCOL.md","logical_id":"aoa:aoa-techniques:artifact:a6035ffadf74cdaa5ce7242d","mime":"text/markdown","path":"docs/guardrails/AGENTS_MESH_PROTOCOL.md","repo":"aoa-techniques","size_bytes":2745,"version_id":"aoa:aoa-techniques:artifact-version:5d8ee0d65c65a9377b464042"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/guardrails/AGENTS_MESH_PROTOCOL.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/guardrails/AGENTS_MESH_PROTOCOL.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agents-mesh-protocol","level":1,"line":1,"ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md#agents-mesh-protocol","title":"AGENTS Mesh Protocol"},{"anchor":"purpose","level":2,"line":3,"ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md#purpose","title":"Purpose"},{"anchor":"contract","level":2,"line":12,"ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md#contract","title":"Contract"},{"anchor":"precedence","level":2,"line":29,"ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md#precedence","title":"Precedence"},{"anchor":"growth-rule","level":2,"line":42,"ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md#growth-rule","title":"Growth Rule"},{"anchor":"migration-rule","level":2,"line":57,"ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md#migration-rule","title":"Migration Rule"},{"anchor":"must-not-claim","level":2,"line":67,"ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md#must-not-claim","title":"Must Not Claim"},{"anchor":"check-route","level":2,"line":75,"ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md#check-route","title":"Check Route"}],"line_refs":["docs/guardrails/AGENTS_MESH_PROTOCOL.md:1"],"path_ref":"docs/guardrails/AGENTS_MESH_PROTOCOL.md"},"signs":{"attestation_ref":"","digest":"292aa11b6a456a6ec709ccdac7262b151078ffeb27ef8fefd853cd79a1957242","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d76a43910177f6de0c3f8b93d47cca0ce234af19d60e9f94d6e5037d110d7f3f","git_blob_id":"921fad868cb4fdfc3423d965e206128a09b77d5b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","lineage_path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","logical_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","mime":"text/markdown","path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","repo":"aoa-techniques","size_bytes":6539,"version_id":"aoa:aoa-techniques:artifact-version:5a744c5781ffb346aa850ae6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/guardrails/CURRENT_SURFACE_INDEX.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"current-surface-index","level":1,"line":1,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#current-surface-index","title":"Current Surface Index"},{"anchor":"local-route-and-entry","level":2,"line":9,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#local-route-and-entry","title":"Local Route And Entry"},{"anchor":"technique-canon-contracts","level":2,"line":20,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#technique-canon-contracts","title":"Technique Canon Contracts"},{"anchor":"district-routes","level":2,"line":29,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#district-routes","title":"District Routes"},{"anchor":"source-lift-guide-district","level":2,"line":52,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#source-lift-guide-district","title":"Source-Lift Guide District"},{"anchor":"guardrail-district","level":2,"line":67,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#guardrail-district","title":"Guardrail District"},{"anchor":"validation-district","level":2,"line":78,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#validation-district","title":"Validation District"},{"anchor":"review-guide-district","level":2,"line":86,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#review-guide-district","title":"Review Guide District"},{"anchor":"selection-guide-district","level":2,"line":95,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#selection-guide-district","title":"Selection Guide District"},{"anchor":"known-follow-ups","level":2,"line":104,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#known-follow-ups","title":"Known Follow-Ups"}],"line_refs":["docs/guardrails/CURRENT_SURFACE_INDEX.md:1"],"path_ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md"},"signs":{"attestation_ref":"","digest":"d76a43910177f6de0c3f8b93d47cca0ce234af19d60e9f94d6e5037d110d7f3f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c28b0a8baa97184edf468daf205de9432dae826108c27db41ec5c40de3ea9233","git_blob_id":"79ed50272b694fd92dd32d6ae23d98b6be55db4e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","lineage_path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","logical_id":"aoa:aoa-techniques:artifact:1ef4faddc260b97dfada6d45","mime":"text/markdown","path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","repo":"aoa-techniques","size_bytes":6696,"version_id":"aoa:aoa-techniques:artifact-version:6a2c898cb386db88c1c920b9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/guardrails/CURRENT_SURFACE_INDEX.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/guardrails/CURRENT_SURFACE_INDEX.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"current-surface-index","level":1,"line":1,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#current-surface-index","title":"Current Surface Index"},{"anchor":"local-route-and-entry","level":2,"line":9,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#local-route-and-entry","title":"Local Route And Entry"},{"anchor":"technique-canon-contracts","level":2,"line":20,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#technique-canon-contracts","title":"Technique Canon Contracts"},{"anchor":"district-routes","level":2,"line":29,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#district-routes","title":"District Routes"},{"anchor":"source-lift-guide-district","level":2,"line":53,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#source-lift-guide-district","title":"Source-Lift Guide District"},{"anchor":"guardrail-district","level":2,"line":68,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#guardrail-district","title":"Guardrail District"},{"anchor":"validation-district","level":2,"line":79,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#validation-district","title":"Validation District"},{"anchor":"review-guide-district","level":2,"line":87,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#review-guide-district","title":"Review Guide District"},{"anchor":"selection-guide-district","level":2,"line":96,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#selection-guide-district","title":"Selection Guide District"},{"anchor":"known-follow-ups","level":2,"line":105,"ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md#known-follow-ups","title":"Known Follow-Ups"}],"line_refs":["docs/guardrails/CURRENT_SURFACE_INDEX.md:1"],"path_ref":"docs/guardrails/CURRENT_SURFACE_INDEX.md"},"signs":{"attestation_ref":"","digest":"c28b0a8baa97184edf468daf205de9432dae826108c27db41ec5c40de3ea9233","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c586859cd6cf8c74fa1cc52e363e0b92440988399ed90b445fa6f17b9a605b43","git_blob_id":"7f7d289af4cadb42f609b17dd9ad0aa7b979d084","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:597db2d527cf1980636687f7","lineage_path":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md","logical_id":"aoa:aoa-techniques:artifact:597db2d527cf1980636687f7","mime":"text/markdown","path":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md","repo":"aoa-techniques","size_bytes":2002,"version_id":"aoa:aoa-techniques:artifact-version:5b53754df31442141855accf"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"hygiene-guardrail-index","level":1,"line":1,"ref":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md#hygiene-guardrail-index","title":"Hygiene Guardrail Index"},{"anchor":"guardrail-table","level":2,"line":9,"ref":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md#guardrail-table","title":"Guardrail Table"},{"anchor":"success-conditions","level":2,"line":22,"ref":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md#success-conditions","title":"Success Conditions"},{"anchor":"how-to-extend","level":2,"line":34,"ref":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md#how-to-extend","title":"How To Extend"}],"line_refs":["docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md:1"],"path_ref":"docs/guardrails/HYGIENE_GUARDRAIL_INDEX.md"},"signs":{"attestation_ref":"","digest":"c586859cd6cf8c74fa1cc52e363e0b92440988399ed90b445fa6f17b9a605b43","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ede5b94eea0fbc9403bb16ca4cfd323ebd94c2b2519487418efcc70a5dd026e2","git_blob_id":"6639312a674aa292ae2479ebcfbf27ed49b3f6fa","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8005e5b700a11bc4fd350476","lineage_path":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md","logical_id":"aoa:aoa-techniques:artifact:8005e5b700a11bc4fd350476","mime":"text/markdown","path":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md","repo":"aoa-techniques","size_bytes":2407,"version_id":"aoa:aoa-techniques:artifact-version:36b523887694fd0038adf811"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"link-and-shape-hygiene-protocol","level":1,"line":1,"ref":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md#link-and-shape-hygiene-protocol","title":"Link And Shape Hygiene Protocol"},{"anchor":"scope","level":2,"line":10,"ref":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md#scope","title":"Scope"},{"anchor":"local-link-law","level":2,"line":25,"ref":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md#local-link-law","title":"Local Link Law"},{"anchor":"shape-law","level":2,"line":41,"ref":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md#shape-law","title":"Shape Law"},{"anchor":"guarded-surfaces","level":2,"line":54,"ref":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md#guarded-surfaces","title":"Guarded Surfaces"},{"anchor":"check-route","level":2,"line":62,"ref":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md#check-route","title":"Check Route"}],"line_refs":["docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md:1"],"path_ref":"docs/guardrails/LINK_AND_SHAPE_HYGIENE_PROTOCOL.md"},"signs":{"attestation_ref":"","digest":"ede5b94eea0fbc9403bb16ca4cfd323ebd94c2b2519487418efcc70a5dd026e2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8f4ea7b14ab0226f6ca1abf6a2c0ed93acd48ab6afbf4f6698a8b53f77584568","git_blob_id":"bd53ab59a0b2954673bdd47fcf6a10d24a0487e1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c4f6e9b2c3b7d9fc746c9018","lineage_path":"docs/guardrails/README.md","logical_id":"aoa:aoa-techniques:artifact:c4f6e9b2c3b7d9fc746c9018","mime":"text/markdown","path":"docs/guardrails/README.md","repo":"aoa-techniques","size_bytes":974,"version_id":"aoa:aoa-techniques:artifact-version:5c9ba7fd8b8c65aa8ba5088f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/guardrails/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/guardrails/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"guardrails","level":1,"line":1,"ref":"docs/guardrails/README.md#guardrails","title":"Guardrails"}],"line_refs":["docs/guardrails/README.md:1"],"path_ref":"docs/guardrails/README.md"},"signs":{"attestation_ref":"","digest":"8f4ea7b14ab0226f6ca1abf6a2c0ed93acd48ab6afbf4f6698a8b53f77584568","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -525,16 +525,16 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"555a77a4fc4a03d564c9bc89a3adde7f6e332f92af72bf8956ce1b01437e54fd","git_blob_id":"593e05415168304cec60c027866bb30a3969b5a2","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f0f2da3459f55832608c73b4","lineage_path":"docs/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md","logical_id":"aoa:aoa-techniques:artifact:f0f2da3459f55832608c73b4","mime":"text/markdown","path":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md","repo":"aoa-techniques","size_bytes":2226,"version_id":"aoa:aoa-techniques:artifact-version:0935aa137dec50524452e0a4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-checklist-lift-guide","level":1,"line":1,"ref":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md#technique-checklist-lift-guide","title":"Technique Checklist Lift Guide"},{"anchor":"source-contract","level":2,"line":20,"ref":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md#source-contract","title":"Source Contract"},{"anchor":"reader-companion-and-derived-manifests","level":2,"line":30,"ref":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md#reader-companion-and-derived-manifests","title":"Reader Companion And Derived Manifests"},{"anchor":"reader-surface-contract","level":2,"line":40,"ref":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md#reader-surface-contract","title":"Reader Surface Contract"},{"anchor":"boundaries","level":2,"line":54,"ref":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md#boundaries","title":"Boundaries"}],"line_refs":["docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md:1"],"path_ref":"docs/source-lift/TECHNIQUE_CHECKLIST_LIFT_GUIDE.md"},"signs":{"attestation_ref":"","digest":"555a77a4fc4a03d564c9bc89a3adde7f6e332f92af72bf8956ce1b01437e54fd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3b97de6a7dc461bb706ab1694850e7699473cd13d758d5557bb5c2bb12bb44ef","git_blob_id":"5167a3f6fcbceeeca2c50af75717d454de3d64b3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5182e7d1394de0c039b65613","lineage_path":"docs/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md","logical_id":"aoa:aoa-techniques:artifact:5182e7d1394de0c039b65613","mime":"text/markdown","path":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md","repo":"aoa-techniques","size_bytes":2265,"version_id":"aoa:aoa-techniques:artifact-version:2fb6a8ed8f92828660d32244"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-example-lift-guide","level":1,"line":1,"ref":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md#technique-example-lift-guide","title":"Technique Example Lift Guide"},{"anchor":"source-contract","level":2,"line":20,"ref":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md#source-contract","title":"Source Contract"},{"anchor":"reader-companion-and-derived-manifests","level":2,"line":29,"ref":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md#reader-companion-and-derived-manifests","title":"Reader Companion And Derived Manifests"},{"anchor":"reader-surface-contract","level":2,"line":39,"ref":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md#reader-surface-contract","title":"Reader Surface Contract"},{"anchor":"boundaries","level":2,"line":52,"ref":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md#boundaries","title":"Boundaries"}],"line_refs":["docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md:1"],"path_ref":"docs/source-lift/TECHNIQUE_EXAMPLE_LIFT_GUIDE.md"},"signs":{"attestation_ref":"","digest":"3b97de6a7dc461bb706ab1694850e7699473cd13d758d5557bb5c2bb12bb44ef","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"561a8618a0cb661b48fd0a6d7267aa7a6b12e6cf34873fb21534b43ea7b25d98","git_blob_id":"f17be533917380518ff6e3f465b51177166835b6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2991279148f7e9edfd5ef750","lineage_path":"docs/TECHNIQUE_SECTION_LIFT_GUIDE.md","logical_id":"aoa:aoa-techniques:artifact:2991279148f7e9edfd5ef750","mime":"text/markdown","path":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md","repo":"aoa-techniques","size_bytes":2741,"version_id":"aoa:aoa-techniques:artifact-version:e12513e5299cd3be11ee2bd1"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-section-lift-guide","level":1,"line":1,"ref":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md#technique-section-lift-guide","title":"Technique Section Lift Guide"},{"anchor":"source-contract","level":2,"line":21,"ref":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md#source-contract","title":"Source Contract"},{"anchor":"reader-companion-and-derived-manifests","level":2,"line":44,"ref":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md#reader-companion-and-derived-manifests","title":"Reader Companion And Derived Manifests"},{"anchor":"reader-surface-contract","level":2,"line":54,"ref":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md#reader-surface-contract","title":"Reader Surface Contract"},{"anchor":"boundaries","level":2,"line":67,"ref":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md#boundaries","title":"Boundaries"}],"line_refs":["docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md:1"],"path_ref":"docs/source-lift/TECHNIQUE_SECTION_LIFT_GUIDE.md"},"signs":{"attestation_ref":"","digest":"561a8618a0cb661b48fd0a6d7267aa7a6b12e6cf34873fb21534b43ea7b25d98","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6718fb54bfd047829a38bf5b0b0140f9b03fc041f1b8704b361252f19b33b0c8","git_blob_id":"591dfb00cfb24773a9b6164e6c1770ef41fb3018","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","lineage_path":"docs/source-lift/artifact-bundles/README.md","logical_id":"aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","mime":"text/markdown","path":"docs/source-lift/artifact-bundles/README.md","repo":"aoa-techniques","size_bytes":768,"version_id":"aoa:aoa-techniques:artifact-version:49f939c4e2d1629531f694c8"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/source-lift/artifact-bundles/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/source-lift/artifact-bundles/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"source-lift-artifact-bundles","level":1,"line":1,"ref":"docs/source-lift/artifact-bundles/README.md#source-lift-artifact-bundles","title":"Source-Lift Artifact Bundles"}],"line_refs":["docs/source-lift/artifact-bundles/README.md:1"],"path_ref":"docs/source-lift/artifact-bundles/README.md"},"signs":{"attestation_ref":"","digest":"6718fb54bfd047829a38bf5b0b0140f9b03fc041f1b8704b361252f19b33b0c8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"05fb15e0f31be1726438d3962583c5d8b8533c15c6a5d23390be1eb1d4f52d6a","git_blob_id":"30a3cbd6a80e23391fd8799bc4619fa1206f88a3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","lineage_path":"docs/source-lift/artifact-bundles/README.md","logical_id":"aoa:aoa-techniques:artifact:e11893f78670fe6a60f52f34","mime":"text/markdown","path":"docs/source-lift/artifact-bundles/README.md","repo":"aoa-techniques","size_bytes":776,"version_id":"aoa:aoa-techniques:artifact-version:3eb3555b37ae8ce2b6107d61"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/source-lift/artifact-bundles/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/source-lift/artifact-bundles/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"source-lift-artifact-bundles","level":1,"line":1,"ref":"docs/source-lift/artifact-bundles/README.md#source-lift-artifact-bundles","title":"Source-Lift Artifact Bundles"}],"line_refs":["docs/source-lift/artifact-bundles/README.md:1"],"path_ref":"docs/source-lift/artifact-bundles/README.md"},"signs":{"attestation_ref":"","digest":"05fb15e0f31be1726438d3962583c5d8b8533c15c6a5d23390be1eb1d4f52d6a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4bea059daa91608c611cab8a13fe98b26dd53e790547cbff17f653ad45ca6d3a","git_blob_id":"14abddfcb57db50713bd091dfc5d5eb2f79e3c45","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c08fbc9642921d98a2f3bbaf","lineage_path":"docs/source-lift/artifact-bundles/kag_export.bundle.json","logical_id":"aoa:aoa-techniques:artifact:c08fbc9642921d98a2f3bbaf","mime":"application/json","path":"docs/source-lift/artifact-bundles/kag_export.bundle.json","repo":"aoa-techniques","size_bytes":4585,"version_id":"aoa:aoa-techniques:artifact-version:447aba207bd94722ccaf83cb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"docs/source-lift/artifact-bundles/kag_export.bundle.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/source-lift/artifact-bundles/kag_export.bundle.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["docs/source-lift/artifact-bundles/kag_export.bundle.json:1"],"path_ref":"docs/source-lift/artifact-bundles/kag_export.bundle.json"},"signs":{"attestation_ref":"","digest":"4bea059daa91608c611cab8a13fe98b26dd53e790547cbff17f653ad45ca6d3a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"testing_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"49500bf154c68251fed8fd7934beb498c7ee4673a6f8429dc4bba00286f20968","git_blob_id":"7a2285ec2836ef6fc7d096b315f7e0a6a52bc581","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:aecbbf32b8d43d6cf8d19a2b","lineage_path":"docs/testing/TEST_TOPOLOGY.md","logical_id":"aoa:aoa-techniques:artifact:aecbbf32b8d43d6cf8d19a2b","mime":"text/markdown","path":"docs/testing/TEST_TOPOLOGY.md","repo":"aoa-techniques","size_bytes":5332,"version_id":"aoa:aoa-techniques:artifact-version:ea18383d3481c0714e6bf4c1"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/testing/TEST_TOPOLOGY.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/testing/TEST_TOPOLOGY.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"test-topology","level":1,"line":1,"ref":"docs/testing/TEST_TOPOLOGY.md#test-topology","title":"Test Topology"},{"anchor":"route-shape","level":2,"line":12,"ref":"docs/testing/TEST_TOPOLOGY.md#route-shape","title":"Route Shape"},{"anchor":"home-scopes","level":2,"line":28,"ref":"docs/testing/TEST_TOPOLOGY.md#home-scopes","title":"Home Scopes"},{"anchor":"families","level":2,"line":37,"ref":"docs/testing/TEST_TOPOLOGY.md#families","title":"Families"},{"anchor":"lane-rules","level":2,"line":57,"ref":"docs/testing/TEST_TOPOLOGY.md#lane-rules","title":"Lane Rules"}],"line_refs":["docs/testing/TEST_TOPOLOGY.md:1"],"path_ref":"docs/testing/TEST_TOPOLOGY.md"},"signs":{"attestation_ref":"","digest":"49500bf154c68251fed8fd7934beb498c7ee4673a6f8429dc4bba00286f20968","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d68117619da9c058d5b5a1dc3cd69fb25cafcb0380f423a8e6c527f045f45f17","git_blob_id":"5fb6de23c95924875f25bdd7e1b9705469cb4b31","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","lineage_path":"docs/testing/test_inventory.json","logical_id":"aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","mime":"application/json","path":"docs/testing/test_inventory.json","repo":"aoa-techniques","size_bytes":48070,"version_id":"aoa:aoa-techniques:artifact-version:3b9b04dd3db1c0bf65a57bbc"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"docs/testing/test_inventory.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/testing/test_inventory.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["docs/testing/test_inventory.json:1"],"path_ref":"docs/testing/test_inventory.json"},"signs":{"attestation_ref":"","digest":"d68117619da9c058d5b5a1dc3cd69fb25cafcb0380f423a8e6c527f045f45f17","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"04aeb5355eaea2a00c9b259d7684ed436dc50eab3cc0f856d13e75007e339aa5","git_blob_id":"66c33c6519548a6037d0879701728c245fe1d816","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","lineage_path":"docs/testing/test_inventory.json","logical_id":"aoa:aoa-techniques:artifact:4bb775b510fef0b03861add7","mime":"application/json","path":"docs/testing/test_inventory.json","repo":"aoa-techniques","size_bytes":48629,"version_id":"aoa:aoa-techniques:artifact-version:6bc4f72c814addc189cbeb05"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"docs/testing/test_inventory.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/testing/test_inventory.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["docs/testing/test_inventory.json:1"],"path_ref":"docs/testing/test_inventory.json"},"signs":{"attestation_ref":"","digest":"04aeb5355eaea2a00c9b259d7684ed436dc50eab3cc0f856d13e75007e339aa5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f062632c34d2d2f8f3e860861003413c0bfbd9b08cee3949270c77d89ac220a3","git_blob_id":"24a86ffecb641967e9c37bf27cb042753e9edece","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1a548e9218c9b7c28e355d3e","lineage_path":"docs/validation/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:1a548e9218c9b7c28e355d3e","mime":"text/markdown","path":"docs/validation/AGENTS.md","repo":"aoa-techniques","size_bytes":1823,"version_id":"aoa:aoa-techniques:artifact-version:61a45e609b210b216e764c57"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/validation/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"docs/validation/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"docs/validation/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":7,"ref":"docs/validation/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":17,"ref":"docs/validation/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":27,"ref":"docs/validation/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":37,"ref":"docs/validation/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":52,"ref":"docs/validation/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["docs/validation/AGENTS.md:1"],"path_ref":"docs/validation/AGENTS.md"},"signs":{"attestation_ref":"","digest":"f062632c34d2d2f8f3e860861003413c0bfbd9b08cee3949270c77d89ac220a3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"validation_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e27737474c8206af14ce868e5e383e1a9bf3f5f4a470509d76afb7ec139521bd","git_blob_id":"a3411675baff88d610ab51a7be6397fbba6293f5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","lineage_path":"docs/validation/COMMAND_AUTHORITY.md","logical_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","mime":"text/markdown","path":"docs/validation/COMMAND_AUTHORITY.md","repo":"aoa-techniques","size_bytes":3955,"version_id":"aoa:aoa-techniques:artifact-version:56a06fcd92f85fa54c969e91"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/validation/COMMAND_AUTHORITY.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/COMMAND_AUTHORITY.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"validation-command-authority","level":1,"line":1,"ref":"docs/validation/COMMAND_AUTHORITY.md#validation-command-authority","title":"Validation Command Authority"},{"anchor":"lane-commands","level":2,"line":42,"ref":"docs/validation/COMMAND_AUTHORITY.md#lane-commands","title":"Lane Commands"},{"anchor":"promotion-rule","level":2,"line":55,"ref":"docs/validation/COMMAND_AUTHORITY.md#promotion-rule","title":"Promotion Rule"},{"anchor":"failure-route","level":2,"line":66,"ref":"docs/validation/COMMAND_AUTHORITY.md#failure-route","title":"Failure Route"}],"line_refs":["docs/validation/COMMAND_AUTHORITY.md:1"],"path_ref":"docs/validation/COMMAND_AUTHORITY.md"},"signs":{"attestation_ref":"","digest":"e27737474c8206af14ce868e5e383e1a9bf3f5f4a470509d76afb7ec139521bd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"validation_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2818d083299572fcc2217f20e0171ead9e8ab7100ffa87945b166d79825bd333","git_blob_id":"ed09ae8f19ff3f7c180431cdb537223687d86b19","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","lineage_path":"docs/validation/SCRIPT_TOPOLOGY.md","logical_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","mime":"text/markdown","path":"docs/validation/SCRIPT_TOPOLOGY.md","repo":"aoa-techniques","size_bytes":4683,"version_id":"aoa:aoa-techniques:artifact-version:d6323767d286542ac7693f6a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/validation/SCRIPT_TOPOLOGY.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/SCRIPT_TOPOLOGY.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"script-topology","level":1,"line":1,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#script-topology","title":"Script Topology"},{"anchor":"inventory","level":2,"line":12,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#inventory","title":"Inventory"},{"anchor":"script-families","level":2,"line":38,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#script-families","title":"Script Families"},{"anchor":"root-scripts","level":2,"line":53,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#root-scripts","title":"Root Scripts"},{"anchor":"non-root-scripts","level":2,"line":65,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#non-root-scripts","title":"Non-Root Scripts"},{"anchor":"promotion-rule","level":2,"line":88,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#promotion-rule","title":"Promotion Rule"}],"line_refs":["docs/validation/SCRIPT_TOPOLOGY.md:1"],"path_ref":"docs/validation/SCRIPT_TOPOLOGY.md"},"signs":{"attestation_ref":"","digest":"2818d083299572fcc2217f20e0171ead9e8ab7100ffa87945b166d79825bd333","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"validation_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ca9aa01e9968591774aed184b0476fe5caa869b62204dd913091c1ae2e080716","git_blob_id":"30d7a33fd346c1d0a62f432f596d5651cd58a32c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","lineage_path":"docs/validation/VALIDATOR_TOPOLOGY.md","logical_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","mime":"text/markdown","path":"docs/validation/VALIDATOR_TOPOLOGY.md","repo":"aoa-techniques","size_bytes":5681,"version_id":"aoa:aoa-techniques:artifact-version:aba72aefcf55c4779c9fbcfe"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/validation/VALIDATOR_TOPOLOGY.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/VALIDATOR_TOPOLOGY.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"validator-topology","level":1,"line":1,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#validator-topology","title":"Validator Topology"},{"anchor":"lanes","level":2,"line":10,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#lanes","title":"Lanes"},{"anchor":"github-ci-route","level":2,"line":21,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#github-ci-route","title":"GitHub CI Route"},{"anchor":"sourceprojection-boundary","level":2,"line":41,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#sourceprojection-boundary","title":"Source/Projection Boundary"},{"anchor":"validator-modules","level":2,"line":50,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#validator-modules","title":"Validator Modules"},{"anchor":"mechanics-boundary","level":2,"line":74,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#mechanics-boundary","title":"Mechanics Boundary"},{"anchor":"advisory-boundary","level":2,"line":84,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#advisory-boundary","title":"Advisory Boundary"},{"anchor":"inventory","level":2,"line":95,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#inventory","title":"Inventory"}],"line_refs":["docs/validation/VALIDATOR_TOPOLOGY.md:1"],"path_ref":"docs/validation/VALIDATOR_TOPOLOGY.md"},"signs":{"attestation_ref":"","digest":"ca9aa01e9968591774aed184b0476fe5caa869b62204dd913091c1ae2e080716","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6d97f27877d7de51cb548930a41060c78e1b4b56e4c7f18ad24471741a62931f","git_blob_id":"f9f51aba260b3eaac266d32eb8da812eac876b3f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","lineage_path":"docs/validation/script_inventory.json","logical_id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","mime":"application/json","path":"docs/validation/script_inventory.json","repo":"aoa-techniques","size_bytes":52717,"version_id":"aoa:aoa-techniques:artifact-version:21a29bdac5c30c282410ac62"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"docs/validation/script_inventory.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/script_inventory.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["docs/validation/script_inventory.json:1"],"path_ref":"docs/validation/script_inventory.json"},"signs":{"attestation_ref":"","digest":"6d97f27877d7de51cb548930a41060c78e1b4b56e4c7f18ad24471741a62931f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"446b78a5188eafae9bb4d508c51bfac24e58020da5881308a1b566bdc50a2597","git_blob_id":"81f26427ff4a1ccc680c4a3af75c1a5734f3fb76","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","lineage_path":"docs/validation/validator_inventory.json","logical_id":"aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","mime":"application/json","path":"docs/validation/validator_inventory.json","repo":"aoa-techniques","size_bytes":10278,"version_id":"aoa:aoa-techniques:artifact-version:e88a625e97d79a679e52c29a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"docs/validation/validator_inventory.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/validator_inventory.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["docs/validation/validator_inventory.json:1"],"path_ref":"docs/validation/validator_inventory.json"},"signs":{"attestation_ref":"","digest":"446b78a5188eafae9bb4d508c51bfac24e58020da5881308a1b566bdc50a2597","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"validation_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2b137e52741c67f31bd43800da9394a611355c723bc1e482591e2c2fef1875e6","git_blob_id":"e83b8dac65f2f299e4ba8a09f9dcb518bbbae8b0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","lineage_path":"docs/validation/COMMAND_AUTHORITY.md","logical_id":"aoa:aoa-techniques:artifact:3ad361f605350ce7bcb20ee4","mime":"text/markdown","path":"docs/validation/COMMAND_AUTHORITY.md","repo":"aoa-techniques","size_bytes":3678,"version_id":"aoa:aoa-techniques:artifact-version:49cddaa20bca56a8cbfee4b1"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/validation/COMMAND_AUTHORITY.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/COMMAND_AUTHORITY.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"validation-command-authority","level":1,"line":1,"ref":"docs/validation/COMMAND_AUTHORITY.md#validation-command-authority","title":"Validation Command Authority"},{"anchor":"promotion-rule","level":2,"line":46,"ref":"docs/validation/COMMAND_AUTHORITY.md#promotion-rule","title":"Promotion Rule"},{"anchor":"failure-route","level":2,"line":57,"ref":"docs/validation/COMMAND_AUTHORITY.md#failure-route","title":"Failure Route"}],"line_refs":["docs/validation/COMMAND_AUTHORITY.md:1"],"path_ref":"docs/validation/COMMAND_AUTHORITY.md"},"signs":{"attestation_ref":"","digest":"2b137e52741c67f31bd43800da9394a611355c723bc1e482591e2c2fef1875e6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"validation_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fea58f7d0ddcedc1cad42629737f2002492937907a20a9049d65b478d56b0b37","git_blob_id":"e292964c907b44e73bcbbe4d4157af97d9a4360c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","lineage_path":"docs/validation/SCRIPT_TOPOLOGY.md","logical_id":"aoa:aoa-techniques:artifact:aa8d0c7ec9156b9d8aae3422","mime":"text/markdown","path":"docs/validation/SCRIPT_TOPOLOGY.md","repo":"aoa-techniques","size_bytes":5064,"version_id":"aoa:aoa-techniques:artifact-version:463940127a9cc63f61a56fa4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/validation/SCRIPT_TOPOLOGY.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/SCRIPT_TOPOLOGY.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"script-topology","level":1,"line":1,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#script-topology","title":"Script Topology"},{"anchor":"inventory","level":2,"line":12,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#inventory","title":"Inventory"},{"anchor":"script-families","level":2,"line":38,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#script-families","title":"Script Families"},{"anchor":"root-scripts","level":2,"line":54,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#root-scripts","title":"Root Scripts"},{"anchor":"non-root-scripts","level":2,"line":70,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#non-root-scripts","title":"Non-Root Scripts"},{"anchor":"promotion-rule","level":2,"line":93,"ref":"docs/validation/SCRIPT_TOPOLOGY.md#promotion-rule","title":"Promotion Rule"}],"line_refs":["docs/validation/SCRIPT_TOPOLOGY.md:1"],"path_ref":"docs/validation/SCRIPT_TOPOLOGY.md"},"signs":{"attestation_ref":"","digest":"fea58f7d0ddcedc1cad42629737f2002492937907a20a9049d65b478d56b0b37","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"validation_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d741cfc8f9001411bf595b8e61f82308c5adbe7063e4bceddbd5f32e589c23f4","git_blob_id":"65367100818773c550cf5dd335c8ecb38faedd33","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","lineage_path":"docs/validation/VALIDATOR_TOPOLOGY.md","logical_id":"aoa:aoa-techniques:artifact:e6559058d59fa5041a93ea06","mime":"text/markdown","path":"docs/validation/VALIDATOR_TOPOLOGY.md","repo":"aoa-techniques","size_bytes":6058,"version_id":"aoa:aoa-techniques:artifact-version:962e9f32f5d926d6d5d89a77"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"docs/validation/VALIDATOR_TOPOLOGY.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/VALIDATOR_TOPOLOGY.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"validator-topology","level":1,"line":1,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#validator-topology","title":"Validator Topology"},{"anchor":"lanes","level":2,"line":10,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#lanes","title":"Lanes"},{"anchor":"github-ci-route","level":2,"line":21,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#github-ci-route","title":"GitHub CI Route"},{"anchor":"sourceprojection-boundary","level":2,"line":43,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#sourceprojection-boundary","title":"Source/Projection Boundary"},{"anchor":"validator-modules","level":2,"line":55,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#validator-modules","title":"Validator Modules"},{"anchor":"mechanics-boundary","level":2,"line":79,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#mechanics-boundary","title":"Mechanics Boundary"},{"anchor":"advisory-boundary","level":2,"line":89,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#advisory-boundary","title":"Advisory Boundary"},{"anchor":"inventory","level":2,"line":100,"ref":"docs/validation/VALIDATOR_TOPOLOGY.md#inventory","title":"Inventory"}],"line_refs":["docs/validation/VALIDATOR_TOPOLOGY.md:1"],"path_ref":"docs/validation/VALIDATOR_TOPOLOGY.md"},"signs":{"attestation_ref":"","digest":"d741cfc8f9001411bf595b8e61f82308c5adbe7063e4bceddbd5f32e589c23f4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5648f2e47075430108cb81e00974397721c4d6d46426ab6a5dea079b0882daaf","git_blob_id":"01f767ae893dcf76ac2554b6f45238aa40254d6b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","lineage_path":"docs/validation/script_inventory.json","logical_id":"aoa:aoa-techniques:artifact:3e79b7425badea9ebb7fc55d","mime":"application/json","path":"docs/validation/script_inventory.json","repo":"aoa-techniques","size_bytes":53427,"version_id":"aoa:aoa-techniques:artifact-version:bc052284e1ea12ce27ddb173"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"docs/validation/script_inventory.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/script_inventory.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["docs/validation/script_inventory.json:1"],"path_ref":"docs/validation/script_inventory.json"},"signs":{"attestation_ref":"","digest":"5648f2e47075430108cb81e00974397721c4d6d46426ab6a5dea079b0882daaf","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"625fe468c4fc4fc407c299105f4f363facde0ed0ba6ef1f0f89f155b6c7b8a15","git_blob_id":"276b00a7dfd23f39b329fa1c600993eaa36ee277","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","lineage_path":"docs/validation/validator_inventory.json","logical_id":"aoa:aoa-techniques:artifact:c1230c1b468b10ee8cca2d40","mime":"application/json","path":"docs/validation/validator_inventory.json","repo":"aoa-techniques","size_bytes":10570,"version_id":"aoa:aoa-techniques:artifact-version:11dd5c16a1efe3cf5a4613c0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"docs/validation/validator_inventory.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"docs/validation/validator_inventory.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["docs/validation/validator_inventory.json:1"],"path_ref":"docs/validation/validator_inventory.json"},"signs":{"attestation_ref":"","digest":"625fe468c4fc4fc407c299105f4f363facde0ed0ba6ef1f0f89f155b6c7b8a15","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d61e15d2bf526314ebc5534c1dc53d44b3e87ebed29edc54e91fa3b752ab4047","git_blob_id":"6648fd35e64b350968dae098242ab2790904b9b4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:97b1e9d3cdd5039f97903b28","lineage_path":"evals/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:97b1e9d3cdd5039f97903b28","mime":"text/markdown","path":"evals/AGENTS.md","repo":"aoa-techniques","size_bytes":1364,"version_id":"aoa:aoa-techniques:artifact-version:ea2af744f0bdc1af7207deb3"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"evals/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"evals/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"evals/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"evals/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":7,"ref":"evals/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":16,"ref":"evals/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":22,"ref":"evals/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":31,"ref":"evals/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":40,"ref":"evals/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["evals/AGENTS.md:1"],"path_ref":"evals/AGENTS.md"},"signs":{"attestation_ref":"","digest":"d61e15d2bf526314ebc5534c1dc53d44b3e87ebed29edc54e91fa3b752ab4047","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f5e363634137001c8666c64bb1505ea5020ca6292aa65569b4ae5b8ee4e120fb","git_blob_id":"e46e34b3ef84f6a1cdddc7117e679fac5510563c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b027c5aa6bfa309e504db8b6","lineage_path":"evals/PORT.yaml","logical_id":"aoa:aoa-techniques:artifact:b027c5aa6bfa309e504db8b6","mime":"application/yaml","path":"evals/PORT.yaml","repo":"aoa-techniques","size_bytes":290,"version_id":"aoa:aoa-techniques:artifact-version:930627088d127b5ec8080330"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"evals/PORT.yaml"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"evals/PORT.yaml","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["evals/PORT.yaml:1"],"path_ref":"evals/PORT.yaml"},"signs":{"attestation_ref":"","digest":"f5e363634137001c8666c64bb1505ea5020ca6292aa65569b4ae5b8ee4e120fb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e5b75e0dd0a91b4c60170a4d3d07bc518a5b0dc0cd9c3ca7e87cdc4e146a02a3","git_blob_id":"5bb017ac190bf21038d41ece1672116ddfb7a786","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a1a9eeb43d4de7693b860e12","lineage_path":"evals/README.md","logical_id":"aoa:aoa-techniques:artifact:a1a9eeb43d4de7693b860e12","mime":"text/markdown","path":"evals/README.md","repo":"aoa-techniques","size_bytes":873,"version_id":"aoa:aoa-techniques:artifact-version:b892f7c84529efb8ea0da2ee"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"evals/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"evals/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"local-eval-port","level":1,"line":1,"ref":"evals/README.md#local-eval-port","title":"Local Eval Port"},{"anchor":"route","level":2,"line":11,"ref":"evals/README.md#route","title":"Route"},{"anchor":"current-status","level":2,"line":19,"ref":"evals/README.md#current-status","title":"Current Status"}],"line_refs":["evals/README.md:1"],"path_ref":"evals/README.md"},"signs":{"attestation_ref":"","digest":"e5b75e0dd0a91b4c60170a4d3d07bc518a5b0dc0cd9c3ca7e87cdc4e146a02a3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -545,7 +545,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"06e78834e2bbe47f3508be342b24947485e2854c93fabc8de14bf49e02ae0b43","git_blob_id":"66ec354eeb5f5d343b3eae53938b8199af45c5c7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:49aaa2819e35a856818ecec8","lineage_path":"examples/README.md","logical_id":"aoa:aoa-techniques:artifact:49aaa2819e35a856818ecec8","mime":"text/markdown","path":"examples/README.md","repo":"aoa-techniques","size_bytes":1864,"version_id":"aoa:aoa-techniques:artifact-version:926a081159563053c0cf0847"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"examples/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"examples/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"examples-district","level":1,"line":1,"ref":"examples/README.md#examples-district","title":"Examples District"},{"anchor":"placement","level":2,"line":10,"ref":"examples/README.md#placement","title":"Placement"},{"anchor":"current-examples","level":2,"line":20,"ref":"examples/README.md#current-examples","title":"Current Examples"},{"anchor":"example-shape","level":2,"line":26,"ref":"examples/README.md#example-shape","title":"Example Shape"}],"line_refs":["examples/README.md:1"],"path_ref":"examples/README.md"},"signs":{"attestation_ref":"","digest":"06e78834e2bbe47f3508be342b24947485e2854c93fabc8de14bf49e02ae0b43","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2e258e743c61815ba9d6defaf5deebfcb0d6816c39e8cff0767077aaf45d69fd","git_blob_id":"deae85bb424c35da52f81377e910ee2e7b15ee0b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:87c37630bc6d828694084bbe","lineage_path":"WALKTHROUGH.md","logical_id":"aoa:aoa-techniques:artifact:87c37630bc6d828694084bbe","mime":"text/markdown","path":"examples/plan-diff-apply-verify-report-walkthrough.md","repo":"aoa-techniques","size_bytes":3492,"version_id":"aoa:aoa-techniques:artifact-version:30d0a0f99caa6c781c928ad8"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"examples/plan-diff-apply-verify-report-walkthrough.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"examples/plan-diff-apply-verify-report-walkthrough.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"walkthrough-aoa-t-0001","level":1,"line":1,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#walkthrough-aoa-t-0001","title":"Walkthrough: AOA-T-0001"},{"anchor":"source-surfaces","level":2,"line":5,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#source-surfaces","title":"Source Surfaces"},{"anchor":"demonstrates","level":2,"line":15,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#demonstrates","title":"Demonstrates"},{"anchor":"origin-practice","level":3,"line":17,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#origin-practice","title":"Origin Practice"},{"anchor":"published-technique","level":3,"line":21,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#published-technique","title":"Published Technique"},{"anchor":"reuse-evidence","level":3,"line":37,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#reuse-evidence","title":"Reuse Evidence"},{"anchor":"second-context-adaptation","level":3,"line":47,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#second-context-adaptation","title":"Second-Context Adaptation"},{"anchor":"boundary","level":2,"line":66,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#boundary","title":"Boundary"},{"anchor":"checks","level":2,"line":78,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#checks","title":"Checks"},{"anchor":"closeout","level":2,"line":84,"ref":"examples/plan-diff-apply-verify-report-walkthrough.md#closeout","title":"Closeout"}],"line_refs":["examples/plan-diff-apply-verify-report-walkthrough.md:1"],"path_ref":"examples/plan-diff-apply-verify-report-walkthrough.md"},"signs":{"attestation_ref":"","digest":"2e258e743c61815ba9d6defaf5deebfcb0d6816c39e8cff0767077aaf45d69fd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bf7680fae9bf67491b1da546f7ec067b1843a087f1cb665d928012a7982448d1","git_blob_id":"da3ef95fd2b86d665a515d070c252ab7662ed997","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:73de061b3989ed8c40a36b86","lineage_path":"generated/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:73de061b3989ed8c40a36b86","mime":"text/markdown","path":"generated/AGENTS.md","repo":"aoa-techniques","size_bytes":2320,"version_id":"aoa:aoa-techniques:artifact-version:416a593b41c6aa5ad073f835"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"generated/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"generated/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"generated/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"generated/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"generated/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":23,"ref":"generated/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":32,"ref":"generated/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":44,"ref":"generated/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":61,"ref":"generated/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["generated/AGENTS.md:1"],"path_ref":"generated/AGENTS.md"},"signs":{"attestation_ref":"","digest":"bf7680fae9bf67491b1da546f7ec067b1843a087f1cb665d928012a7982448d1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"generated_readmodel","compatibility":"generated","contract_version":"none","schema_version":"aoa_techniques_agents_mesh_index_v1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"generated_readmodel","classification":{"confidence":"high","primary_kind":"artifact"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ce54bc01e69be249f25f8e5d8b4fd3f717b6d939894a15e11da03691ca79e939","git_blob_id":"d2882ced89e57e60df88604be88a3e8735e82c6e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","lineage_path":"generated/agents_mesh.min.json","logical_id":"aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","mime":"application/json","path":"generated/agents_mesh.min.json","repo":"aoa-techniques","size_bytes":34929,"version_id":"aoa:aoa-techniques:artifact-version:ed60c6fac6ab99d5af376f6c"},"mechanics_role":"none","observed_form":"generated_output","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"generated/agents_mesh.min.json"},"provenance":{"generated_by":"scripts/build_agents_mesh_index.py","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"derived_readmodel","path":"generated/agents_mesh.min.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["generated/agents_mesh.min.json:1"],"path_ref":"generated/agents_mesh.min.json"},"signs":{"attestation_ref":"","digest":"ce54bc01e69be249f25f8e5d8b4fd3f717b6d939894a15e11da03691ca79e939","signature_ref":"","verification_state":"digest-only"},"surface_state":"generated_readmodel","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"generated_readmodel","compatibility":"generated","contract_version":"none","schema_version":"aoa_techniques_agents_mesh_index_v1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"generated_readmodel","classification":{"confidence":"high","primary_kind":"artifact"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"14c8bb6b949676889f33eb6e7031d0f3748ea72f8942c50acfa3c17b1a49f966","git_blob_id":"63e6dceb3a0e548c44a00d2db9d331dd788979e7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","lineage_path":"generated/agents_mesh.min.json","logical_id":"aoa:aoa-techniques:artifact:b7df43ab3f96dae64b5f5aa1","mime":"application/json","path":"generated/agents_mesh.min.json","repo":"aoa-techniques","size_bytes":35270,"version_id":"aoa:aoa-techniques:artifact-version:2730cc54ea4e4d461af7775e"},"mechanics_role":"none","observed_form":"generated_output","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"generated/agents_mesh.min.json"},"provenance":{"generated_by":"scripts/build_agents_mesh_index.py","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"derived_readmodel","path":"generated/agents_mesh.min.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["generated/agents_mesh.min.json:1"],"path_ref":"generated/agents_mesh.min.json"},"signs":{"attestation_ref":"","digest":"14c8bb6b949676889f33eb6e7031d0f3748ea72f8942c50acfa3c17b1a49f966","signature_ref":"","verification_state":"digest-only"},"surface_state":"generated_readmodel","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"generated_readmodel","compatibility":"generated","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"generated_readmodel","classification":{"confidence":"high","primary_kind":"artifact"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c893c20f736de4ca1aa88e3c54de6919a26e2db60188eccc4fc8de59b90cbcdc","git_blob_id":"48f2ce3169cb8437b9303bae21e1101207004151","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6876c3c05522c4e1277a2317","lineage_path":"generated/github_review_template_manifest.json","logical_id":"aoa:aoa-techniques:artifact:6876c3c05522c4e1277a2317","mime":"application/json","path":"generated/github_review_template_manifest.json","repo":"aoa-techniques","size_bytes":19355,"version_id":"aoa:aoa-techniques:artifact-version:4492523b5fa23df4e4915724"},"mechanics_role":"none","observed_form":"generated_output","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"generated/github_review_template_manifest.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"derived_readmodel","path":"generated/github_review_template_manifest.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["generated/github_review_template_manifest.json:1"],"path_ref":"generated/github_review_template_manifest.json"},"signs":{"attestation_ref":"","digest":"c893c20f736de4ca1aa88e3c54de6919a26e2db60188eccc4fc8de59b90cbcdc","signature_ref":"","verification_state":"digest-only"},"surface_state":"generated_readmodel","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"generated_readmodel","compatibility":"generated","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"generated_readmodel","classification":{"confidence":"high","primary_kind":"artifact"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c73617933c354d446ddf90e8bdcb0a004335d172629f62d678b5431169af524a","git_blob_id":"45daf8754ef39fc5f12115b5f28ecd00962d030b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6b7d6ccea097ae14a6c98d6c","lineage_path":"generated/github_review_template_manifest.min.json","logical_id":"aoa:aoa-techniques:artifact:6b7d6ccea097ae14a6c98d6c","mime":"application/json","path":"generated/github_review_template_manifest.min.json","repo":"aoa-techniques","size_bytes":6962,"version_id":"aoa:aoa-techniques:artifact-version:9319047763f4cd499236eb58"},"mechanics_role":"none","observed_form":"generated_output","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"generated/github_review_template_manifest.min.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"derived_readmodel","path":"generated/github_review_template_manifest.min.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["generated/github_review_template_manifest.min.json:1"],"path_ref":"generated/github_review_template_manifest.min.json"},"signs":{"attestation_ref":"","digest":"c73617933c354d446ddf90e8bdcb0a004335d172629f62d678b5431169af524a","signature_ref":"","verification_state":"digest-only"},"surface_state":"generated_readmodel","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"generated_readmodel","compatibility":"generated","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"generated_readmodel","classification":{"confidence":"high","primary_kind":"artifact"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2e85c2ad24893884fd16f621a052901fbc8c736f534b269f4b1d6b9527d7202c","git_blob_id":"551b68fac253bf23b240d819b26463c74f49df24","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5","lineage_path":"generated/kag_export.json","logical_id":"aoa:aoa-techniques:artifact:ea4526b95a32d8e43b0473f5","mime":"application/json","path":"generated/kag_export.json","repo":"aoa-techniques","size_bytes":3383,"version_id":"aoa:aoa-techniques:artifact-version:836ab92511a2aebb8f74b958"},"mechanics_role":"none","observed_form":"generated_output","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"generated/kag_export.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"derived_readmodel","path":"generated/kag_export.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["generated/kag_export.json:1"],"path_ref":"generated/kag_export.json"},"signs":{"attestation_ref":"","digest":"2e85c2ad24893884fd16f621a052901fbc8c736f534b269f4b1d6b9527d7202c","signature_ref":"","verification_state":"digest-only"},"surface_state":"generated_readmodel","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -594,38 +594,38 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5ace264765be820a047bbe056f5cd5014d483a66ebb46093aa8af9bffc326cb1","git_blob_id":"1341e46348f1e5bc85bdbc7783eb89f4079d39aa","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e8921ab3091f80a96da2b570","lineage_path":"legacy/INDEX.md","logical_id":"aoa:aoa-techniques:artifact:e8921ab3091f80a96da2b570","mime":"text/markdown","path":"legacy/INDEX.md","repo":"aoa-techniques","size_bytes":9036,"version_id":"aoa:aoa-techniques:artifact-version:b232fb9c43d8489743d28ced"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/INDEX.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/INDEX.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-legacy-index","level":1,"line":1,"ref":"legacy/INDEX.md#root-legacy-index","title":"Root Legacy Index"},{"anchor":"inventory","level":2,"line":8,"ref":"legacy/INDEX.md#inventory","title":"Inventory"},{"anchor":"accounting-rule","level":2,"line":42,"ref":"legacy/INDEX.md#accounting-rule","title":"Accounting Rule"}],"line_refs":["legacy/INDEX.md:1"],"path_ref":"legacy/INDEX.md"},"signs":{"attestation_ref":"","digest":"5ace264765be820a047bbe056f5cd5014d483a66ebb46093aa8af9bffc326cb1","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c1694975fa1a26431eaa54293dc26d5360f6363956b3b117b7a4a58e35593b67","git_blob_id":"3516ca8f6bbebb820c92eadc9e4e8c04192e0c86","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:70cf324ad5b327bba1d3ff96","lineage_path":"legacy/README.md","logical_id":"aoa:aoa-techniques:artifact:70cf324ad5b327bba1d3ff96","mime":"text/markdown","path":"legacy/README.md","repo":"aoa-techniques","size_bytes":1898,"version_id":"aoa:aoa-techniques:artifact-version:115d590d15db24b50598e740"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-legacy","level":1,"line":1,"ref":"legacy/README.md#root-legacy","title":"Root Legacy"},{"anchor":"current-route-first","level":2,"line":11,"ref":"legacy/README.md#current-route-first","title":"Current route first"},{"anchor":"layout","level":2,"line":26,"ref":"legacy/README.md#layout","title":"Layout"},{"anchor":"entry-rule","level":2,"line":38,"ref":"legacy/README.md#entry-rule","title":"Entry rule"}],"line_refs":["legacy/README.md:1"],"path_ref":"legacy/README.md"},"signs":{"attestation_ref":"","digest":"c1694975fa1a26431eaa54293dc26d5360f6363956b3b117b7a4a58e35593b67","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0007f43690ef581d0a3b3b9788a795fee9d21eb1899f724e118ed13316cb2bc0","git_blob_id":"8ea447cebf9aaef9bb3a189612f414910e6d628e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f98306dd5b9800eb2179fc78","lineage_path":"legacy/archive/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:f98306dd5b9800eb2179fc78","mime":"text/markdown","path":"legacy/archive/AGENTS.md","repo":"aoa-techniques","size_bytes":1575,"version_id":"aoa:aoa-techniques:artifact-version:f476a78c6b0fa4d69ea083cd"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/archive/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/archive/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"legacy/archive/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"legacy/archive/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":7,"ref":"legacy/archive/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":15,"ref":"legacy/archive/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":28,"ref":"legacy/archive/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":41,"ref":"legacy/archive/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":53,"ref":"legacy/archive/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["legacy/archive/AGENTS.md:1"],"path_ref":"legacy/archive/AGENTS.md"},"signs":{"attestation_ref":"","digest":"0007f43690ef581d0a3b3b9788a795fee9d21eb1899f724e118ed13316cb2bc0","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"768491d067556eed0bec9009bc4b62d56efce85b1ed2974398f0e37b9873af37","git_blob_id":"47af21cfa87690c05c0163fbbec36a204e61f993","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","lineage_path":"docs/AGENTS_ROOT_REFERENCE.md","logical_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","mime":"text/markdown","path":"legacy/archive/AGENTS_ROOT_REFERENCE.md","repo":"aoa-techniques","size_bytes":7968,"version_id":"aoa:aoa-techniques:artifact-version:fb1c1fc8fe1886b7787517a5"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/archive/AGENTS_ROOT_REFERENCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/archive/AGENTS_ROOT_REFERENCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agents-root-reference","level":1,"line":1,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#agents-root-reference","title":"AGENTS root reference"},{"anchor":"preserved-root-agentsmd-from-before-pack-5","level":2,"line":14,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#preserved-root-agentsmd-from-before-pack-5","title":"Preserved root AGENTS.md from before Pack 5"},{"anchor":"agentsmd","level":1,"line":16,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#agentsmd","title":"AGENTS.md"},{"anchor":"purpose","level":2,"line":20,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#purpose","title":"Purpose"},{"anchor":"owns","level":2,"line":31,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#owns","title":"Owns"},{"anchor":"does-not-own","level":2,"line":43,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#does-not-own","title":"Does not own"},{"anchor":"core-rules","level":2,"line":57,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#core-rules","title":"Core rules"},{"anchor":"growth-posture","level":2,"line":76,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#growth-posture","title":"Growth posture"},{"anchor":"read-this-first","level":2,"line":90,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#read-this-first","title":"Read this first"},{"anchor":"primary-objects","level":2,"line":136,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#primary-objects","title":"Primary objects"},{"anchor":"hard-no","level":2,"line":147,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#hard-no","title":"Hard NO"},{"anchor":"contribution-doctrine","level":2,"line":162,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#contribution-doctrine","title":"Contribution doctrine"},{"anchor":"plan","level":3,"line":166,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#plan","title":"PLAN"},{"anchor":"diff","level":3,"line":176,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#diff","title":"DIFF"},{"anchor":"verify","level":3,"line":183,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#verify","title":"VERIFY"},{"anchor":"report","level":3,"line":216,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#report","title":"REPORT"},{"anchor":"validation","level":2,"line":226,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#validation","title":"Validation"}],"line_refs":["legacy/archive/AGENTS_ROOT_REFERENCE.md:1"],"path_ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md"},"signs":{"attestation_ref":"","digest":"768491d067556eed0bec9009bc4b62d56efce85b1ed2974398f0e37b9873af37","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"149a24efd75b17aa8b34d50e89a1fccd4bd5259814fc4195c51e4798c4c73010","git_blob_id":"f6715093c86e9470b969447ddaddb568bb7ac886","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","lineage_path":"docs/AGENTS_ROOT_REFERENCE.md","logical_id":"aoa:aoa-techniques:artifact:38d0ff2a27dd5e2ade1bafca","mime":"text/markdown","path":"legacy/archive/AGENTS_ROOT_REFERENCE.md","repo":"aoa-techniques","size_bytes":7759,"version_id":"aoa:aoa-techniques:artifact-version:c5e07897730b7f58ba8b2249"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/archive/AGENTS_ROOT_REFERENCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/archive/AGENTS_ROOT_REFERENCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agents-root-reference","level":1,"line":1,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#agents-root-reference","title":"AGENTS root reference"},{"anchor":"preserved-root-agentsmd-from-before-pack-5","level":2,"line":14,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#preserved-root-agentsmd-from-before-pack-5","title":"Preserved root AGENTS.md from before Pack 5"},{"anchor":"agentsmd","level":1,"line":16,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#agentsmd","title":"AGENTS.md"},{"anchor":"purpose","level":2,"line":20,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#purpose","title":"Purpose"},{"anchor":"owns","level":2,"line":31,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#owns","title":"Owns"},{"anchor":"does-not-own","level":2,"line":43,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#does-not-own","title":"Does not own"},{"anchor":"core-rules","level":2,"line":57,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#core-rules","title":"Core rules"},{"anchor":"growth-posture","level":2,"line":76,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#growth-posture","title":"Growth posture"},{"anchor":"read-this-first","level":2,"line":90,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#read-this-first","title":"Read this first"},{"anchor":"primary-objects","level":2,"line":136,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#primary-objects","title":"Primary objects"},{"anchor":"hard-no","level":2,"line":147,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#hard-no","title":"Hard NO"},{"anchor":"contribution-doctrine","level":2,"line":162,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#contribution-doctrine","title":"Contribution doctrine"},{"anchor":"plan","level":3,"line":166,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#plan","title":"PLAN"},{"anchor":"diff","level":3,"line":176,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#diff","title":"DIFF"},{"anchor":"verify","level":3,"line":183,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#verify","title":"VERIFY"},{"anchor":"report","level":3,"line":206,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#report","title":"REPORT"},{"anchor":"validation","level":2,"line":216,"ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md#validation","title":"Validation"}],"line_refs":["legacy/archive/AGENTS_ROOT_REFERENCE.md:1"],"path_ref":"legacy/archive/AGENTS_ROOT_REFERENCE.md"},"signs":{"attestation_ref":"","digest":"149a24efd75b17aa8b34d50e89a1fccd4bd5259814fc4195c51e4798c4c73010","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a6a18ed3b06316f06814ac4f844508108fa2c823163635ecdd53a9314c8af4a9","git_blob_id":"586ea14618f63a5defec8b52d83e2a2afba77c44","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ca8d844544577e6b3deba7e9","lineage_path":"legacy/archive/README.md","logical_id":"aoa:aoa-techniques:artifact:ca8d844544577e6b3deba7e9","mime":"text/markdown","path":"legacy/archive/README.md","repo":"aoa-techniques","size_bytes":703,"version_id":"aoa:aoa-techniques:artifact-version:c52058a7d8912c939e22cc0a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/archive/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/archive/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-legacy-archive","level":1,"line":1,"ref":"legacy/archive/README.md#root-legacy-archive","title":"Root Legacy Archive"}],"line_refs":["legacy/archive/README.md:1"],"path_ref":"legacy/archive/README.md"},"signs":{"attestation_ref":"","digest":"a6a18ed3b06316f06814ac4f844508108fa2c823163635ecdd53a9314c8af4a9","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9d1ef2ac1bdcd6cbaa5cc3735c6b48ff5766ddb60229877eac02f29e8067ef48","git_blob_id":"6d8826d00f19474c6cada5a52fe901c0b49942e9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5e1723690eb14108db5c12e7","lineage_path":"legacy/raw/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:5e1723690eb14108db5c12e7","mime":"text/markdown","path":"legacy/raw/AGENTS.md","repo":"aoa-techniques","size_bytes":1393,"version_id":"aoa:aoa-techniques:artifact-version:b42ddab7e682cef04dc82075"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/raw/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/raw/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"legacy/raw/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"legacy/raw/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":7,"ref":"legacy/raw/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":16,"ref":"legacy/raw/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":29,"ref":"legacy/raw/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":42,"ref":"legacy/raw/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":51,"ref":"legacy/raw/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["legacy/raw/AGENTS.md:1"],"path_ref":"legacy/raw/AGENTS.md"},"signs":{"attestation_ref":"","digest":"9d1ef2ac1bdcd6cbaa5cc3735c6b48ff5766ddb60229877eac02f29e8067ef48","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0574e1a68f6b5f10409575901dbd2456f2e7375ba593033ce86829e29e4a30ae","git_blob_id":"2ecb0ea8001bbf3ab057b7b0b429f88dc5cd927b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a19a1378cfb9c3ea326afee5","lineage_path":"legacy/raw/README.md","logical_id":"aoa:aoa-techniques:artifact:a19a1378cfb9c3ea326afee5","mime":"text/markdown","path":"legacy/raw/README.md","repo":"aoa-techniques","size_bytes":444,"version_id":"aoa:aoa-techniques:artifact-version:677556cfde447431f9695eac"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/raw/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/raw/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-legacy-raw","level":1,"line":1,"ref":"legacy/raw/README.md#root-legacy-raw","title":"Root Legacy Raw"}],"line_refs":["legacy/raw/README.md:1"],"path_ref":"legacy/raw/README.md"},"signs":{"attestation_ref":"","digest":"0574e1a68f6b5f10409575901dbd2456f2e7375ba593033ce86829e29e4a30ae","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f9c53cb62142a9e17b953b34eedaa66eefcef2be3215c0ee4aec58aaee47e068","git_blob_id":"6483af0444c367d1ab7049da781d44e7faa7cdf3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","lineage_path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","mime":"text/markdown","path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","repo":"aoa-techniques","size_bytes":2181,"version_id":"aoa:aoa-techniques:artifact-version:bf471823fadf626b36f5744b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-boundary-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#capability-boundary-tree-pilot-receipt","title":"Capability-Boundary Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":53,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"f9c53cb62142a9e17b953b34eedaa66eefcef2be3215c0ee4aec58aaee47e068","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"471dce56877d84e8670c80942034607f4000030904c30da7c1d44bc8e57232a7","git_blob_id":"1488b7c081b2fae3a0638b905bdc087905ea2068","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","lineage_path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","mime":"text/markdown","path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","repo":"aoa-techniques","size_bytes":2006,"version_id":"aoa:aoa-techniques:artifact-version:7c695df6121cfde561d3dc4f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-registry-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#capability-registry-tree-pilot-receipt","title":"Capability-Registry Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":51,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-capability-registry-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"471dce56877d84e8670c80942034607f4000030904c30da7c1d44bc8e57232a7","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5ff0b48881be6f849a6516809d6adcfa03a2faf6d7d14a00ffbd0c2a7b1ec4ad","git_blob_id":"7bfcf82590c261262b50c55dc8ef23d9005769e1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6105204715b11f5a45523076","lineage_path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:6105204715b11f5a45523076","mime":"text/markdown","path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","repo":"aoa-techniques","size_bytes":2000,"version_id":"aoa:aoa-techniques:artifact-version:90eae40f142bddc45c823a07"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"diagnosis-repair-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#diagnosis-repair-tree-pilot-receipt","title":"Diagnosis-Repair Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":29,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":36,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":50,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"5ff0b48881be6f849a6516809d6adcfa03a2faf6d7d14a00ffbd0c2a7b1ec4ad","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6453c36716943771818ff99b00f63a87e801be7998e4f3f274b4b97aecc346fc","git_blob_id":"b328ac8f652317c76332f26bb76bdf647a2eb596","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","lineage_path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","mime":"text/markdown","path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","repo":"aoa-techniques","size_bytes":2056,"version_id":"aoa:aoa-techniques:artifact-version:fb69a66b6304e69439abd77a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"docs-boundary-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#docs-boundary-tree-pilot-receipt","title":"Docs-Boundary Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":29,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":36,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":51,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"6453c36716943771818ff99b00f63a87e801be7998e4f3f274b4b97aecc346fc","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"handoff","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"49d924150590d97e962abfd63ad915e38880d34a7346fc9c1b7a4ff43f93d724","git_blob_id":"6a1934a208a143a9fd1129021bf6813ba7633a89","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","lineage_path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","mime":"text/markdown","path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","repo":"aoa-techniques","size_bytes":2402,"version_id":"aoa:aoa-techniques:artifact-version:b8b42fa1c8a55c5f98fc0616"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"handoff-continuation-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#handoff-continuation-tree-pilot-receipt","title":"Handoff-Continuation Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":32,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":39,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":51,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"49d924150590d97e962abfd63ad915e38880d34a7346fc9c1b7a4ff43f93d724","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ddd5fbcf5b1018ffd9de2c5ff8bc8e3a0c8b1f4725a07a3c79507799fc965715","git_blob_id":"b5bc474a400244affd6f34ddfee0fd19c4ff023c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","lineage_path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","mime":"text/markdown","path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","repo":"aoa-techniques","size_bytes":2580,"version_id":"aoa:aoa-techniques:artifact-version:ee023c2ab4651abacfd8e910"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"instruction-surface-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#instruction-surface-tree-pilot-receipt","title":"Instruction-Surface Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":32,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":39,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":55,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"ddd5fbcf5b1018ffd9de2c5ff8bc8e3a0c8b1f4725a07a3c79507799fc965715","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"73212bc54d8347967adb1af82d700510e16df77be51e3bd62a9eb6c16dd55eaf","git_blob_id":"39519bc7c21c0d2dcc6bc41718bbf5ad2cebff46","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","lineage_path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","mime":"text/markdown","path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","repo":"aoa-techniques","size_bytes":2649,"version_id":"aoa:aoa-techniques:artifact-version:e2f28111758b83bf937af16f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"kag-source-lift-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#kag-source-lift-tree-pilot-receipt","title":"Kag-Source-Lift Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":33,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":40,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":56,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"73212bc54d8347967adb1af82d700510e16df77be51e3bd62a9eb6c16dd55eaf","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"107223ee55ca9e5043acc43d0615fe2191eaa931df4ba73151282034e11e6797","git_blob_id":"8a33674496923b699989d7bcfb63cfc148031464","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","lineage_path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","mime":"text/markdown","path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","repo":"aoa-techniques","size_bytes":2183,"version_id":"aoa:aoa-techniques:artifact-version:e05472c29a6fbce2319b0265"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"media-ingest-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#media-ingest-tree-pilot-receipt","title":"Media-Ingest Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":30,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":37,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":50,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-media-ingest-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"107223ee55ca9e5043acc43d0615fe2191eaa931df4ba73151282034e11e6797","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"12ce7c7b420106808af53451c4eab9bc58808e8e832a554b745a7735abacf9ae","git_blob_id":"25caa3437963bbc5049aa8dfd6a5c5bdcb750477","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","lineage_path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","mime":"text/markdown","path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","repo":"aoa-techniques","size_bytes":1655,"version_id":"aoa:aoa-techniques:artifact-version:d9420d44dae7345b1ba64a0d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-compaction-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#review-compaction-tree-pilot-receipt","title":"Review-Compaction Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":45,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-review-compaction-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"12ce7c7b420106808af53451c4eab9bc58808e8e832a554b745a7735abacf9ae","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"57e04b039373f2c0cda093a24c67b0090260d03f25c1229f66a233f05fc9d98a","git_blob_id":"05e664a8f1d189e469b2e3a3aa7dc0eafc65b128","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","lineage_path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","mime":"text/markdown","path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","repo":"aoa-techniques","size_bytes":2687,"version_id":"aoa:aoa-techniques:artifact-version:a2550a089a65e8de0c8c035b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agent-workflows-core-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#agent-workflows-core-tree-pilot-receipt","title":"Agent-Workflows-Core Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":27,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":41,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":53,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"57e04b039373f2c0cda093a24c67b0090260d03f25c1229f66a233f05fc9d98a","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"54345a1781aa8b95b29913fa39731853d8da14ebd0fb8165286ed8f6a463547e","git_blob_id":"5799023c12167a12c9bc9815a049925a0b05e89a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","lineage_path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","mime":"text/markdown","path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","repo":"aoa-techniques","size_bytes":2559,"version_id":"aoa:aoa-techniques:artifact-version:b5dbdd3b18f5ff359acf03cb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"antifragility-recovery-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#antifragility-recovery-tree-pilot-receipt","title":"Antifragility-Recovery Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":29,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":36,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":57,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"54345a1781aa8b95b29913fa39731853d8da14ebd0fb8165286ed8f6a463547e","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"71780ac414099a9a330fe886e2c758d3d6f3452ebbe107318c7e073d4df678df","git_blob_id":"28788a8b758a0acdb2e51671f2f24e120ba2fadd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","lineage_path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","mime":"text/markdown","path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","repo":"aoa-techniques","size_bytes":2179,"version_id":"aoa:aoa-techniques:artifact-version:cb7e03326bf981b6f7552914"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"approval-evidence-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#approval-evidence-tree-pilot-receipt","title":"Approval-Evidence Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":24,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":37,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":48,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"71780ac414099a9a330fe886e2c758d3d6f3452ebbe107318c7e073d4df678df","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d8ab7f94744ba9275ebda2bb6de43a0009f1c8a4dd958d0dd71347ef58dae5b2","git_blob_id":"62decce2168b0af0378b128edb834f739bf07231","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:859893b447b67d299abff366","lineage_path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:859893b447b67d299abff366","mime":"text/markdown","path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","repo":"aoa-techniques","size_bytes":2337,"version_id":"aoa:aoa-techniques:artifact-version:4d4bd0fcec60bafa31221bfc"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"automation-readiness-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#automation-readiness-tree-pilot-receipt","title":"Automation-Readiness Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":37,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":49,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"d8ab7f94744ba9275ebda2bb6de43a0009f1c8a4dd958d0dd71347ef58dae5b2","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9be239bae17d2fa5fb7202749468cf4f57a8b9355f442b3d02501aeb314cc53c","git_blob_id":"f7b735ee182aa083f65b8e052da75a9782f7acb5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","lineage_path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","mime":"text/markdown","path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","repo":"aoa-techniques","size_bytes":2278,"version_id":"aoa:aoa-techniques:artifact-version:f2887cc9709d84ea42219802"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-routing-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#decision-routing-tree-pilot-receipt","title":"Decision-Routing Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":37,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":49,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-decision-routing-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"9be239bae17d2fa5fb7202749468cf4f57a8b9355f442b3d02501aeb314cc53c","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0649f1a2ded568d2761032d86790b9be543e2924c324cc48a5c88650f70eb45c","git_blob_id":"8877d001f409da11957e166f124ad278b7839ed3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","lineage_path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","mime":"text/markdown","path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","repo":"aoa-techniques","size_bytes":2543,"version_id":"aoa:aoa-techniques:artifact-version:cf998ab778938be46f076bb9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"donor-harvest-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#donor-harvest-tree-pilot-receipt","title":"Donor-Harvest Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":26,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":40,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":52,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"0649f1a2ded568d2761032d86790b9be543e2924c324cc48a5c88650f70eb45c","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2833492061476f6bad308f61d6e8a52b26a5ce4c4b768ab7b8b6448e2e2597e6","git_blob_id":"24db8370a3c5fe34e973429988d04a2a24ba903b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","lineage_path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","mime":"text/markdown","path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","repo":"aoa-techniques","size_bytes":2105,"version_id":"aoa:aoa-techniques:artifact-version:acbaccbca5a5f05a74354809"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"evaluation-chain-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#evaluation-chain-tree-pilot-receipt","title":"Evaluation-Chain Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":54,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"2833492061476f6bad308f61d6e8a52b26a5ce4c4b768ab7b8b6448e2e2597e6","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b5ef24d6e3877bf40d3ec1fa663fdb44d8cf38a38b5763e0b471fdea549f662b","git_blob_id":"1fc1ca7a1e8a83d1a48416545fe6730d9a941836","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","lineage_path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","mime":"text/markdown","path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","repo":"aoa-techniques","size_bytes":2586,"version_id":"aoa:aoa-techniques:artifact-version:301ce6ee6f84090646f6c937"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"history-artifacts-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#history-artifacts-tree-pilot-receipt","title":"History-Artifacts Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":31,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":38,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":56,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"b5ef24d6e3877bf40d3ec1fa663fdb44d8cf38a38b5763e0b471fdea549f662b","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c7eee2b62e324d5b3907b85cf2219d2179ebd3c99e24997b0c72ff6427cc6cfd","git_blob_id":"04f1f32b4066e40302e6971d4a1760e981e7e699","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:06d31990926be878929aa81d","lineage_path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:06d31990926be878929aa81d","mime":"text/markdown","path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","repo":"aoa-techniques","size_bytes":2077,"version_id":"aoa:aoa-techniques:artifact-version:a4e3cf4f42f497bed050cd9d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"intent-chain-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#intent-chain-tree-pilot-receipt","title":"Intent-Chain Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":24,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":37,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":48,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-intent-chain-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"c7eee2b62e324d5b3907b85cf2219d2179ebd3c99e24997b0c72ff6427cc6cfd","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d853bfe094387817f42619edb7f248865f547190d6cf8c26a03f0d6fe5097dd3","git_blob_id":"5a0239ac07e1239274371615eb59c995282d6fbd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","lineage_path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","mime":"text/markdown","path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","repo":"aoa-techniques","size_bytes":3085,"version_id":"aoa:aoa-techniques:artifact-version:b304b60548c61cdc07171f8b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-truth-closeout-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#owner-truth-closeout-tree-pilot-receipt","title":"Owner-Truth-Closeout Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":27,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":44,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":56,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"d853bfe094387817f42619edb7f248865f547190d6cf8c26a03f0d6fe5097dd3","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9baf0e4d2eaa2c5478574ff53bdc8d2414cb8da44c7924e9ddcd1c5310aed6b0","git_blob_id":"ef3895426f7d6b8a5fadb959ba9b589d43fe60e3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","lineage_path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","mime":"text/markdown","path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","repo":"aoa-techniques","size_bytes":2544,"version_id":"aoa:aoa-techniques:artifact-version:2769f55859e1eb7787a14b99"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"practice-adoption-lifecycle-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#practice-adoption-lifecycle-tree-pilot-receipt","title":"Practice-Adoption-Lifecycle Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":38,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":51,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"9baf0e4d2eaa2c5478574ff53bdc8d2414cb8da44c7924e9ddcd1c5310aed6b0","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"91a4fe73eeed087ca075b35432e4af73822872a8b48a3d09abc6791754314b75","git_blob_id":"3ebde3911c57b0c828f7888074a7238b2f4fc620","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","lineage_path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","mime":"text/markdown","path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","repo":"aoa-techniques","size_bytes":2414,"version_id":"aoa:aoa-techniques:artifact-version:ffc1f1cbd199ea15079b1448"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"promotion-boundary-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#promotion-boundary-tree-pilot-receipt","title":"Promotion-Boundary Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":38,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":50,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"91a4fe73eeed087ca075b35432e4af73822872a8b48a3d09abc6791754314b75","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3f18d3cdd580f34d3c3a158d3c6adebe36d40ba65b8c3eb8c6b33390108bb3b5","git_blob_id":"ad710b24cc69d121d08d1f31741da941ae9f1a03","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","lineage_path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","mime":"text/markdown","path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","repo":"aoa-techniques","size_bytes":2417,"version_id":"aoa:aoa-techniques:artifact-version:5d3214a4671294156d1da1eb"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"published-summary-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#published-summary-tree-pilot-receipt","title":"Published-Summary Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":29,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":36,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":56,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-published-summary-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"3f18d3cdd580f34d3c3a158d3c6adebe36d40ba65b8c3eb8c6b33390108bb3b5","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bf579b40668ef5dae847ddf4699afad6e0133be7d7823928ef2187a82b61a1fb","git_blob_id":"f2565348e24e14e93353e3b09341ea07de2a18cc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","lineage_path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","mime":"text/markdown","path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","repo":"aoa-techniques","size_bytes":2356,"version_id":"aoa:aoa-techniques:artifact-version:3ad66c61c5069988b442a08d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"ready-work-graphs-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#ready-work-graphs-tree-pilot-receipt","title":"Ready-Work-Graphs Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":57,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"bf579b40668ef5dae847ddf4699afad6e0133be7d7823928ef2187a82b61a1fb","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2fa071aa7dff8f207178a5eea0c0d7fa375d6ea6d9250f8ab948c89095dcf22a","git_blob_id":"633f0e1ee95267a7f1dd1f1f7e0581a8131ce726","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","lineage_path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","mime":"text/markdown","path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","repo":"aoa-techniques","size_bytes":2411,"version_id":"aoa:aoa-techniques:artifact-version:de3d4f4553845fec0d14a291"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-evidence-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#review-evidence-tree-pilot-receipt","title":"Review-Evidence Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":40,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":51,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-review-evidence-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"2fa071aa7dff8f207178a5eea0c0d7fa375d6ea6d9250f8ab948c89095dcf22a","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c4948f53a3612fd353b8ca7edd22fa1d1dbc7fb161748d779650e52101fe1696","git_blob_id":"1bde320f3d724b086faf5a0320bc4f46d44effb7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","lineage_path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","mime":"text/markdown","path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","repo":"aoa-techniques","size_bytes":2742,"version_id":"aoa:aoa-techniques:artifact-version:8b1e5813290faefa1dad2c6b"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"runtime-truth-lifecycle-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#runtime-truth-lifecycle-tree-pilot-receipt","title":"Runtime-Truth-Lifecycle Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":26,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":43,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":54,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"c4948f53a3612fd353b8ca7edd22fa1d1dbc7fb161748d779650e52101fe1696","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9f7c9b7c032cfc95ba66c7aa6c0fcda122f8c128c2489ec5f8c50d0fce3ccbee","git_blob_id":"c84c241c5a5f4b6bfaea77637a4d217a944a9349","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","lineage_path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","mime":"text/markdown","path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","repo":"aoa-techniques","size_bytes":1980,"version_id":"aoa:aoa-techniques:artifact-version:9be40b4d3aacdd917defaa63"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"skill-discovery-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#skill-discovery-tree-pilot-receipt","title":"Skill-Discovery Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":27,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":34,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":51,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"9f7c9b7c032cfc95ba66c7aa6c0fcda122f8c128c2489ec5f8c50d0fce3ccbee","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"18e13926fab0c11bef75e39cdb791618a1ab30df039dc46de4932031fea80369","git_blob_id":"6ff49f908137b6b89c6876ec9e48fa61d8ff4770","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","lineage_path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","mime":"text/markdown","path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","repo":"aoa-techniques","size_bytes":1981,"version_id":"aoa:aoa-techniques:artifact-version:f527f5acb4b4e3195ebc4758"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"skill-support-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#skill-support-tree-pilot-receipt","title":"Skill-Support Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":52,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-skill-support-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"18e13926fab0c11bef75e39cdb791618a1ab30df039dc46de4932031fea80369","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ea2e89184fc9655cdaf91aa5ff0032288bb35426b35e703f2aa3a7677ccc1dbe","git_blob_id":"4f5f2047b955c31a78c2a16a84bb2ecf5e4e9494","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","lineage_path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","mime":"text/markdown","path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","repo":"aoa-techniques","size_bytes":1955,"version_id":"aoa:aoa-techniques:artifact-version:0c4f113ed309978b5676603a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"tool-gateway-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#tool-gateway-tree-pilot-receipt","title":"Tool-Gateway Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":23,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":35,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":46,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"ea2e89184fc9655cdaf91aa5ff0032288bb35426b35e703f2aa3a7677ccc1dbe","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9deac499faaf44b894c626e60f7e4cbf56d8a5138d419ece6794d31fb7ef4352","git_blob_id":"13efdb6f5bba6876b703a356186b2f3b482bae7d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","lineage_path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:d78e6281094ff359502f1037","mime":"text/markdown","path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","repo":"aoa-techniques","size_bytes":2164,"version_id":"aoa:aoa-techniques:artifact-version:2d978004272463ee4440bdfa"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-boundary-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#capability-boundary-tree-pilot-receipt","title":"Capability-Boundary Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":53,"ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"9deac499faaf44b894c626e60f7e4cbf56d8a5138d419ece6794d31fb7ef4352","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"201ad803daa61b186214c8237bfd3118252d4afc3f689c61e413a0f2ae918efe","git_blob_id":"55677b22d31813932396afe91e99805a03162f55","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","lineage_path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:8a7e1b00bebca3d539fa3e4a","mime":"text/markdown","path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","repo":"aoa-techniques","size_bytes":1989,"version_id":"aoa:aoa-techniques:artifact-version:fc89ce2eb8b8a2b39054641d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-registry-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#capability-registry-tree-pilot-receipt","title":"Capability-Registry Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":51,"ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-capability-registry-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-capability-registry-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"201ad803daa61b186214c8237bfd3118252d4afc3f689c61e413a0f2ae918efe","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cc0ae5d635e229a9cbec272606178112459d517f1287761ca67ccb49182b2372","git_blob_id":"13722c40f43643068afb2b1b45afc329f856b0b6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6105204715b11f5a45523076","lineage_path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:6105204715b11f5a45523076","mime":"text/markdown","path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","repo":"aoa-techniques","size_bytes":1983,"version_id":"aoa:aoa-techniques:artifact-version:91da33db55f68790e9cc06a7"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"diagnosis-repair-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#diagnosis-repair-tree-pilot-receipt","title":"Diagnosis-Repair Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":29,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":36,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":50,"ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"cc0ae5d635e229a9cbec272606178112459d517f1287761ca67ccb49182b2372","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"572a49695d3bed703207e056b1d4e47636950c78eb2e74f4beaf3f270e2dcdf0","git_blob_id":"897e9db3d13afff435aa929375aa6d76f6a4af17","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","lineage_path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:0ebc3ef5fa668d86e712471d","mime":"text/markdown","path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","repo":"aoa-techniques","size_bytes":2039,"version_id":"aoa:aoa-techniques:artifact-version:870ca909aefc813a3cca3b03"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"docs-boundary-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#docs-boundary-tree-pilot-receipt","title":"Docs-Boundary Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":29,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":36,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":51,"ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"572a49695d3bed703207e056b1d4e47636950c78eb2e74f4beaf3f270e2dcdf0","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"handoff","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"045b0427abb117284fbe109b83972fe0cc0536c51c0ad35fda9df844e9b4a283","git_blob_id":"d2d31fb9151b8364a323f824ec09be8351926533","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","lineage_path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:7f7ca7dcd627c5e95bc1be15","mime":"text/markdown","path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","repo":"aoa-techniques","size_bytes":2385,"version_id":"aoa:aoa-techniques:artifact-version:f76a7d6c20e736c135d79c8a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"handoff-continuation-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#handoff-continuation-tree-pilot-receipt","title":"Handoff-Continuation Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":32,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":39,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":51,"ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"045b0427abb117284fbe109b83972fe0cc0536c51c0ad35fda9df844e9b4a283","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f8ad8b8672e6b9e1f55304683dba76ecec365e18c0cba1914c43085eb3ad332a","git_blob_id":"d85db1a5a42d0a4491501b310f1f0c40c20d1ce7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","lineage_path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:6b9c63b4a2b9d91c8658fe6f","mime":"text/markdown","path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","repo":"aoa-techniques","size_bytes":2563,"version_id":"aoa:aoa-techniques:artifact-version:e3dc17840aeab3354a869b6d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"instruction-surface-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#instruction-surface-tree-pilot-receipt","title":"Instruction-Surface Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":32,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":39,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":55,"ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"f8ad8b8672e6b9e1f55304683dba76ecec365e18c0cba1914c43085eb3ad332a","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fc3f802298ee6a9f8febd555b4f15ee4546e121061c661fb0a0254e01794579b","git_blob_id":"8f41226c4d021984d355cff0ade2e9bf70d4e11e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","lineage_path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:1facc5eba57384ca70a3e2be","mime":"text/markdown","path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","repo":"aoa-techniques","size_bytes":2632,"version_id":"aoa:aoa-techniques:artifact-version:73f65cbce2a0a7d1499ed367"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"kag-source-lift-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#kag-source-lift-tree-pilot-receipt","title":"Kag-Source-Lift Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":33,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":40,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":56,"ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"fc3f802298ee6a9f8febd555b4f15ee4546e121061c661fb0a0254e01794579b","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a15439bcfe87fbf78e6f2aa239c95e6b664b1417525d3b3082e2ce95668f5c3e","git_blob_id":"9bac772cfe98f766849aef886a45815ab1f92f41","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","lineage_path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:89e2b2cd03a2166b1b566ee1","mime":"text/markdown","path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","repo":"aoa-techniques","size_bytes":2166,"version_id":"aoa:aoa-techniques:artifact-version:484bee2d35655ee6c4ea7200"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"media-ingest-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#media-ingest-tree-pilot-receipt","title":"Media-Ingest Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":30,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":37,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":50,"ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-media-ingest-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-media-ingest-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"a15439bcfe87fbf78e6f2aa239c95e6b664b1417525d3b3082e2ce95668f5c3e","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"05907f250389dc2504dad84845ecad8104a01f9680cdef596fd1b6fed672bb96","git_blob_id":"22e8d66b3f64b3ef40cdd44402b965dec1a7c53e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","lineage_path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:29b03df2832f4eea5b9545ae","mime":"text/markdown","path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","repo":"aoa-techniques","size_bytes":1638,"version_id":"aoa:aoa-techniques:artifact-version:13a624ba7d7c8461e54adaf4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-compaction-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#review-compaction-tree-pilot-receipt","title":"Review-Compaction Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":45,"ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-04-review-compaction-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-04-review-compaction-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"05907f250389dc2504dad84845ecad8104a01f9680cdef596fd1b6fed672bb96","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"517761df924168ee7c8d3a756489cc3663a05e2d167ed3d86cf7edee2b8ea0f1","git_blob_id":"f4d31b573d75dfd5be0d21febf38176ef2f0fc9f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","lineage_path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:bac19bf2657b553bf09b10b8","mime":"text/markdown","path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","repo":"aoa-techniques","size_bytes":2536,"version_id":"aoa:aoa-techniques:artifact-version:1f78a2c0fc9a1803a626244f"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agent-workflows-core-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#agent-workflows-core-tree-pilot-receipt","title":"Agent-Workflows-Core Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":27,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":41,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":53,"ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"517761df924168ee7c8d3a756489cc3663a05e2d167ed3d86cf7edee2b8ea0f1","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3b46ad830ab9118e0ee300963009fe7e6e1485a35b4d326f119738525c00e56d","git_blob_id":"bf8cbec09e2a01b2bf3839a658ed2bcc875fd3d8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","lineage_path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:8436895251001fc44adad2b2","mime":"text/markdown","path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","repo":"aoa-techniques","size_bytes":2542,"version_id":"aoa:aoa-techniques:artifact-version:6ec1fa38f2e32a291cf98934"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"antifragility-recovery-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#antifragility-recovery-tree-pilot-receipt","title":"Antifragility-Recovery Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":29,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":36,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":57,"ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"3b46ad830ab9118e0ee300963009fe7e6e1485a35b4d326f119738525c00e56d","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"389e2b1b83e920060c147ce7ec589219e7da29f9d4f76f0d84ee7da7bbf0e18f","git_blob_id":"d84177124a3f8419202ad39d66145cf5d5c0f636","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","lineage_path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:2ed5f4f883b18c3fd2f79ae2","mime":"text/markdown","path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","repo":"aoa-techniques","size_bytes":2028,"version_id":"aoa:aoa-techniques:artifact-version:3db25d998e72c106bf61eafa"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"approval-evidence-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#approval-evidence-tree-pilot-receipt","title":"Approval-Evidence Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":24,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":37,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":48,"ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"389e2b1b83e920060c147ce7ec589219e7da29f9d4f76f0d84ee7da7bbf0e18f","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f5e04c6e0c7f2b809d4e1ec3327d0bc7f06d61c6093cd9f9c709a606413a9a2b","git_blob_id":"6cf6541e44cccdad2a798e3de75ebbe3c137eda5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:859893b447b67d299abff366","lineage_path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:859893b447b67d299abff366","mime":"text/markdown","path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","repo":"aoa-techniques","size_bytes":2186,"version_id":"aoa:aoa-techniques:artifact-version:b901fc2e92d90f95f7003d02"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"automation-readiness-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#automation-readiness-tree-pilot-receipt","title":"Automation-Readiness Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":37,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":49,"ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"f5e04c6e0c7f2b809d4e1ec3327d0bc7f06d61c6093cd9f9c709a606413a9a2b","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"15ceebdfd5fb29bcb87960b56df44e3acdf8f9b7d17f78d5bf4ba2d5d1d4f234","git_blob_id":"9c6714b19460b9d32cb6b2b5686295f18e4deec3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","lineage_path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:055c1b35f657cd8d6d4d41ef","mime":"text/markdown","path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","repo":"aoa-techniques","size_bytes":2127,"version_id":"aoa:aoa-techniques:artifact-version:9161862b3fcaf2f3a2157aac"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-routing-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#decision-routing-tree-pilot-receipt","title":"Decision-Routing Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":37,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":49,"ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-decision-routing-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-decision-routing-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"15ceebdfd5fb29bcb87960b56df44e3acdf8f9b7d17f78d5bf4ba2d5d1d4f234","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8fba5f883fd2203f9642013d3d35c2327320c6c88c200b22b381d0669c70c628","git_blob_id":"6382f52901bd35cb3b6e71b2cee9bc7954e33f03","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","lineage_path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:9b0c6d86d44507243cd571d4","mime":"text/markdown","path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","repo":"aoa-techniques","size_bytes":2392,"version_id":"aoa:aoa-techniques:artifact-version:633dd6d9cf328655aaabdeb0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"donor-harvest-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#donor-harvest-tree-pilot-receipt","title":"Donor-Harvest Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":26,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":40,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":52,"ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"8fba5f883fd2203f9642013d3d35c2327320c6c88c200b22b381d0669c70c628","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"66e099336fabfcd8c16a94f2418deec363b4472e26a5b93e34738d2241f62c9d","git_blob_id":"093942bd0c0a99571e5a2c51c27ac7d39b3c237e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","lineage_path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:8e6f6b1072831047e1b498d5","mime":"text/markdown","path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","repo":"aoa-techniques","size_bytes":2088,"version_id":"aoa:aoa-techniques:artifact-version:b33f989dc3d4500ee5e741b0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"evaluation-chain-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#evaluation-chain-tree-pilot-receipt","title":"Evaluation-Chain Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":54,"ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"66e099336fabfcd8c16a94f2418deec363b4472e26a5b93e34738d2241f62c9d","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2646a47a8231225156bb3ff4a545589fe5b58fbbffa4cd80403ed3fa034b28e3","git_blob_id":"9cc3abc4b262da21e415ce7b646b22c9486248b7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","lineage_path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:7c055a7c9f7b76f93fce5175","mime":"text/markdown","path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","repo":"aoa-techniques","size_bytes":2569,"version_id":"aoa:aoa-techniques:artifact-version:6f2d161fcb80eaecd824a893"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"history-artifacts-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#history-artifacts-tree-pilot-receipt","title":"History-Artifacts Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":31,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":38,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":56,"ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"2646a47a8231225156bb3ff4a545589fe5b58fbbffa4cd80403ed3fa034b28e3","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6cc8b97924cccbf3c59ca38d97c45a87ead9fbbb17fd411b004d3884a6bf6d6d","git_blob_id":"7e22176195231faef58d0f780f16615ca8853ee6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:06d31990926be878929aa81d","lineage_path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:06d31990926be878929aa81d","mime":"text/markdown","path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","repo":"aoa-techniques","size_bytes":1926,"version_id":"aoa:aoa-techniques:artifact-version:5fef168e16a92e7d3f0595d9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"intent-chain-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#intent-chain-tree-pilot-receipt","title":"Intent-Chain Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":24,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":37,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":48,"ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-intent-chain-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-intent-chain-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"6cc8b97924cccbf3c59ca38d97c45a87ead9fbbb17fd411b004d3884a6bf6d6d","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"30c158aba4928224c96162bf753599528da1f3ab8262cacda5f4f8c7a083cbc4","git_blob_id":"c197ecff384453c7b50fea0a9624f3dfbf7f41ba","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","lineage_path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:fd16c3faffa91b3404bfa102","mime":"text/markdown","path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","repo":"aoa-techniques","size_bytes":2934,"version_id":"aoa:aoa-techniques:artifact-version:3d6920531d4a6cead1f258f0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-truth-closeout-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#owner-truth-closeout-tree-pilot-receipt","title":"Owner-Truth-Closeout Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":27,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":44,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":56,"ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"30c158aba4928224c96162bf753599528da1f3ab8262cacda5f4f8c7a083cbc4","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8d8a69c8a49fda9f670e9281f2091a820046c72367633e50aff17f1bd86d3898","git_blob_id":"09f6eba27b6eb786cb151b20ab75c71404168a99","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","lineage_path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:78a22582aed534cd39b79f50","mime":"text/markdown","path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","repo":"aoa-techniques","size_bytes":2393,"version_id":"aoa:aoa-techniques:artifact-version:5214290f32fce09bc3531526"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"practice-adoption-lifecycle-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#practice-adoption-lifecycle-tree-pilot-receipt","title":"Practice-Adoption-Lifecycle Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":38,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":51,"ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"8d8a69c8a49fda9f670e9281f2091a820046c72367633e50aff17f1bd86d3898","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"956b390e870ca2924924c36c21e73b221077a53cae39a448740e2ecda41e1bc4","git_blob_id":"5ada358fc3baf8a3f23278f4e8e1066b850f61e2","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","lineage_path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:95e37c40a51718e0fcb2b67d","mime":"text/markdown","path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","repo":"aoa-techniques","size_bytes":2263,"version_id":"aoa:aoa-techniques:artifact-version:1d9b9d329c0179063a5d1bdf"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"promotion-boundary-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#promotion-boundary-tree-pilot-receipt","title":"Promotion-Boundary Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":38,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":50,"ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"956b390e870ca2924924c36c21e73b221077a53cae39a448740e2ecda41e1bc4","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5203d51aa0ccac45022ab3d2c00995cfa75ee671799bea0d33897fba56906b2f","git_blob_id":"f67bf0e9d72d7f1c4dc20c4aca682359ed4d25cd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","lineage_path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:11fd276d281ae6ae9b20a0e7","mime":"text/markdown","path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","repo":"aoa-techniques","size_bytes":2400,"version_id":"aoa:aoa-techniques:artifact-version:1ad84e4a8830f5c6821b1178"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"published-summary-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#published-summary-tree-pilot-receipt","title":"Published-Summary Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":29,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":36,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":56,"ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-published-summary-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-published-summary-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"5203d51aa0ccac45022ab3d2c00995cfa75ee671799bea0d33897fba56906b2f","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"091a6c18363c208b8e4c711d2b0f60491b1fd6413a8574e803e11bf3dd42bc41","git_blob_id":"a3eaa4b775c6175964303d80b72685245af472bf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","lineage_path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:88d737685f534f56aa5a579f","mime":"text/markdown","path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","repo":"aoa-techniques","size_bytes":2339,"version_id":"aoa:aoa-techniques:artifact-version:8747a219f0f17470c911a666"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"ready-work-graphs-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#ready-work-graphs-tree-pilot-receipt","title":"Ready-Work-Graphs Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":57,"ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"091a6c18363c208b8e4c711d2b0f60491b1fd6413a8574e803e11bf3dd42bc41","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fa3d510b5c442ed61f1509e4eaf90c39ed2a160862f758d45596e24949b26a4f","git_blob_id":"11addbb9940c8059a8d35736477b99055c72aa27","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","lineage_path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:cd8280d623d5e4e42e3c17fb","mime":"text/markdown","path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","repo":"aoa-techniques","size_bytes":2260,"version_id":"aoa:aoa-techniques:artifact-version:e5c9d4408fc19fea3f3799de"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-evidence-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#review-evidence-tree-pilot-receipt","title":"Review-Evidence Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":25,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":40,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":51,"ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-review-evidence-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-review-evidence-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"fa3d510b5c442ed61f1509e4eaf90c39ed2a160862f758d45596e24949b26a4f","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0435bbffa1754a372411394902df493c2bb6094cb93beb05f9a4497de2c9f13f","git_blob_id":"06cc4a10cb03f5302b270731b7b0483dead38238","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","lineage_path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:e16da97072c494e685bd74eb","mime":"text/markdown","path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","repo":"aoa-techniques","size_bytes":2591,"version_id":"aoa:aoa-techniques:artifact-version:62a0e4f6e641d75656fc1b2c"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"runtime-truth-lifecycle-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#runtime-truth-lifecycle-tree-pilot-receipt","title":"Runtime-Truth-Lifecycle Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":26,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":43,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":54,"ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"0435bbffa1754a372411394902df493c2bb6094cb93beb05f9a4497de2c9f13f","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"410b32f623b9c92c617acca01faf4f01d858148b1e9d4b2bfa16e3cb1076ffdc","git_blob_id":"34c92de7c32e2dc26f84c5e929136e2f74800f25","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","lineage_path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:1e4fd6fbb557c2560d63a5c6","mime":"text/markdown","path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","repo":"aoa-techniques","size_bytes":1963,"version_id":"aoa:aoa-techniques:artifact-version:deef6a425a5fe0af39af2345"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"skill-discovery-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#skill-discovery-tree-pilot-receipt","title":"Skill-Discovery Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":27,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":34,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":51,"ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"410b32f623b9c92c617acca01faf4f01d858148b1e9d4b2bfa16e3cb1076ffdc","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"94db9f2e01a35d451352618c55c862640ffa401fd9fa61a4236d2318dda600c4","git_blob_id":"4207d44ad79822072bb296182e60db60f3c90e5e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","lineage_path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:5ca4cf1c0b847bab1202c4d2","mime":"text/markdown","path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","repo":"aoa-techniques","size_bytes":1964,"version_id":"aoa:aoa-techniques:artifact-version:6ae84d929dd7f36653acf25a"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"skill-support-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#skill-support-tree-pilot-receipt","title":"Skill-Support Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#status","title":"Status"},{"anchor":"scope","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#scope","title":"Scope"},{"anchor":"moves","level":2,"line":20,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#moves","title":"Moves"},{"anchor":"preservation-rule","level":2,"line":28,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#preservation-rule","title":"Preservation Rule"},{"anchor":"invariants","level":2,"line":35,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#invariants","title":"Invariants"},{"anchor":"validation","level":2,"line":52,"ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md#validation","title":"Validation"}],"line_refs":["legacy/receipts/2026-05-05-skill-support-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-skill-support-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"94db9f2e01a35d451352618c55c862640ffa401fd9fa61a4236d2318dda600c4","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"unknown_document","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b1ef62b9d8210e575d265b989caa2c7d5ce299d40e0223f8c96dbf9328f945af","git_blob_id":"f36691e3b5c34c992600b00ff64ae82986b2d224","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","lineage_path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","logical_id":"aoa:aoa-techniques:artifact:2c98b7c351da77c5120eb84d","mime":"text/markdown","path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","repo":"aoa-techniques","size_bytes":1741,"version_id":"aoa:aoa-techniques:artifact-version:42f8638173c06ac08aa130dc"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"tool-gateway-tree-pilot-receipt","level":1,"line":1,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#tool-gateway-tree-pilot-receipt","title":"Tool-Gateway Tree Pilot Receipt"},{"anchor":"status","level":2,"line":5,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#status","title":"Status"},{"anchor":"reviewed-source","level":2,"line":9,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#reviewed-source","title":"Reviewed Source"},{"anchor":"movement","level":2,"line":15,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#movement","title":"Movement"},{"anchor":"preserved","level":2,"line":23,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#preserved","title":"Preserved"},{"anchor":"boundary","level":2,"line":35,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#boundary","title":"Boundary"},{"anchor":"verification-lane","level":2,"line":46,"ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md#verification-lane","title":"Verification Lane"}],"line_refs":["legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md:1"],"path_ref":"legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md"},"signs":{"attestation_ref":"","digest":"b1ef62b9d8210e575d265b989caa2c7d5ce299d40e0223f8c96dbf9328f945af","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"23aa7f236f5e04ff64b46c8516bfda87f8fd1f21eca8a02c333cc3b10f4b06e0","git_blob_id":"28eaad75a48dbdf8aa69a083bf7db434dc89be3b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:04bef8605ec2e98416c0441c","lineage_path":"legacy/receipts/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:04bef8605ec2e98416c0441c","mime":"text/markdown","path":"legacy/receipts/AGENTS.md","repo":"aoa-techniques","size_bytes":1396,"version_id":"aoa:aoa-techniques:artifact-version:e584b06a0ee48620068a4c96"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"legacy/receipts/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"legacy/receipts/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":7,"ref":"legacy/receipts/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":15,"ref":"legacy/receipts/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":29,"ref":"legacy/receipts/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":40,"ref":"legacy/receipts/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":49,"ref":"legacy/receipts/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["legacy/receipts/AGENTS.md:1"],"path_ref":"legacy/receipts/AGENTS.md"},"signs":{"attestation_ref":"","digest":"23aa7f236f5e04ff64b46c8516bfda87f8fd1f21eca8a02c333cc3b10f4b06e0","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"receipt","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"receipt","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0337ea9df85d7af4e81860e4b9d181f7e9ce31ccba34794fb79ab3b8f6e0644f","git_blob_id":"637e137d6dd56c725742e1127fc4f7d1947ce0ae","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:47ec2120ab466efaae32de89","lineage_path":"legacy/receipts/README.md","logical_id":"aoa:aoa-techniques:artifact:47ec2120ab466efaae32de89","mime":"text/markdown","path":"legacy/receipts/README.md","repo":"aoa-techniques","size_bytes":1868,"version_id":"aoa:aoa-techniques:artifact-version:836459cc390783c4c5c746a4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"legacy/receipts/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"legacy/receipts/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"root-legacy-receipts","level":1,"line":1,"ref":"legacy/receipts/README.md#root-legacy-receipts","title":"Root Legacy Receipts"}],"line_refs":["legacy/receipts/README.md:1"],"path_ref":"legacy/receipts/README.md"},"signs":{"attestation_ref":"","digest":"0337ea9df85d7af4e81860e4b9d181f7e9ce31ccba34794fb79ab3b8f6e0644f","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fe8ce974c2a12b7400464b4e5479efea4ebd79a5cbec4dade14715a4b7979502","git_blob_id":"f979f31d60c24eabe5fd942d71a480818e5bd2e0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e76d68a5b5eae349802a9128","lineage_path":"mechanics/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:e76d68a5b5eae349802a9128","mime":"text/markdown","path":"mechanics/AGENTS.md","repo":"aoa-techniques","size_bytes":5787,"version_id":"aoa:aoa-techniques:artifact-version:a2d8c859f82dc3434768df32"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/AGENTS.md#role","title":"Role"},{"anchor":"owner-lane","level":2,"line":20,"ref":"mechanics/AGENTS.md#owner-lane","title":"Owner lane"},{"anchor":"read-before-editing","level":2,"line":45,"ref":"mechanics/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":61,"ref":"mechanics/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":106,"ref":"mechanics/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":119,"ref":"mechanics/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/AGENTS.md:1"],"path_ref":"mechanics/AGENTS.md"},"signs":{"attestation_ref":"","digest":"fe8ce974c2a12b7400464b4e5479efea4ebd79a5cbec4dade14715a4b7979502","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -633,7 +633,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"875cea0de2b95e93b79dd022a8c607a342ef2f7f599321e04506b445b5230cd4","git_blob_id":"c03f1faf96d4373e7969a101acc9025940321d73","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c08e8155cee768788f062102","lineage_path":"mechanics/REQUEST_RECEIPTS.md","logical_id":"aoa:aoa-techniques:artifact:c08e8155cee768788f062102","mime":"text/markdown","path":"mechanics/REQUEST_RECEIPTS.md","repo":"aoa-techniques","size_bytes":11946,"version_id":"aoa:aoa-techniques:artifact-version:b72ecf2957d3eb11b8c4d8ed"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/REQUEST_RECEIPTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/REQUEST_RECEIPTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"mechanics-owner-request-receipts","level":1,"line":1,"ref":"mechanics/REQUEST_RECEIPTS.md#mechanics-owner-request-receipts","title":"Mechanics Owner Request Receipts"},{"anchor":"local-status-vocabulary","level":2,"line":14,"ref":"mechanics/REQUEST_RECEIPTS.md#local-status-vocabulary","title":"Local Status Vocabulary"},{"anchor":"direct-aoa-requests","level":2,"line":24,"ref":"mechanics/REQUEST_RECEIPTS.md#direct-aoa-requests","title":"Direct AoA Requests"},{"anchor":"orq-method-techniques-001","level":3,"line":26,"ref":"mechanics/REQUEST_RECEIPTS.md#orq-method-techniques-001","title":"`ORQ-METHOD-TECHNIQUES-001`"},{"anchor":"orq-distillation-techniques-001","level":3,"line":52,"ref":"mechanics/REQUEST_RECEIPTS.md#orq-distillation-techniques-001","title":"`ORQ-DISTILLATION-TECHNIQUES-001`"},{"anchor":"orq-experience-techniques-001","level":3,"line":78,"ref":"mechanics/REQUEST_RECEIPTS.md#orq-experience-techniques-001","title":"`ORQ-EXPERIENCE-TECHNIQUES-001`"},{"anchor":"non-orq-center-pressure","level":2,"line":109,"ref":"mechanics/REQUEST_RECEIPTS.md#non-orq-center-pressure","title":"Non-ORQ Center Pressure"},{"anchor":"agonagonreadmemd","level":3,"line":115,"ref":"mechanics/REQUEST_RECEIPTS.md#agonagonreadmemd","title":"[agon](agon/README.md)"},{"anchor":"antifragilityantifragilityreadmemd","level":3,"line":125,"ref":"mechanics/REQUEST_RECEIPTS.md#antifragilityantifragilityreadmemd","title":"[antifragility](antifragility/README.md)"},{"anchor":"boundary-bridgeboundary-bridgereadmemd","level":3,"line":136,"ref":"mechanics/REQUEST_RECEIPTS.md#boundary-bridgeboundary-bridgereadmemd","title":"[boundary-bridge](boundary-bridge/README.md)"},{"anchor":"checkpointcheckpointreadmemd","level":3,"line":151,"ref":"mechanics/REQUEST_RECEIPTS.md#checkpointcheckpointreadmemd","title":"[checkpoint](checkpoint/README.md)"},{"anchor":"growth-cyclegrowth-cyclereadmemd","level":3,"line":163,"ref":"mechanics/REQUEST_RECEIPTS.md#growth-cyclegrowth-cyclereadmemd","title":"[growth-cycle](growth-cycle/README.md)"},{"anchor":"questbookquestbookreadmemd","level":3,"line":174,"ref":"mechanics/REQUEST_RECEIPTS.md#questbookquestbookreadmemd","title":"[questbook](questbook/README.md)"},{"anchor":"rpgrpgreadmemd","level":3,"line":188,"ref":"mechanics/REQUEST_RECEIPTS.md#rpgrpgreadmemd","title":"[rpg](rpg/README.md)"},{"anchor":"recurrencerecurrencereadmemd","level":3,"line":200,"ref":"mechanics/REQUEST_RECEIPTS.md#recurrencerecurrencereadmemd","title":"[recurrence](recurrence/README.md)"},{"anchor":"release-supportrelease-supportreadmemd","level":3,"line":209,"ref":"mechanics/REQUEST_RECEIPTS.md#release-supportrelease-supportreadmemd","title":"[release-support](release-support/README.md)"},{"anchor":"update-discipline","level":2,"line":219,"ref":"mechanics/REQUEST_RECEIPTS.md#update-discipline","title":"Update Discipline"}],"line_refs":["mechanics/REQUEST_RECEIPTS.md:1"],"path_ref":"mechanics/REQUEST_RECEIPTS.md"},"signs":{"attestation_ref":"","digest":"875cea0de2b95e93b79dd022a8c607a342ef2f7f599321e04506b445b5230cd4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b5773a027867161b828014a87207a80bfdd4bbb7a2ffd5932a17d57cae372959","git_blob_id":"edaee659a84dd0ad6f87126d990488de446fa262","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8e087ffe6784c317374525a5","lineage_path":"mechanics/agon/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:8e087ffe6784c317374525a5","mime":"text/markdown","path":"mechanics/agon/AGENTS.md","repo":"aoa-techniques","size_bytes":2444,"version_id":"aoa:aoa-techniques:artifact-version:f1d521646c130de345444ad8"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/agon/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/agon/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/agon/AGENTS.md#role","title":"Role"},{"anchor":"source-split","level":2,"line":15,"ref":"mechanics/agon/AGENTS.md#source-split","title":"Source split"},{"anchor":"read-before-editing","level":2,"line":23,"ref":"mechanics/agon/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":30,"ref":"mechanics/agon/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":38,"ref":"mechanics/agon/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":63,"ref":"mechanics/agon/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/agon/AGENTS.md:1"],"path_ref":"mechanics/agon/AGENTS.md"},"signs":{"attestation_ref":"","digest":"b5773a027867161b828014a87207a80bfdd4bbb7a2ffd5932a17d57cae372959","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"38f3756a2688963ae37955a3042783d832f391ee7e8f97415955a7b04760541d","git_blob_id":"a8e893ae8c83c2afb1e4b1c967df4492c678c041","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9ebcd75e7ab7f2a4697587e2","lineage_path":"mechanics/agon/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:9ebcd75e7ab7f2a4697587e2","mime":"text/markdown","path":"mechanics/agon/DIRECTION.md","repo":"aoa-techniques","size_bytes":2611,"version_id":"aoa:aoa-techniques:artifact-version:326e77dd2ce06fe73580d80a"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-direction","level":1,"line":1,"ref":"mechanics/agon/DIRECTION.md#agon-direction","title":"Agon Direction"},{"anchor":"current-operating-contour","level":2,"line":3,"ref":"mechanics/agon/DIRECTION.md#current-operating-contour","title":"Current operating contour"},{"anchor":"source-split","level":2,"line":18,"ref":"mechanics/agon/DIRECTION.md#source-split","title":"Source split"},{"anchor":"boundary","level":2,"line":27,"ref":"mechanics/agon/DIRECTION.md#boundary","title":"Boundary"},{"anchor":"artifact-posture","level":2,"line":51,"ref":"mechanics/agon/DIRECTION.md#artifact-posture","title":"Artifact posture"}],"line_refs":["mechanics/agon/DIRECTION.md:1"],"path_ref":"mechanics/agon/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"38f3756a2688963ae37955a3042783d832f391ee7e8f97415955a7b04760541d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2dfcef0ee6ab6126565e3aadc124b253d8a4d7dcd2b7a4ce43cdb3cedd956239","git_blob_id":"0fde50b8751d952255fde57c0657c6aa3f0b793b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","lineage_path":"mechanics/agon/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","mime":"text/markdown","path":"mechanics/agon/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":2463,"version_id":"aoa:aoa-techniques:artifact-version:96d4a1dc1f4088dcc0b66fec"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-landing-log","level":1,"line":1,"ref":"mechanics/agon/LANDING_LOG.md#agon-landing-log","title":"Agon Landing Log"},{"anchor":"2026-05-01-activelegacy-split","level":2,"line":6,"ref":"mechanics/agon/LANDING_LOG.md#2026-05-01-activelegacy-split","title":"2026-05-01 - Active/legacy split"},{"anchor":"2026-05-03-distillation-candidate-handoff-route","level":2,"line":33,"ref":"mechanics/agon/LANDING_LOG.md#2026-05-03-distillation-candidate-handoff-route","title":"2026-05-03 - Distillation candidate handoff route"}],"line_refs":["mechanics/agon/LANDING_LOG.md:1"],"path_ref":"mechanics/agon/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"2dfcef0ee6ab6126565e3aadc124b253d8a4d7dcd2b7a4ce43cdb3cedd956239","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"91139047b155b864cd0aa942d363faed68f26c8d4078d2980ee49e26a34e0fc3","git_blob_id":"234897a7a8535b5c0059051525a044d4c25e60a3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","lineage_path":"mechanics/agon/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:971760a4a43c4516cc4d1d60","mime":"text/markdown","path":"mechanics/agon/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1507,"version_id":"aoa:aoa-techniques:artifact-version:7462c28cc566d2cbbd93660d"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-landing-log","level":1,"line":1,"ref":"mechanics/agon/LANDING_LOG.md#agon-landing-log","title":"Agon Landing Log"},{"anchor":"2026-05-01-activelegacy-split","level":2,"line":6,"ref":"mechanics/agon/LANDING_LOG.md#2026-05-01-activelegacy-split","title":"2026-05-01 - Active/legacy split"},{"anchor":"2026-05-03-distillation-candidate-handoff-route","level":2,"line":27,"ref":"mechanics/agon/LANDING_LOG.md#2026-05-03-distillation-candidate-handoff-route","title":"2026-05-03 - Distillation candidate handoff route"}],"line_refs":["mechanics/agon/LANDING_LOG.md:1"],"path_ref":"mechanics/agon/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"91139047b155b864cd0aa942d363faed68f26c8d4078d2980ee49e26a34e0fc3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4280a341e36e0147f2d524ef43391bc0dc184a2d8db6da16c29bbeecc37a8902","git_blob_id":"939b55e3687838c21cfe0da1898e5ed5d83e3ff3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:00df17e91ebf2c0bbe7bc857","lineage_path":"mechanics/agon/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:00df17e91ebf2c0bbe7bc857","mime":"text/markdown","path":"mechanics/agon/PARTS.md","repo":"aoa-techniques","size_bytes":2357,"version_id":"aoa:aoa-techniques:artifact-version:48e40451a3ee319aeea7eac5"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-parts","level":1,"line":1,"ref":"mechanics/agon/PARTS.md#agon-parts","title":"Agon Parts"},{"anchor":"downstream-distillation-route","level":2,"line":13,"ref":"mechanics/agon/PARTS.md#downstream-distillation-route","title":"Downstream Distillation Route"},{"anchor":"part-rule","level":2,"line":20,"ref":"mechanics/agon/PARTS.md#part-rule","title":"Part rule"}],"line_refs":["mechanics/agon/PARTS.md:1"],"path_ref":"mechanics/agon/PARTS.md"},"signs":{"attestation_ref":"","digest":"4280a341e36e0147f2d524ef43391bc0dc184a2d8db6da16c29bbeecc37a8902","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"12fc8acc78b2e12e869e5e172fe36b4e4273346f00961eeeca5ee8ef013ee339","git_blob_id":"9610a208cefaa89ed13612231b60201495540c32","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8","lineage_path":"mechanics/agon/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:a27ac6623c778f03daa767a8","mime":"text/markdown","path":"mechanics/agon/PROVENANCE.md","repo":"aoa-techniques","size_bytes":2737,"version_id":"aoa:aoa-techniques:artifact-version:c4cd2f78c479c104f69411b8"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-provenance-bridge","level":1,"line":1,"ref":"mechanics/agon/PROVENANCE.md#agon-provenance-bridge","title":"Agon Provenance Bridge"},{"anchor":"current-route-first","level":2,"line":8,"ref":"mechanics/agon/PROVENANCE.md#current-route-first","title":"Current route first"},{"anchor":"source-map","level":2,"line":21,"ref":"mechanics/agon/PROVENANCE.md#source-map","title":"Source map"},{"anchor":"detailed-districts","level":2,"line":30,"ref":"mechanics/agon/PROVENANCE.md#detailed-districts","title":"Detailed districts"},{"anchor":"downstream-distillation-bridge","level":2,"line":38,"ref":"mechanics/agon/PROVENANCE.md#downstream-distillation-bridge","title":"Downstream Distillation Bridge"},{"anchor":"distillation-rule","level":2,"line":46,"ref":"mechanics/agon/PROVENANCE.md#distillation-rule","title":"Distillation rule"}],"line_refs":["mechanics/agon/PROVENANCE.md:1"],"path_ref":"mechanics/agon/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"12fc8acc78b2e12e869e5e172fe36b4e4273346f00961eeeca5ee8ef013ee339","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"88d9770c422823052ad9ebad5f6f2abe9c8d9c42ea837770fadd8db9abe7502e","git_blob_id":"38157fc7dfd9476e38e1a508b069aeb483e1ebb3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:359861268bcf7d2db2aa8523","lineage_path":"mechanics/agon/README.md","logical_id":"aoa:aoa-techniques:artifact:359861268bcf7d2db2aa8523","mime":"text/markdown","path":"mechanics/agon/README.md","repo":"aoa-techniques","size_bytes":4031,"version_id":"aoa:aoa-techniques:artifact-version:c0aecffccccf5663769c3abb"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon","level":1,"line":1,"ref":"mechanics/agon/README.md#agon","title":"Agon"},{"anchor":"mechanic-card","level":2,"line":7,"ref":"mechanics/agon/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":11,"ref":"mechanics/agon/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":17,"ref":"mechanics/agon/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":23,"ref":"mechanics/agon/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":36,"ref":"mechanics/agon/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":45,"ref":"mechanics/agon/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":54,"ref":"mechanics/agon/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":65,"ref":"mechanics/agon/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":71,"ref":"mechanics/agon/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":80,"ref":"mechanics/agon/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"historical-provenance","level":2,"line":87,"ref":"mechanics/agon/README.md#historical-provenance","title":"Historical provenance"},{"anchor":"owner-boundary","level":2,"line":92,"ref":"mechanics/agon/README.md#owner-boundary","title":"Owner boundary"},{"anchor":"growth-posture","level":2,"line":98,"ref":"mechanics/agon/README.md#growth-posture","title":"Growth posture"}],"line_refs":["mechanics/agon/README.md:1"],"path_ref":"mechanics/agon/README.md"},"signs":{"attestation_ref":"","digest":"88d9770c422823052ad9ebad5f6f2abe9c8d9c42ea837770fadd8db9abe7502e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -644,7 +644,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"71432c0f7b00a764a45737eb74ece31e1ade901afbde5ba5dac850f007166646","git_blob_id":"cf0fbaaabf5e5069305dfe14ac34fea93331be82","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc","lineage_path":"mechanics/agon/legacy/INDEX.md","logical_id":"aoa:aoa-techniques:artifact:abeeca0d9e321080090b7cdc","mime":"text/markdown","path":"mechanics/agon/legacy/INDEX.md","repo":"aoa-techniques","size_bytes":1473,"version_id":"aoa:aoa-techniques:artifact-version:9399c5ad1b8f5b4a8b8dee3c"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/legacy/INDEX.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/legacy/INDEX.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-legacy-index","level":1,"line":1,"ref":"mechanics/agon/legacy/INDEX.md#agon-legacy-index","title":"Agon Legacy Index"},{"anchor":"rule","level":2,"line":12,"ref":"mechanics/agon/legacy/INDEX.md#rule","title":"Rule"}],"line_refs":["mechanics/agon/legacy/INDEX.md:1"],"path_ref":"mechanics/agon/legacy/INDEX.md"},"signs":{"attestation_ref":"","digest":"71432c0f7b00a764a45737eb74ece31e1ade901afbde5ba5dac850f007166646","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"09f23fd5562ed9e51b480029fae3ec65ba79ed8622cb88c4fa0eed0b2ec3484b","git_blob_id":"a3c17d05b03589c47947eefcec0ae855f744b488","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5","lineage_path":"mechanics/agon/legacy/README.md","logical_id":"aoa:aoa-techniques:artifact:9a7a41d839dada1f8762f2f5","mime":"text/markdown","path":"mechanics/agon/legacy/README.md","repo":"aoa-techniques","size_bytes":879,"version_id":"aoa:aoa-techniques:artifact-version:0c0ac937683036ba9961d2a4"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/legacy/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/legacy/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-legacy","level":1,"line":1,"ref":"mechanics/agon/legacy/README.md#agon-legacy","title":"Agon Legacy"},{"anchor":"layout","level":2,"line":7,"ref":"mechanics/agon/legacy/README.md#layout","title":"Layout"},{"anchor":"use-this-when","level":2,"line":18,"ref":"mechanics/agon/legacy/README.md#use-this-when","title":"Use this when"}],"line_refs":["mechanics/agon/legacy/README.md:1"],"path_ref":"mechanics/agon/legacy/README.md"},"signs":{"attestation_ref":"","digest":"09f23fd5562ed9e51b480029fae3ec65ba79ed8622cb88c4fa0eed0b2ec3484b","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1975128c24a822c1842988f1aec9765466c63c12be9d7b61491abc165c86784e","git_blob_id":"ae8dff2bb9ece3e7479fbd20b6832fce93845d6b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","lineage_path":"docs/AGON_WAVE15_TECHNIQUES_LANDING.md","logical_id":"aoa:aoa-techniques:artifact:a556e9c78d259bb1073ad240","mime":"text/markdown","path":"mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md","repo":"aoa-techniques","size_bytes":109,"version_id":"aoa:aoa-techniques:artifact-version:e40ce14fbfeb326f43ab9e8d"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-wave15-techniques-landing","level":1,"line":1,"ref":"mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md#agon-wave15-techniques-landing","title":"Agon Wave15 Techniques Landing"}],"line_refs":["mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md:1"],"path_ref":"mechanics/agon/legacy/raw/AGON_WAVE15_TECHNIQUES_LANDING.md"},"signs":{"attestation_ref":"","digest":"1975128c24a822c1842988f1aec9765466c63c12be9d7b61491abc165c86784e","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0292789b7e70ee9890c13b6fb5a9cdcf7ad8e9e87c007a6b7703fefa4215cf5a","git_blob_id":"3b6efe04b0eadd5491b4fc1c67cd0c0721275274","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","lineage_path":"docs/AGON_WAVE4_TECHNIQUE_LANDING.md","logical_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","mime":"text/markdown","path":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md","repo":"aoa-techniques","size_bytes":903,"version_id":"aoa:aoa-techniques:artifact-version:60a11b671591d53f5f9057ae"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-wave-iv-technique-landing","level":1,"line":1,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#agon-wave-iv-technique-landing","title":"Agon Wave IV Technique Landing"},{"anchor":"scope","level":2,"line":3,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#scope","title":"Scope"},{"anchor":"validation","level":2,"line":9,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#validation","title":"Validation"},{"anchor":"exit-criteria","level":2,"line":17,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#exit-criteria","title":"Exit criteria"},{"anchor":"later-growth","level":2,"line":26,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#later-growth","title":"Later growth"}],"line_refs":["mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md:1"],"path_ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md"},"signs":{"attestation_ref":"","digest":"0292789b7e70ee9890c13b6fb5a9cdcf7ad8e9e87c007a6b7703fefa4215cf5a","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"65c331a21abd0d8d05e7849b55f33a4839d8995b377cdb7298815dd130dd1e01","git_blob_id":"d7b310fc68a0849b55f8a1010efbda76f652abc9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","lineage_path":"docs/AGON_WAVE4_TECHNIQUE_LANDING.md","logical_id":"aoa:aoa-techniques:artifact:7da76b214b1349e9869b7ff9","mime":"text/markdown","path":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md","repo":"aoa-techniques","size_bytes":802,"version_id":"aoa:aoa-techniques:artifact-version:8704b617cd6e5e2fae4c393f"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-wave-iv-technique-landing","level":1,"line":1,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#agon-wave-iv-technique-landing","title":"Agon Wave IV Technique Landing"},{"anchor":"scope","level":2,"line":3,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#scope","title":"Scope"},{"anchor":"validation","level":2,"line":9,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#validation","title":"Validation"},{"anchor":"exit-criteria","level":2,"line":13,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#exit-criteria","title":"Exit criteria"},{"anchor":"later-growth","level":2,"line":22,"ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md#later-growth","title":"Later growth"}],"line_refs":["mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md:1"],"path_ref":"mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md"},"signs":{"attestation_ref":"","digest":"65c331a21abd0d8d05e7849b55f33a4839d8995b377cdb7298815dd130dd1e01","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"431f67f0291dd84d03674a7c702e640c3bdae4af9fae02ac1f1b8a439dc5a459","git_blob_id":"c10218a81427cea922d54b1756643fdab231bbeb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1344c38fee20012764238e1c","lineage_path":"mechanics/agon/legacy/raw/README.md","logical_id":"aoa:aoa-techniques:artifact:1344c38fee20012764238e1c","mime":"text/markdown","path":"mechanics/agon/legacy/raw/README.md","repo":"aoa-techniques","size_bytes":231,"version_id":"aoa:aoa-techniques:artifact-version:5b016aba9fd44e686c26402e"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/legacy/raw/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/legacy/raw/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-raw-legacy","level":1,"line":1,"ref":"mechanics/agon/legacy/raw/README.md#agon-raw-legacy","title":"Agon Raw Legacy"}],"line_refs":["mechanics/agon/legacy/raw/README.md:1"],"path_ref":"mechanics/agon/legacy/raw/README.md"},"signs":{"attestation_ref":"","digest":"431f67f0291dd84d03674a7c702e640c3bdae4af9fae02ac1f1b8a439dc5a459","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3e1f494fc6b6b1bb600d038e2f1f3b9517bc9e55b08ae2ee0c731c06f3f6bd62","git_blob_id":"075ce2bfd2964bbd3fe634aed3e74e3f23c900cf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0","lineage_path":"mechanics/agon/parts/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:6abdd88740cb41a00714edf0","mime":"text/markdown","path":"mechanics/agon/parts/AGENTS.md","repo":"aoa-techniques","size_bytes":1148,"version_id":"aoa:aoa-techniques:artifact-version:243695f638904c2d19c5fcb9"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/parts/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/parts/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/agon/parts/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/agon/parts/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/agon/parts/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":13,"ref":"mechanics/agon/parts/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":23,"ref":"mechanics/agon/parts/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":31,"ref":"mechanics/agon/parts/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":40,"ref":"mechanics/agon/parts/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/agon/parts/AGENTS.md:1"],"path_ref":"mechanics/agon/parts/AGENTS.md"},"signs":{"attestation_ref":"","digest":"3e1f494fc6b6b1bb600d038e2f1f3b9517bc9e55b08ae2ee0c731c06f3f6bd62","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a1745299706b6dcb03225f051bc66431f37e62e170aaf3b2eb17745b38d15057","git_blob_id":"c4113ee15022bb4e822ea2df6431e3a072009b9c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0e33dc533fcb541678109142","lineage_path":"mechanics/agon/parts/README.md","logical_id":"aoa:aoa-techniques:artifact:0e33dc533fcb541678109142","mime":"text/markdown","path":"mechanics/agon/parts/README.md","repo":"aoa-techniques","size_bytes":639,"version_id":"aoa:aoa-techniques:artifact-version:2994ae7b697f6e3858266687"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/agon/parts/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/agon/parts/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agon-parts","level":1,"line":1,"ref":"mechanics/agon/parts/README.md#agon-parts","title":"Agon Parts"}],"line_refs":["mechanics/agon/parts/README.md:1"],"path_ref":"mechanics/agon/parts/README.md"},"signs":{"attestation_ref":"","digest":"a1745299706b6dcb03225f051bc66431f37e62e170aaf3b2eb17745b38d15057","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -692,7 +692,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","git_blob_id":"75e0eaff52b23b24adc6bd215dd4feafc8521e66","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5b00df740809b23874e59462","lineage_path":"tests/test_antifragility_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:5b00df740809b23874e59462","mime":"text/x-python","path":"mechanics/antifragility/tests/test_antifragility_mechanics_topology.py","repo":"aoa-techniques","size_bytes":6229,"version_id":"aoa:aoa-techniques:artifact-version:61a2144b276cdc5ff601bd03"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/antifragility/tests/test_antifragility_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/antifragility/tests/test_antifragility_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/antifragility/tests/test_antifragility_mechanics_topology.py:1"],"path_ref":"mechanics/antifragility/tests/test_antifragility_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"73dbf87cd885e435fdba0dff7e5151dd1646c0cc24c9eca946412b8efe07431a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/antifragility/tests/test_antifragility_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0609d9c47ee04e19f60debc4feb8ea82ad9cf2ad23dd1a981c2a4b8f83509908","git_blob_id":"eb8c32873eec971cd7f106c9f558b3bd481034da","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cceb307272637ebed425f089","lineage_path":"mechanics/audit/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:cceb307272637ebed425f089","mime":"text/markdown","path":"mechanics/audit/AGENTS.md","repo":"aoa-techniques","size_bytes":1897,"version_id":"aoa:aoa-techniques:artifact-version:95911c6be9da2e5237b8a007"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/audit/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/audit/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/audit/AGENTS.md#role","title":"Role"},{"anchor":"source-split","level":2,"line":18,"ref":"mechanics/audit/AGENTS.md#source-split","title":"Source split"},{"anchor":"read-before-editing","level":2,"line":26,"ref":"mechanics/audit/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":33,"ref":"mechanics/audit/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":44,"ref":"mechanics/audit/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":59,"ref":"mechanics/audit/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/audit/AGENTS.md:1"],"path_ref":"mechanics/audit/AGENTS.md"},"signs":{"attestation_ref":"","digest":"0609d9c47ee04e19f60debc4feb8ea82ad9cf2ad23dd1a981c2a4b8f83509908","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"dc197d25856be3ae2ab4899e4958b3629607562b423687005f3f4ec03e6bdfae","git_blob_id":"e31934b6733ab021b0e648db8bc74775e4f8d4a4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:eb6c24d59a47db9050ba9877","lineage_path":"mechanics/audit/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:eb6c24d59a47db9050ba9877","mime":"text/markdown","path":"mechanics/audit/DIRECTION.md","repo":"aoa-techniques","size_bytes":913,"version_id":"aoa:aoa-techniques:artifact-version:856519f4831c1bafd1b281e7"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-direction","level":1,"line":1,"ref":"mechanics/audit/DIRECTION.md#audit-direction","title":"Audit Direction"},{"anchor":"current-intent","level":2,"line":6,"ref":"mechanics/audit/DIRECTION.md#current-intent","title":"Current intent"},{"anchor":"boundaries","level":2,"line":15,"ref":"mechanics/audit/DIRECTION.md#boundaries","title":"Boundaries"}],"line_refs":["mechanics/audit/DIRECTION.md:1"],"path_ref":"mechanics/audit/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"dc197d25856be3ae2ab4899e4958b3629607562b423687005f3f4ec03e6bdfae","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8e33eb173d681ff950a70e281a10566efb3f1f721b9ace114099e7b269ab47ca","git_blob_id":"bf8b936b501239e92a78dc4176df2e2d76e3b9f0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","lineage_path":"mechanics/audit/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","mime":"text/markdown","path":"mechanics/audit/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":5515,"version_id":"aoa:aoa-techniques:artifact-version:58434d8badedccf15d1a45fb"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-landing-log","level":1,"line":1,"ref":"mechanics/audit/LANDING_LOG.md#audit-landing-log","title":"Audit Landing Log"},{"anchor":"2026-05-01-active-parts-split","level":2,"line":5,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-01-active-parts-split","title":"2026-05-01 - Active parts split"},{"anchor":"2026-05-03-root-roadmap-audit-history-preserved","level":2,"line":32,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-03-root-roadmap-audit-history-preserved","title":"2026-05-03 - Root roadmap audit history preserved"},{"anchor":"2026-05-03-wave-0-matrix-expansion","level":2,"line":49,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-03-wave-0-matrix-expansion","title":"2026-05-03 - Wave 0 Matrix Expansion"},{"anchor":"2026-05-03-agon-handoff-matrix-extension","level":2,"line":78,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-03-agon-handoff-matrix-extension","title":"2026-05-03 - Agon Handoff Matrix Extension"},{"anchor":"2026-05-03-agon-challenge-matrix-extension","level":2,"line":104,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-03-agon-challenge-matrix-extension","title":"2026-05-03 - Agon Challenge Matrix Extension"},{"anchor":"2026-05-13-promotion-evidence-packs-35-41-closeout","level":2,"line":130,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-13-promotion-evidence-packs-35-41-closeout","title":"2026-05-13 - Promotion Evidence Packs 35-41 Closeout"},{"anchor":"2026-05-14-canonical-retro-audit-part","level":2,"line":152,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-14-canonical-retro-audit-part","title":"2026-05-14 - Canonical Retro Audit Part"}],"line_refs":["mechanics/audit/LANDING_LOG.md:1"],"path_ref":"mechanics/audit/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"8e33eb173d681ff950a70e281a10566efb3f1f721b9ace114099e7b269ab47ca","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4186668e9f1b918e1e5a6288ff97a170241cdd6e9cd77b831d1ba5068c9777e5","git_blob_id":"40ac65ae744dc06a4342f0d3ed5d9686aed5b7e3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","lineage_path":"mechanics/audit/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:8ea53f8905eb3fe19fdc83af","mime":"text/markdown","path":"mechanics/audit/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":5275,"version_id":"aoa:aoa-techniques:artifact-version:913276ad1b67c45d4d13c950"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-landing-log","level":1,"line":1,"ref":"mechanics/audit/LANDING_LOG.md#audit-landing-log","title":"Audit Landing Log"},{"anchor":"2026-05-01-active-parts-split","level":2,"line":5,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-01-active-parts-split","title":"2026-05-01 - Active parts split"},{"anchor":"2026-05-03-root-roadmap-audit-history-preserved","level":2,"line":28,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-03-root-roadmap-audit-history-preserved","title":"2026-05-03 - Root roadmap audit history preserved"},{"anchor":"2026-05-03-wave-0-matrix-expansion","level":2,"line":45,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-03-wave-0-matrix-expansion","title":"2026-05-03 - Wave 0 Matrix Expansion"},{"anchor":"2026-05-03-agon-handoff-matrix-extension","level":2,"line":69,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-03-agon-handoff-matrix-extension","title":"2026-05-03 - Agon Handoff Matrix Extension"},{"anchor":"2026-05-03-agon-challenge-matrix-extension","level":2,"line":90,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-03-agon-challenge-matrix-extension","title":"2026-05-03 - Agon Challenge Matrix Extension"},{"anchor":"2026-05-13-promotion-evidence-packs-35-41-closeout","level":2,"line":111,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-13-promotion-evidence-packs-35-41-closeout","title":"2026-05-13 - Promotion Evidence Packs 35-41 Closeout"},{"anchor":"2026-05-14-canonical-retro-audit-part","level":2,"line":130,"ref":"mechanics/audit/LANDING_LOG.md#2026-05-14-canonical-retro-audit-part","title":"2026-05-14 - Canonical Retro Audit Part"}],"line_refs":["mechanics/audit/LANDING_LOG.md:1"],"path_ref":"mechanics/audit/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"4186668e9f1b918e1e5a6288ff97a170241cdd6e9cd77b831d1ba5068c9777e5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"aa015457f86e990e4f1283f77b509f8a040b273fb2983e2ce92eab880aa32aff","git_blob_id":"b1b955fa0e22d24c1dfaff105953aa4a4f547b4f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7f54be3138b924b6fbfa62f2","lineage_path":"mechanics/audit/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:7f54be3138b924b6fbfa62f2","mime":"text/markdown","path":"mechanics/audit/PARTS.md","repo":"aoa-techniques","size_bytes":1201,"version_id":"aoa:aoa-techniques:artifact-version:3b19927731c2c480c78f1c8e"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-parts","level":1,"line":1,"ref":"mechanics/audit/PARTS.md#audit-parts","title":"Audit Parts"}],"line_refs":["mechanics/audit/PARTS.md:1"],"path_ref":"mechanics/audit/PARTS.md"},"signs":{"attestation_ref":"","digest":"aa015457f86e990e4f1283f77b509f8a040b273fb2983e2ce92eab880aa32aff","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bef79182be240b6969d8f94f127075698e1456c5fd51e70b8446b3bccfa4ebbe","git_blob_id":"0fd2e7cc1394aacbaedb8b39b5072210fe5d37eb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f27efcdcafc548616fa6ed83","lineage_path":"mechanics/audit/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:f27efcdcafc548616fa6ed83","mime":"text/markdown","path":"mechanics/audit/PROVENANCE.md","repo":"aoa-techniques","size_bytes":2886,"version_id":"aoa:aoa-techniques:artifact-version:b8206cdeb41b0ef4b36f06d6"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-provenance-bridge","level":1,"line":1,"ref":"mechanics/audit/PROVENANCE.md#audit-provenance-bridge","title":"Audit Provenance Bridge"},{"anchor":"current-route-first","level":2,"line":7,"ref":"mechanics/audit/PROVENANCE.md#current-route-first","title":"Current route first"},{"anchor":"source-map","level":2,"line":20,"ref":"mechanics/audit/PROVENANCE.md#source-map","title":"Source map"},{"anchor":"legacy-posture","level":2,"line":31,"ref":"mechanics/audit/PROVENANCE.md#legacy-posture","title":"Legacy posture"},{"anchor":"audit-rule","level":2,"line":43,"ref":"mechanics/audit/PROVENANCE.md#audit-rule","title":"Audit rule"}],"line_refs":["mechanics/audit/PROVENANCE.md:1"],"path_ref":"mechanics/audit/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"bef79182be240b6969d8f94f127075698e1456c5fd51e70b8446b3bccfa4ebbe","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4466cba4292f3f1617705b4fbd3b8ce92cbda0ba28ce9320cb047dde42da6be8","git_blob_id":"30e2ed38f50f81b3dc3966692e746cebc6000fe7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8442d8bba839abb3a1035ee7","lineage_path":"mechanics/audit/README.md","logical_id":"aoa:aoa-techniques:artifact:8442d8bba839abb3a1035ee7","mime":"text/markdown","path":"mechanics/audit/README.md","repo":"aoa-techniques","size_bytes":3568,"version_id":"aoa:aoa-techniques:artifact-version:e8f2346c4c430a5f576115d4"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit","level":1,"line":1,"ref":"mechanics/audit/README.md#audit","title":"Audit"},{"anchor":"mechanic-card","level":2,"line":7,"ref":"mechanics/audit/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":11,"ref":"mechanics/audit/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":17,"ref":"mechanics/audit/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":23,"ref":"mechanics/audit/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":30,"ref":"mechanics/audit/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":38,"ref":"mechanics/audit/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":46,"ref":"mechanics/audit/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":54,"ref":"mechanics/audit/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":60,"ref":"mechanics/audit/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":68,"ref":"mechanics/audit/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"audit-gate","level":2,"line":85,"ref":"mechanics/audit/README.md#audit-gate","title":"Audit Gate"}],"line_refs":["mechanics/audit/README.md:1"],"path_ref":"mechanics/audit/README.md"},"signs":{"attestation_ref":"","digest":"4466cba4292f3f1617705b4fbd3b8ce92cbda0ba28ce9320cb047dde42da6be8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -702,7 +702,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e782886d2cbfa406dc60477e7c278a748a4f6fd304a30f7a7f4e6c792526f913","git_blob_id":"542fbb05d1b987dd5f4b31609d0b37967b8ad34f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:730109cbf9e419d0e91319ce","lineage_path":"mechanics/audit/legacy/INDEX.md","logical_id":"aoa:aoa-techniques:artifact:730109cbf9e419d0e91319ce","mime":"text/markdown","path":"mechanics/audit/legacy/INDEX.md","repo":"aoa-techniques","size_bytes":1600,"version_id":"aoa:aoa-techniques:artifact-version:c7b9c0bab5a3ef8b0c0954e9"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/legacy/INDEX.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/legacy/INDEX.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-legacy-index","level":1,"line":1,"ref":"mechanics/audit/legacy/INDEX.md#audit-legacy-index","title":"Audit Legacy Index"},{"anchor":"rule","level":2,"line":14,"ref":"mechanics/audit/legacy/INDEX.md#rule","title":"Rule"}],"line_refs":["mechanics/audit/legacy/INDEX.md:1"],"path_ref":"mechanics/audit/legacy/INDEX.md"},"signs":{"attestation_ref":"","digest":"e782886d2cbfa406dc60477e7c278a748a4f6fd304a30f7a7f4e6c792526f913","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7438cf697d1b519aa605702e3d43914238a78f79c88d24ce3341be8b2b2bb663","git_blob_id":"2ac9ba6487d3ea819f0aa6a4444d5787f51a8dad","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f93253dae86af3a100005334","lineage_path":"mechanics/audit/legacy/README.md","logical_id":"aoa:aoa-techniques:artifact:f93253dae86af3a100005334","mime":"text/markdown","path":"mechanics/audit/legacy/README.md","repo":"aoa-techniques","size_bytes":363,"version_id":"aoa:aoa-techniques:artifact-version:0084828b6f35d3b0db6016d0"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/legacy/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/legacy/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-legacy","level":1,"line":1,"ref":"mechanics/audit/legacy/README.md#audit-legacy","title":"Audit Legacy"}],"line_refs":["mechanics/audit/legacy/README.md:1"],"path_ref":"mechanics/audit/legacy/README.md"},"signs":{"attestation_ref":"","digest":"7438cf697d1b519aa605702e3d43914238a78f79c88d24ce3341be8b2b2bb663","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4aad1f31e66114f7832e90925407d124809310aa5eed97a5b31f553c884bf7c7","git_blob_id":"9b8d10c051be54d932077043900b31f7a18d4374","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:436c0178449184d78679b748","lineage_path":"mechanics/audit/legacy/raw/README.md","logical_id":"aoa:aoa-techniques:artifact:436c0178449184d78679b748","mime":"text/markdown","path":"mechanics/audit/legacy/raw/README.md","repo":"aoa-techniques","size_bytes":378,"version_id":"aoa:aoa-techniques:artifact-version:87321154a639c0f9abe9339e"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/legacy/raw/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/legacy/raw/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-raw-legacy","level":1,"line":1,"ref":"mechanics/audit/legacy/raw/README.md#audit-raw-legacy","title":"Audit Raw Legacy"}],"line_refs":["mechanics/audit/legacy/raw/README.md:1"],"path_ref":"mechanics/audit/legacy/raw/README.md"},"signs":{"attestation_ref":"","digest":"4aad1f31e66114f7832e90925407d124809310aa5eed97a5b31f553c884bf7c7","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"52a8ae3397353c0202ca66912cd2f1663a9694e7ff29e1c6d25f85c53d13d38c","git_blob_id":"d97c6cb1140bc2598623c85175e7bf0ba48bc723","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","lineage_path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","logical_id":"aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","mime":"text/markdown","path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","repo":"aoa-techniques","size_bytes":58237,"version_id":"aoa:aoa-techniques:artifact-version:3c4d1fcef0a811dcf1317483"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"roadmap","level":1,"line":1,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#roadmap","title":"Roadmap"},{"anchor":"current-live-closure-snapshot","level":2,"line":15,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#current-live-closure-snapshot","title":"Current Live Closure Snapshot"},{"anchor":"baseline","level":2,"line":81,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#baseline","title":"Baseline"},{"anchor":"current-closure-state","level":2,"line":105,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#current-closure-state","title":"Current Closure State"},{"anchor":"finding-classes","level":2,"line":153,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#finding-classes","title":"Finding Classes"},{"anchor":"phase-1-structural-integrity-audit","level":2,"line":164,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-1-structural-integrity-audit","title":"Phase 1 - Structural Integrity Audit"},{"anchor":"wave-1a-sourcegenerated-contract-audit","level":3,"line":166,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-1a-sourcegenerated-contract-audit","title":"Wave 1A - Source/Generated Contract Audit"},{"anchor":"wave-1b-validation-and-release-hardening-audit","level":3,"line":182,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-1b-validation-and-release-hardening-audit","title":"Wave 1B - Validation And Release Hardening Audit"},{"anchor":"wave-1c-public-hygiene-and-safety-audit","level":3,"line":198,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-1c-public-hygiene-and-safety-audit","title":"Wave 1C - Public Hygiene And Safety Audit"},{"anchor":"phase-2-corpus-meaning-audit","level":2,"line":214,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-2-corpus-meaning-audit","title":"Phase 2 - Corpus Meaning Audit"},{"anchor":"wave-2a-canonical-bundle-quality-audit","level":3,"line":216,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-2a-canonical-bundle-quality-audit","title":"Wave 2A - Canonical Bundle Quality Audit"},{"anchor":"wave-2b-legacy-promoted-backlog-audit","level":3,"line":233,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-2b-legacy-promoted-backlog-audit","title":"Wave 2B - Legacy Promoted Backlog Audit"},{"anchor":"wave-2c-semantic-and-shadow-review-coverage-audit","level":3,"line":269,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-2c-semantic-and-shadow-review-coverage-audit","title":"Wave 2C - Semantic And Shadow Review Coverage Audit"},{"anchor":"phase-3-surface-usability-audit","level":2,"line":283,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-3-surface-usability-audit","title":"Phase 3 - Surface Usability Audit"},{"anchor":"wave-3a-self-serve-reader-journey-audit","level":3,"line":285,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-3a-self-serve-reader-journey-audit","title":"Wave 3A - Self-Serve Reader Journey Audit"},{"anchor":"wave-3b-surface-family-vocabulary-audit","level":3,"line":302,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-3b-surface-family-vocabulary-audit","title":"Wave 3B - Surface Family Vocabulary Audit"},{"anchor":"wave-3c-selector-and-reader-boundedness-audit","level":3,"line":310,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-3c-selector-and-reader-boundedness-audit","title":"Wave 3C - Selector And Reader Boundedness Audit"},{"anchor":"phase-4-governance-and-boundary-audit","level":2,"line":322,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-4-governance-and-boundary-audit","title":"Phase 4 - Governance And Boundary Audit"},{"anchor":"wave-4a-governance-surface-consistency-audit","level":3,"line":324,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-4a-governance-surface-consistency-audit","title":"Wave 4A - Governance Surface Consistency Audit"},{"anchor":"wave-4b-cross-repo-boundary-seam-audit","level":3,"line":334,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-4b-cross-repo-boundary-seam-audit","title":"Wave 4B - Cross-Repo Boundary Seam Audit"},{"anchor":"wave-4c-long-gap-backlog-design-audit","level":3,"line":345,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-4c-long-gap-backlog-design-audit","title":"Wave 4C - Long-Gap Backlog Design Audit"},{"anchor":"phase-5-closure-program-synthesis","level":2,"line":358,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-5-closure-program-synthesis","title":"Phase 5 - Closure Program Synthesis"},{"anchor":"wave-5a-immediate-repo-only-fix-queue","level":3,"line":360,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-5a-immediate-repo-only-fix-queue","title":"Wave 5A - Immediate Repo-Only Fix Queue"},{"anchor":"wave-5b-external-evidence-dependency-queue","level":3,"line":392,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-5b-external-evidence-dependency-queue","title":"Wave 5B - External Evidence Dependency Queue"},{"anchor":"wave-5c-next-implementation-wave-pack","level":3,"line":412,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-5c-next-implementation-wave-pack","title":"Wave 5C - Next Implementation Wave Pack"},{"anchor":"repo-only-hardening-pack","level":4,"line":414,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#repo-only-hardening-pack","title":"Repo-Only Hardening Pack"},{"anchor":"review-coverage-refresh-pack","level":4,"line":444,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#review-coverage-refresh-pack","title":"Review Coverage Refresh Pack"},{"anchor":"external-evidence-pack","level":4,"line":470,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#external-evidence-pack","title":"External Evidence Pack"},{"anchor":"future-import-wave-program","level":4,"line":500,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#future-import-wave-program","title":"Future Import Wave Program"},{"anchor":"audit-exit-criteria","level":2,"line":541,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#audit-exit-criteria","title":"Audit Exit Criteria"}],"line_refs":["mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md:1"],"path_ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md"},"signs":{"attestation_ref":"","digest":"52a8ae3397353c0202ca66912cd2f1663a9694e7ff29e1c6d25f85c53d13d38c","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c585d5e937a2e618b00d8de44c79a854d94796e8a4a53583d53852814717efdf","git_blob_id":"a5802df81eb2c0f7ae0f96afe0ea03f788ce7f21","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","lineage_path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","logical_id":"aoa:aoa-techniques:artifact:d3e3e4029f2f19c88f313261","mime":"text/markdown","path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","repo":"aoa-techniques","size_bytes":58039,"version_id":"aoa:aoa-techniques:artifact-version:3cfcce278d3c203127bba4d7"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"roadmap","level":1,"line":1,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#roadmap","title":"Roadmap"},{"anchor":"current-live-closure-snapshot","level":2,"line":15,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#current-live-closure-snapshot","title":"Current Live Closure Snapshot"},{"anchor":"baseline","level":2,"line":81,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#baseline","title":"Baseline"},{"anchor":"current-closure-state","level":2,"line":105,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#current-closure-state","title":"Current Closure State"},{"anchor":"finding-classes","level":2,"line":153,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#finding-classes","title":"Finding Classes"},{"anchor":"phase-1-structural-integrity-audit","level":2,"line":164,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-1-structural-integrity-audit","title":"Phase 1 - Structural Integrity Audit"},{"anchor":"wave-1a-sourcegenerated-contract-audit","level":3,"line":166,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-1a-sourcegenerated-contract-audit","title":"Wave 1A - Source/Generated Contract Audit"},{"anchor":"wave-1b-validation-and-release-hardening-audit","level":3,"line":182,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-1b-validation-and-release-hardening-audit","title":"Wave 1B - Validation And Release Hardening Audit"},{"anchor":"wave-1c-public-hygiene-and-safety-audit","level":3,"line":198,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-1c-public-hygiene-and-safety-audit","title":"Wave 1C - Public Hygiene And Safety Audit"},{"anchor":"phase-2-corpus-meaning-audit","level":2,"line":214,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-2-corpus-meaning-audit","title":"Phase 2 - Corpus Meaning Audit"},{"anchor":"wave-2a-canonical-bundle-quality-audit","level":3,"line":216,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-2a-canonical-bundle-quality-audit","title":"Wave 2A - Canonical Bundle Quality Audit"},{"anchor":"wave-2b-legacy-promoted-backlog-audit","level":3,"line":233,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-2b-legacy-promoted-backlog-audit","title":"Wave 2B - Legacy Promoted Backlog Audit"},{"anchor":"wave-2c-semantic-and-shadow-review-coverage-audit","level":3,"line":269,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-2c-semantic-and-shadow-review-coverage-audit","title":"Wave 2C - Semantic And Shadow Review Coverage Audit"},{"anchor":"phase-3-surface-usability-audit","level":2,"line":283,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-3-surface-usability-audit","title":"Phase 3 - Surface Usability Audit"},{"anchor":"wave-3a-self-serve-reader-journey-audit","level":3,"line":285,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-3a-self-serve-reader-journey-audit","title":"Wave 3A - Self-Serve Reader Journey Audit"},{"anchor":"wave-3b-surface-family-vocabulary-audit","level":3,"line":302,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-3b-surface-family-vocabulary-audit","title":"Wave 3B - Surface Family Vocabulary Audit"},{"anchor":"wave-3c-selector-and-reader-boundedness-audit","level":3,"line":310,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-3c-selector-and-reader-boundedness-audit","title":"Wave 3C - Selector And Reader Boundedness Audit"},{"anchor":"phase-4-governance-and-boundary-audit","level":2,"line":322,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-4-governance-and-boundary-audit","title":"Phase 4 - Governance And Boundary Audit"},{"anchor":"wave-4a-governance-surface-consistency-audit","level":3,"line":324,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-4a-governance-surface-consistency-audit","title":"Wave 4A - Governance Surface Consistency Audit"},{"anchor":"wave-4b-cross-repo-boundary-seam-audit","level":3,"line":334,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-4b-cross-repo-boundary-seam-audit","title":"Wave 4B - Cross-Repo Boundary Seam Audit"},{"anchor":"wave-4c-long-gap-backlog-design-audit","level":3,"line":345,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-4c-long-gap-backlog-design-audit","title":"Wave 4C - Long-Gap Backlog Design Audit"},{"anchor":"phase-5-closure-program-synthesis","level":2,"line":358,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#phase-5-closure-program-synthesis","title":"Phase 5 - Closure Program Synthesis"},{"anchor":"wave-5a-immediate-repo-only-fix-queue","level":3,"line":360,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-5a-immediate-repo-only-fix-queue","title":"Wave 5A - Immediate Repo-Only Fix Queue"},{"anchor":"wave-5b-external-evidence-dependency-queue","level":3,"line":392,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-5b-external-evidence-dependency-queue","title":"Wave 5B - External Evidence Dependency Queue"},{"anchor":"wave-5c-next-implementation-wave-pack","level":3,"line":412,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#wave-5c-next-implementation-wave-pack","title":"Wave 5C - Next Implementation Wave Pack"},{"anchor":"repo-only-hardening-pack","level":4,"line":414,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#repo-only-hardening-pack","title":"Repo-Only Hardening Pack"},{"anchor":"review-coverage-refresh-pack","level":4,"line":444,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#review-coverage-refresh-pack","title":"Review Coverage Refresh Pack"},{"anchor":"external-evidence-pack","level":4,"line":470,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#external-evidence-pack","title":"External Evidence Pack"},{"anchor":"future-import-wave-program","level":4,"line":500,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#future-import-wave-program","title":"Future Import Wave Program"},{"anchor":"audit-exit-criteria","level":2,"line":541,"ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md#audit-exit-criteria","title":"Audit Exit Criteria"}],"line_refs":["mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md:1"],"path_ref":"mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md"},"signs":{"attestation_ref":"","digest":"c585d5e937a2e618b00d8de44c79a854d94796e8a4a53583d53852814717efdf","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1cab2e8285183b1ef06dab38b7b25b02613374bc678fe1b31054ce04ea55721b","git_blob_id":"ad3948228c6850b13e591b82b0b5c7cba48abc6e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0b93e2bbd1c14bf19cfa3f09","lineage_path":"mechanics/audit/parts/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:0b93e2bbd1c14bf19cfa3f09","mime":"text/markdown","path":"mechanics/audit/parts/AGENTS.md","repo":"aoa-techniques","size_bytes":1207,"version_id":"aoa:aoa-techniques:artifact-version:f2555136bc869e505c46b545"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/parts/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/parts/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/audit/parts/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/audit/parts/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/audit/parts/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":13,"ref":"mechanics/audit/parts/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":23,"ref":"mechanics/audit/parts/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":33,"ref":"mechanics/audit/parts/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":40,"ref":"mechanics/audit/parts/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/audit/parts/AGENTS.md:1"],"path_ref":"mechanics/audit/parts/AGENTS.md"},"signs":{"attestation_ref":"","digest":"1cab2e8285183b1ef06dab38b7b25b02613374bc678fe1b31054ce04ea55721b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9f40113790f9e6db158f2a70c22ee51080e87c98ad18c303204fd3e4806b412a","git_blob_id":"e783984adde576199418d1863481674538c0114b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d3166ec23c1c2b97b314d260","lineage_path":"mechanics/audit/parts/README.md","logical_id":"aoa:aoa-techniques:artifact:d3166ec23c1c2b97b314d260","mime":"text/markdown","path":"mechanics/audit/parts/README.md","repo":"aoa-techniques","size_bytes":536,"version_id":"aoa:aoa-techniques:artifact-version:88a1b91c3577e6b16f0b4673"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/parts/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/parts/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"audit-parts","level":1,"line":1,"ref":"mechanics/audit/parts/README.md#audit-parts","title":"Audit Parts"}],"line_refs":["mechanics/audit/parts/README.md:1"],"path_ref":"mechanics/audit/parts/README.md"},"signs":{"attestation_ref":"","digest":"9f40113790f9e6db158f2a70c22ee51080e87c98ad18c303204fd3e4806b412a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"aae2bac2ecef8ae5e9b7aa6d10ada963d34817ba3e58f11aaa1dc3262dd953a7","git_blob_id":"bcd206d022709bba7038dbc0782fc01d0f444dbd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b463640837001c8c8c404fb6","lineage_path":"mechanics/audit/parts/canonical-retro-audit/README.md","logical_id":"aoa:aoa-techniques:artifact:b463640837001c8c8c404fb6","mime":"text/markdown","path":"mechanics/audit/parts/canonical-retro-audit/README.md","repo":"aoa-techniques","size_bytes":5549,"version_id":"aoa:aoa-techniques:artifact-version:d0eb0cdcd5fa0713a8feb3f9"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/parts/canonical-retro-audit/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/parts/canonical-retro-audit/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"canonical-retro-audit","level":1,"line":1,"ref":"mechanics/audit/parts/canonical-retro-audit/README.md#canonical-retro-audit","title":"Canonical Retro Audit"},{"anchor":"review-contract","level":2,"line":15,"ref":"mechanics/audit/parts/canonical-retro-audit/README.md#review-contract","title":"Review Contract"},{"anchor":"2026-05-14-corpus-pass","level":2,"line":35,"ref":"mechanics/audit/parts/canonical-retro-audit/README.md#2026-05-14-corpus-pass","title":"2026-05-14 Corpus Pass"},{"anchor":"interpretation","level":2,"line":75,"ref":"mechanics/audit/parts/canonical-retro-audit/README.md#interpretation","title":"Interpretation"},{"anchor":"next-honest-trigger","level":2,"line":88,"ref":"mechanics/audit/parts/canonical-retro-audit/README.md#next-honest-trigger","title":"Next Honest Trigger"}],"line_refs":["mechanics/audit/parts/canonical-retro-audit/README.md:1"],"path_ref":"mechanics/audit/parts/canonical-retro-audit/README.md"},"signs":{"attestation_ref":"","digest":"aae2bac2ecef8ae5e9b7aa6d10ada963d34817ba3e58f11aaa1dc3262dd953a7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -710,11 +710,11 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f7dd22b4e1a4a09435e376f5c322cb8ce7e726d258439a9fcfa06d3cbfe0a089","git_blob_id":"0b0c7c5e4c06f461bb0439277b053f81119e2958","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc","lineage_path":"docs/EXTERNAL_EVIDENCE_SPRINT_RUNBOOK.md","logical_id":"aoa:aoa-techniques:artifact:ee31a40df38f0667a7ad18bc","mime":"text/markdown","path":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md","repo":"aoa-techniques","size_bytes":12083,"version_id":"aoa:aoa-techniques:artifact-version:55b579b35e9a427d127c8dd0"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"external-evidence-sprint-runbook","level":1,"line":1,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#external-evidence-sprint-runbook","title":"External Evidence Sprint Runbook"},{"anchor":"when-to-open-this","level":2,"line":15,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#when-to-open-this","title":"When To Open This"},{"anchor":"non-goals","level":2,"line":26,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#non-goals","title":"Non-Goals"},{"anchor":"current-sprint-order","level":2,"line":34,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#current-sprint-order","title":"Current Sprint Order"},{"anchor":"swarm-layout","level":2,"line":70,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#swarm-layout","title":"Swarm Layout"},{"anchor":"search-order","level":2,"line":90,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#search-order","title":"Search Order"},{"anchor":"evidence-verdict-contract","level":2,"line":110,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#evidence-verdict-contract","title":"Evidence Verdict Contract"},{"anchor":"bundle-local-update-path","level":2,"line":127,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#bundle-local-update-path","title":"Bundle-Local Update Path"},{"anchor":"stop-rules","level":2,"line":136,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#stop-rules","title":"Stop Rules"},{"anchor":"completion-criteria","level":2,"line":144,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#completion-criteria","title":"Completion Criteria"},{"anchor":"validation-and-merge-discipline","level":2,"line":154,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#validation-and-merge-discipline","title":"Validation And Merge Discipline"},{"anchor":"notes","level":2,"line":161,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md#notes","title":"Notes"}],"line_refs":["mechanics/audit/parts/external-evidence-sprint-runbook/README.md:1"],"path_ref":"mechanics/audit/parts/external-evidence-sprint-runbook/README.md"},"signs":{"attestation_ref":"","digest":"f7dd22b4e1a4a09435e376f5c322cb8ce7e726d258439a9fcfa06d3cbfe0a089","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"79ebeb300a17c075a0f909e1ac0b4533c1595c8385178062445c67db73c9e389","git_blob_id":"578982af73c9403fe18392e4e0f8608bb0e4336d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:87f7294594c3379e12bb67db","lineage_path":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md","logical_id":"aoa:aoa-techniques:artifact:87f7294594c3379e12bb67db","mime":"text/markdown","path":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md","repo":"aoa-techniques","size_bytes":3516,"version_id":"aoa:aoa-techniques:artifact-version:5742a66ed2a6cea6b7ab64ba"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"promotion-evidence-long-pass-closeout","level":1,"line":1,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md#promotion-evidence-long-pass-closeout","title":"Promotion Evidence Long-Pass Closeout"},{"anchor":"result","level":2,"line":5,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md#result","title":"Result"},{"anchor":"accepted-evidence-families","level":2,"line":19,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md#accepted-evidence-families","title":"Accepted Evidence Families"},{"anchor":"stop-lines-preserved","level":2,"line":28,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md#stop-lines-preserved","title":"Stop Lines Preserved"},{"anchor":"remaining-promoted-queue","level":2,"line":32,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md#remaining-promoted-queue","title":"Remaining Promoted Queue"},{"anchor":"durable-surfaces-updated","level":2,"line":45,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md#durable-surfaces-updated","title":"Durable Surfaces Updated"},{"anchor":"retired-working-surface","level":2,"line":60,"ref":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md#retired-working-surface","title":"Retired Working Surface"}],"line_refs":["mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md:1"],"path_ref":"mechanics/audit/parts/external-evidence-sprint-runbook/promotion-evidence-long-pass-closeout.md"},"signs":{"attestation_ref":"","digest":"79ebeb300a17c075a0f909e1ac0b4533c1595c8385178062445c67db73c9e389","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"114a6465db820fb61d767a6b02c0eb74531744fab2c36e96a0ac3ec0c59ad24d","git_blob_id":"c28a4b885f365e14e2b0aa4340ee98747453df06","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b2a8cd3f1dd7f330861f0a02","lineage_path":"docs/PROMOTION_WAVE_A_RUNBOOK.md","logical_id":"aoa:aoa-techniques:artifact:b2a8cd3f1dd7f330861f0a02","mime":"text/markdown","path":"mechanics/audit/parts/promotion-evidence-runbook/README.md","repo":"aoa-techniques","size_bytes":10556,"version_id":"aoa:aoa-techniques:artifact-version:c8df64719f596578136c938d"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/parts/promotion-evidence-runbook/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/parts/promotion-evidence-runbook/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"promotion-evidence-runbook","level":1,"line":1,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#promotion-evidence-runbook","title":"Promotion Evidence Runbook"},{"anchor":"wave-goal","level":2,"line":12,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#wave-goal","title":"Wave Goal"},{"anchor":"non-goals","level":2,"line":18,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#non-goals","title":"Non-Goals"},{"anchor":"swarm-layout","level":2,"line":28,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#swarm-layout","title":"Swarm Layout"},{"anchor":"worker-output-contract","level":2,"line":48,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#worker-output-contract","title":"Worker Output Contract"},{"anchor":"candidate-table","level":2,"line":72,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#candidate-table","title":"Candidate Table"},{"anchor":"recommended-sequence","level":2,"line":78,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#recommended-sequence","title":"Recommended Sequence"},{"anchor":"worker-briefs","level":2,"line":88,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#worker-briefs","title":"Worker Briefs"},{"anchor":"worker-1-aoa-t-0032","level":3,"line":90,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#worker-1-aoa-t-0032","title":"Worker 1 - `AOA-T-0032`"},{"anchor":"stop-rules","level":2,"line":102,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#stop-rules","title":"Stop Rules"},{"anchor":"completion-criteria","level":2,"line":110,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#completion-criteria","title":"Completion Criteria"},{"anchor":"wave-a-pass-1-snapshot","level":2,"line":121,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#wave-a-pass-1-snapshot","title":"Wave A Pass 1 Snapshot"},{"anchor":"validation-and-merge-discipline","level":2,"line":142,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#validation-and-merge-discipline","title":"Validation And Merge Discipline"},{"anchor":"notes","level":2,"line":150,"ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md#notes","title":"Notes"}],"line_refs":["mechanics/audit/parts/promotion-evidence-runbook/README.md:1"],"path_ref":"mechanics/audit/parts/promotion-evidence-runbook/README.md"},"signs":{"attestation_ref":"","digest":"114a6465db820fb61d767a6b02c0eb74531744fab2c36e96a0ac3ec0c59ad24d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"08ffe0eded90cc5605649ccbc6598a166a85a70a4980ec965d1f2856a27104c0","git_blob_id":"d2d9912e88e874085cbe57962a16c4b064962f75","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","lineage_path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","logical_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","mime":"text/markdown","path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","repo":"aoa-techniques","size_bytes":55009,"version_id":"aoa:aoa-techniques:artifact-version:ad31b30031943af7daa61aa0"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/parts/promotion-readiness-matrix/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"promotion-readiness-matrix","level":1,"line":1,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#promotion-readiness-matrix","title":"Promotion Readiness Matrix"},{"anchor":"current-posture","level":2,"line":11,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#current-posture","title":"Current Posture"},{"anchor":"manual-first-questbook-pilot-lane","level":2,"line":26,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#manual-first-questbook-pilot-lane","title":"Manual-first questbook pilot lane"},{"anchor":"wave-a-pass-1-snapshot","level":2,"line":35,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#wave-a-pass-1-snapshot","title":"Wave A Pass 1 Snapshot"},{"anchor":"readiness-lanes","level":2,"line":57,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#readiness-lanes","title":"Readiness Lanes"},{"anchor":"swarm-rule","level":2,"line":71,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#swarm-rule","title":"Swarm Rule"},{"anchor":"pack-matrix","level":2,"line":82,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-matrix","title":"Pack Matrix"},{"anchor":"pack-1-long-gap-donor-lanes","level":3,"line":84,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-1-long-gap-donor-lanes","title":"Pack 1 - Long-Gap Donor Lanes"},{"anchor":"pack-2-shell-agent-fast-path","level":3,"line":93,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-2-shell-agent-fast-path","title":"Pack 2 - Shell-Agent Fast Path"},{"anchor":"pack-3-runtime-operator-stack","level":3,"line":97,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-3-runtime-operator-stack","title":"Pack 3 - Runtime Operator Stack"},{"anchor":"pack-4-instruction-surface-cluster-residual","level":3,"line":109,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-4-instruction-surface-cluster-residual","title":"Pack 4 - Instruction-Surface Cluster Residual"},{"anchor":"pack-5-skill-ecosystem-and-curated-inputs","level":3,"line":119,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-5-skill-ecosystem-and-curated-inputs","title":"Pack 5 - Skill Ecosystem And Curated Inputs"},{"anchor":"pack-6-kag-source-lift-evidence-prep","level":3,"line":129,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-6-kag-source-lift-evidence-prep","title":"Pack 6 - KAG / Source-Lift Evidence Prep"},{"anchor":"pack-7-history-artifacts","level":3,"line":141,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-7-history-artifacts","title":"Pack 7 - History Artifacts"},{"anchor":"pack-8-internal-docs-practice","level":3,"line":145,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-8-internal-docs-practice","title":"Pack 8 - Internal Docs Practice"},{"anchor":"pack-9-graph-work-coordination","level":3,"line":149,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-9-graph-work-coordination","title":"Pack 9 - Graph Work Coordination"},{"anchor":"pack-10-background-review-loop","level":3,"line":153,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-10-background-review-loop","title":"Pack 10 - Background Review Loop"},{"anchor":"pack-11-post-compaction-skill-recovery","level":3,"line":157,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-11-post-compaction-skill-recovery","title":"Pack 11 - Post-Compaction Skill Recovery"},{"anchor":"pack-12-planning-ladder","level":3,"line":161,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-12-planning-ladder","title":"Pack 12 - Planning Ladder"},{"anchor":"pack-13-channelized-mailbox","level":3,"line":165,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-13-channelized-mailbox","title":"Pack 13 - Channelized Mailbox"},{"anchor":"pack-14-structured-handoff-before-compaction","level":3,"line":169,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-14-structured-handoff-before-compaction","title":"Pack 14 - Structured Handoff Before Compaction"},{"anchor":"pack-15-receipt-confirmed-handoff-packet","level":3,"line":173,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-15-receipt-confirmed-handoff-packet","title":"Pack 15 - Receipt-Confirmed Handoff Packet"},{"anchor":"pack-16-git-verified-handoff-claims","level":3,"line":181,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-16-git-verified-handoff-claims","title":"Pack 16 - Git-Verified Handoff Claims"},{"anchor":"pack-17-session-opening-ritual-before-work","level":3,"line":189,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-17-session-opening-ritual-before-work","title":"Pack 17 - Session Opening Ritual Before Work"},{"anchor":"pack-18-cross-repo-resource-map-bootstrap","level":3,"line":193,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-18-cross-repo-resource-map-bootstrap","title":"Pack 18 - Cross-Repo Resource Map Bootstrap"},{"anchor":"pack-19-episode-bounded-agent-loop","level":3,"line":197,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-19-episode-bounded-agent-loop","title":"Pack 19 - Episode-Bounded Agent Loop"},{"anchor":"pack-20-versioned-agent-registry-contract","level":3,"line":201,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-20-versioned-agent-registry-contract","title":"Pack 20 - Versioned Agent Registry Contract"},{"anchor":"pack-21-capability-discovery","level":3,"line":205,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-21-capability-discovery","title":"Pack 21 - Capability Discovery"},{"anchor":"pack-22-mcp-gateway-proxy","level":3,"line":209,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-22-mcp-gateway-proxy","title":"Pack 22 - MCP Gateway Proxy"},{"anchor":"pack-23-transcript-replay-artifact","level":3,"line":213,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-23-transcript-replay-artifact","title":"Pack 23 - Transcript Replay Artifact"},{"anchor":"pack-24-transcript-linked-code-lineage","level":3,"line":217,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-24-transcript-linked-code-lineage","title":"Pack 24 - Transcript-Linked Code Lineage"},{"anchor":"pack-25-fail-closed-evidence-gate","level":3,"line":221,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-25-fail-closed-evidence-gate","title":"Pack 25 - Fail-Closed Evidence Gate"},{"anchor":"pack-26-approval-bound-durable-jobs","level":3,"line":225,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-26-approval-bound-durable-jobs","title":"Pack 26 - Approval-Bound Durable Jobs"},{"anchor":"pack-27-ocr-staged-handoff","level":3,"line":229,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-27-ocr-staged-handoff","title":"Pack 27 - OCR Staged Handoff"},{"anchor":"pack-28-post-ocr-template-field-extraction","level":3,"line":233,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-28-post-ocr-template-field-extraction","title":"Pack 28 - Post-OCR Template Field Extraction"},{"anchor":"pack-29-perceptual-media-dedupe","level":3,"line":237,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-29-perceptual-media-dedupe","title":"Pack 29 - Perceptual Media Dedupe"},{"anchor":"pack-30-semantic-media-bucketing","level":3,"line":241,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-30-semantic-media-bucketing","title":"Pack 30 - Semantic Media Bucketing"},{"anchor":"pack-31-telegram-export-normalization","level":3,"line":245,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-31-telegram-export-normalization","title":"Pack 31 - Telegram Export Normalization"},{"anchor":"pack-32-reviewed-session-harvest-spine","level":3,"line":249,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-32-reviewed-session-harvest-spine","title":"Pack 32 - Reviewed Session Harvest Spine"},{"anchor":"pack-33-owner-route-fork-discipline","level":3,"line":253,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-33-owner-route-fork-discipline","title":"Pack 33 - Owner Route Fork Discipline"},{"anchor":"pack-34-diagnosis-and-repair-loop","level":3,"line":257,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-34-diagnosis-and-repair-loop","title":"Pack 34 - Diagnosis And Repair Loop"},{"anchor":"pack-35-progression-and-quest-reflection","level":3,"line":261,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-35-progression-and-quest-reflection","title":"Pack 35 - Progression And Quest Reflection"},{"anchor":"pack-36-automation-opportunity-gates","level":3,"line":265,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-36-automation-opportunity-gates","title":"Pack 36 - Automation Opportunity Gates"},{"anchor":"pack-37-quest-promotion-verdict","level":3,"line":269,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-37-quest-promotion-verdict","title":"Pack 37 - Quest Promotion Verdict"},{"anchor":"pack-38-workspace-boundary-and-proof-loop","level":3,"line":273,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-38-workspace-boundary-and-proof-loop","title":"Pack 38 - Workspace Boundary And Proof Loop"},{"anchor":"pack-39-antifragility-recovery-fresh-scaffolding","level":3,"line":277,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-39-antifragility-recovery-fresh-scaffolding","title":"Pack 39 - Antifragility Recovery Fresh Scaffolding"},{"anchor":"pack-40-method-growth-extraction-family","level":3,"line":281,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-40-method-growth-extraction-family","title":"Pack 40 - Method-Growth Extraction Family"},{"anchor":"pack-41-agon-handoff-extraction-family","level":3,"line":285,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-41-agon-handoff-extraction-family","title":"Pack 41 - Agon Handoff Extraction Family"},{"anchor":"suggested-wave-order","level":2,"line":289,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#suggested-wave-order","title":"Suggested Wave Order"},{"anchor":"notes","level":2,"line":309,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#notes","title":"Notes"}],"line_refs":["mechanics/audit/parts/promotion-readiness-matrix/README.md:1"],"path_ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md"},"signs":{"attestation_ref":"","digest":"08ffe0eded90cc5605649ccbc6598a166a85a70a4980ec965d1f2856a27104c0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"38d84f2ccbc77f772da420de543747b02bb46f4320e99a6fa361231c258db473","git_blob_id":"2f0ccf1932102f4aa4e83ae4c63e73d3b7b657e4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","lineage_path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","logical_id":"aoa:aoa-techniques:artifact:939587694ad1459c4120bb30","mime":"text/markdown","path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","repo":"aoa-techniques","size_bytes":55240,"version_id":"aoa:aoa-techniques:artifact-version:90e50b5ab2dfde502cc96991"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/audit/parts/promotion-readiness-matrix/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/parts/promotion-readiness-matrix/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"promotion-readiness-matrix","level":1,"line":1,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#promotion-readiness-matrix","title":"Promotion Readiness Matrix"},{"anchor":"current-posture","level":2,"line":15,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#current-posture","title":"Current Posture"},{"anchor":"manual-first-questbook-pilot-lane","level":2,"line":30,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#manual-first-questbook-pilot-lane","title":"Manual-first questbook pilot lane"},{"anchor":"wave-a-pass-1-snapshot","level":2,"line":39,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#wave-a-pass-1-snapshot","title":"Wave A Pass 1 Snapshot"},{"anchor":"readiness-lanes","level":2,"line":61,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#readiness-lanes","title":"Readiness Lanes"},{"anchor":"swarm-rule","level":2,"line":75,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#swarm-rule","title":"Swarm Rule"},{"anchor":"pack-matrix","level":2,"line":86,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-matrix","title":"Pack Matrix"},{"anchor":"pack-1-long-gap-donor-lanes","level":3,"line":88,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-1-long-gap-donor-lanes","title":"Pack 1 - Long-Gap Donor Lanes"},{"anchor":"pack-2-shell-agent-fast-path","level":3,"line":97,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-2-shell-agent-fast-path","title":"Pack 2 - Shell-Agent Fast Path"},{"anchor":"pack-3-runtime-operator-stack","level":3,"line":101,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-3-runtime-operator-stack","title":"Pack 3 - Runtime Operator Stack"},{"anchor":"pack-4-instruction-surface-cluster-residual","level":3,"line":113,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-4-instruction-surface-cluster-residual","title":"Pack 4 - Instruction-Surface Cluster Residual"},{"anchor":"pack-5-skill-ecosystem-and-curated-inputs","level":3,"line":123,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-5-skill-ecosystem-and-curated-inputs","title":"Pack 5 - Skill Ecosystem And Curated Inputs"},{"anchor":"pack-6-kag-source-lift-evidence-prep","level":3,"line":133,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-6-kag-source-lift-evidence-prep","title":"Pack 6 - KAG / Source-Lift Evidence Prep"},{"anchor":"pack-7-history-artifacts","level":3,"line":145,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-7-history-artifacts","title":"Pack 7 - History Artifacts"},{"anchor":"pack-8-internal-docs-practice","level":3,"line":149,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-8-internal-docs-practice","title":"Pack 8 - Internal Docs Practice"},{"anchor":"pack-9-graph-work-coordination","level":3,"line":153,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-9-graph-work-coordination","title":"Pack 9 - Graph Work Coordination"},{"anchor":"pack-10-background-review-loop","level":3,"line":157,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-10-background-review-loop","title":"Pack 10 - Background Review Loop"},{"anchor":"pack-11-post-compaction-skill-recovery","level":3,"line":161,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-11-post-compaction-skill-recovery","title":"Pack 11 - Post-Compaction Skill Recovery"},{"anchor":"pack-12-planning-ladder","level":3,"line":165,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-12-planning-ladder","title":"Pack 12 - Planning Ladder"},{"anchor":"pack-13-channelized-mailbox","level":3,"line":169,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-13-channelized-mailbox","title":"Pack 13 - Channelized Mailbox"},{"anchor":"pack-14-structured-handoff-before-compaction","level":3,"line":173,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-14-structured-handoff-before-compaction","title":"Pack 14 - Structured Handoff Before Compaction"},{"anchor":"pack-15-receipt-confirmed-handoff-packet","level":3,"line":177,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-15-receipt-confirmed-handoff-packet","title":"Pack 15 - Receipt-Confirmed Handoff Packet"},{"anchor":"pack-16-git-verified-handoff-claims","level":3,"line":185,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-16-git-verified-handoff-claims","title":"Pack 16 - Git-Verified Handoff Claims"},{"anchor":"pack-17-session-opening-ritual-before-work","level":3,"line":193,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-17-session-opening-ritual-before-work","title":"Pack 17 - Session Opening Ritual Before Work"},{"anchor":"pack-18-cross-repo-resource-map-bootstrap","level":3,"line":197,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-18-cross-repo-resource-map-bootstrap","title":"Pack 18 - Cross-Repo Resource Map Bootstrap"},{"anchor":"pack-19-episode-bounded-agent-loop","level":3,"line":201,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-19-episode-bounded-agent-loop","title":"Pack 19 - Episode-Bounded Agent Loop"},{"anchor":"pack-20-versioned-agent-registry-contract","level":3,"line":205,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-20-versioned-agent-registry-contract","title":"Pack 20 - Versioned Agent Registry Contract"},{"anchor":"pack-21-capability-discovery","level":3,"line":209,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-21-capability-discovery","title":"Pack 21 - Capability Discovery"},{"anchor":"pack-22-mcp-gateway-proxy","level":3,"line":213,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-22-mcp-gateway-proxy","title":"Pack 22 - MCP Gateway Proxy"},{"anchor":"pack-23-transcript-replay-artifact","level":3,"line":217,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-23-transcript-replay-artifact","title":"Pack 23 - Transcript Replay Artifact"},{"anchor":"pack-24-transcript-linked-code-lineage","level":3,"line":221,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-24-transcript-linked-code-lineage","title":"Pack 24 - Transcript-Linked Code Lineage"},{"anchor":"pack-25-fail-closed-evidence-gate","level":3,"line":225,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-25-fail-closed-evidence-gate","title":"Pack 25 - Fail-Closed Evidence Gate"},{"anchor":"pack-26-approval-bound-durable-jobs","level":3,"line":229,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-26-approval-bound-durable-jobs","title":"Pack 26 - Approval-Bound Durable Jobs"},{"anchor":"pack-27-ocr-staged-handoff","level":3,"line":233,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-27-ocr-staged-handoff","title":"Pack 27 - OCR Staged Handoff"},{"anchor":"pack-28-post-ocr-template-field-extraction","level":3,"line":237,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-28-post-ocr-template-field-extraction","title":"Pack 28 - Post-OCR Template Field Extraction"},{"anchor":"pack-29-perceptual-media-dedupe","level":3,"line":241,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-29-perceptual-media-dedupe","title":"Pack 29 - Perceptual Media Dedupe"},{"anchor":"pack-30-semantic-media-bucketing","level":3,"line":245,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-30-semantic-media-bucketing","title":"Pack 30 - Semantic Media Bucketing"},{"anchor":"pack-31-telegram-export-normalization","level":3,"line":249,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-31-telegram-export-normalization","title":"Pack 31 - Telegram Export Normalization"},{"anchor":"pack-32-reviewed-session-harvest-spine","level":3,"line":253,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-32-reviewed-session-harvest-spine","title":"Pack 32 - Reviewed Session Harvest Spine"},{"anchor":"pack-33-owner-route-fork-discipline","level":3,"line":257,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-33-owner-route-fork-discipline","title":"Pack 33 - Owner Route Fork Discipline"},{"anchor":"pack-34-diagnosis-and-repair-loop","level":3,"line":261,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-34-diagnosis-and-repair-loop","title":"Pack 34 - Diagnosis And Repair Loop"},{"anchor":"pack-35-progression-and-quest-reflection","level":3,"line":265,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-35-progression-and-quest-reflection","title":"Pack 35 - Progression And Quest Reflection"},{"anchor":"pack-36-automation-opportunity-gates","level":3,"line":269,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-36-automation-opportunity-gates","title":"Pack 36 - Automation Opportunity Gates"},{"anchor":"pack-37-quest-promotion-verdict","level":3,"line":273,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-37-quest-promotion-verdict","title":"Pack 37 - Quest Promotion Verdict"},{"anchor":"pack-38-workspace-boundary-and-proof-loop","level":3,"line":277,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-38-workspace-boundary-and-proof-loop","title":"Pack 38 - Workspace Boundary And Proof Loop"},{"anchor":"pack-39-antifragility-recovery-fresh-scaffolding","level":3,"line":281,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-39-antifragility-recovery-fresh-scaffolding","title":"Pack 39 - Antifragility Recovery Fresh Scaffolding"},{"anchor":"pack-40-method-growth-extraction-family","level":3,"line":285,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-40-method-growth-extraction-family","title":"Pack 40 - Method-Growth Extraction Family"},{"anchor":"pack-41-agon-handoff-extraction-family","level":3,"line":289,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#pack-41-agon-handoff-extraction-family","title":"Pack 41 - Agon Handoff Extraction Family"},{"anchor":"suggested-wave-order","level":2,"line":293,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#suggested-wave-order","title":"Suggested Wave Order"},{"anchor":"notes","level":2,"line":313,"ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md#notes","title":"Notes"}],"line_refs":["mechanics/audit/parts/promotion-readiness-matrix/README.md:1"],"path_ref":"mechanics/audit/parts/promotion-readiness-matrix/README.md"},"signs":{"attestation_ref":"","digest":"38d84f2ccbc77f772da420de543747b02bb46f4320e99a6fa361231c258db473","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f28b18d87d2c375c2f3ff12c402682da43f9c9fc8595470723c7aa7f14837b6e","git_blob_id":"f80546b732095ec28976cd646edf6c348927f879","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9","lineage_path":"tests/test_audit_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:66eae8a0b2fd9befdf56b2f9","mime":"text/x-python","path":"mechanics/audit/tests/test_audit_mechanics_topology.py","repo":"aoa-techniques","size_bytes":6834,"version_id":"aoa:aoa-techniques:artifact-version:3a31fbf6947dccf870c51e55"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/audit/tests/test_audit_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/audit/tests/test_audit_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/audit/tests/test_audit_mechanics_topology.py:1"],"path_ref":"mechanics/audit/tests/test_audit_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"f28b18d87d2c375c2f3ff12c402682da43f9c9fc8595470723c7aa7f14837b6e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/audit/tests/test_audit_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c5ee92e7f754bac6f9a8f9e3f86662b1826b8208be60d91c67d82913d8ad3c38","git_blob_id":"19a0b54659bca26ac18e30c50fcd9ee01d09594a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1fcf12b8829a2e1590d8674f","lineage_path":"mechanics/boundary-bridge/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:1fcf12b8829a2e1590d8674f","mime":"text/markdown","path":"mechanics/boundary-bridge/AGENTS.md","repo":"aoa-techniques","size_bytes":2193,"version_id":"aoa:aoa-techniques:artifact-version:ca712b4b66b06f9f10ec6afd"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/boundary-bridge/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/boundary-bridge/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/boundary-bridge/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/boundary-bridge/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/boundary-bridge/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":20,"ref":"mechanics/boundary-bridge/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":28,"ref":"mechanics/boundary-bridge/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":45,"ref":"mechanics/boundary-bridge/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":54,"ref":"mechanics/boundary-bridge/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/boundary-bridge/AGENTS.md:1"],"path_ref":"mechanics/boundary-bridge/AGENTS.md"},"signs":{"attestation_ref":"","digest":"c5ee92e7f754bac6f9a8f9e3f86662b1826b8208be60d91c67d82913d8ad3c38","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6813712ccfbdb417f8d6548bcb670dc0e7f9343c143ab68442b75f264d20ec2b","git_blob_id":"198e830f4df6ab583deba37812da18b39342330f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0a397c872e31eb43f190b7bd","lineage_path":"mechanics/boundary-bridge/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:0a397c872e31eb43f190b7bd","mime":"text/markdown","path":"mechanics/boundary-bridge/DIRECTION.md","repo":"aoa-techniques","size_bytes":2157,"version_id":"aoa:aoa-techniques:artifact-version:faf3deca15a90dcf1b1ee621"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/boundary-bridge/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/boundary-bridge/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"boundary-bridge-direction","level":1,"line":1,"ref":"mechanics/boundary-bridge/DIRECTION.md#boundary-bridge-direction","title":"Boundary Bridge Direction"},{"anchor":"source-of-truth-split","level":2,"line":10,"ref":"mechanics/boundary-bridge/DIRECTION.md#source-of-truth-split","title":"Source-of-truth Split"},{"anchor":"local-contour","level":2,"line":21,"ref":"mechanics/boundary-bridge/DIRECTION.md#local-contour","title":"Local Contour"},{"anchor":"growth-rule","level":2,"line":45,"ref":"mechanics/boundary-bridge/DIRECTION.md#growth-rule","title":"Growth Rule"}],"line_refs":["mechanics/boundary-bridge/DIRECTION.md:1"],"path_ref":"mechanics/boundary-bridge/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"6813712ccfbdb417f8d6548bcb670dc0e7f9343c143ab68442b75f264d20ec2b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"abd31204d369e49a6d04e31198b69ec4eccefe59fad63d79d9fa901d8eaa7af0","git_blob_id":"d344f54f31382bac9d2c4962393e6c03056a70e9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","lineage_path":"mechanics/boundary-bridge/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","mime":"text/markdown","path":"mechanics/boundary-bridge/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1389,"version_id":"aoa:aoa-techniques:artifact-version:a8c65b302823875415d6518a"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/boundary-bridge/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/boundary-bridge/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"boundary-bridge-landing-log","level":1,"line":1,"ref":"mechanics/boundary-bridge/LANDING_LOG.md#boundary-bridge-landing-log","title":"Boundary Bridge Landing Log"},{"anchor":"2026-05-03","level":2,"line":6,"ref":"mechanics/boundary-bridge/LANDING_LOG.md#2026-05-03","title":"2026-05-03"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":22,"ref":"mechanics/boundary-bridge/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"verification-route","level":2,"line":30,"ref":"mechanics/boundary-bridge/LANDING_LOG.md#verification-route","title":"Verification Route"}],"line_refs":["mechanics/boundary-bridge/LANDING_LOG.md:1"],"path_ref":"mechanics/boundary-bridge/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"abd31204d369e49a6d04e31198b69ec4eccefe59fad63d79d9fa901d8eaa7af0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f0686cd4050bfb34bf2955a9d8e9223321a88d9e3aca600e2fbf230bacd1fb5e","git_blob_id":"37563cce5445377a9dbd1b0d64498c28062ff6d7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","lineage_path":"mechanics/boundary-bridge/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:90911c36a70ba2d27823145f","mime":"text/markdown","path":"mechanics/boundary-bridge/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1286,"version_id":"aoa:aoa-techniques:artifact-version:9f7fa91709ee8a9962ed292a"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/boundary-bridge/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/boundary-bridge/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"boundary-bridge-landing-log","level":1,"line":1,"ref":"mechanics/boundary-bridge/LANDING_LOG.md#boundary-bridge-landing-log","title":"Boundary Bridge Landing Log"},{"anchor":"2026-05-03","level":2,"line":6,"ref":"mechanics/boundary-bridge/LANDING_LOG.md#2026-05-03","title":"2026-05-03"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":22,"ref":"mechanics/boundary-bridge/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"verification-route","level":2,"line":30,"ref":"mechanics/boundary-bridge/LANDING_LOG.md#verification-route","title":"Verification Route"}],"line_refs":["mechanics/boundary-bridge/LANDING_LOG.md:1"],"path_ref":"mechanics/boundary-bridge/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"f0686cd4050bfb34bf2955a9d8e9223321a88d9e3aca600e2fbf230bacd1fb5e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"607701f6727cbf1c8765cc89635149100efa779fc381cd9e4746d42b75c827a7","git_blob_id":"a2588e1cfef888a6ca9743e7c04635f03f100fb9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fe08f92726a50caed1d8bcd2","lineage_path":"mechanics/boundary-bridge/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:fe08f92726a50caed1d8bcd2","mime":"text/markdown","path":"mechanics/boundary-bridge/PARTS.md","repo":"aoa-techniques","size_bytes":1291,"version_id":"aoa:aoa-techniques:artifact-version:5abbfdf095812677caaeddb5"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/boundary-bridge/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/boundary-bridge/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"boundary-bridge-parts","level":1,"line":1,"ref":"mechanics/boundary-bridge/PARTS.md#boundary-bridge-parts","title":"Boundary Bridge Parts"},{"anchor":"part-rule","level":2,"line":13,"ref":"mechanics/boundary-bridge/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/boundary-bridge/PARTS.md:1"],"path_ref":"mechanics/boundary-bridge/PARTS.md"},"signs":{"attestation_ref":"","digest":"607701f6727cbf1c8765cc89635149100efa779fc381cd9e4746d42b75c827a7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d6ce957ea4dd1c25c24c38734f3433ed667c8c6f0a9967768ab94045326dd47b","git_blob_id":"ffd7b9baa041ac1630b751c96f9cfcb857f77402","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:03ab6d31c240dd6da06db6c6","lineage_path":"mechanics/boundary-bridge/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:03ab6d31c240dd6da06db6c6","mime":"text/markdown","path":"mechanics/boundary-bridge/PROVENANCE.md","repo":"aoa-techniques","size_bytes":4492,"version_id":"aoa:aoa-techniques:artifact-version:49e15ca2eeb5cd33121eab14"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/boundary-bridge/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/boundary-bridge/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"boundary-bridge-provenance","level":1,"line":1,"ref":"mechanics/boundary-bridge/PROVENANCE.md#boundary-bridge-provenance","title":"Boundary Bridge Provenance"},{"anchor":"active-landing-map","level":2,"line":13,"ref":"mechanics/boundary-bridge/PROVENANCE.md#active-landing-map","title":"Active Landing Map"},{"anchor":"aoa-center-relation","level":2,"line":21,"ref":"mechanics/boundary-bridge/PROVENANCE.md#aoa-center-relation","title":"AoA Center Relation"},{"anchor":"source-bridge","level":2,"line":33,"ref":"mechanics/boundary-bridge/PROVENANCE.md#source-bridge","title":"Source Bridge"}],"line_refs":["mechanics/boundary-bridge/PROVENANCE.md:1"],"path_ref":"mechanics/boundary-bridge/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"d6ce957ea4dd1c25c24c38734f3433ed667c8c6f0a9967768ab94045326dd47b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2e20b5222a85e7ec3ccb2d23985ea950ff463a2d2deab429a05df251c2a9d786","git_blob_id":"5db3164b889d9f886cd97b1bdec3d135fc42aefb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ed4ace301e7714a0fa443e06","lineage_path":"mechanics/boundary-bridge/README.md","logical_id":"aoa:aoa-techniques:artifact:ed4ace301e7714a0fa443e06","mime":"text/markdown","path":"mechanics/boundary-bridge/README.md","repo":"aoa-techniques","size_bytes":3958,"version_id":"aoa:aoa-techniques:artifact-version:40d59e5ee11a1959b30a34b5"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/boundary-bridge/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/boundary-bridge/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"boundary-bridge","level":1,"line":1,"ref":"mechanics/boundary-bridge/README.md#boundary-bridge","title":"Boundary Bridge"},{"anchor":"mechanic-card","level":2,"line":13,"ref":"mechanics/boundary-bridge/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":17,"ref":"mechanics/boundary-bridge/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":23,"ref":"mechanics/boundary-bridge/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":29,"ref":"mechanics/boundary-bridge/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":38,"ref":"mechanics/boundary-bridge/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":46,"ref":"mechanics/boundary-bridge/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":53,"ref":"mechanics/boundary-bridge/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":62,"ref":"mechanics/boundary-bridge/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":68,"ref":"mechanics/boundary-bridge/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":76,"ref":"mechanics/boundary-bridge/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"boundary","level":2,"line":88,"ref":"mechanics/boundary-bridge/README.md#boundary","title":"Boundary"},{"anchor":"aoa-relation","level":2,"line":101,"ref":"mechanics/boundary-bridge/README.md#aoa-relation","title":"AoA relation"}],"line_refs":["mechanics/boundary-bridge/README.md:1"],"path_ref":"mechanics/boundary-bridge/README.md"},"signs":{"attestation_ref":"","digest":"2e20b5222a85e7ec3ccb2d23985ea950ff463a2d2deab429a05df251c2a9d786","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -732,7 +732,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","git_blob_id":"76053134a28c43d0adde1c6837b59f4ce18e1bb6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f","lineage_path":"tests/test_boundary_bridge_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:45b1f7957ece519e3d4f2c4f","mime":"text/x-python","path":"mechanics/boundary-bridge/tests/test_boundary_bridge_mechanics_topology.py","repo":"aoa-techniques","size_bytes":7717,"version_id":"aoa:aoa-techniques:artifact-version:0a17bac93b8b1e60c6058f28"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/boundary-bridge/tests/test_boundary_bridge_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/boundary-bridge/tests/test_boundary_bridge_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/boundary-bridge/tests/test_boundary_bridge_mechanics_topology.py:1"],"path_ref":"mechanics/boundary-bridge/tests/test_boundary_bridge_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"bcb9bd629a58d622aa35d5f0d4bd574b575677c1cacd0dc08e619f989371958c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/boundary-bridge/tests/test_boundary_bridge_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ba34075a1204f4014a77cd6f757092988344fe5bb67488cb35d033898c74c957","git_blob_id":"7d90c5dc91497a1e59c6a0e5ab6f2c95aa389fb4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cc4a61a4cb72286efc062e32","lineage_path":"mechanics/checkpoint/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:cc4a61a4cb72286efc062e32","mime":"text/markdown","path":"mechanics/checkpoint/AGENTS.md","repo":"aoa-techniques","size_bytes":2057,"version_id":"aoa:aoa-techniques:artifact-version:7c8a8074639e635f81c02c19"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/checkpoint/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/checkpoint/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/checkpoint/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/checkpoint/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/checkpoint/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":20,"ref":"mechanics/checkpoint/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":28,"ref":"mechanics/checkpoint/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":44,"ref":"mechanics/checkpoint/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":53,"ref":"mechanics/checkpoint/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/checkpoint/AGENTS.md:1"],"path_ref":"mechanics/checkpoint/AGENTS.md"},"signs":{"attestation_ref":"","digest":"ba34075a1204f4014a77cd6f757092988344fe5bb67488cb35d033898c74c957","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"198480d9505d0987aa75831243abd8ce685469e05a2dbca12b24342d5f6037cc","git_blob_id":"17f7402460700981519017d6b41d055df6fbe0c8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9cb002695be915bbf742d5bb","lineage_path":"mechanics/checkpoint/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:9cb002695be915bbf742d5bb","mime":"text/markdown","path":"mechanics/checkpoint/DIRECTION.md","repo":"aoa-techniques","size_bytes":1880,"version_id":"aoa:aoa-techniques:artifact-version:2ac336e4fb7a97e0240c472f"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/checkpoint/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/checkpoint/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"checkpoint-direction","level":1,"line":1,"ref":"mechanics/checkpoint/DIRECTION.md#checkpoint-direction","title":"Checkpoint Direction"},{"anchor":"source-of-truth-split","level":2,"line":10,"ref":"mechanics/checkpoint/DIRECTION.md#source-of-truth-split","title":"Source-of-truth Split"},{"anchor":"local-contour","level":2,"line":21,"ref":"mechanics/checkpoint/DIRECTION.md#local-contour","title":"Local Contour"},{"anchor":"growth-rule","level":2,"line":42,"ref":"mechanics/checkpoint/DIRECTION.md#growth-rule","title":"Growth Rule"}],"line_refs":["mechanics/checkpoint/DIRECTION.md:1"],"path_ref":"mechanics/checkpoint/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"198480d9505d0987aa75831243abd8ce685469e05a2dbca12b24342d5f6037cc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2419ea5c33002c310272e8b51028fbd78b9658f90b51e3a5084607e065b89f51","git_blob_id":"2c90e918e3d8ae7595729cd8e988d9fdae2674e0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a091893937b854517373eaea","lineage_path":"mechanics/checkpoint/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:a091893937b854517373eaea","mime":"text/markdown","path":"mechanics/checkpoint/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1308,"version_id":"aoa:aoa-techniques:artifact-version:d6d9cec5d7b7eb428b5563e6"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/checkpoint/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/checkpoint/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"checkpoint-landing-log","level":1,"line":1,"ref":"mechanics/checkpoint/LANDING_LOG.md#checkpoint-landing-log","title":"Checkpoint Landing Log"},{"anchor":"2026-05-03","level":2,"line":6,"ref":"mechanics/checkpoint/LANDING_LOG.md#2026-05-03","title":"2026-05-03"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":21,"ref":"mechanics/checkpoint/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"verification-route","level":2,"line":29,"ref":"mechanics/checkpoint/LANDING_LOG.md#verification-route","title":"Verification Route"}],"line_refs":["mechanics/checkpoint/LANDING_LOG.md:1"],"path_ref":"mechanics/checkpoint/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"2419ea5c33002c310272e8b51028fbd78b9658f90b51e3a5084607e065b89f51","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"353f2733930bd88c9861727bfc2973b16c42da8a66e50936e8b0866bcfc7924e","git_blob_id":"ad7aa71df730f0f76a85076fc3978e9c12465754","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a091893937b854517373eaea","lineage_path":"mechanics/checkpoint/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:a091893937b854517373eaea","mime":"text/markdown","path":"mechanics/checkpoint/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1210,"version_id":"aoa:aoa-techniques:artifact-version:2e5930874cbcb899263beb7e"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/checkpoint/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/checkpoint/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"checkpoint-landing-log","level":1,"line":1,"ref":"mechanics/checkpoint/LANDING_LOG.md#checkpoint-landing-log","title":"Checkpoint Landing Log"},{"anchor":"2026-05-03","level":2,"line":6,"ref":"mechanics/checkpoint/LANDING_LOG.md#2026-05-03","title":"2026-05-03"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":21,"ref":"mechanics/checkpoint/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"verification-route","level":2,"line":29,"ref":"mechanics/checkpoint/LANDING_LOG.md#verification-route","title":"Verification Route"}],"line_refs":["mechanics/checkpoint/LANDING_LOG.md:1"],"path_ref":"mechanics/checkpoint/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"353f2733930bd88c9861727bfc2973b16c42da8a66e50936e8b0866bcfc7924e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1a32eae703a3980046bd9ccd9d97c104c49959d82dad1af1ff02e8f54aa66370","git_blob_id":"5f7290eed51d147d52c1ff4ae7cf7614c91f8392","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cdd82edf1334fed2c0280ed2","lineage_path":"mechanics/checkpoint/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:cdd82edf1334fed2c0280ed2","mime":"text/markdown","path":"mechanics/checkpoint/PARTS.md","repo":"aoa-techniques","size_bytes":998,"version_id":"aoa:aoa-techniques:artifact-version:80615cdbcccddfd2a1cbaf16"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/checkpoint/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/checkpoint/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"checkpoint-parts","level":1,"line":1,"ref":"mechanics/checkpoint/PARTS.md#checkpoint-parts","title":"Checkpoint Parts"},{"anchor":"part-rule","level":2,"line":11,"ref":"mechanics/checkpoint/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/checkpoint/PARTS.md:1"],"path_ref":"mechanics/checkpoint/PARTS.md"},"signs":{"attestation_ref":"","digest":"1a32eae703a3980046bd9ccd9d97c104c49959d82dad1af1ff02e8f54aa66370","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cb1d57990211e7effd209355bda96d2b62db9a54c2b74e6e0c83e975b91a6d48","git_blob_id":"1f1e1aea89a47e01058517293ada108658484003","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0f645191e875f5883b5c4d1d","lineage_path":"mechanics/checkpoint/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:0f645191e875f5883b5c4d1d","mime":"text/markdown","path":"mechanics/checkpoint/PROVENANCE.md","repo":"aoa-techniques","size_bytes":3812,"version_id":"aoa:aoa-techniques:artifact-version:4e803ece57b7628f104d06db"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/checkpoint/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/checkpoint/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"checkpoint-provenance","level":1,"line":1,"ref":"mechanics/checkpoint/PROVENANCE.md#checkpoint-provenance","title":"Checkpoint Provenance"},{"anchor":"active-landing-map","level":2,"line":13,"ref":"mechanics/checkpoint/PROVENANCE.md#active-landing-map","title":"Active Landing Map"},{"anchor":"aoa-center-relation","level":2,"line":21,"ref":"mechanics/checkpoint/PROVENANCE.md#aoa-center-relation","title":"AoA Center Relation"},{"anchor":"source-bridge","level":2,"line":32,"ref":"mechanics/checkpoint/PROVENANCE.md#source-bridge","title":"Source Bridge"}],"line_refs":["mechanics/checkpoint/PROVENANCE.md:1"],"path_ref":"mechanics/checkpoint/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"cb1d57990211e7effd209355bda96d2b62db9a54c2b74e6e0c83e975b91a6d48","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9052bf44e8cc3f93c21a170a6b05be928fc7f7289df5722df219ff4b57ae0fb7","git_blob_id":"2484d172add4c9481a642395f0975f2d45e4ba58","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b0e9ecf9b03e64ab947c2a82","lineage_path":"mechanics/checkpoint/README.md","logical_id":"aoa:aoa-techniques:artifact:b0e9ecf9b03e64ab947c2a82","mime":"text/markdown","path":"mechanics/checkpoint/README.md","repo":"aoa-techniques","size_bytes":3550,"version_id":"aoa:aoa-techniques:artifact-version:c9f9ad5864efbb7dbadcafe1"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/checkpoint/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/checkpoint/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"checkpoint","level":1,"line":1,"ref":"mechanics/checkpoint/README.md#checkpoint","title":"Checkpoint"},{"anchor":"mechanic-card","level":2,"line":12,"ref":"mechanics/checkpoint/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":16,"ref":"mechanics/checkpoint/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":22,"ref":"mechanics/checkpoint/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":28,"ref":"mechanics/checkpoint/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":37,"ref":"mechanics/checkpoint/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":45,"ref":"mechanics/checkpoint/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":52,"ref":"mechanics/checkpoint/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":63,"ref":"mechanics/checkpoint/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":69,"ref":"mechanics/checkpoint/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":77,"ref":"mechanics/checkpoint/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"boundary","level":2,"line":85,"ref":"mechanics/checkpoint/README.md#boundary","title":"Boundary"},{"anchor":"aoa-relation","level":2,"line":95,"ref":"mechanics/checkpoint/README.md#aoa-relation","title":"AoA relation"}],"line_refs":["mechanics/checkpoint/README.md:1"],"path_ref":"mechanics/checkpoint/README.md"},"signs":{"attestation_ref":"","digest":"9052bf44e8cc3f93c21a170a6b05be928fc7f7289df5722df219ff4b57ae0fb7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -749,7 +749,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b19234680a11b5e9972a251fd34879ddad09aef27b953026b55a5c9311229b9b","git_blob_id":"9462826b9111ca5dba858f8075e70e9448529fca","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5","lineage_path":"tests/test_checkpoint_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:e38ebce28e2f64e8068643d5","mime":"text/x-python","path":"mechanics/checkpoint/tests/test_checkpoint_mechanics_topology.py","repo":"aoa-techniques","size_bytes":6232,"version_id":"aoa:aoa-techniques:artifact-version:23d36b532e562b40b0d93c86"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/checkpoint/tests/test_checkpoint_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/checkpoint/tests/test_checkpoint_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/checkpoint/tests/test_checkpoint_mechanics_topology.py:1"],"path_ref":"mechanics/checkpoint/tests/test_checkpoint_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"b19234680a11b5e9972a251fd34879ddad09aef27b953026b55a5c9311229b9b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/checkpoint/tests/test_checkpoint_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"db60b1d2146c8797035b9a8fd17a28de8ff9870900b63591f897587d9304e6ef","git_blob_id":"589dc6e0dc8ab04021655fd769110c2685052f10","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0b7d8520f2e4a183b2db8372","lineage_path":"mechanics/distillation/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:0b7d8520f2e4a183b2db8372","mime":"text/markdown","path":"mechanics/distillation/AGENTS.md","repo":"aoa-techniques","size_bytes":3707,"version_id":"aoa:aoa-techniques:artifact-version:e1119d533de561d6c49a9013"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/distillation/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/distillation/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/distillation/AGENTS.md#role","title":"Role"},{"anchor":"source-split","level":2,"line":18,"ref":"mechanics/distillation/AGENTS.md#source-split","title":"Source split"},{"anchor":"read-before-editing","level":2,"line":30,"ref":"mechanics/distillation/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":37,"ref":"mechanics/distillation/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":53,"ref":"mechanics/distillation/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":92,"ref":"mechanics/distillation/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/distillation/AGENTS.md:1"],"path_ref":"mechanics/distillation/AGENTS.md"},"signs":{"attestation_ref":"","digest":"db60b1d2146c8797035b9a8fd17a28de8ff9870900b63591f897587d9304e6ef","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"acc039728c9413008653cc53a26d01c86d8312e427b7333b9f658e5d8b0092aa","git_blob_id":"33c00c302f19b54520ccbd10ac332aa71f2a80d6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6e2f5bf08ca1f82980fef902","lineage_path":"mechanics/distillation/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:6e2f5bf08ca1f82980fef902","mime":"text/markdown","path":"mechanics/distillation/DIRECTION.md","repo":"aoa-techniques","size_bytes":2690,"version_id":"aoa:aoa-techniques:artifact-version:26c85c1e566efa1bed8e7d07"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-direction","level":1,"line":1,"ref":"mechanics/distillation/DIRECTION.md#distillation-direction","title":"Distillation Direction"},{"anchor":"current-intent","level":2,"line":3,"ref":"mechanics/distillation/DIRECTION.md#current-intent","title":"Current intent"},{"anchor":"current-route","level":2,"line":18,"ref":"mechanics/distillation/DIRECTION.md#current-route","title":"Current route"},{"anchor":"boundaries","level":2,"line":40,"ref":"mechanics/distillation/DIRECTION.md#boundaries","title":"Boundaries"},{"anchor":"current-structural-posture","level":2,"line":51,"ref":"mechanics/distillation/DIRECTION.md#current-structural-posture","title":"Current structural posture"}],"line_refs":["mechanics/distillation/DIRECTION.md:1"],"path_ref":"mechanics/distillation/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"acc039728c9413008653cc53a26d01c86d8312e427b7333b9f658e5d8b0092aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3d198be191b8c5b1d6c1b4fd77df8e90ebd3e5b738a8fc35f253065bd4236658","git_blob_id":"9e0e0c2f9abc6ef99dfd31770c10db3e864823d6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","lineage_path":"mechanics/distillation/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","mime":"text/markdown","path":"mechanics/distillation/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":149182,"version_id":"aoa:aoa-techniques:artifact-version:77c5b76d924b1ec27dc27574"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-landing-log","level":1,"line":1,"ref":"mechanics/distillation/LANDING_LOG.md#distillation-landing-log","title":"Distillation Landing Log"},{"anchor":"2026-05-18-incoming-packet-evidence-only-closeout","level":2,"line":6,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-18-incoming-packet-evidence-only-closeout","title":"2026-05-18 - Incoming packet evidence-only closeout"},{"anchor":"2026-05-14-technique-reform-scout-script-homes","level":2,"line":48,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-14-technique-reform-scout-script-homes","title":"2026-05-14 - Technique reform scout script homes"},{"anchor":"2026-05-14-technique-reform-scout-input-homes","level":2,"line":81,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-14-technique-reform-scout-input-homes","title":"2026-05-14 - Technique reform scout input homes"},{"anchor":"2026-05-14-technique-reform-reports-mechanics-home","level":2,"line":114,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-14-technique-reform-reports-mechanics-home","title":"2026-05-14 - Technique reform reports mechanics home"},{"anchor":"2026-05-14-review-packet-mechanics-home","level":2,"line":151,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-14-review-packet-mechanics-home","title":"2026-05-14 - Review packet mechanics home"},{"anchor":"2026-05-06-roadmap-contour-cleanup","level":2,"line":185,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-06-roadmap-contour-cleanup","title":"2026-05-06 - Roadmap contour cleanup"},{"anchor":"2026-05-05-final-tree-migration-ledger","level":2,"line":205,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-final-tree-migration-ledger","title":"2026-05-05 - Final tree migration ledger"},{"anchor":"2026-05-05-tree-route-card-consolidation","level":2,"line":234,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-tree-route-card-consolidation","title":"2026-05-05 - Tree route-card consolidation"},{"anchor":"2026-05-05-whole-tree-closeout-review","level":2,"line":267,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-whole-tree-closeout-review","title":"2026-05-05 - Whole-tree closeout review"},{"anchor":"2026-05-05-landed-tool-gateway-pilot-review","level":2,"line":299,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-tool-gateway-pilot-review","title":"2026-05-05 - Landed tool-gateway pilot review"},{"anchor":"2026-05-05-tool-gateway-tree-pilot-migration","level":2,"line":328,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-tool-gateway-tree-pilot-migration","title":"2026-05-05 - Tool-gateway tree pilot migration"},{"anchor":"2026-05-05-tool-gateway-direct-read-singleton-review","level":2,"line":359,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-tool-gateway-direct-read-singleton-review","title":"2026-05-05 - Tool-gateway direct-read singleton review"},{"anchor":"2026-05-05-landed-practice-adoption-lifecycle-pilot-review","level":2,"line":392,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-practice-adoption-lifecycle-pilot-review","title":"2026-05-05 - Landed practice-adoption-lifecycle pilot review"},{"anchor":"2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","level":2,"line":422,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","title":"2026-05-05 - Practice-adoption-lifecycle tree pilot migration"},{"anchor":"2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","level":2,"line":454,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","title":"2026-05-05 - Practice-adoption-lifecycle direct-read migration review"},{"anchor":"2026-05-05-landed-promotion-boundary-pilot-review","level":2,"line":491,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-promotion-boundary-pilot-review","title":"2026-05-05 - Landed promotion-boundary pilot review"},{"anchor":"2026-05-05-promotion-boundary-tree-pilot-migration","level":2,"line":519,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-promotion-boundary-tree-pilot-migration","title":"2026-05-05 - Promotion-boundary tree pilot migration"},{"anchor":"2026-05-05-promotion-boundary-direct-read-migration-review","level":2,"line":552,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-promotion-boundary-direct-read-migration-review","title":"2026-05-05 - Promotion-boundary direct-read migration review"},{"anchor":"2026-05-05-landed-automation-readiness-pilot-review","level":2,"line":587,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-automation-readiness-pilot-review","title":"2026-05-05 - Landed automation-readiness pilot review"},{"anchor":"2026-05-05-automation-readiness-tree-pilot-migration","level":2,"line":615,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-automation-readiness-tree-pilot-migration","title":"2026-05-05 - Automation-readiness tree pilot migration"},{"anchor":"2026-05-05-automation-readiness-direct-read-migration-review","level":2,"line":648,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-automation-readiness-direct-read-migration-review","title":"2026-05-05 - Automation-readiness direct-read migration review"},{"anchor":"2026-05-05-automation-governance-split-expansion-closeout","level":2,"line":684,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-automation-governance-split-expansion-closeout","title":"2026-05-05 - Automation-governance split expansion closeout"},{"anchor":"2026-05-05-automation-governance-direct-read-split-review","level":2,"line":718,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-automation-governance-direct-read-split-review","title":"2026-05-05 - Automation-governance direct-read split review"},{"anchor":"2026-05-05-landed-owner-truth-closeout-pilot-review","level":2,"line":755,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-owner-truth-closeout-pilot-review","title":"2026-05-05 - Landed owner-truth-closeout pilot review"},{"anchor":"2026-05-05-owner-truth-closeout-tree-pilot-migration","level":2,"line":791,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-owner-truth-closeout-tree-pilot-migration","title":"2026-05-05 - Owner-truth-closeout tree pilot migration"},{"anchor":"2026-05-05-owner-truth-closeout-direct-read-migration-review","level":2,"line":830,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-owner-truth-closeout-direct-read-migration-review","title":"2026-05-05 - Owner-truth-closeout direct-read migration review"},{"anchor":"2026-05-05-landed-runtime-truth-lifecycle-pilot-review","level":2,"line":868,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-runtime-truth-lifecycle-pilot-review","title":"2026-05-05 - Landed runtime-truth-lifecycle pilot review"},{"anchor":"2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","level":2,"line":900,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","title":"2026-05-05 - Runtime-truth-lifecycle tree pilot migration"},{"anchor":"2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","level":2,"line":935,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","title":"2026-05-05 - Runtime-truth-lifecycle direct-read migration review"},{"anchor":"2026-05-05-landed-review-evidence-pilot-review","level":2,"line":971,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-review-evidence-pilot-review","title":"2026-05-05 - Landed review-evidence pilot review"},{"anchor":"2026-05-05-review-evidence-tree-pilot-migration","level":2,"line":1003,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-review-evidence-tree-pilot-migration","title":"2026-05-05 - Review-evidence tree pilot migration"},{"anchor":"2026-05-05-review-evidence-direct-read-migration-review","level":2,"line":1037,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-review-evidence-direct-read-migration-review","title":"2026-05-05 - Review-evidence direct-read migration review"},{"anchor":"2026-05-05-landed-approval-evidence-pilot-review","level":2,"line":1070,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-approval-evidence-pilot-review","title":"2026-05-05 - Landed approval-evidence pilot review"},{"anchor":"2026-05-05-approval-evidence-tree-pilot-migration","level":2,"line":1101,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-approval-evidence-tree-pilot-migration","title":"2026-05-05 - Approval-evidence tree pilot migration"},{"anchor":"2026-05-05-approval-evidence-direct-read-migration-review","level":2,"line":1135,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-approval-evidence-direct-read-migration-review","title":"2026-05-05 - Approval-evidence direct-read migration review"},{"anchor":"2026-05-05-landed-decision-routing-pilot-review","level":2,"line":1166,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-decision-routing-pilot-review","title":"2026-05-05 - Landed decision-routing pilot review"},{"anchor":"2026-05-05-decision-routing-tree-pilot-migration","level":2,"line":1198,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-decision-routing-tree-pilot-migration","title":"2026-05-05 - Decision-routing tree pilot migration"},{"anchor":"2026-05-05-decision-routing-direct-read-migration-review","level":2,"line":1232,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-decision-routing-direct-read-migration-review","title":"2026-05-05 - Decision-routing direct-read migration review"},{"anchor":"2026-05-05-landed-donor-harvest-pilot-review","level":2,"line":1265,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-donor-harvest-pilot-review","title":"2026-05-05 - Landed donor-harvest pilot review"},{"anchor":"2026-05-05-donor-harvest-tree-pilot-migration","level":2,"line":1298,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-donor-harvest-tree-pilot-migration","title":"2026-05-05 - Donor-harvest tree pilot migration"},{"anchor":"2026-05-05-donor-harvest-direct-read-migration-review","level":2,"line":1330,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-donor-harvest-direct-read-migration-review","title":"2026-05-05 - Donor-harvest direct-read migration review"},{"anchor":"2026-05-05-landed-agent-workflows-core-pilot-review","level":2,"line":1363,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-agent-workflows-core-pilot-review","title":"2026-05-05 - Landed agent-workflows-core pilot review"},{"anchor":"2026-05-05-agent-workflows-core-tree-pilot-migration","level":2,"line":1396,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-agent-workflows-core-tree-pilot-migration","title":"2026-05-05 - Agent-workflows-core tree pilot migration"},{"anchor":"2026-05-05-agent-workflows-core-direct-read-migration-review","level":2,"line":1429,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-agent-workflows-core-direct-read-migration-review","title":"2026-05-05 - Agent-workflows-core direct-read migration review"},{"anchor":"2026-05-05-landed-intent-chain-pilot-review","level":2,"line":1461,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-intent-chain-pilot-review","title":"2026-05-05 - Landed intent-chain pilot review"},{"anchor":"2026-05-05-intent-chain-tree-pilot-migration","level":2,"line":1492,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-intent-chain-tree-pilot-migration","title":"2026-05-05 - Intent-chain tree pilot migration"},{"anchor":"2026-05-05-intent-chain-direct-read-migration-review","level":2,"line":1524,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-intent-chain-direct-read-migration-review","title":"2026-05-05 - Intent-chain direct-read migration review"},{"anchor":"2026-05-05-landed-ready-work-graphs-pilot-review","level":2,"line":1554,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-ready-work-graphs-pilot-review","title":"2026-05-05 - Landed ready-work-graphs pilot review"},{"anchor":"2026-05-05-ready-work-graphs-tree-pilot-migration","level":2,"line":1585,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-ready-work-graphs-tree-pilot-migration","title":"2026-05-05 - Ready-work-graphs tree pilot migration"},{"anchor":"2026-05-05-ready-work-graphs-direct-read-migration-review","level":2,"line":1617,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-ready-work-graphs-direct-read-migration-review","title":"2026-05-05 - Ready-work-graphs direct-read migration review"},{"anchor":"2026-05-05-landed-antifragility-recovery-pilot-review","level":2,"line":1645,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-antifragility-recovery-pilot-review","title":"2026-05-05 - Landed antifragility-recovery pilot review"},{"anchor":"2026-05-05-antifragility-recovery-tree-pilot-migration","level":2,"line":1675,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-antifragility-recovery-tree-pilot-migration","title":"2026-05-05 - Antifragility-recovery tree pilot migration"},{"anchor":"2026-05-05-antifragility-recovery-direct-read-migration-review","level":2,"line":1710,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-antifragility-recovery-direct-read-migration-review","title":"2026-05-05 - Antifragility-recovery direct-read migration review"},{"anchor":"2026-05-05-landed-history-artifacts-pilot-review","level":2,"line":1742,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-history-artifacts-pilot-review","title":"2026-05-05 - Landed history-artifacts pilot review"},{"anchor":"2026-05-05-history-artifacts-tree-pilot-migration","level":2,"line":1772,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-history-artifacts-tree-pilot-migration","title":"2026-05-05 - History-artifacts tree pilot migration"},{"anchor":"2026-05-05-history-artifacts-direct-read-migration-review","level":2,"line":1808,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-history-artifacts-direct-read-migration-review","title":"2026-05-05 - History-artifacts direct-read migration review"},{"anchor":"2026-05-05-landed-published-summary-pilot-review","level":2,"line":1837,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-published-summary-pilot-review","title":"2026-05-05 - Landed published-summary pilot review"},{"anchor":"2026-05-05-published-summary-tree-pilot-migration","level":2,"line":1866,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-published-summary-tree-pilot-migration","title":"2026-05-05 - Published-summary tree pilot migration"},{"anchor":"2026-05-05-published-summary-direct-read-migration-review","level":2,"line":1902,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-published-summary-direct-read-migration-review","title":"2026-05-05 - Published-summary direct-read migration review"},{"anchor":"2026-05-05-landed-evaluation-chain-pilot-review","level":2,"line":1937,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-evaluation-chain-pilot-review","title":"2026-05-05 - Landed evaluation-chain pilot review"},{"anchor":"2026-05-05-evaluation-chain-tree-pilot-migration","level":2,"line":1967,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-evaluation-chain-tree-pilot-migration","title":"2026-05-05 - Evaluation-chain tree pilot migration"},{"anchor":"2026-05-05-evaluation-chain-direct-read-migration-review","level":2,"line":2002,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-evaluation-chain-direct-read-migration-review","title":"2026-05-05 - Evaluation-chain direct-read migration review"},{"anchor":"2026-05-05-landed-skill-support-pilot-review","level":2,"line":2035,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-skill-support-pilot-review","title":"2026-05-05 - Landed skill-support pilot review"},{"anchor":"2026-05-05-skill-support-tree-pilot-migration","level":2,"line":2064,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-skill-support-tree-pilot-migration","title":"2026-05-05 - Skill-support tree pilot migration"},{"anchor":"2026-05-05-skill-support-direct-read-migration-review","level":2,"line":2098,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-skill-support-direct-read-migration-review","title":"2026-05-05 - Skill-support direct-read migration review"},{"anchor":"2026-05-05-landed-skill-discovery-pilot-review","level":2,"line":2131,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-skill-discovery-pilot-review","title":"2026-05-05 - Landed skill-discovery pilot review"},{"anchor":"2026-05-05-skill-discovery-tree-pilot-migration","level":2,"line":2160,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-skill-discovery-tree-pilot-migration","title":"2026-05-05 - Skill-discovery tree pilot migration"},{"anchor":"2026-05-05-skill-discovery-direct-read-migration-review","level":2,"line":2193,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-skill-discovery-direct-read-migration-review","title":"2026-05-05 - Skill-discovery direct-read migration review"},{"anchor":"2026-05-05-landed-capability-boundary-pilot-review","level":2,"line":2227,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-capability-boundary-pilot-review","title":"2026-05-05 - Landed capability-boundary pilot review"},{"anchor":"2026-05-04-capability-boundary-tree-pilot-migration","level":2,"line":2259,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-capability-boundary-tree-pilot-migration","title":"2026-05-04 - Capability-boundary tree pilot migration"},{"anchor":"2026-05-04-capability-boundary-direct-read-migration-review","level":2,"line":2293,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-capability-boundary-direct-read-migration-review","title":"2026-05-04 - Capability-boundary direct-read migration review"},{"anchor":"2026-05-04-landed-capability-registry-pilot-review","level":2,"line":2326,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-capability-registry-pilot-review","title":"2026-05-04 - Landed capability-registry pilot review"},{"anchor":"2026-05-04-capability-registry-tree-pilot-migration","level":2,"line":2358,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-capability-registry-tree-pilot-migration","title":"2026-05-04 - Capability-registry tree pilot migration"},{"anchor":"2026-05-04-capability-registry-direct-read-migration-review","level":2,"line":2398,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-capability-registry-direct-read-migration-review","title":"2026-05-04 - Capability-registry direct-read migration review"},{"anchor":"2026-05-04-landed-docs-boundary-pilot-review","level":2,"line":2429,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-docs-boundary-pilot-review","title":"2026-05-04 - Landed docs-boundary pilot review"},{"anchor":"2026-05-04-docs-boundary-tree-pilot-migration","level":2,"line":2461,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-docs-boundary-tree-pilot-migration","title":"2026-05-04 - Docs-boundary tree pilot migration"},{"anchor":"2026-05-04-docs-boundary-direct-read-migration-review","level":2,"line":2502,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-docs-boundary-direct-read-migration-review","title":"2026-05-04 - Docs-boundary direct-read migration review"},{"anchor":"2026-05-04-landed-kag-source-lift-pilot-review","level":2,"line":2534,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-kag-source-lift-pilot-review","title":"2026-05-04 - Landed kag-source-lift pilot review"},{"anchor":"2026-05-04-kag-source-lift-tree-pilot-migration","level":2,"line":2566,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-kag-source-lift-tree-pilot-migration","title":"2026-05-04 - Kag-source-lift tree pilot migration"},{"anchor":"2026-05-04-kag-source-lift-direct-read-migration-review","level":2,"line":2607,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-kag-source-lift-direct-read-migration-review","title":"2026-05-04 - Kag-source-lift direct-read migration review"},{"anchor":"2026-05-04-landed-instruction-surface-pilot-review","level":2,"line":2639,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-instruction-surface-pilot-review","title":"2026-05-04 - Landed instruction-surface pilot review"},{"anchor":"2026-05-04-instruction-surface-tree-pilot-migration","level":2,"line":2670,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-instruction-surface-tree-pilot-migration","title":"2026-05-04 - Instruction-surface tree pilot migration"},{"anchor":"2026-05-04-instruction-surface-direct-read-migration-review","level":2,"line":2707,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-instruction-surface-direct-read-migration-review","title":"2026-05-04 - Instruction-surface direct-read migration review"},{"anchor":"2026-05-04-landed-diagnosis-repair-pilot-review","level":2,"line":2737,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-diagnosis-repair-pilot-review","title":"2026-05-04 - Landed diagnosis-repair pilot review"},{"anchor":"2026-05-04-diagnosis-repair-tree-pilot-migration","level":2,"line":2766,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-diagnosis-repair-tree-pilot-migration","title":"2026-05-04 - Diagnosis-repair tree pilot migration"},{"anchor":"2026-05-04-diagnosis-repair-direct-read-migration-review","level":2,"line":2802,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-diagnosis-repair-direct-read-migration-review","title":"2026-05-04 - Diagnosis-repair direct-read migration review"},{"anchor":"2026-05-04-landed-media-ingest-pilot-review","level":2,"line":2831,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-media-ingest-pilot-review","title":"2026-05-04 - Landed media-ingest pilot review"},{"anchor":"2026-05-04-media-ingest-tree-pilot-migration","level":2,"line":2859,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-media-ingest-tree-pilot-migration","title":"2026-05-04 - Media-ingest tree pilot migration"},{"anchor":"2026-05-04-media-ingest-direct-read-migration-review","level":2,"line":2894,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-media-ingest-direct-read-migration-review","title":"2026-05-04 - Media-ingest direct-read migration review"},{"anchor":"2026-05-04-landed-handoff-continuation-pilot-review","level":2,"line":2922,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-handoff-continuation-pilot-review","title":"2026-05-04 - Landed handoff-continuation pilot review"},{"anchor":"2026-05-04-handoff-continuation-tree-pilot-migration","level":2,"line":2950,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-handoff-continuation-tree-pilot-migration","title":"2026-05-04 - Handoff-continuation tree pilot migration"},{"anchor":"2026-05-04-handoff-continuation-direct-read-migration-review","level":2,"line":2983,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-handoff-continuation-direct-read-migration-review","title":"2026-05-04 - Handoff-continuation direct-read migration review"},{"anchor":"2026-05-04-landed-review-compaction-pilot-review","level":2,"line":3010,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-review-compaction-pilot-review","title":"2026-05-04 - Landed review-compaction pilot review"},{"anchor":"2026-05-04-review-compaction-tree-pilot-migration","level":2,"line":3036,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-review-compaction-tree-pilot-migration","title":"2026-05-04 - Review-compaction tree pilot migration"},{"anchor":"2026-05-04-review-compaction-direct-read-migration-review","level":2,"line":3067,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-review-compaction-direct-read-migration-review","title":"2026-05-04 - Review-compaction direct-read migration review"},{"anchor":"2026-05-04-tree-projection-and-first-review-pack","level":2,"line":3094,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-tree-projection-and-first-review-pack","title":"2026-05-04 - Tree projection and first review pack"},{"anchor":"2026-05-04-family-shelf-review-pack","level":2,"line":3125,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-family-shelf-review-pack","title":"2026-05-04 - Family shelf review pack"},{"anchor":"2026-05-04-post-0054-kind-audit-hold-review","level":2,"line":3155,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-post-0054-kind-audit-hold-review","title":"2026-05-04 - Post-0054 kind-audit hold review"},{"anchor":"2026-05-04-aoa-t-0054-kind-remap","level":2,"line":3183,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-aoa-t-0054-kind-remap","title":"2026-05-04 - AOA-T-0054 kind remap"},{"anchor":"2026-05-04-second-kind-ambiguity-review-pack","level":2,"line":3212,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-second-kind-ambiguity-review-pack","title":"2026-05-04 - Second kind ambiguity review pack"},{"anchor":"2026-05-04-aoa-t-0052-kind-remap","level":2,"line":3239,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-aoa-t-0052-kind-remap","title":"2026-05-04 - AOA-T-0052 kind remap"},{"anchor":"2026-05-04-aoa-t-0005-kind-remap","level":2,"line":3268,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-aoa-t-0005-kind-remap","title":"2026-05-04 - AOA-T-0005 kind remap"},{"anchor":"2026-05-04-aoa-t-0085-kind-remap","level":2,"line":3297,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-aoa-t-0085-kind-remap","title":"2026-05-04 - AOA-T-0085 kind remap"},{"anchor":"2026-05-04-technique-topology-scout-review-pack","level":2,"line":3326,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-technique-topology-scout-review-pack","title":"2026-05-04 - Technique topology scout review pack"},{"anchor":"2026-05-04-kind-ambiguity-direct-read-review-pack","level":2,"line":3358,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-kind-ambiguity-direct-read-review-pack","title":"2026-05-04 - Kind ambiguity direct-read review pack"},{"anchor":"2026-05-01-active-parts-split","level":2,"line":3388,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-active-parts-split","title":"2026-05-01 - Active parts split"},{"anchor":"2026-05-01-external-candidate-ledger-source-status-pass","level":2,"line":3413,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-external-candidate-ledger-source-status-pass","title":"2026-05-01 - External candidate ledger source-status pass"},{"anchor":"2026-05-01-external-candidate-ledger-compaction","level":2,"line":3430,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-external-candidate-ledger-compaction","title":"2026-05-01 - External candidate ledger compaction"},{"anchor":"2026-05-01-external-candidate-registry","level":2,"line":3449,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-external-candidate-registry","title":"2026-05-01 - External candidate registry"},{"anchor":"2026-05-01-cross-layer-candidate-registry","level":2,"line":3479,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-cross-layer-candidate-registry","title":"2026-05-01 - Cross-layer candidate registry"},{"anchor":"2026-05-01-cross-layer-recurrence-observation-repoint","level":2,"line":3513,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-cross-layer-recurrence-observation-repoint","title":"2026-05-01 - Cross-layer recurrence observation repoint"},{"anchor":"2026-05-01-distillation-gate-alignment","level":2,"line":3540,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-distillation-gate-alignment","title":"2026-05-01 - Distillation gate alignment"},{"anchor":"2026-05-01-cross-layer-candidate-ledger-compaction","level":2,"line":3567,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-cross-layer-candidate-ledger-compaction","title":"2026-05-01 - Cross-layer candidate ledger compaction"},{"anchor":"2026-05-03-agon-candidate-handoff-lanes","level":2,"line":3595,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-agon-candidate-handoff-lanes","title":"2026-05-03 - Agon candidate handoff lanes"},{"anchor":"2026-05-03-request-evidence-gate-card","level":2,"line":3626,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-gate-card","title":"2026-05-03 - Request evidence gate card"},{"anchor":"2026-05-03-request-evidence-gate-example","level":2,"line":3655,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-gate-example","title":"2026-05-03 - Request evidence gate example"},{"anchor":"2026-05-03-request-evidence-gate-checklist-and-evidence-note","level":2,"line":3684,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-gate-checklist-and-evidence-note","title":"2026-05-03 - Request evidence gate checklist and evidence note"},{"anchor":"2026-05-03-request-evidence-bundle-readiness-review","level":2,"line":3713,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-bundle-readiness-review","title":"2026-05-03 - Request evidence bundle-readiness review"},{"anchor":"2026-05-03-request-evidence-technique-bundle","level":2,"line":3746,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-technique-bundle","title":"2026-05-03 - Request evidence technique bundle"},{"anchor":"2026-05-03-offer-evidence-reference-gate-packet","level":2,"line":3777,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-offer-evidence-reference-gate-packet","title":"2026-05-03 - Offer evidence reference gate packet"},{"anchor":"2026-05-03-challenge-claim-gate-packet","level":2,"line":3808,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-challenge-claim-gate-packet","title":"2026-05-03 - Challenge claim gate packet"},{"anchor":"2026-05-03-technique-reform-ingress-packet","level":2,"line":3839,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-technique-reform-ingress-packet","title":"2026-05-03 - Technique reform ingress packet"},{"anchor":"2026-05-03-agon-first-narrowing-frontier-review","level":2,"line":3869,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-agon-first-narrowing-frontier-review","title":"2026-05-03 - Agon first-narrowing frontier review"},{"anchor":"2026-05-03-challenge-claim-technique-bundle","level":2,"line":3902,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-challenge-claim-technique-bundle","title":"2026-05-03 - Challenge claim technique bundle"},{"anchor":"2026-05-03-offer-evidence-reference-technique-bundle","level":2,"line":3936,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-offer-evidence-reference-technique-bundle","title":"2026-05-03 - Offer evidence reference technique bundle"},{"anchor":"2026-05-03-offer-evidence-reference-bundle-readiness-review","level":2,"line":3969,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-offer-evidence-reference-bundle-readiness-review","title":"2026-05-03 - Offer evidence reference bundle-readiness review"}],"line_refs":["mechanics/distillation/LANDING_LOG.md:1"],"path_ref":"mechanics/distillation/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"3d198be191b8c5b1d6c1b4fd77df8e90ebd3e5b738a8fc35f253065bd4236658","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"81ff9d260064e3096c6287a536e4257c93482f7a507e42c8fe839e72fd78332d","git_blob_id":"140b066e3b0a40c1971839b5913710bc4880da75","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","lineage_path":"mechanics/distillation/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:e2f11de3b127965c05321619","mime":"text/markdown","path":"mechanics/distillation/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":136756,"version_id":"aoa:aoa-techniques:artifact-version:90a5d2cf06ee256ec5ed6333"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-landing-log","level":1,"line":1,"ref":"mechanics/distillation/LANDING_LOG.md#distillation-landing-log","title":"Distillation Landing Log"},{"anchor":"2026-05-18-incoming-packet-evidence-only-closeout","level":2,"line":6,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-18-incoming-packet-evidence-only-closeout","title":"2026-05-18 - Incoming packet evidence-only closeout"},{"anchor":"2026-05-14-technique-reform-scout-script-homes","level":2,"line":43,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-14-technique-reform-scout-script-homes","title":"2026-05-14 - Technique reform scout script homes"},{"anchor":"2026-05-14-technique-reform-scout-input-homes","level":2,"line":69,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-14-technique-reform-scout-input-homes","title":"2026-05-14 - Technique reform scout input homes"},{"anchor":"2026-05-14-technique-reform-reports-mechanics-home","level":2,"line":93,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-14-technique-reform-reports-mechanics-home","title":"2026-05-14 - Technique reform reports mechanics home"},{"anchor":"2026-05-14-review-packet-mechanics-home","level":2,"line":119,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-14-review-packet-mechanics-home","title":"2026-05-14 - Review packet mechanics home"},{"anchor":"2026-05-06-roadmap-contour-cleanup","level":2,"line":147,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-06-roadmap-contour-cleanup","title":"2026-05-06 - Roadmap contour cleanup"},{"anchor":"2026-05-05-final-tree-migration-ledger","level":2,"line":167,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-final-tree-migration-ledger","title":"2026-05-05 - Final tree migration ledger"},{"anchor":"2026-05-05-tree-route-card-consolidation","level":2,"line":192,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-tree-route-card-consolidation","title":"2026-05-05 - Tree route-card consolidation"},{"anchor":"2026-05-05-whole-tree-closeout-review","level":2,"line":220,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-whole-tree-closeout-review","title":"2026-05-05 - Whole-tree closeout review"},{"anchor":"2026-05-05-landed-tool-gateway-pilot-review","level":2,"line":248,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-tool-gateway-pilot-review","title":"2026-05-05 - Landed tool-gateway pilot review"},{"anchor":"2026-05-05-tool-gateway-tree-pilot-migration","level":2,"line":273,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-tool-gateway-tree-pilot-migration","title":"2026-05-05 - Tool-gateway tree pilot migration"},{"anchor":"2026-05-05-tool-gateway-direct-read-singleton-review","level":2,"line":299,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-tool-gateway-direct-read-singleton-review","title":"2026-05-05 - Tool-gateway direct-read singleton review"},{"anchor":"2026-05-05-landed-practice-adoption-lifecycle-pilot-review","level":2,"line":328,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-practice-adoption-lifecycle-pilot-review","title":"2026-05-05 - Landed practice-adoption-lifecycle pilot review"},{"anchor":"2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","level":2,"line":354,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-practice-adoption-lifecycle-tree-pilot-migration","title":"2026-05-05 - Practice-adoption-lifecycle tree pilot migration"},{"anchor":"2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","level":2,"line":381,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-practice-adoption-lifecycle-direct-read-migration-review","title":"2026-05-05 - Practice-adoption-lifecycle direct-read migration review"},{"anchor":"2026-05-05-landed-promotion-boundary-pilot-review","level":2,"line":414,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-promotion-boundary-pilot-review","title":"2026-05-05 - Landed promotion-boundary pilot review"},{"anchor":"2026-05-05-promotion-boundary-tree-pilot-migration","level":2,"line":439,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-promotion-boundary-tree-pilot-migration","title":"2026-05-05 - Promotion-boundary tree pilot migration"},{"anchor":"2026-05-05-promotion-boundary-direct-read-migration-review","level":2,"line":467,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-promotion-boundary-direct-read-migration-review","title":"2026-05-05 - Promotion-boundary direct-read migration review"},{"anchor":"2026-05-05-landed-automation-readiness-pilot-review","level":2,"line":498,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-automation-readiness-pilot-review","title":"2026-05-05 - Landed automation-readiness pilot review"},{"anchor":"2026-05-05-automation-readiness-tree-pilot-migration","level":2,"line":522,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-automation-readiness-tree-pilot-migration","title":"2026-05-05 - Automation-readiness tree pilot migration"},{"anchor":"2026-05-05-automation-readiness-direct-read-migration-review","level":2,"line":550,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-automation-readiness-direct-read-migration-review","title":"2026-05-05 - Automation-readiness direct-read migration review"},{"anchor":"2026-05-05-automation-governance-split-expansion-closeout","level":2,"line":582,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-automation-governance-split-expansion-closeout","title":"2026-05-05 - Automation-governance split expansion closeout"},{"anchor":"2026-05-05-automation-governance-direct-read-split-review","level":2,"line":612,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-automation-governance-direct-read-split-review","title":"2026-05-05 - Automation-governance direct-read split review"},{"anchor":"2026-05-05-landed-owner-truth-closeout-pilot-review","level":2,"line":645,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-owner-truth-closeout-pilot-review","title":"2026-05-05 - Landed owner-truth-closeout pilot review"},{"anchor":"2026-05-05-owner-truth-closeout-tree-pilot-migration","level":2,"line":677,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-owner-truth-closeout-tree-pilot-migration","title":"2026-05-05 - Owner-truth-closeout tree pilot migration"},{"anchor":"2026-05-05-owner-truth-closeout-direct-read-migration-review","level":2,"line":711,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-owner-truth-closeout-direct-read-migration-review","title":"2026-05-05 - Owner-truth-closeout direct-read migration review"},{"anchor":"2026-05-05-landed-runtime-truth-lifecycle-pilot-review","level":2,"line":746,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-runtime-truth-lifecycle-pilot-review","title":"2026-05-05 - Landed runtime-truth-lifecycle pilot review"},{"anchor":"2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","level":2,"line":775,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-runtime-truth-lifecycle-tree-pilot-migration","title":"2026-05-05 - Runtime-truth-lifecycle tree pilot migration"},{"anchor":"2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","level":2,"line":805,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-runtime-truth-lifecycle-direct-read-migration-review","title":"2026-05-05 - Runtime-truth-lifecycle direct-read migration review"},{"anchor":"2026-05-05-landed-review-evidence-pilot-review","level":2,"line":838,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-review-evidence-pilot-review","title":"2026-05-05 - Landed review-evidence pilot review"},{"anchor":"2026-05-05-review-evidence-tree-pilot-migration","level":2,"line":867,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-review-evidence-tree-pilot-migration","title":"2026-05-05 - Review-evidence tree pilot migration"},{"anchor":"2026-05-05-review-evidence-direct-read-migration-review","level":2,"line":896,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-review-evidence-direct-read-migration-review","title":"2026-05-05 - Review-evidence direct-read migration review"},{"anchor":"2026-05-05-landed-approval-evidence-pilot-review","level":2,"line":926,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-approval-evidence-pilot-review","title":"2026-05-05 - Landed approval-evidence pilot review"},{"anchor":"2026-05-05-approval-evidence-tree-pilot-migration","level":2,"line":954,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-approval-evidence-tree-pilot-migration","title":"2026-05-05 - Approval-evidence tree pilot migration"},{"anchor":"2026-05-05-approval-evidence-direct-read-migration-review","level":2,"line":983,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-approval-evidence-direct-read-migration-review","title":"2026-05-05 - Approval-evidence direct-read migration review"},{"anchor":"2026-05-05-landed-decision-routing-pilot-review","level":2,"line":1011,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-decision-routing-pilot-review","title":"2026-05-05 - Landed decision-routing pilot review"},{"anchor":"2026-05-05-decision-routing-tree-pilot-migration","level":2,"line":1040,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-decision-routing-tree-pilot-migration","title":"2026-05-05 - Decision-routing tree pilot migration"},{"anchor":"2026-05-05-decision-routing-direct-read-migration-review","level":2,"line":1071,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-decision-routing-direct-read-migration-review","title":"2026-05-05 - Decision-routing direct-read migration review"},{"anchor":"2026-05-05-landed-donor-harvest-pilot-review","level":2,"line":1101,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-donor-harvest-pilot-review","title":"2026-05-05 - Landed donor-harvest pilot review"},{"anchor":"2026-05-05-donor-harvest-tree-pilot-migration","level":2,"line":1131,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-donor-harvest-tree-pilot-migration","title":"2026-05-05 - Donor-harvest tree pilot migration"},{"anchor":"2026-05-05-donor-harvest-direct-read-migration-review","level":2,"line":1160,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-donor-harvest-direct-read-migration-review","title":"2026-05-05 - Donor-harvest direct-read migration review"},{"anchor":"2026-05-05-landed-agent-workflows-core-pilot-review","level":2,"line":1190,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-agent-workflows-core-pilot-review","title":"2026-05-05 - Landed agent-workflows-core pilot review"},{"anchor":"2026-05-05-agent-workflows-core-tree-pilot-migration","level":2,"line":1220,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-agent-workflows-core-tree-pilot-migration","title":"2026-05-05 - Agent-workflows-core tree pilot migration"},{"anchor":"2026-05-05-agent-workflows-core-direct-read-migration-review","level":2,"line":1250,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-agent-workflows-core-direct-read-migration-review","title":"2026-05-05 - Agent-workflows-core direct-read migration review"},{"anchor":"2026-05-05-landed-intent-chain-pilot-review","level":2,"line":1279,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-intent-chain-pilot-review","title":"2026-05-05 - Landed intent-chain pilot review"},{"anchor":"2026-05-05-intent-chain-tree-pilot-migration","level":2,"line":1307,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-intent-chain-tree-pilot-migration","title":"2026-05-05 - Intent-chain tree pilot migration"},{"anchor":"2026-05-05-intent-chain-direct-read-migration-review","level":2,"line":1336,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-intent-chain-direct-read-migration-review","title":"2026-05-05 - Intent-chain direct-read migration review"},{"anchor":"2026-05-05-landed-ready-work-graphs-pilot-review","level":2,"line":1363,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-ready-work-graphs-pilot-review","title":"2026-05-05 - Landed ready-work-graphs pilot review"},{"anchor":"2026-05-05-ready-work-graphs-tree-pilot-migration","level":2,"line":1391,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-ready-work-graphs-tree-pilot-migration","title":"2026-05-05 - Ready-work-graphs tree pilot migration"},{"anchor":"2026-05-05-ready-work-graphs-direct-read-migration-review","level":2,"line":1420,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-ready-work-graphs-direct-read-migration-review","title":"2026-05-05 - Ready-work-graphs direct-read migration review"},{"anchor":"2026-05-05-landed-antifragility-recovery-pilot-review","level":2,"line":1445,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-antifragility-recovery-pilot-review","title":"2026-05-05 - Landed antifragility-recovery pilot review"},{"anchor":"2026-05-05-antifragility-recovery-tree-pilot-migration","level":2,"line":1472,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-antifragility-recovery-tree-pilot-migration","title":"2026-05-05 - Antifragility-recovery tree pilot migration"},{"anchor":"2026-05-05-antifragility-recovery-direct-read-migration-review","level":2,"line":1504,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-antifragility-recovery-direct-read-migration-review","title":"2026-05-05 - Antifragility-recovery direct-read migration review"},{"anchor":"2026-05-05-landed-history-artifacts-pilot-review","level":2,"line":1533,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-history-artifacts-pilot-review","title":"2026-05-05 - Landed history-artifacts pilot review"},{"anchor":"2026-05-05-history-artifacts-tree-pilot-migration","level":2,"line":1560,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-history-artifacts-tree-pilot-migration","title":"2026-05-05 - History-artifacts tree pilot migration"},{"anchor":"2026-05-05-history-artifacts-direct-read-migration-review","level":2,"line":1592,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-history-artifacts-direct-read-migration-review","title":"2026-05-05 - History-artifacts direct-read migration review"},{"anchor":"2026-05-05-landed-published-summary-pilot-review","level":2,"line":1618,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-published-summary-pilot-review","title":"2026-05-05 - Landed published-summary pilot review"},{"anchor":"2026-05-05-published-summary-tree-pilot-migration","level":2,"line":1644,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-published-summary-tree-pilot-migration","title":"2026-05-05 - Published-summary tree pilot migration"},{"anchor":"2026-05-05-published-summary-direct-read-migration-review","level":2,"line":1677,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-published-summary-direct-read-migration-review","title":"2026-05-05 - Published-summary direct-read migration review"},{"anchor":"2026-05-05-landed-evaluation-chain-pilot-review","level":2,"line":1708,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-evaluation-chain-pilot-review","title":"2026-05-05 - Landed evaluation-chain pilot review"},{"anchor":"2026-05-05-evaluation-chain-tree-pilot-migration","level":2,"line":1735,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-evaluation-chain-tree-pilot-migration","title":"2026-05-05 - Evaluation-chain tree pilot migration"},{"anchor":"2026-05-05-evaluation-chain-direct-read-migration-review","level":2,"line":1767,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-evaluation-chain-direct-read-migration-review","title":"2026-05-05 - Evaluation-chain direct-read migration review"},{"anchor":"2026-05-05-landed-skill-support-pilot-review","level":2,"line":1796,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-skill-support-pilot-review","title":"2026-05-05 - Landed skill-support pilot review"},{"anchor":"2026-05-05-skill-support-tree-pilot-migration","level":2,"line":1822,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-skill-support-tree-pilot-migration","title":"2026-05-05 - Skill-support tree pilot migration"},{"anchor":"2026-05-05-skill-support-direct-read-migration-review","level":2,"line":1853,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-skill-support-direct-read-migration-review","title":"2026-05-05 - Skill-support direct-read migration review"},{"anchor":"2026-05-05-landed-skill-discovery-pilot-review","level":2,"line":1882,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-skill-discovery-pilot-review","title":"2026-05-05 - Landed skill-discovery pilot review"},{"anchor":"2026-05-05-skill-discovery-tree-pilot-migration","level":2,"line":1908,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-skill-discovery-tree-pilot-migration","title":"2026-05-05 - Skill-discovery tree pilot migration"},{"anchor":"2026-05-05-skill-discovery-direct-read-migration-review","level":2,"line":1938,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-skill-discovery-direct-read-migration-review","title":"2026-05-05 - Skill-discovery direct-read migration review"},{"anchor":"2026-05-05-landed-capability-boundary-pilot-review","level":2,"line":1968,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-05-landed-capability-boundary-pilot-review","title":"2026-05-05 - Landed capability-boundary pilot review"},{"anchor":"2026-05-04-capability-boundary-tree-pilot-migration","level":2,"line":1997,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-capability-boundary-tree-pilot-migration","title":"2026-05-04 - Capability-boundary tree pilot migration"},{"anchor":"2026-05-04-capability-boundary-direct-read-migration-review","level":2,"line":2028,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-capability-boundary-direct-read-migration-review","title":"2026-05-04 - Capability-boundary direct-read migration review"},{"anchor":"2026-05-04-landed-capability-registry-pilot-review","level":2,"line":2057,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-capability-registry-pilot-review","title":"2026-05-04 - Landed capability-registry pilot review"},{"anchor":"2026-05-04-capability-registry-tree-pilot-migration","level":2,"line":2085,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-capability-registry-tree-pilot-migration","title":"2026-05-04 - Capability-registry tree pilot migration"},{"anchor":"2026-05-04-capability-registry-direct-read-migration-review","level":2,"line":2117,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-capability-registry-direct-read-migration-review","title":"2026-05-04 - Capability-registry direct-read migration review"},{"anchor":"2026-05-04-landed-docs-boundary-pilot-review","level":2,"line":2144,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-docs-boundary-pilot-review","title":"2026-05-04 - Landed docs-boundary pilot review"},{"anchor":"2026-05-04-docs-boundary-tree-pilot-migration","level":2,"line":2172,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-docs-boundary-tree-pilot-migration","title":"2026-05-04 - Docs-boundary tree pilot migration"},{"anchor":"2026-05-04-docs-boundary-direct-read-migration-review","level":2,"line":2205,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-docs-boundary-direct-read-migration-review","title":"2026-05-04 - Docs-boundary direct-read migration review"},{"anchor":"2026-05-04-landed-kag-source-lift-pilot-review","level":2,"line":2233,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-kag-source-lift-pilot-review","title":"2026-05-04 - Landed kag-source-lift pilot review"},{"anchor":"2026-05-04-kag-source-lift-tree-pilot-migration","level":2,"line":2261,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-kag-source-lift-tree-pilot-migration","title":"2026-05-04 - Kag-source-lift tree pilot migration"},{"anchor":"2026-05-04-kag-source-lift-direct-read-migration-review","level":2,"line":2294,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-kag-source-lift-direct-read-migration-review","title":"2026-05-04 - Kag-source-lift direct-read migration review"},{"anchor":"2026-05-04-landed-instruction-surface-pilot-review","level":2,"line":2322,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-instruction-surface-pilot-review","title":"2026-05-04 - Landed instruction-surface pilot review"},{"anchor":"2026-05-04-instruction-surface-tree-pilot-migration","level":2,"line":2349,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-instruction-surface-tree-pilot-migration","title":"2026-05-04 - Instruction-surface tree pilot migration"},{"anchor":"2026-05-04-instruction-surface-direct-read-migration-review","level":2,"line":2378,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-instruction-surface-direct-read-migration-review","title":"2026-05-04 - Instruction-surface direct-read migration review"},{"anchor":"2026-05-04-landed-diagnosis-repair-pilot-review","level":2,"line":2404,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-diagnosis-repair-pilot-review","title":"2026-05-04 - Landed diagnosis-repair pilot review"},{"anchor":"2026-05-04-diagnosis-repair-tree-pilot-migration","level":2,"line":2429,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-diagnosis-repair-tree-pilot-migration","title":"2026-05-04 - Diagnosis-repair tree pilot migration"},{"anchor":"2026-05-04-diagnosis-repair-direct-read-migration-review","level":2,"line":2458,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-diagnosis-repair-direct-read-migration-review","title":"2026-05-04 - Diagnosis-repair direct-read migration review"},{"anchor":"2026-05-04-landed-media-ingest-pilot-review","level":2,"line":2483,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-media-ingest-pilot-review","title":"2026-05-04 - Landed media-ingest pilot review"},{"anchor":"2026-05-04-media-ingest-tree-pilot-migration","level":2,"line":2507,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-media-ingest-tree-pilot-migration","title":"2026-05-04 - Media-ingest tree pilot migration"},{"anchor":"2026-05-04-media-ingest-direct-read-migration-review","level":2,"line":2534,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-media-ingest-direct-read-migration-review","title":"2026-05-04 - Media-ingest direct-read migration review"},{"anchor":"2026-05-04-landed-handoff-continuation-pilot-review","level":2,"line":2558,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-handoff-continuation-pilot-review","title":"2026-05-04 - Landed handoff-continuation pilot review"},{"anchor":"2026-05-04-handoff-continuation-tree-pilot-migration","level":2,"line":2582,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-handoff-continuation-tree-pilot-migration","title":"2026-05-04 - Handoff-continuation tree pilot migration"},{"anchor":"2026-05-04-handoff-continuation-direct-read-migration-review","level":2,"line":2609,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-handoff-continuation-direct-read-migration-review","title":"2026-05-04 - Handoff-continuation direct-read migration review"},{"anchor":"2026-05-04-landed-review-compaction-pilot-review","level":2,"line":2632,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-landed-review-compaction-pilot-review","title":"2026-05-04 - Landed review-compaction pilot review"},{"anchor":"2026-05-04-review-compaction-tree-pilot-migration","level":2,"line":2654,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-review-compaction-tree-pilot-migration","title":"2026-05-04 - Review-compaction tree pilot migration"},{"anchor":"2026-05-04-review-compaction-direct-read-migration-review","level":2,"line":2679,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-review-compaction-direct-read-migration-review","title":"2026-05-04 - Review-compaction direct-read migration review"},{"anchor":"2026-05-04-tree-projection-and-first-review-pack","level":2,"line":2702,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-tree-projection-and-first-review-pack","title":"2026-05-04 - Tree projection and first review pack"},{"anchor":"2026-05-04-family-shelf-review-pack","level":2,"line":2727,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-family-shelf-review-pack","title":"2026-05-04 - Family shelf review pack"},{"anchor":"2026-05-04-post-0054-kind-audit-hold-review","level":2,"line":2752,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-post-0054-kind-audit-hold-review","title":"2026-05-04 - Post-0054 kind-audit hold review"},{"anchor":"2026-05-04-aoa-t-0054-kind-remap","level":2,"line":2775,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-aoa-t-0054-kind-remap","title":"2026-05-04 - AOA-T-0054 kind remap"},{"anchor":"2026-05-04-second-kind-ambiguity-review-pack","level":2,"line":2799,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-second-kind-ambiguity-review-pack","title":"2026-05-04 - Second kind ambiguity review pack"},{"anchor":"2026-05-04-aoa-t-0052-kind-remap","level":2,"line":2822,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-aoa-t-0052-kind-remap","title":"2026-05-04 - AOA-T-0052 kind remap"},{"anchor":"2026-05-04-aoa-t-0005-kind-remap","level":2,"line":2846,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-aoa-t-0005-kind-remap","title":"2026-05-04 - AOA-T-0005 kind remap"},{"anchor":"2026-05-04-aoa-t-0085-kind-remap","level":2,"line":2870,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-aoa-t-0085-kind-remap","title":"2026-05-04 - AOA-T-0085 kind remap"},{"anchor":"2026-05-04-technique-topology-scout-review-pack","level":2,"line":2894,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-technique-topology-scout-review-pack","title":"2026-05-04 - Technique topology scout review pack"},{"anchor":"2026-05-04-kind-ambiguity-direct-read-review-pack","level":2,"line":2921,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-04-kind-ambiguity-direct-read-review-pack","title":"2026-05-04 - Kind ambiguity direct-read review pack"},{"anchor":"2026-05-01-active-parts-split","level":2,"line":2946,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-active-parts-split","title":"2026-05-01 - Active parts split"},{"anchor":"2026-05-01-external-candidate-ledger-source-status-pass","level":2,"line":2967,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-external-candidate-ledger-source-status-pass","title":"2026-05-01 - External candidate ledger source-status pass"},{"anchor":"2026-05-01-external-candidate-ledger-compaction","level":2,"line":2981,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-external-candidate-ledger-compaction","title":"2026-05-01 - External candidate ledger compaction"},{"anchor":"2026-05-01-external-candidate-registry","level":2,"line":2996,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-external-candidate-registry","title":"2026-05-01 - External candidate registry"},{"anchor":"2026-05-01-cross-layer-candidate-registry","level":2,"line":3019,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-cross-layer-candidate-registry","title":"2026-05-01 - Cross-layer candidate registry"},{"anchor":"2026-05-01-cross-layer-recurrence-observation-repoint","level":2,"line":3046,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-cross-layer-recurrence-observation-repoint","title":"2026-05-01 - Cross-layer recurrence observation repoint"},{"anchor":"2026-05-01-distillation-gate-alignment","level":2,"line":3069,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-distillation-gate-alignment","title":"2026-05-01 - Distillation gate alignment"},{"anchor":"2026-05-01-cross-layer-candidate-ledger-compaction","level":2,"line":3090,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-01-cross-layer-candidate-ledger-compaction","title":"2026-05-01 - Cross-layer candidate ledger compaction"},{"anchor":"2026-05-03-agon-candidate-handoff-lanes","level":2,"line":3112,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-agon-candidate-handoff-lanes","title":"2026-05-03 - Agon candidate handoff lanes"},{"anchor":"2026-05-03-request-evidence-gate-card","level":2,"line":3136,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-gate-card","title":"2026-05-03 - Request evidence gate card"},{"anchor":"2026-05-03-request-evidence-gate-example","level":2,"line":3158,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-gate-example","title":"2026-05-03 - Request evidence gate example"},{"anchor":"2026-05-03-request-evidence-gate-checklist-and-evidence-note","level":2,"line":3180,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-gate-checklist-and-evidence-note","title":"2026-05-03 - Request evidence gate checklist and evidence note"},{"anchor":"2026-05-03-request-evidence-bundle-readiness-review","level":2,"line":3202,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-bundle-readiness-review","title":"2026-05-03 - Request evidence bundle-readiness review"},{"anchor":"2026-05-03-request-evidence-technique-bundle","level":2,"line":3228,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-request-evidence-technique-bundle","title":"2026-05-03 - Request evidence technique bundle"},{"anchor":"2026-05-03-offer-evidence-reference-gate-packet","level":2,"line":3252,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-offer-evidence-reference-gate-packet","title":"2026-05-03 - Offer evidence reference gate packet"},{"anchor":"2026-05-03-challenge-claim-gate-packet","level":2,"line":3276,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-challenge-claim-gate-packet","title":"2026-05-03 - Challenge claim gate packet"},{"anchor":"2026-05-03-technique-reform-ingress-packet","level":2,"line":3301,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-technique-reform-ingress-packet","title":"2026-05-03 - Technique reform ingress packet"},{"anchor":"2026-05-03-agon-first-narrowing-frontier-review","level":2,"line":3326,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-agon-first-narrowing-frontier-review","title":"2026-05-03 - Agon first-narrowing frontier review"},{"anchor":"2026-05-03-challenge-claim-technique-bundle","level":2,"line":3352,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-challenge-claim-technique-bundle","title":"2026-05-03 - Challenge claim technique bundle"},{"anchor":"2026-05-03-offer-evidence-reference-technique-bundle","level":2,"line":3379,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-offer-evidence-reference-technique-bundle","title":"2026-05-03 - Offer evidence reference technique bundle"},{"anchor":"2026-05-03-offer-evidence-reference-bundle-readiness-review","level":2,"line":3405,"ref":"mechanics/distillation/LANDING_LOG.md#2026-05-03-offer-evidence-reference-bundle-readiness-review","title":"2026-05-03 - Offer evidence reference bundle-readiness review"}],"line_refs":["mechanics/distillation/LANDING_LOG.md:1"],"path_ref":"mechanics/distillation/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"81ff9d260064e3096c6287a536e4257c93482f7a507e42c8fe839e72fd78332d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ef76cb7363ba8d77b25ddba04ff15df4230fa060841ea5d600c2fc1af8bdafed","git_blob_id":"a4ee489790419bf3fb5725e78f64aac295fefd50","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8b81ac42d11c2733c2f20418","lineage_path":"mechanics/distillation/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:8b81ac42d11c2733c2f20418","mime":"text/markdown","path":"mechanics/distillation/PARTS.md","repo":"aoa-techniques","size_bytes":3509,"version_id":"aoa:aoa-techniques:artifact-version:ef0d690d9c28742c03f1def1"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-parts","level":1,"line":1,"ref":"mechanics/distillation/PARTS.md#distillation-parts","title":"Distillation Parts"},{"anchor":"part-rule","level":2,"line":17,"ref":"mechanics/distillation/PARTS.md#part-rule","title":"Part rule"}],"line_refs":["mechanics/distillation/PARTS.md:1"],"path_ref":"mechanics/distillation/PARTS.md"},"signs":{"attestation_ref":"","digest":"ef76cb7363ba8d77b25ddba04ff15df4230fa060841ea5d600c2fc1af8bdafed","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"08f7adbe9f7b2bfc168b73d41b7405f7032920a88c84f8532da469675fbb5aff","git_blob_id":"8e08c730a34daa3ad94fe73e300d45bab449da87","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:758e29efb65b54b21c9debb1","lineage_path":"mechanics/distillation/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:758e29efb65b54b21c9debb1","mime":"text/markdown","path":"mechanics/distillation/PROVENANCE.md","repo":"aoa-techniques","size_bytes":7198,"version_id":"aoa:aoa-techniques:artifact-version:17d09fbb1bb9394587e1f5ca"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-provenance-bridge","level":1,"line":1,"ref":"mechanics/distillation/PROVENANCE.md#distillation-provenance-bridge","title":"Distillation Provenance Bridge"},{"anchor":"current-route-first","level":2,"line":7,"ref":"mechanics/distillation/PROVENANCE.md#current-route-first","title":"Current route first"},{"anchor":"source-map","level":2,"line":20,"ref":"mechanics/distillation/PROVENANCE.md#source-map","title":"Source map"},{"anchor":"legacy-posture","level":2,"line":35,"ref":"mechanics/distillation/PROVENANCE.md#legacy-posture","title":"Legacy posture"},{"anchor":"distillation-rule","level":2,"line":46,"ref":"mechanics/distillation/PROVENANCE.md#distillation-rule","title":"Distillation rule"}],"line_refs":["mechanics/distillation/PROVENANCE.md:1"],"path_ref":"mechanics/distillation/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"08f7adbe9f7b2bfc168b73d41b7405f7032920a88c84f8532da469675fbb5aff","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cdcfddc11450f489aa7e975cd39068c9d86cf655314ec98a9a56dfabfb44eba7","git_blob_id":"2fd76933ac26a930a6d4fbb277112e8ebfc94692","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a9c949d3ec8753d6c9e15610","lineage_path":"mechanics/distillation/README.md","logical_id":"aoa:aoa-techniques:artifact:a9c949d3ec8753d6c9e15610","mime":"text/markdown","path":"mechanics/distillation/README.md","repo":"aoa-techniques","size_bytes":4539,"version_id":"aoa:aoa-techniques:artifact-version:f1e7a5f12b521a78de559b75"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation","level":1,"line":1,"ref":"mechanics/distillation/README.md#distillation","title":"Distillation"},{"anchor":"mechanic-card","level":2,"line":8,"ref":"mechanics/distillation/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":12,"ref":"mechanics/distillation/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":19,"ref":"mechanics/distillation/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":25,"ref":"mechanics/distillation/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":32,"ref":"mechanics/distillation/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":42,"ref":"mechanics/distillation/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":51,"ref":"mechanics/distillation/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":62,"ref":"mechanics/distillation/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":68,"ref":"mechanics/distillation/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":77,"ref":"mechanics/distillation/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"distillation-gate","level":2,"line":101,"ref":"mechanics/distillation/README.md#distillation-gate","title":"Distillation Gate"}],"line_refs":["mechanics/distillation/README.md:1"],"path_ref":"mechanics/distillation/README.md"},"signs":{"attestation_ref":"","digest":"cdcfddc11450f489aa7e975cd39068c9d86cf655314ec98a9a56dfabfb44eba7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -803,8 +803,8 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"113c4edeb94ec2eb611d2e36973e0e29044b465a0c0a68c453c2baac68064744","git_blob_id":"cbb367851c69cc76603bfb707169da93d10a6644","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:99e4142d3dc6fa22b624e638","lineage_path":"incoming/personal-ingest-wave-2/support/DONOR_SOURCES.md","logical_id":"aoa:aoa-techniques:artifact:99e4142d3dc6fa22b624e638","mime":"text/markdown","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md","repo":"aoa-techniques","size_bytes":2297,"version_id":"aoa:aoa-techniques:artifact-version:0fcb32bdd7ebd558c0cd2415"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"donor-sources-personal-media-ingest","level":1,"line":1,"ref":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md#donor-sources-personal-media-ingest","title":"Donor Sources - Personal Media Ingest"},{"anchor":"ocr-and-receipt-extraction-donors","level":2,"line":6,"ref":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md#ocr-and-receipt-extraction-donors","title":"OCR and receipt extraction donors"},{"anchor":"media-dedupe-and-bucketing-donors","level":2,"line":24,"ref":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md#media-dedupe-and-bucketing-donors","title":"Media dedupe and bucketing donors"},{"anchor":"telegram-normalization-donors","level":2,"line":36,"ref":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md#telegram-normalization-donors","title":"Telegram normalization donors"},{"anchor":"explicit-anti-donor-for-new-work","level":2,"line":57,"ref":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md#explicit-anti-donor-for-new-work","title":"Explicit anti-donor for new work"}],"line_refs":["mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md:1"],"path_ref":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/DONOR_SOURCES.md"},"signs":{"attestation_ref":"","digest":"113c4edeb94ec2eb611d2e36973e0e29044b465a0c0a68c453c2baac68064744","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ee189f9dff904a3a30f4ee203c96a4c10b509375c9eda50b917f8334b5dd7e03","git_blob_id":"99e6c6d01f7eb2ae3e081a531c08fc88ec236059","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dbb8e1c98462d2210a69cafe","lineage_path":"incoming/personal-ingest-wave-2/support/manifest.json","logical_id":"aoa:aoa-techniques:artifact:dbb8e1c98462d2210a69cafe","mime":"application/json","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/manifest.json","repo":"aoa-techniques","size_bytes":1552,"version_id":"aoa:aoa-techniques:artifact-version:f7f4df6e1420d6a33781191d"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/manifest.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/manifest.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/manifest.json:1"],"path_ref":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/manifest.json"},"signs":{"attestation_ref":"","digest":"ee189f9dff904a3a30f4ee203c96a4c10b509375c9eda50b917f8334b5dd7e03","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"110b2799b5b9d4eb428adfec149bbc312e98abb4e549c7187a36aef2eae28832","git_blob_id":"e201e378b1a4380dbf5bc0a385addcde981ffd70","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5b1bcb5d2dcb811d429f67c5","lineage_path":"incoming/personal-ingest-wave-2/support/registry.json","logical_id":"aoa:aoa-techniques:artifact:5b1bcb5d2dcb811d429f67c5","mime":"application/json","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/registry.json","repo":"aoa-techniques","size_bytes":3472,"version_id":"aoa:aoa-techniques:artifact-version:cda992743b6194146f1a6050"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/registry.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/registry.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/registry.json:1"],"path_ref":"mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/support/registry.json"},"signs":{"attestation_ref":"","digest":"110b2799b5b9d4eb428adfec149bbc312e98abb4e549c7187a36aef2eae28832","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"080eb8f77966af5e34097d6a7b8fcf4455be44d82d413ec6084709006cbef2e9","git_blob_id":"4595acba9b81327260bfc523d47604ec4c234b38","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","lineage_path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","logical_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","repo":"aoa-techniques","size_bytes":26834,"version_id":"aoa:aoa-techniques:artifact-version:039c29d8b3230ea9a9710dd6"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"cross-layer-technique-candidates","level":1,"line":1,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#cross-layer-technique-candidates","title":"Cross-Layer Technique Candidates"},{"anchor":"scope","level":2,"line":10,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#scope","title":"Scope"},{"anchor":"doctrine-seam","level":2,"line":17,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#doctrine-seam","title":"Doctrine Seam"},{"anchor":"how-to-read-the-verdicts","level":2,"line":29,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#how-to-read-the-verdicts","title":"How To Read The Verdicts"},{"anchor":"current-summary","level":2,"line":42,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-summary","title":"Current Summary"},{"anchor":"structured-registry","level":2,"line":52,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#structured-registry","title":"Structured Registry"},{"anchor":"already-staged-elsewhere","level":2,"line":80,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#already-staged-elsewhere","title":"Already Staged Elsewhere"},{"anchor":"landed-from-this-wave-map","level":2,"line":91,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#landed-from-this-wave-map","title":"Landed From This Wave Map"},{"anchor":"future-import-here","level":2,"line":106,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#future-import-here","title":"Future Import Here"},{"anchor":"current-wave-program","level":2,"line":110,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-wave-program","title":"Current Wave Program"},{"anchor":"wave-a-runtime-truth-and-local-lifecycle","level":3,"line":123,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-a-runtime-truth-and-local-lifecycle","title":"Wave A - Runtime Truth And Local Lifecycle"},{"anchor":"wave-b-curated-input-surfaces-and-capability-boundaries","level":3,"line":144,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-b-curated-input-surfaces-and-capability-boundaries","title":"Wave B - Curated Input Surfaces And Capability Boundaries"},{"anchor":"wave-c-history-as-reviewable-artifact","level":3,"line":164,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-c-history-as-reviewable-artifact","title":"Wave C - History As Reviewable Artifact"},{"anchor":"implementation-rules-for-the-current-wave-program","level":2,"line":182,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#implementation-rules-for-the-current-wave-program","title":"Implementation Rules For The Current Wave Program"},{"anchor":"reopen-gate","level":2,"line":195,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#reopen-gate","title":"Reopen Gate"},{"anchor":"hold-because-overlap","level":2,"line":231,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#hold-because-overlap","title":"Hold Because Overlap"},{"anchor":"needs-layer-incubation-before-distillation-here","level":2,"line":238,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#needs-layer-incubation-before-distillation-here","title":"Needs Layer Incubation Before Distillation Here"},{"anchor":"substrate-or-architecture-pattern-not-yet-a-technique","level":2,"line":246,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#substrate-or-architecture-pattern-not-yet-a-technique","title":"Substrate Or Architecture Pattern, Not Yet A Technique"},{"anchor":"notes","level":2,"line":254,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#notes","title":"Notes"}],"line_refs":["mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md:1"],"path_ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},"signs":{"attestation_ref":"","digest":"080eb8f77966af5e34097d6a7b8fcf4455be44d82d413ec6084709006cbef2e9","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6949f2c3ee81f1f0cea63b5eca96e8d1508cd9915403cefd95100874e708321d","git_blob_id":"ae4f6979549bd83203e9ad7518cbd51035ae8618","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","lineage_path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","logical_id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","repo":"aoa-techniques","size_bytes":24168,"version_id":"aoa:aoa-techniques:artifact-version:ad706546fd4e495a92ff967c"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"external-technique-candidates","level":1,"line":1,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#external-technique-candidates","title":"External Technique Candidates"},{"anchor":"scope","level":2,"line":10,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#scope","title":"Scope"},{"anchor":"doctrine-seam","level":2,"line":35,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#doctrine-seam","title":"Doctrine Seam"},{"anchor":"how-to-read-the-verdicts","level":2,"line":46,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#how-to-read-the-verdicts","title":"How To Read The Verdicts"},{"anchor":"current-summary","level":2,"line":59,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-summary","title":"Current Summary"},{"anchor":"current-wave-placement","level":2,"line":84,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-wave-placement","title":"Current Wave Placement"},{"anchor":"swarm-execution-layer","level":2,"line":90,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#swarm-execution-layer","title":"Swarm Execution Layer"},{"anchor":"wave-a-runtime-truth-and-local-lifecycle","level":3,"line":104,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-a-runtime-truth-and-local-lifecycle","title":"Wave A - Runtime Truth And Local Lifecycle"},{"anchor":"wave-b-curated-input-surfaces-and-capability-boundaries","level":3,"line":111,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-b-curated-input-surfaces-and-capability-boundaries","title":"Wave B - Curated Input Surfaces And Capability Boundaries"},{"anchor":"wave-c-history-as-reviewable-artifact","level":3,"line":122,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-c-history-as-reviewable-artifact","title":"Wave C - History As Reviewable Artifact"},{"anchor":"active-narrowing-lane-not-a-wave-yet","level":3,"line":133,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#active-narrowing-lane-not-a-wave-yet","title":"Active Narrowing Lane, Not A Wave Yet"},{"anchor":"ready-to-distill-here","level":2,"line":141,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#ready-to-distill-here","title":"Ready To Distill Here"},{"anchor":"future-import-here","level":2,"line":145,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#future-import-here","title":"Future Import Here"},{"anchor":"hold-because-overlap","level":2,"line":151,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#hold-because-overlap","title":"Hold Because Overlap"},{"anchor":"needs-layer-incubation-before-distillation-here","level":2,"line":160,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#needs-layer-incubation-before-distillation-here","title":"Needs Layer Incubation Before Distillation Here"},{"anchor":"substrate-or-architecture-pattern-not-yet-a-technique","level":2,"line":170,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#substrate-or-architecture-pattern-not-yet-a-technique","title":"Substrate Or Architecture Pattern, Not Yet A Technique"},{"anchor":"recommended-next-expansion-order","level":2,"line":178,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#recommended-next-expansion-order","title":"Recommended Next Expansion Order"},{"anchor":"current-narrowing-slice-phase_sync_for_agents","level":2,"line":185,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-narrowing-slice-phase_sync_for_agents","title":"Current Narrowing Slice: `phase_sync_for_agents`"},{"anchor":"working-extraction-target","level":3,"line":189,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#working-extraction-target","title":"Working extraction target"},{"anchor":"current-donor-read-stays-no-go","level":3,"line":195,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-donor-read-stays-no-go","title":"Current donor read stays no-go"},{"anchor":"current-public-evidence-map","level":3,"line":205,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-public-evidence-map","title":"Current public evidence map"},{"anchor":"public-evidence-required-before-reopen","level":3,"line":211,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#public-evidence-required-before-reopen","title":"Public evidence required before reopen"},{"anchor":"what-stays-in-scope","level":3,"line":218,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#what-stays-in-scope","title":"What stays in scope"},{"anchor":"what-stays-out-of-the-donor","level":3,"line":225,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#what-stays-out-of-the-donor","title":"What stays out of the donor"},{"anchor":"nearest-overlap-watch","level":3,"line":234,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#nearest-overlap-watch","title":"Nearest overlap watch"},{"anchor":"honest-reopen-trigger","level":3,"line":240,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#honest-reopen-trigger","title":"Honest reopen trigger"},{"anchor":"expected-first-import-package","level":3,"line":249,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#expected-first-import-package","title":"Expected first import package"},{"anchor":"notes","level":2,"line":261,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#notes","title":"Notes"}],"line_refs":["mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md:1"],"path_ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},"signs":{"attestation_ref":"","digest":"6949f2c3ee81f1f0cea63b5eca96e8d1508cd9915403cefd95100874e708321d","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"438a0f08fbb9c8b4ca5d899993c35b59340b07b791cf234ab196c5536edc7cf3","git_blob_id":"5e1efc5c71882d43750176378ed1bec177ff1aa5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","lineage_path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","logical_id":"aoa:aoa-techniques:artifact:51171fd055520b693df3ffc6","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","repo":"aoa-techniques","size_bytes":26543,"version_id":"aoa:aoa-techniques:artifact-version:1ed0208d52642fc3481e0ec0"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"cross-layer-technique-candidates","level":1,"line":1,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#cross-layer-technique-candidates","title":"Cross-Layer Technique Candidates"},{"anchor":"scope","level":2,"line":10,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#scope","title":"Scope"},{"anchor":"doctrine-seam","level":2,"line":17,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#doctrine-seam","title":"Doctrine Seam"},{"anchor":"how-to-read-the-verdicts","level":2,"line":29,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#how-to-read-the-verdicts","title":"How To Read The Verdicts"},{"anchor":"current-summary","level":2,"line":42,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-summary","title":"Current Summary"},{"anchor":"structured-registry","level":2,"line":52,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#structured-registry","title":"Structured Registry"},{"anchor":"already-staged-elsewhere","level":2,"line":76,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#already-staged-elsewhere","title":"Already Staged Elsewhere"},{"anchor":"landed-from-this-wave-map","level":2,"line":87,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#landed-from-this-wave-map","title":"Landed From This Wave Map"},{"anchor":"future-import-here","level":2,"line":102,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#future-import-here","title":"Future Import Here"},{"anchor":"current-wave-program","level":2,"line":106,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-wave-program","title":"Current Wave Program"},{"anchor":"wave-a-runtime-truth-and-local-lifecycle","level":3,"line":119,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-a-runtime-truth-and-local-lifecycle","title":"Wave A - Runtime Truth And Local Lifecycle"},{"anchor":"wave-b-curated-input-surfaces-and-capability-boundaries","level":3,"line":140,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-b-curated-input-surfaces-and-capability-boundaries","title":"Wave B - Curated Input Surfaces And Capability Boundaries"},{"anchor":"wave-c-history-as-reviewable-artifact","level":3,"line":160,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-c-history-as-reviewable-artifact","title":"Wave C - History As Reviewable Artifact"},{"anchor":"implementation-rules-for-the-current-wave-program","level":2,"line":178,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#implementation-rules-for-the-current-wave-program","title":"Implementation Rules For The Current Wave Program"},{"anchor":"reopen-gate","level":2,"line":191,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#reopen-gate","title":"Reopen Gate"},{"anchor":"hold-because-overlap","level":2,"line":227,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#hold-because-overlap","title":"Hold Because Overlap"},{"anchor":"needs-layer-incubation-before-distillation-here","level":2,"line":234,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#needs-layer-incubation-before-distillation-here","title":"Needs Layer Incubation Before Distillation Here"},{"anchor":"substrate-or-architecture-pattern-not-yet-a-technique","level":2,"line":242,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#substrate-or-architecture-pattern-not-yet-a-technique","title":"Substrate Or Architecture Pattern, Not Yet A Technique"},{"anchor":"notes","level":2,"line":250,"ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#notes","title":"Notes"}],"line_refs":["mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md:1"],"path_ref":"mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},"signs":{"attestation_ref":"","digest":"438a0f08fbb9c8b4ca5d899993c35b59340b07b791cf234ab196c5536edc7cf3","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c4bea89ffbabcd2e5e1614a12fa7e0b808bd910ea7beaba5ae118741181f9ac1","git_blob_id":"295d9023907df409e47a0465163caa21fdd73b3c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","lineage_path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","logical_id":"aoa:aoa-techniques:artifact:2c3654d4c4541cdb17dccc73","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","repo":"aoa-techniques","size_bytes":24143,"version_id":"aoa:aoa-techniques:artifact-version:3080d2debf73afcb472ea6b9"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"external-technique-candidates","level":1,"line":1,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#external-technique-candidates","title":"External Technique Candidates"},{"anchor":"scope","level":2,"line":10,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#scope","title":"Scope"},{"anchor":"doctrine-seam","level":2,"line":35,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#doctrine-seam","title":"Doctrine Seam"},{"anchor":"how-to-read-the-verdicts","level":2,"line":46,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#how-to-read-the-verdicts","title":"How To Read The Verdicts"},{"anchor":"current-summary","level":2,"line":59,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-summary","title":"Current Summary"},{"anchor":"current-wave-placement","level":2,"line":84,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-wave-placement","title":"Current Wave Placement"},{"anchor":"swarm-execution-layer","level":2,"line":90,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#swarm-execution-layer","title":"Swarm Execution Layer"},{"anchor":"wave-a-runtime-truth-and-local-lifecycle","level":3,"line":104,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-a-runtime-truth-and-local-lifecycle","title":"Wave A - Runtime Truth And Local Lifecycle"},{"anchor":"wave-b-curated-input-surfaces-and-capability-boundaries","level":3,"line":111,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-b-curated-input-surfaces-and-capability-boundaries","title":"Wave B - Curated Input Surfaces And Capability Boundaries"},{"anchor":"wave-c-history-as-reviewable-artifact","level":3,"line":122,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#wave-c-history-as-reviewable-artifact","title":"Wave C - History As Reviewable Artifact"},{"anchor":"active-narrowing-lane-not-a-wave-yet","level":3,"line":133,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#active-narrowing-lane-not-a-wave-yet","title":"Active Narrowing Lane, Not A Wave Yet"},{"anchor":"ready-to-distill-here","level":2,"line":141,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#ready-to-distill-here","title":"Ready To Distill Here"},{"anchor":"future-import-here","level":2,"line":145,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#future-import-here","title":"Future Import Here"},{"anchor":"hold-because-overlap","level":2,"line":151,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#hold-because-overlap","title":"Hold Because Overlap"},{"anchor":"needs-layer-incubation-before-distillation-here","level":2,"line":160,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#needs-layer-incubation-before-distillation-here","title":"Needs Layer Incubation Before Distillation Here"},{"anchor":"substrate-or-architecture-pattern-not-yet-a-technique","level":2,"line":170,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#substrate-or-architecture-pattern-not-yet-a-technique","title":"Substrate Or Architecture Pattern, Not Yet A Technique"},{"anchor":"recommended-next-expansion-order","level":2,"line":178,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#recommended-next-expansion-order","title":"Recommended Next Expansion Order"},{"anchor":"current-narrowing-slice-phase_sync_for_agents","level":2,"line":185,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-narrowing-slice-phase_sync_for_agents","title":"Current Narrowing Slice: `phase_sync_for_agents`"},{"anchor":"working-extraction-target","level":3,"line":189,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#working-extraction-target","title":"Working extraction target"},{"anchor":"current-donor-read-stays-no-go","level":3,"line":195,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-donor-read-stays-no-go","title":"Current donor read stays no-go"},{"anchor":"current-public-evidence-map","level":3,"line":205,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#current-public-evidence-map","title":"Current public evidence map"},{"anchor":"public-evidence-required-before-reopen","level":3,"line":211,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#public-evidence-required-before-reopen","title":"Public evidence required before reopen"},{"anchor":"what-stays-in-scope","level":3,"line":218,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#what-stays-in-scope","title":"What stays in scope"},{"anchor":"what-stays-out-of-the-donor","level":3,"line":225,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#what-stays-out-of-the-donor","title":"What stays out of the donor"},{"anchor":"nearest-overlap-watch","level":3,"line":234,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#nearest-overlap-watch","title":"Nearest overlap watch"},{"anchor":"honest-reopen-trigger","level":3,"line":240,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#honest-reopen-trigger","title":"Honest reopen trigger"},{"anchor":"expected-first-import-package","level":3,"line":249,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#expected-first-import-package","title":"Expected first import package"},{"anchor":"notes","level":2,"line":261,"ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md#notes","title":"Notes"}],"line_refs":["mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md:1"],"path_ref":"mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md"},"signs":{"attestation_ref":"","digest":"c4bea89ffbabcd2e5e1614a12fa7e0b808bd910ea7beaba5ae118741181f9ac1","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a819862229ef5d186620aa9d2128f2419ff4a19eabba61f40ea63d9ae3f4703d","git_blob_id":"edc6dd6cc1b182306f12b09b4203fd3a00795b50","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:12b9435bf6e909efd884670d","lineage_path":"mechanics/distillation/legacy/raw/README.md","logical_id":"aoa:aoa-techniques:artifact:12b9435bf6e909efd884670d","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/README.md","repo":"aoa-techniques","size_bytes":955,"version_id":"aoa:aoa-techniques:artifact-version:ea27ba93a8b25f6d9f773519"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/legacy/raw/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/raw/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"distillation-raw-legacy","level":1,"line":1,"ref":"mechanics/distillation/legacy/raw/README.md#distillation-raw-legacy","title":"Distillation Raw Legacy"}],"line_refs":["mechanics/distillation/legacy/raw/README.md:1"],"path_ref":"mechanics/distillation/legacy/raw/README.md"},"signs":{"attestation_ref":"","digest":"a819862229ef5d186620aa9d2128f2419ff4a19eabba61f40ea63d9ae3f4703d","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"legacy","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"accb50154a90f2188234b859a691dbae389df8015f0ef02740716bd88f87d80c","git_blob_id":"e1e838eb5530e4e48323cd2647ec6da521d257cd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dfc8e88cf15e7b4696445460","lineage_path":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md","logical_id":"aoa:aoa-techniques:artifact:dfc8e88cf15e7b4696445460","mime":"text/markdown","path":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md","repo":"aoa-techniques","size_bytes":31848,"version_id":"aoa:aoa-techniques:artifact-version:605d439e9bda0a7f86d84f52"},"mechanics_role":"legacy","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"roadmap","level":1,"line":1,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#roadmap","title":"Roadmap"},{"anchor":"authority","level":2,"line":9,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#authority","title":"Authority"},{"anchor":"update-rule","level":2,"line":43,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#update-rule","title":"Update Rule"},{"anchor":"current-direction","level":2,"line":57,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#current-direction","title":"Current Direction"},{"anchor":"current-checked-contour","level":2,"line":80,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#current-checked-contour","title":"Current Checked Contour"},{"anchor":"horizon-root-clarity","level":2,"line":109,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-root-clarity","title":"Horizon: Root Clarity"},{"anchor":"horizon-technique-atom","level":2,"line":117,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-technique-atom","title":"Horizon: Technique Atom"},{"anchor":"horizon-corpus-topology","level":2,"line":125,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-corpus-topology","title":"Horizon: Corpus Topology"},{"anchor":"horizon-corpus-tree","level":2,"line":133,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-corpus-tree","title":"Horizon: Corpus Tree"},{"anchor":"horizon-small-agent-usability","level":2,"line":220,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-small-agent-usability","title":"Horizon: Small-Agent Usability"},{"anchor":"horizon-mechanics-to-canon","level":2,"line":228,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-mechanics-to-canon","title":"Horizon: Mechanics To Canon"},{"anchor":"horizon-evidence-and-promotion","level":2,"line":236,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-evidence-and-promotion","title":"Horizon: Evidence And Promotion"},{"anchor":"horizon-standalone-portability","level":2,"line":244,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-standalone-portability","title":"Horizon: Standalone Portability"},{"anchor":"horizon-generated-companions","level":2,"line":252,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#horizon-generated-companions","title":"Horizon: Generated Companions"},{"anchor":"when-the-time-comes","level":2,"line":260,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#when-the-time-comes","title":"When The Time Comes"},{"anchor":"standing-direction","level":2,"line":293,"ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md#standing-direction","title":"Standing Direction"}],"line_refs":["mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md:1"],"path_ref":"mechanics/distillation/legacy/raw/ROOT_ROADMAP_TREE_MIGRATION_BREADCRUMBS_2026-05-14.md"},"signs":{"attestation_ref":"","digest":"accb50154a90f2188234b859a691dbae389df8015f0ef02740716bd88f87d80c","signature_ref":"","verification_state":"digest-only"},"surface_state":"legacy","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2f3e536e17c19abef1b5e2c58c72cdaef4486fc9224dc68409e5c314eb81d3da","git_blob_id":"7184085f1d54fbccf58eba86b9d309fdab3040c9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c7c83102096d7ba5b4584308","lineage_path":"mechanics/distillation/parts/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:c7c83102096d7ba5b4584308","mime":"text/markdown","path":"mechanics/distillation/parts/AGENTS.md","repo":"aoa-techniques","size_bytes":1236,"version_id":"aoa:aoa-techniques:artifact-version:ad24fc2f0a4ae2f4b39aaa8a"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/distillation/parts/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/distillation/parts/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/distillation/parts/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":13,"ref":"mechanics/distillation/parts/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":23,"ref":"mechanics/distillation/parts/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":33,"ref":"mechanics/distillation/parts/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":40,"ref":"mechanics/distillation/parts/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/distillation/parts/AGENTS.md:1"],"path_ref":"mechanics/distillation/parts/AGENTS.md"},"signs":{"attestation_ref":"","digest":"2f3e536e17c19abef1b5e2c58c72cdaef4486fc9224dc68409e5c314eb81d3da","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -884,83 +884,83 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7639ec9dea2c9ef8c40ee1ca80125d88d9af5531be4b30bd158421d42b702775","git_blob_id":"ada4c4825d5bd0636d8e17b4ca96cf6e9f10d0a6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:40e0f556a68266a4c2fefe82","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:40e0f556a68266a4c2fefe82","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md","repo":"aoa-techniques","size_bytes":2808,"version_id":"aoa:aoa-techniques:artifact-version:c5dd19060a239057fde3beb8"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":27,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/AGENTS.md"},"signs":{"attestation_ref":"","digest":"7639ec9dea2c9ef8c40ee1ca80125d88d9af5531be4b30bd158421d42b702775","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"96606f264cf74a8de815bac9f73847684e3a4fa1e7e4d8a0f14bad2842f19f88","git_blob_id":"39a9e05d4514a6247864e97df7dcbabda8cfaf06","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md","logical_id":"aoa:aoa-techniques:artifact:dc98c76b070d0fd38c07ccb3","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md","repo":"aoa-techniques","size_bytes":13795,"version_id":"aoa:aoa-techniques:artifact-version:01541f4609ce062049479c40"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-reform-reviews","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md#technique-reform-reviews","title":"Technique Reform Reviews"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/README.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/README.md"},"signs":{"attestation_ref":"","digest":"96606f264cf74a8de815bac9f73847684e3a4fa1e7e4d8a0f14bad2842f19f88","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f1ad900ccbd3aa8940a1856cbd854794af8bd6ccf1f55af0d01470bab7d6c8ba","git_blob_id":"8e33efddb81a1506e946cf9cca555a444ba46ca1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6350baca8fc603ed8315477f","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:6350baca8fc603ed8315477f","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":14185,"version_id":"aoa:aoa-techniques:artifact-version:21860d43e25f59047e8342e4"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agent-workflows-core-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#agent-workflows-core-direct-read-migration-review","title":"Agent-Workflows-Core Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":48,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":100,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-earlier-broad-shelf-hold-no-longer-blocks","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#why-the-earlier-broad-shelf-hold-no-longer-blocks","title":"Why The Earlier Broad-Shelf Hold No Longer Blocks"},{"anchor":"execution-trunk-fit","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#execution-trunk-fit","title":"Execution Trunk Fit"},{"anchor":"proposed-move","level":2,"line":173,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"stop-lines","level":2,"line":198,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":216,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/agent-workflows-core-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"f1ad900ccbd3aa8940a1856cbd854794af8bd6ccf1f55af0d01470bab7d6c8ba","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"87244db585a1d8c988ae76c7509a0590cb5fe16b5dae520d0bef84051c92233a","git_blob_id":"ffcb4ab5c424c93e3576f1f4b91893d77118a787","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":15016,"version_id":"aoa:aoa-techniques:artifact-version:f7913789f5ae43b0e142eb8b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"antifragility-recovery-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#antifragility-recovery-direct-read-migration-review","title":"Antifragility-Recovery Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"cross-domain-decision","level":2,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#cross-domain-decision","title":"Cross-Domain Decision"},{"anchor":"recovery-trunk-fit","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#recovery-trunk-fit","title":"Recovery Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":165,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":200,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":216,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":236,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"87244db585a1d8c988ae76c7509a0590cb5fe16b5dae520d0bef84051c92233a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f5824a60743b3079aae2e1ffdffae83d53498f949ed6b696f2101b55d777e7ef","git_blob_id":"d316be0c9c3edf8e29ab89a3464c624b8ce06b1a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:fcebf684504ec852058428c6","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":14999,"version_id":"aoa:aoa-techniques:artifact-version:f875bb9d39e546701b63df85"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"antifragility-recovery-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#antifragility-recovery-direct-read-migration-review","title":"Antifragility-Recovery Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"cross-domain-decision","level":2,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#cross-domain-decision","title":"Cross-Domain Decision"},{"anchor":"recovery-trunk-fit","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#recovery-trunk-fit","title":"Recovery Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":165,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":200,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":216,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":236,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"f5824a60743b3079aae2e1ffdffae83d53498f949ed6b696f2101b55d777e7ef","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d3a3c67b50e5d0455c127b82edcf79dcc8cd1f34ef2819c7bce44fea49737fa0","git_blob_id":"9a27f6ecb9b7fe2464ca5b0b49801d34f7b9e8a5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f444d5f6f7157618cd89c466","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:f444d5f6f7157618cd89c466","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":8933,"version_id":"aoa:aoa-techniques:artifact-version:337333f566cc95626abf9fea"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"approval-evidence-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#approval-evidence-direct-read-migration-review","title":"Approval-Evidence Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":35,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":58,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"governance-trunk-fit","level":2,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#governance-trunk-fit","title":"Governance Trunk Fit"},{"anchor":"watch-signals","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/approval-evidence-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"d3a3c67b50e5d0455c127b82edcf79dcc8cd1f34ef2819c7bce44fea49737fa0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2a95b3a44d89eaa0acd6a1de1f77cc14e27d76625b23b3cc4f1a1320e61c6366","git_blob_id":"ac802fcaa6d9b036a51f38956eca32b28e9659b3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d96368a93dd5c19b08e5401d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md","logical_id":"aoa:aoa-techniques:artifact:d96368a93dd5c19b08e5401d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md","repo":"aoa-techniques","size_bytes":11574,"version_id":"aoa:aoa-techniques:artifact-version:26056602d499c08c9b2a2012"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"automation-governance-direct-read-split-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#automation-governance-direct-read-split-review","title":"Automation-Governance Direct-Read Split Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-one-shelf-fails","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#why-one-shelf-fails","title":"Why One Shelf Fails"},{"anchor":"split-candidates","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#split-candidates","title":"Split Candidates"},{"anchor":"candidate-a-governanceautomation-readiness","level":3,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#candidate-a-governanceautomation-readiness","title":"Candidate A: `governance/automation-readiness`"},{"anchor":"candidate-b-governancepromotion-boundary","level":3,"line":114,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#candidate-b-governancepromotion-boundary","title":"Candidate B: `governance/promotion-boundary`"},{"anchor":"candidate-c-governancepractice-adoption-lifecycle","level":3,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#candidate-c-governancepractice-adoption-lifecycle","title":"Candidate C: `governance/practice-adoption-lifecycle`"},{"anchor":"governance-trunk-fit","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#governance-trunk-fit","title":"Governance Trunk Fit"},{"anchor":"stop-lines","level":2,"line":152,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":171,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-direct-read-split-review.md"},"signs":{"attestation_ref":"","digest":"2a95b3a44d89eaa0acd6a1de1f77cc14e27d76625b23b3cc4f1a1320e61c6366","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fadeee9cab4f88b7f1d28be9f43f77b8f3b98fbada23a2a3ee77fb4534024966","git_blob_id":"47ef39dd4ba1640dc1c53b597dd41a448ff0630e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:826afccac9b1261d23f89f8d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","logical_id":"aoa:aoa-techniques:artifact:826afccac9b1261d23f89f8d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","repo":"aoa-techniques","size_bytes":4437,"version_id":"aoa:aoa-techniques:artifact-version:9ef0d05388313c94a940240f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"automation-governance-split-expansion-closeout","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md#automation-governance-split-expansion-closeout","title":"Automation-Governance Split Expansion Closeout"},{"anchor":"verdict","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md#verdict","title":"Verdict"},{"anchor":"activated-split-sequence","level":2,"line":27,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md#activated-split-sequence","title":"Activated Split Sequence"},{"anchor":"why-candidate-a-goes-first","level":2,"line":35,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md#why-candidate-a-goes-first","title":"Why Candidate A Goes First"},{"anchor":"route-effects","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md#route-effects","title":"Route Effects"},{"anchor":"stop-lines","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-governance-split-expansion-closeout.md"},"signs":{"attestation_ref":"","digest":"fadeee9cab4f88b7f1d28be9f43f77b8f3b98fbada23a2a3ee77fb4534024966","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a95513813a68317bb38f73b94efad3a59f1fb6c5c230aca5593bff757220c02c","git_blob_id":"907bdae2eb98a6193eaa0d7ed50fd3b27f73bede","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ff3eb7e7bed98dc8dc74ff0d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:ff3eb7e7bed98dc8dc74ff0d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":10304,"version_id":"aoa:aoa-techniques:artifact-version:62e85130c9de507272622692"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"automation-readiness-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#automation-readiness-direct-read-migration-review","title":"Automation-Readiness Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"governance-trunk-fit","level":2,"line":93,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#governance-trunk-fit","title":"Governance Trunk Fit"},{"anchor":"watch-signals","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":116,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/automation-readiness-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"a95513813a68317bb38f73b94efad3a59f1fb6c5c230aca5593bff757220c02c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c35c639808f99ab4c7f90c4813484ef3a6c3baf9c039e2c292890fbb73adbdc9","git_blob_id":"3e89bea2ddeafae262eeba43cca316da7abfaecb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a82a2d1eff854a5b62a3f523","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md","logical_id":"aoa:aoa-techniques:artifact:a82a2d1eff854a5b62a3f523","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md","repo":"aoa-techniques","size_bytes":24952,"version_id":"aoa:aoa-techniques:artifact-version:505bf0087827976419d85958"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-baseline-inventory","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#bundle-anatomy-baseline-inventory","title":"Bundle Anatomy Baseline Inventory"},{"anchor":"verdict","level":2,"line":11,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#verdict","title":"Verdict"},{"anchor":"baseline-counts","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#baseline-counts","title":"Baseline Counts"},{"anchor":"status-counts","level":2,"line":30,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#status-counts","title":"Status Counts"},{"anchor":"domain-counts","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#domain-counts","title":"Domain Counts"},{"anchor":"kind-counts","level":2,"line":48,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#kind-counts","title":"Kind Counts"},{"anchor":"trunk-counts","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#trunk-counts","title":"Trunk Counts"},{"anchor":"shelf-counts","level":2,"line":80,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#shelf-counts","title":"Shelf Counts"},{"anchor":"inventory-label-counts","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#inventory-label-counts","title":"Inventory Label Counts"},{"anchor":"bundle-rows","level":2,"line":119,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#bundle-rows","title":"Bundle Rows"},{"anchor":"next-gate","level":2,"line":231,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#next-gate","title":"Next Gate"},{"anchor":"stop-lines","level":2,"line":235,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-baseline-inventory.md"},"signs":{"attestation_ref":"","digest":"c35c639808f99ab4c7f90c4813484ef3a6c3baf9c039e2c292890fbb73adbdc9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a32b0d084f49f9a28789ca867f4a96dda499da939578ba7316a566ac00fa6151","git_blob_id":"b279328dbe81af1028be749b251931545e1cf065","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","logical_id":"aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","repo":"aoa-techniques","size_bytes":2452,"version_id":"aoa:aoa-techniques:artifact-version:beed30414178c63ddf6c55ad"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-capsule-gap-repair-cohort","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#bundle-anatomy-capsule-gap-repair-cohort","title":"Bundle Anatomy Capsule Gap Repair Cohort"},{"anchor":"verdict","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#verdict","title":"Verdict"},{"anchor":"repair-shape","level":2,"line":24,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#repair-shape","title":"Repair Shape"},{"anchor":"blast-radius","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#blast-radius","title":"Blast Radius"},{"anchor":"validation","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#validation","title":"Validation"},{"anchor":"stop-lines","level":2,"line":75,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md"},"signs":{"attestation_ref":"","digest":"a32b0d084f49f9a28789ca867f4a96dda499da939578ba7316a566ac00fa6151","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"111a0575428bbbb4b514cb153661758778fc3faa6e4ad272f691edde33bb8db9","git_blob_id":"e5ee1e41da5076ec1da3eb8d90ed04461b3d1eac","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","logical_id":"aoa:aoa-techniques:artifact:b7df49b2b8bb8f54486fe8de","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","repo":"aoa-techniques","size_bytes":2288,"version_id":"aoa:aoa-techniques:artifact-version:59d50e77fd4eab8db462a0af"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-capsule-gap-repair-cohort","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#bundle-anatomy-capsule-gap-repair-cohort","title":"Bundle Anatomy Capsule Gap Repair Cohort"},{"anchor":"verdict","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#verdict","title":"Verdict"},{"anchor":"repair-shape","level":2,"line":24,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#repair-shape","title":"Repair Shape"},{"anchor":"blast-radius","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#blast-radius","title":"Blast Radius"},{"anchor":"validation","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#validation","title":"Validation"},{"anchor":"stop-lines","level":2,"line":75,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md"},"signs":{"attestation_ref":"","digest":"111a0575428bbbb4b514cb153661758778fc3faa6e4ad272f691edde33bb8db9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0eabf053287899fe12e07f1876a9b594a4b163b3ee2ff7f91f33195b9a90998a","git_blob_id":"e5e023647aca0ac2e67c12c1bb18581c933add37","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9bd5382d28ff305374d89d34","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md","logical_id":"aoa:aoa-techniques:artifact:9bd5382d28ff305374d89d34","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md","repo":"aoa-techniques","size_bytes":7304,"version_id":"aoa:aoa-techniques:artifact-version:d49c94255e5e320e805a46f2"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-corpus-synthesis","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#bundle-anatomy-corpus-synthesis","title":"Bundle Anatomy Corpus Synthesis"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#verdict","title":"Verdict"},{"anchor":"label-counts","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#label-counts","title":"Label Counts"},{"anchor":"repair-action-counts","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#repair-action-counts","title":"Repair Action Counts"},{"anchor":"corpus-shape","level":2,"line":62,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#corpus-shape","title":"Corpus Shape"},{"anchor":"trunks","level":3,"line":64,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#trunks","title":"Trunks"},{"anchor":"status","level":3,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#status","title":"Status"},{"anchor":"domain","level":3,"line":86,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#domain","title":"Domain"},{"anchor":"kind","level":3,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#kind","title":"Kind"},{"anchor":"watch-pressure-by-trunk","level":2,"line":114,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#watch-pressure-by-trunk","title":"Watch Pressure By Trunk"},{"anchor":"cohorts","level":2,"line":129,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#cohorts","title":"Cohorts"},{"anchor":"no-touch-healthy-cohort","level":3,"line":131,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#no-touch-healthy-cohort","title":"No-Touch Healthy Cohort"},{"anchor":"generated-reader-repair-cohort","level":3,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#generated-reader-repair-cohort","title":"Generated-Reader Repair Cohort"},{"anchor":"decision-needed-cohort","level":3,"line":162,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#decision-needed-cohort","title":"Decision-Needed Cohort"},{"anchor":"route-away-cohort","level":3,"line":171,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#route-away-cohort","title":"Route-Away Cohort"},{"anchor":"topology-and-frontmatter-cohort","level":3,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#topology-and-frontmatter-cohort","title":"Topology And Frontmatter Cohort"},{"anchor":"findings","level":2,"line":188,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#findings","title":"Findings"},{"anchor":"the-tree-migration-did-not-hide-a-broad-bundle-collapse","level":3,"line":190,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#the-tree-migration-did-not-hide-a-broad-bundle-collapse","title":"The Tree Migration Did Not Hide A Broad Bundle Collapse"},{"anchor":"old-template-shape-is-real-but-not-urgent","level":3,"line":197,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#old-template-shape-is-real-but-not-urgent","title":"Old Template Shape Is Real But Not Urgent"},{"anchor":"boundary-pressure-is-the-normal-state-of-a-portable-technique-organ","level":3,"line":207,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#boundary-pressure-is-the-normal-state-of-a-portable-technique-organ","title":"Boundary Pressure Is The Normal State Of A Portable Technique Organ"},{"anchor":"first-repair-should-be-narrow-and-concrete","level":3,"line":217,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#first-repair-should-be-narrow-and-concrete","title":"First Repair Should Be Narrow And Concrete"},{"anchor":"stop-lines","level":2,"line":223,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-corpus-synthesis.md"},"signs":{"attestation_ref":"","digest":"0eabf053287899fe12e07f1876a9b594a4b163b3ee2ff7f91f33195b9a90998a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"43e641cc0b909cad121d49be6f34ea214c38b87fca741185d53b22d19f352e8c","git_blob_id":"7548ddf805cbdcaeaf150008db1c025cb4404aa5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:725d04e0beb9e29e171d02cc","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-wave-a-review.md","logical_id":"aoa:aoa-techniques:artifact:725d04e0beb9e29e171d02cc","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md","repo":"aoa-techniques","size_bytes":12085,"version_id":"aoa:aoa-techniques:artifact-version:358b52446acc9daec8c83e41"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-execution-and-instruction-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#bundle-anatomy-execution-and-instruction-review","title":"Bundle Anatomy Execution And Instruction Review"},{"anchor":"verdict","level":2,"line":12,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#verdict","title":"Verdict"},{"anchor":"shelf-verdicts","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#shelf-verdicts","title":"Shelf Verdicts"},{"anchor":"bundle-rows","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#bundle-rows","title":"Bundle Rows"},{"anchor":"wave-a-label-counts","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#wave-a-label-counts","title":"Wave A Label Counts"},{"anchor":"findings","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#findings","title":"Findings"},{"anchor":"old-template-watch-is-not-a-repair-mandate","level":3,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#old-template-watch-is-not-a-repair-mandate","title":"Old Template Watch Is Not A Repair Mandate"},{"anchor":"owner-boundary-watch-is-healthy-in-this-wave","level":3,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#owner-boundary-watch-is-healthy-in-this-wave","title":"Owner-Boundary Watch Is Healthy In This Wave"},{"anchor":"no-first-repair-cohort-from-wave-a-alone","level":3,"line":130,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#no-first-repair-cohort-from-wave-a-alone","title":"No First Repair Cohort From Wave A Alone"},{"anchor":"next-gate","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#next-gate","title":"Next Gate"},{"anchor":"stop-lines","level":2,"line":154,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-execution-instruction-review.md"},"signs":{"attestation_ref":"","digest":"43e641cc0b909cad121d49be6f34ea214c38b87fca741185d53b22d19f352e8c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"32c302e003792ab1ee05c9ff712cf15895fe6d8e885089e1d51b99e42f69f436","git_blob_id":"7b5ce3f830949c6263aa23ab229d6b66925d4285","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","repo":"aoa-techniques","size_bytes":5290,"version_id":"aoa:aoa-techniques:artifact-version:51bc27a795c164fb24a83752"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-final-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#bundle-anatomy-final-closeout-ledger","title":"Bundle Anatomy Final Closeout Ledger"},{"anchor":"verdict","level":2,"line":7,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"landed-packets","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#landed-packets","title":"Landed Packets"},{"anchor":"repair-closed","level":2,"line":48,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#repair-closed","title":"Repair Closed"},{"anchor":"no-change-decisions","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#no-change-decisions","title":"No-Change Decisions"},{"anchor":"next-direction","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#next-direction","title":"Next Direction"},{"anchor":"validation","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"32c302e003792ab1ee05c9ff712cf15895fe6d8e885089e1d51b99e42f69f436","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4f78eeee1f36066e00dc3ca7c78823a2ebd453fdefc6a1676c13ccae2902b3e0","git_blob_id":"a827de4656a83df3d060b4968a76511ece7c86fa","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:089d0af99752535f1651c8d7","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","repo":"aoa-techniques","size_bytes":5261,"version_id":"aoa:aoa-techniques:artifact-version:9799854c70e40b2be5ce7993"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-final-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#bundle-anatomy-final-closeout-ledger","title":"Bundle Anatomy Final Closeout Ledger"},{"anchor":"verdict","level":2,"line":7,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"landed-packets","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#landed-packets","title":"Landed Packets"},{"anchor":"repair-closed","level":2,"line":48,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#repair-closed","title":"Repair Closed"},{"anchor":"no-change-decisions","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#no-change-decisions","title":"No-Change Decisions"},{"anchor":"next-direction","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#next-direction","title":"Next Direction"},{"anchor":"validation","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"4f78eeee1f36066e00dc3ca7c78823a2ebd453fdefc6a1676c13ccae2902b3e0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d949226fe533e0059fc4d899068a0c17f30ef597cd4db449a8cf24586dd02c21","git_blob_id":"9d597909bbbb1ee81e6e754888d8c5b7491bb6fd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md","logical_id":"aoa:aoa-techniques:artifact:98d1752e9377d6ce8a11ccae","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md","repo":"aoa-techniques","size_bytes":2745,"version_id":"aoa:aoa-techniques:artifact-version:02a86336fe37584b883520ac"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-legacy-and-provenance-hygiene","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md#bundle-anatomy-legacy-and-provenance-hygiene","title":"Bundle Anatomy Legacy And Provenance Hygiene"},{"anchor":"verdict","level":2,"line":13,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":24,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"provenance-decision","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md#provenance-decision","title":"Provenance Decision"},{"anchor":"active-route","level":2,"line":59,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md#active-route","title":"Active Route"},{"anchor":"stop-lines","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-legacy-provenance-hygiene.md"},"signs":{"attestation_ref":"","digest":"d949226fe533e0059fc4d899068a0c17f30ef597cd4db449a8cf24586dd02c21","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"66ebd449b498620343855dd57f5521b817b38b2c2d779453d0ce86f0930d82dd","git_blob_id":"a0bcb4d8cfd9ce1ef7789553a93c909eb2506cc6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:02725fe911d71d32505fc6ad","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md","logical_id":"aoa:aoa-techniques:artifact:02725fe911d71d32505fc6ad","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md","repo":"aoa-techniques","size_bytes":3759,"version_id":"aoa:aoa-techniques:artifact-version:727e0d5b352976d65aaa852e"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-post-repair-follow-through","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md#bundle-anatomy-post-repair-follow-through","title":"Bundle Anatomy Post-Repair Follow-Through"},{"anchor":"verdict","level":2,"line":12,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md#verdict","title":"Verdict"},{"anchor":"phase-outcomes","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md#phase-outcomes","title":"Phase Outcomes"},{"anchor":"topology-scout-review","level":2,"line":31,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md#topology-scout-review","title":"Topology Scout Review"},{"anchor":"capsule-follow-through-review","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md#capsule-follow-through-review","title":"Capsule Follow-Through Review"},{"anchor":"promotion-and-evidence-separation","level":2,"line":64,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md#promotion-and-evidence-separation","title":"Promotion And Evidence Separation"},{"anchor":"route-away-follow-through","level":2,"line":72,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md#route-away-follow-through","title":"Route-Away Follow-Through"},{"anchor":"stop-lines","level":2,"line":80,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-post-repair-follow-through.md"},"signs":{"attestation_ref":"","digest":"66ebd449b498620343855dd57f5521b817b38b2c2d779453d0ce86f0930d82dd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b92bb8cdd04ac99b62a0035743dfc6e387c4f60e122db53f4dca98ef02a05d27","git_blob_id":"0cbc890c67415643e4adcd4a2797ca810f5cb439","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:020bb8fb4c97a84728f69dbd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-wave-b-review.md","logical_id":"aoa:aoa-techniques:artifact:020bb8fb4c97a84728f69dbd","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md","repo":"aoa-techniques","size_bytes":17980,"version_id":"aoa:aoa-techniques:artifact-version:1d9a9604880a8f5d99053554"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-proof-continuity-and-governance-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#bundle-anatomy-proof-continuity-and-governance-review","title":"Bundle Anatomy Proof Continuity And Governance Review"},{"anchor":"verdict","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#verdict","title":"Verdict"},{"anchor":"shelf-verdicts","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#shelf-verdicts","title":"Shelf Verdicts"},{"anchor":"bundle-rows","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#bundle-rows","title":"Bundle Rows"},{"anchor":"wave-b-label-counts","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#wave-b-label-counts","title":"Wave B Label Counts"},{"anchor":"repair-action-counts","level":2,"line":134,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#repair-action-counts","title":"Repair Action Counts"},{"anchor":"findings","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#findings","title":"Findings"},{"anchor":"boundary-watch-is-the-main-shape-of-wave-b","level":3,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#boundary-watch-is-the-main-shape-of-wave-b","title":"Boundary Watch Is The Main Shape Of Wave B"},{"anchor":"continuity-is-not-memory-or-playbook-authority","level":3,"line":154,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#continuity-is-not-memory-or-playbook-authority","title":"Continuity Is Not Memory Or Playbook Authority"},{"anchor":"governance-is-advisory-until-an-owner-accepts-it","level":3,"line":161,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#governance-is-advisory-until-an-owner-accepts-it","title":"Governance Is Advisory Until An Owner Accepts It"},{"anchor":"capsule-gap-appears-in-owner-truth-closeout","level":3,"line":169,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#capsule-gap-appears-in-owner-truth-closeout","title":"Capsule Gap Appears In Owner-Truth Closeout"},{"anchor":"no-leaf-repair-cohort-from-wave-b-alone","level":3,"line":181,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#no-leaf-repair-cohort-from-wave-b-alone","title":"No Leaf Repair Cohort From Wave B Alone"},{"anchor":"next-gate","level":2,"line":187,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#next-gate","title":"Next Gate"},{"anchor":"stop-lines","level":2,"line":198,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-proof-continuity-governance-review.md"},"signs":{"attestation_ref":"","digest":"b92bb8cdd04ac99b62a0035743dfc6e387c4f60e122db53f4dca98ef02a05d27","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ca965663b6bdbe7f5f2777917ed367fbf30dc2a50348dbb083591b59c22fdffc","git_blob_id":"1ed6a735d9f6c2a765558a6ee48628ba699c9033","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e0fdabb85c8668f75f6b7d80","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-wave-c-review.md","logical_id":"aoa:aoa-techniques:artifact:e0fdabb85c8668f75f6b7d80","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md","repo":"aoa-techniques","size_bytes":12475,"version_id":"aoa:aoa-techniques:artifact-version:8857ae36875e7eb91fbd6ce4"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-remaining-shelves-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#bundle-anatomy-remaining-shelves-review","title":"Bundle Anatomy Remaining Shelves Review"},{"anchor":"verdict","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#verdict","title":"Verdict"},{"anchor":"shelf-verdicts","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#shelf-verdicts","title":"Shelf Verdicts"},{"anchor":"bundle-rows","level":2,"line":56,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#bundle-rows","title":"Bundle Rows"},{"anchor":"wave-c-label-counts","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#wave-c-label-counts","title":"Wave C Label Counts"},{"anchor":"findings","level":2,"line":100,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#findings","title":"Findings"},{"anchor":"source-lift-is-healthy-while-it-stays-derived","level":3,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#source-lift-is-healthy-while-it-stays-derived","title":"Source-Lift Is Healthy While It Stays Derived"},{"anchor":"ingest-keeps-reviewable-objects-between-source-and-action","level":3,"line":109,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#ingest-keeps-reviewable-objects-between-source-and-action","title":"Ingest Keeps Reviewable Objects Between Source And Action"},{"anchor":"history-artifacts-are-not-memory-doctrine","level":3,"line":117,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#history-artifacts-are-not-memory-doctrine","title":"History Artifacts Are Not Memory Doctrine"},{"anchor":"recovery-stays-evidence-bound","level":3,"line":125,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#recovery-stays-evidence-bound","title":"Recovery Stays Evidence-Bound"},{"anchor":"tool-gateway-remains-a-singleton-boundary","level":3,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#tool-gateway-remains-a-singleton-boundary","title":"Tool Gateway Remains A Singleton Boundary"},{"anchor":"no-new-generated-reader-repair-from-wave-c","level":3,"line":139,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#no-new-generated-reader-repair-from-wave-c","title":"No New Generated-Reader Repair From Wave C"},{"anchor":"next-gate","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#next-gate","title":"Next Gate"},{"anchor":"stop-lines","level":2,"line":154,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-remaining-shelves-review.md"},"signs":{"attestation_ref":"","digest":"ca965663b6bdbe7f5f2777917ed367fbf30dc2a50348dbb083591b59c22fdffc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f2cb07caa966ef17b722b027fef6e03bc3ef0218aa98a4ccf665385bb3414202","git_blob_id":"99a059d6f070f68871909973c866428897781693","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:02b9d67150122bff94236586","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md","logical_id":"aoa:aoa-techniques:artifact:02b9d67150122bff94236586","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md","repo":"aoa-techniques","size_bytes":11925,"version_id":"aoa:aoa-techniques:artifact-version:b377241d7a43a5e1ba849cf2"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-rubric-hardening","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#bundle-anatomy-rubric-hardening","title":"Bundle Anatomy Rubric Hardening"},{"anchor":"verdict","level":2,"line":12,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#verdict","title":"Verdict"},{"anchor":"direct-read-set","level":2,"line":29,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#direct-read-set","title":"Direct-Read Set"},{"anchor":"hardened-label-layers","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#hardened-label-layers","title":"Hardened Label Layers"},{"anchor":"layer-1-inventory-signals","level":3,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#layer-1-inventory-signals","title":"Layer 1: Inventory Signals"},{"anchor":"layer-2-human-anatomy-verdicts","level":3,"line":52,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#layer-2-human-anatomy-verdicts","title":"Layer 2: Human Anatomy Verdicts"},{"anchor":"layer-3-repair-actions","level":3,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#layer-3-repair-actions","title":"Layer 3: Repair Actions"},{"anchor":"direct-read-findings","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#direct-read-findings","title":"Direct-Read Findings"},{"anchor":"aoa-t-0001","level":3,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#aoa-t-0001","title":"`AOA-T-0001`"},{"anchor":"aoa-t-0055","level":3,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#aoa-t-0055","title":"`AOA-T-0055`"},{"anchor":"aoa-t-0074","level":3,"line":132,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#aoa-t-0074","title":"`AOA-T-0074`"},{"anchor":"aoa-t-0096","level":3,"line":155,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#aoa-t-0096","title":"`AOA-T-0096`"},{"anchor":"aoa-t-0065","level":3,"line":183,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#aoa-t-0065","title":"`AOA-T-0065`"},{"anchor":"rubric-changes-to-carry-into-shelf-waves","level":2,"line":207,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#rubric-changes-to-carry-into-shelf-waves","title":"Rubric Changes To Carry Into Shelf Waves"},{"anchor":"next-gate","level":2,"line":226,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#next-gate","title":"Next Gate"},{"anchor":"stop-lines","level":2,"line":243,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-rubric-hardening.md"},"signs":{"attestation_ref":"","digest":"f2cb07caa966ef17b722b027fef6e03bc3ef0218aa98a4ccf665385bb3414202","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d3386d41c014882c2bf35202f723becc1b1c62a01955da468d8208e23d84da69","git_blob_id":"ddc46d01f4b4169ed0bcec884fc6e6604517757f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4cd7f4f448c2b0321fa9fdad","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md","logical_id":"aoa:aoa-techniques:artifact:4cd7f4f448c2b0321fa9fdad","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md","repo":"aoa-techniques","size_bytes":3163,"version_id":"aoa:aoa-techniques:artifact-version:2ec735d0a15f2dece945f3a2"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"bundle-anatomy-template-and-contract-feedback","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md#bundle-anatomy-template-and-contract-feedback","title":"Bundle Anatomy Template And Contract Feedback"},{"anchor":"verdict","level":2,"line":11,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md#verdict","title":"Verdict"},{"anchor":"feedback-decisions","level":2,"line":25,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md#feedback-decisions","title":"Feedback Decisions"},{"anchor":"repeated-gaps","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md#repeated-gaps","title":"Repeated Gaps"},{"anchor":"decision-record-review","level":2,"line":47,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md#decision-record-review","title":"Decision Record Review"},{"anchor":"stop-lines","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-template-contract-feedback.md"},"signs":{"attestation_ref":"","digest":"d3386d41c014882c2bf35202f723becc1b1c62a01955da468d8208e23d84da69","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c1d6a27422718eae59ed695ee761638c906db837a1451bb60a11bb47437928c2","git_blob_id":"23e296cb1194d82fa23bfcdd3e347a56d0585d6b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":11826,"version_id":"aoa:aoa-techniques:artifact-version:07fa9abb4de8131ab89f2cd7"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-boundary-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#capability-boundary-direct-read-migration-review","title":"Capability-Boundary Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":80,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"instruction-trunk-fit","level":2,"line":98,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#instruction-trunk-fit","title":"Instruction Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":135,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":148,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":168,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":198,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"c1d6a27422718eae59ed695ee761638c906db837a1451bb60a11bb47437928c2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e1b2a2bcc7b614993dad96389e1752e6cd96aa7022f23cb141307d3b11ebcb64","git_blob_id":"396db0dd58b3ff78ce3b744fc2df6c17ffade3a1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:1efeaa41102d4d4843ff135d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":11809,"version_id":"aoa:aoa-techniques:artifact-version:bc8fcb69058c843e9b686fd0"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-boundary-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#capability-boundary-direct-read-migration-review","title":"Capability-Boundary Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":80,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"instruction-trunk-fit","level":2,"line":98,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#instruction-trunk-fit","title":"Instruction Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":135,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":148,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":168,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":198,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"e1b2a2bcc7b614993dad96389e1752e6cd96aa7022f23cb141307d3b11ebcb64","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"62b607fa85d65585ada915e55a9fd83e95225b51b4842badd7e554cd9a6abe5f","git_blob_id":"4fae2fde0fc3488b1dec628fa39386a59b3502db","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:068f1b1e753aadb4ac7af2fc","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md","logical_id":"aoa:aoa-techniques:artifact:068f1b1e753aadb4ac7af2fc","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md","repo":"aoa-techniques","size_bytes":5899,"version_id":"aoa:aoa-techniques:artifact-version:33a407859b7e73ab3d0af026"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-media-direct-relation-repair","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#capability-media-direct-relation-repair","title":"Capability Media Direct Relation Repair"},{"anchor":"verdict","level":2,"line":20,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#verdict","title":"Verdict"},{"anchor":"decision-table","level":2,"line":46,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#decision-table","title":"Decision Table"},{"anchor":"holds","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#holds","title":"Holds"},{"anchor":"what-changed","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"safety-read","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#safety-read","title":"Safety Read"},{"anchor":"stop-lines","level":2,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-media-direct-relation-repair.md"},"signs":{"attestation_ref":"","digest":"62b607fa85d65585ada915e55a9fd83e95225b51b4842badd7e554cd9a6abe5f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"eb48e205b734a6d826e125c7de0cfad41e1aed51f045f50ee15df7e3cf44af2d","git_blob_id":"328841e10fae5d8b4acfa06fdfa934cda24f901d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9306,"version_id":"aoa:aoa-techniques:artifact-version:bdb455fa106e55a084ab8579"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-registry-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#capability-registry-direct-read-migration-review","title":"Capability-Registry Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":34,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"instruction-trunk-fit","level":2,"line":82,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#instruction-trunk-fit","title":"Instruction Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"eb48e205b734a6d826e125c7de0cfad41e1aed51f045f50ee15df7e3cf44af2d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7bf7a93cdcca7cc58a21440cafc7feae1d8ec98dc64f86a2f20ddadccf2c43f9","git_blob_id":"751aa84550d0ca2392c6d0b85eb93b725db377ab","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:f77469d504ce50e4652a7044","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9289,"version_id":"aoa:aoa-techniques:artifact-version:ed4ba7b30f741da03b593660"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"capability-registry-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#capability-registry-direct-read-migration-review","title":"Capability-Registry Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":34,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"instruction-trunk-fit","level":2,"line":82,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#instruction-trunk-fit","title":"Instruction Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"7bf7a93cdcca7cc58a21440cafc7feae1d8ec98dc64f86a2f20ddadccf2c43f9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ed7317f36f688f6342632f46a459ec3dabc952b333f88c7db77ba6e58ed91791","git_blob_id":"22341e225ff4a7eec104119ac60905568dd878d7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:162b12067e96cd5aec11d4f3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:162b12067e96cd5aec11d4f3","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9589,"version_id":"aoa:aoa-techniques:artifact-version:bbabfc7ed55265ea39c41732"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"decision-routing-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#decision-routing-direct-read-migration-review","title":"Decision-Routing Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"governance-trunk-fit","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#governance-trunk-fit","title":"Governance Trunk Fit"},{"anchor":"watch-signals","level":2,"line":93,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":116,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":132,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":150,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/decision-routing-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"ed7317f36f688f6342632f46a459ec3dabc952b333f88c7db77ba6e58ed91791","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d080c82418befed9d9eb94561508b48a8ce61dc9fcada5940f311587d218b764","git_blob_id":"f5c65f28e86961c91a0cde5d9feb6d0f800b1463","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":8069,"version_id":"aoa:aoa-techniques:artifact-version:742a0b00da02da97a68de323"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"diagnosis-repair-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#diagnosis-repair-direct-read-migration-review","title":"Diagnosis-Repair Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":50,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-read","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"mixed-kind-stress","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#mixed-kind-stress","title":"Mixed Kind Stress"},{"anchor":"why-not-keep-this-as-agent-workflows","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#why-not-keep-this-as-agent-workflows","title":"Why Not Keep This As Agent Workflows"},{"anchor":"pilot-scope","level":2,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":152,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"d080c82418befed9d9eb94561508b48a8ce61dc9fcada5940f311587d218b764","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"57bf526e82680fd90418cc27e0c0181d3f6bc7985d63cf4444d5e47dde7cffea","git_blob_id":"93ef7a8af35fb6821d44e872d098334bc0cf2d31","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:2e01bd1a08f270365a53064e","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":8052,"version_id":"aoa:aoa-techniques:artifact-version:2876bbe29d70d6c7cf4a2a45"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"diagnosis-repair-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#diagnosis-repair-direct-read-migration-review","title":"Diagnosis-Repair Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":50,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-read","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"mixed-kind-stress","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#mixed-kind-stress","title":"Mixed Kind Stress"},{"anchor":"why-not-keep-this-as-agent-workflows","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#why-not-keep-this-as-agent-workflows","title":"Why Not Keep This As Agent Workflows"},{"anchor":"pilot-scope","level":2,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":152,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"57bf526e82680fd90418cc27e0c0181d3f6bc7985d63cf4444d5e47dde7cffea","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a1cc463d0dff42ca4ebd3be7ced0746fd5a5b554da11d9733cfc32c1480ad86b","git_blob_id":"12afdf5e22b9c2ee5d906787e006e48782a3a1a6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d1a9d831ec2524b5d37880b4","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md","logical_id":"aoa:aoa-techniques:artifact:d1a9d831ec2524b5d37880b4","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md","repo":"aoa-techniques","size_bytes":4548,"version_id":"aoa:aoa-techniques:artifact-version:df3933dffe529514787cfe21"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"diagnosis-repair-direct-relation-repair","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#diagnosis-repair-direct-relation-repair","title":"Diagnosis-Repair Direct Relation Repair"},{"anchor":"verdict","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#verdict","title":"Verdict"},{"anchor":"decision-table","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#decision-table","title":"Decision Table"},{"anchor":"holds","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#holds","title":"Holds"},{"anchor":"what-changed","level":2,"line":52,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"safety-read","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#safety-read","title":"Safety Read"},{"anchor":"stop-lines","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":93,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-relation-repair.md"},"signs":{"attestation_ref":"","digest":"a1cc463d0dff42ca4ebd3be7ced0746fd5a5b554da11d9733cfc32c1480ad86b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3b630289df6edfe51439f372312f94d403cff664eff5d0c0ce2e67711a7d4185","git_blob_id":"b02237a3f54529086f391b96e72ebaef971c86ab","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9517,"version_id":"aoa:aoa-techniques:artifact-version:1fe7358a16201d805939104b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"docs-boundary-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#docs-boundary-direct-read-migration-review","title":"Docs-Boundary Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-chain","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#boundary-chain","title":"Boundary Chain"},{"anchor":"instruction-trunk-fit","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#instruction-trunk-fit","title":"Instruction Trunk Fit"},{"anchor":"mixed-kind-stress","level":2,"line":98,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#mixed-kind-stress","title":"Mixed Kind Stress"},{"anchor":"why-not-keep-this-as-docs","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#why-not-keep-this-as-docs","title":"Why Not Keep This As Docs"},{"anchor":"pilot-scope","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":163,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"3b630289df6edfe51439f372312f94d403cff664eff5d0c0ce2e67711a7d4185","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1647146c2720f5c822d9e6ec80f27db33bd57aa5d2120b29517e32c004168ba2","git_blob_id":"5fb90be51a8bcb9fe2528fa800d092f2fe64ecbc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:e94178c74e814e987dea11b1","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9500,"version_id":"aoa:aoa-techniques:artifact-version:90f11c31793a5ddc8e6634d0"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"docs-boundary-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#docs-boundary-direct-read-migration-review","title":"Docs-Boundary Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-chain","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#boundary-chain","title":"Boundary Chain"},{"anchor":"instruction-trunk-fit","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#instruction-trunk-fit","title":"Instruction Trunk Fit"},{"anchor":"mixed-kind-stress","level":2,"line":98,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#mixed-kind-stress","title":"Mixed Kind Stress"},{"anchor":"why-not-keep-this-as-docs","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#why-not-keep-this-as-docs","title":"Why Not Keep This As Docs"},{"anchor":"pilot-scope","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":163,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"1647146c2720f5c822d9e6ec80f27db33bd57aa5d2120b29517e32c004168ba2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0cf49dbdf7ab8773c384477edd2a3089e2e1dfc21537fae526f7fd64bfcfb4e3","git_blob_id":"b47638275f573018035f3c23f857e2b730086f68","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:331fb050b9ee7573ef318347","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:331fb050b9ee7573ef318347","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":10384,"version_id":"aoa:aoa-techniques:artifact-version:b83af92e3e11a6d7d4ca73cc"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"donor-harvest-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#donor-harvest-direct-read-migration-review","title":"Donor-Harvest Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"continuity-trunk-fit","level":2,"line":86,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#continuity-trunk-fit","title":"Continuity Trunk Fit"},{"anchor":"watch-signals","level":2,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":112,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":121,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":151,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/donor-harvest-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"0cf49dbdf7ab8773c384477edd2a3089e2e1dfc21537fae526f7fd64bfcfb4e3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0f83ac2a237928fdd4fe3ce6f965e0412006c522ead11507bb100dc5961d8f99","git_blob_id":"51f6c694c2346fef6812a18d7a8233df5a540bc3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":13123,"version_id":"aoa:aoa-techniques:artifact-version:883cd7c2e8f9f7f55a55215e"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"evaluation-chain-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#evaluation-chain-direct-read-migration-review","title":"Evaluation-Chain Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"proof-trunk-fit","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#proof-trunk-fit","title":"Proof Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":155,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":175,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":192,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":210,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"0f83ac2a237928fdd4fe3ce6f965e0412006c522ead11507bb100dc5961d8f99","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8d10595f1a474ae2949f22e6eee481383defdbea894adc88514e18450f5da144","git_blob_id":"78bf9c046872a4e43b63c6d69d007ab618dfd8e9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","logical_id":"aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","repo":"aoa-techniques","size_bytes":5772,"version_id":"aoa:aoa-techniques:artifact-version:f6a556908a9b898af40a1786"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-empirical-harness-decision","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#execution-profile-empirical-harness-decision","title":"Execution Profile Empirical Harness Decision"},{"anchor":"decision","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#decision","title":"Decision"},{"anchor":"why-not-run-now","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#why-not-run-now","title":"Why Not Run Now"},{"anchor":"owner-split","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#owner-split","title":"Owner Split"},{"anchor":"first-future-pilot","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#first-future-pilot","title":"First Future Pilot"},{"anchor":"model-selection-posture","level":2,"line":75,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#model-selection-posture","title":"Model Selection Posture"},{"anchor":"minimum-eval-bundle-shape","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#minimum-eval-bundle-shape","title":"Minimum Eval Bundle Shape"},{"anchor":"stop-lines","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#stop-lines","title":"Stop Lines"},{"anchor":"carry-forward","level":2,"line":115,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#carry-forward","title":"Carry Forward"},{"anchor":"validation","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md"},"signs":{"attestation_ref":"","digest":"8d10595f1a474ae2949f22e6eee481383defdbea894adc88514e18450f5da144","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2e98b56919f2171c08e69ed66fdb1a94e601fcd0e837fba78e032b72e9172d5b","git_blob_id":"405d378db117c15949bab69b18e04bcf7d251cfb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","logical_id":"aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","repo":"aoa-techniques","size_bytes":15150,"version_id":"aoa:aoa-techniques:artifact-version:c7830a669e760747df706079"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-fixture-sketch-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#execution-profile-fixture-sketch-ledger","title":"Execution Profile Fixture Sketch Ledger"},{"anchor":"verdict","level":2,"line":10,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#verdict","title":"Verdict"},{"anchor":"reviewed-sources","level":2,"line":30,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#reviewed-sources","title":"Reviewed Sources"},{"anchor":"ledger-totals","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#ledger-totals","title":"Ledger Totals"},{"anchor":"fixture-rows","level":2,"line":58,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#fixture-rows","title":"Fixture Rows"},{"anchor":"harness-constraints","level":2,"line":96,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#harness-constraints","title":"Harness Constraints"},{"anchor":"owner-route","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#owner-route","title":"Owner Route"},{"anchor":"stop-lines","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":149,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md"},"signs":{"attestation_ref":"","digest":"2e98b56919f2171c08e69ed66fdb1a94e601fcd0e837fba78e032b72e9172d5b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"82d6e159b2dd36051911dd95b84a5e8d328614b4d1537636a2834e1c75f86a38","git_blob_id":"e27b186d21a648e47f7e2e762fe0e8d4a985e88c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":7202,"version_id":"aoa:aoa-techniques:artifact-version:a67dcf605b732973b6c67443"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#execution-profile-long-pass-closeout-ledger","title":"Execution Profile Long-Pass Closeout Ledger"},{"anchor":"verdict","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"landed-packets","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#landed-packets","title":"Landed Packets"},{"anchor":"verdict-counts","level":2,"line":47,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#verdict-counts","title":"Verdict Counts"},{"anchor":"what-changed","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"main-conclusions","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#main-conclusions","title":"Main Conclusions"},{"anchor":"next-owner-route","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#next-owner-route","title":"Next Owner Route"},{"anchor":"stop-lines-preserved","level":2,"line":131,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#stop-lines-preserved","title":"Stop Lines Preserved"},{"anchor":"validation","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"82d6e159b2dd36051911dd95b84a5e8d328614b4d1537636a2834e1c75f86a38","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d362558cbf7b444f360ffb33962852fdc6879e83010a131bec6a061901f0b1ad","git_blob_id":"c5e81e2d55b97a09a9db1aee30a1abad6016e051","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","logical_id":"aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","repo":"aoa-techniques","size_bytes":12626,"version_id":"aoa:aoa-techniques:artifact-version:fce8f46182dbe916fa9b3ca7"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-medium-agent-calibration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#execution-profile-medium-agent-calibration-review","title":"Execution Profile Medium-Agent Calibration Review"},{"anchor":"verdict","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"medium-rows","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#medium-rows","title":"Medium Rows"},{"anchor":"calibration-patterns","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#calibration-patterns","title":"Calibration Patterns"},{"anchor":"possible-profile-follow-up","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#possible-profile-follow-up","title":"Possible Profile Follow-Up"},{"anchor":"useful-threads","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#useful-threads","title":"Useful Threads"},{"anchor":"stop-lines","level":2,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":153,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md"},"signs":{"attestation_ref":"","digest":"d362558cbf7b444f360ffb33962852fdc6879e83010a131bec6a061901f0b1ad","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a9acba67e5e7545ad290f7212ad9c723b509219691f9699502a50d64a601d5f1","git_blob_id":"d62342cb4815a0044def400ca17e5ccb5770df4d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","logical_id":"aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","repo":"aoa-techniques","size_bytes":18344,"version_id":"aoa:aoa-techniques:artifact-version:8bbbd58616bbf1859c9fa6d8"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-orchestration-boundary-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#execution-profile-orchestration-boundary-review","title":"Execution Profile Orchestration Boundary Review"},{"anchor":"verdict","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"boundary-rows","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#boundary-rows","title":"Boundary Rows"},{"anchor":"wrapper-types","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#wrapper-types","title":"Wrapper Types"},{"anchor":"medium-edge-revisited","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#medium-edge-revisited","title":"Medium Edge Revisited"},{"anchor":"calibration-notes","level":2,"line":160,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#calibration-notes","title":"Calibration Notes"},{"anchor":"useful-threads","level":2,"line":174,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#useful-threads","title":"Useful Threads"},{"anchor":"stop-lines","level":2,"line":188,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":198,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md"},"signs":{"attestation_ref":"","digest":"a9acba67e5e7545ad290f7212ad9c723b509219691f9699502a50d64a601d5f1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"97aff5be5121d5e130feb1df0e6f151782bd7f812a8df2a7c62bad5257a84a90","git_blob_id":"b07b58779f1086b27b4b2f731d0b1fb1392884ab","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","logical_id":"aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","repo":"aoa-techniques","size_bytes":6700,"version_id":"aoa:aoa-techniques:artifact-version:16b8be88c6ecca37674843d1"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-registry-calibration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#execution-profile-registry-calibration-review","title":"Execution Profile Registry Calibration Review"},{"anchor":"verdict","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-sources","level":2,"line":26,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#reviewed-sources","title":"Reviewed Sources"},{"anchor":"current-source-shape","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#current-source-shape","title":"Current Source Shape"},{"anchor":"calibration-decisions","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#calibration-decisions","title":"Calibration Decisions"},{"anchor":"rejected-changes","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#rejected-changes","title":"Rejected Changes"},{"anchor":"source-change-triggers","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#source-change-triggers","title":"Source Change Triggers"},{"anchor":"carry-forward","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#carry-forward","title":"Carry Forward"},{"anchor":"validation","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md"},"signs":{"attestation_ref":"","digest":"97aff5be5121d5e130feb1df0e6f151782bd7f812a8df2a7c62bad5257a84a90","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"52471bb8f9f5326b426b0bf89046f30f0f643af6c9578f16f2f1410171d43f72","git_blob_id":"9443ffd6d9a771416895cdb793ec3ca79439d0a1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","logical_id":"aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","repo":"aoa-techniques","size_bytes":6738,"version_id":"aoa:aoa-techniques:artifact-version:925685717aae7d74a7803310"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-repair-queue-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#execution-profile-repair-queue-review","title":"Execution Profile Repair Queue Review"},{"anchor":"verdict","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-sources","level":2,"line":23,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#reviewed-sources","title":"Reviewed Sources"},{"anchor":"direct-read-finding","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#direct-read-finding","title":"Direct-Read Finding"},{"anchor":"repair-queue-item","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#repair-queue-item","title":"Repair Queue Item"},{"anchor":"non-queue-decisions","level":2,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#non-queue-decisions","title":"Non-Queue Decisions"},{"anchor":"future-targeted-slice","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#future-targeted-slice","title":"Future Targeted Slice"},{"anchor":"stop-lines","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":114,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md"},"signs":{"attestation_ref":"","digest":"52471bb8f9f5326b426b0bf89046f30f0f643af6c9578f16f2f1410171d43f72","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5173c7bdc3ed07254f5d3d0f7914493a1839809ce09c7f744fccae2180c3a06b","git_blob_id":"8b25ae8c93a15379d3136511051dbe3757883f6e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-a-review.md","logical_id":"aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md","repo":"aoa-techniques","size_bytes":10048,"version_id":"aoa:aoa-techniques:artifact-version:7ecaa2cfc289b981c0bb37dd"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-small-agent-wave-a-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#execution-profile-small-agent-wave-a-review","title":"Execution Profile Small-Agent Wave A Review"},{"anchor":"verdict","level":2,"line":12,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"small-agent-rows","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#small-agent-rows","title":"Small-Agent Rows"},{"anchor":"medium-rows-deferred-to-phase-2","level":2,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#medium-rows-deferred-to-phase-2","title":"Medium Rows Deferred To Phase 2"},{"anchor":"orchestration-boundaries","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#orchestration-boundaries","title":"Orchestration Boundaries"},{"anchor":"calibration-notes","level":2,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#calibration-notes","title":"Calibration Notes"},{"anchor":"useful-threads","level":2,"line":114,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#useful-threads","title":"Useful Threads"},{"anchor":"stop-lines","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":135,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md"},"signs":{"attestation_ref":"","digest":"5173c7bdc3ed07254f5d3d0f7914493a1839809ce09c7f744fccae2180c3a06b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0a4c3fc28dab1fddeb0df82533996db8a77281bdf3ea81ce64ec001a07ac01c5","git_blob_id":"dc08430eae65f12f3fdd00634e106a013228df77","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-b-review.md","logical_id":"aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md","repo":"aoa-techniques","size_bytes":16150,"version_id":"aoa:aoa-techniques:artifact-version:02c2f293a1202c289f86f8c2"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-small-agent-wave-b-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#execution-profile-small-agent-wave-b-review","title":"Execution Profile Small-Agent Wave B Review"},{"anchor":"verdict","level":2,"line":10,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":46,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"small-agent-rows","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#small-agent-rows","title":"Small-Agent Rows"},{"anchor":"medium-rows-deferred-to-phase-2","level":2,"line":103,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#medium-rows-deferred-to-phase-2","title":"Medium Rows Deferred To Phase 2"},{"anchor":"orchestration-boundaries","level":2,"line":110,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#orchestration-boundaries","title":"Orchestration Boundaries"},{"anchor":"calibration-notes","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#calibration-notes","title":"Calibration Notes"},{"anchor":"useful-threads","level":2,"line":149,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#useful-threads","title":"Useful Threads"},{"anchor":"stop-lines","level":2,"line":164,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":174,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md"},"signs":{"attestation_ref":"","digest":"0a4c3fc28dab1fddeb0df82533996db8a77281bdf3ea81ce64ec001a07ac01c5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c7ec01aafce71db828d83e6e8211b75ec8e12ef438453907a3756cd2a1e565c4","git_blob_id":"1ce0b1f64d7b106093c695208d53ac8ababbb8b2","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","logical_id":"aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","repo":"aoa-techniques","size_bytes":5452,"version_id":"aoa:aoa-techniques:artifact-version:0408355451120f54a260689d"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-truth-boundary-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#execution-profile-truth-boundary-pilot","title":"Execution Profile Truth Boundary Pilot"},{"anchor":"verdict","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":27,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"shelf-calibration","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#shelf-calibration","title":"Shelf Calibration"},{"anchor":"future-long-pass-rhythm","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#future-long-pass-rhythm","title":"Future Long-Pass Rhythm"},{"anchor":"stop-lines","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md"},"signs":{"attestation_ref":"","digest":"c7ec01aafce71db828d83e6e8211b75ec8e12ef438453907a3756cd2a1e565c4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e9226341a83b6b55ee868198e68f50d33bd8627f8d1dc33a315e54ccb4793e22","git_blob_id":"7c0a36280fded9cc04a2aa17c8ba3cdda9c9304c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","logical_id":"aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","repo":"aoa-techniques","size_bytes":4940,"version_id":"aoa:aoa-techniques:artifact-version:ccd4ac037fb12bd8db37c1a4"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"final-tree-migration-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#final-tree-migration-ledger","title":"Final Tree Migration Ledger"},{"anchor":"verdict","level":2,"line":22,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#verdict","title":"Verdict"},{"anchor":"final-counts","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#final-counts","title":"Final Counts"},{"anchor":"receipt-coverage","level":2,"line":52,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#receipt-coverage","title":"Receipt Coverage"},{"anchor":"generated-parity","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#generated-parity","title":"Generated Parity"},{"anchor":"temporary-plan-disposition","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#temporary-plan-disposition","title":"Temporary Plan Disposition"},{"anchor":"next-reform-direction","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#next-reform-direction","title":"Next Reform Direction"},{"anchor":"stop-lines","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"},"signs":{"attestation_ref":"","digest":"e9226341a83b6b55ee868198e68f50d33bd8627f8d1dc33a315e54ccb4793e22","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4bfe8fbe11c48d1b0fa550d360ccb2f5fb1a2fce3d0503f38637f39d49d72d31","git_blob_id":"ea2084e993c5bb0d44d5ecdec1aee551d7d22830","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:f0d055a5cf22f12138dee615","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":13106,"version_id":"aoa:aoa-techniques:artifact-version:88a31a547b7c3d0e87abed8b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"evaluation-chain-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#evaluation-chain-direct-read-migration-review","title":"Evaluation-Chain Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"proof-trunk-fit","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#proof-trunk-fit","title":"Proof Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":155,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":175,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":192,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":210,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"4bfe8fbe11c48d1b0fa550d360ccb2f5fb1a2fce3d0503f38637f39d49d72d31","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a28d23b1b002bd71261f5fc598ca01e6da6a27b11ec338bbce17006f4c0554aa","git_blob_id":"cccb3ad1ecd4fa837b9da90d04db0ec265c11d53","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","logical_id":"aoa:aoa-techniques:artifact:5814487e6018709779f12bb7","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","repo":"aoa-techniques","size_bytes":5698,"version_id":"aoa:aoa-techniques:artifact-version:1577a0f913efc3921cd43237"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-empirical-harness-decision","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#execution-profile-empirical-harness-decision","title":"Execution Profile Empirical Harness Decision"},{"anchor":"decision","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#decision","title":"Decision"},{"anchor":"why-not-run-now","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#why-not-run-now","title":"Why Not Run Now"},{"anchor":"owner-split","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#owner-split","title":"Owner Split"},{"anchor":"first-future-pilot","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#first-future-pilot","title":"First Future Pilot"},{"anchor":"model-selection-posture","level":2,"line":75,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#model-selection-posture","title":"Model Selection Posture"},{"anchor":"minimum-eval-bundle-shape","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#minimum-eval-bundle-shape","title":"Minimum Eval Bundle Shape"},{"anchor":"stop-lines","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#stop-lines","title":"Stop Lines"},{"anchor":"carry-forward","level":2,"line":115,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#carry-forward","title":"Carry Forward"},{"anchor":"validation","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md"},"signs":{"attestation_ref":"","digest":"a28d23b1b002bd71261f5fc598ca01e6da6a27b11ec338bbce17006f4c0554aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"14f533154ed36de6eaacf6b71cc2c5c9134b9a0bf843d49d7e289fad6a227356","git_blob_id":"5f98d5cd5db61152809bd606a64bb2145334c0d5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","logical_id":"aoa:aoa-techniques:artifact:0f5d70b4d57b5a139a8704a7","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","repo":"aoa-techniques","size_bytes":15076,"version_id":"aoa:aoa-techniques:artifact-version:ae6b371dd228f717cdbf5012"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-fixture-sketch-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#execution-profile-fixture-sketch-ledger","title":"Execution Profile Fixture Sketch Ledger"},{"anchor":"verdict","level":2,"line":10,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#verdict","title":"Verdict"},{"anchor":"reviewed-sources","level":2,"line":30,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#reviewed-sources","title":"Reviewed Sources"},{"anchor":"ledger-totals","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#ledger-totals","title":"Ledger Totals"},{"anchor":"fixture-rows","level":2,"line":58,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#fixture-rows","title":"Fixture Rows"},{"anchor":"harness-constraints","level":2,"line":96,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#harness-constraints","title":"Harness Constraints"},{"anchor":"owner-route","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#owner-route","title":"Owner Route"},{"anchor":"stop-lines","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":149,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md"},"signs":{"attestation_ref":"","digest":"14f533154ed36de6eaacf6b71cc2c5c9134b9a0bf843d49d7e289fad6a227356","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a9c80e99de63ecfb618753b6871729706e46ebf44c7e6fd515ace438303aace6","git_blob_id":"1a5b34bcfe6cf372aca885998e17f7da06a67065","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:6677af326efe29ea927cc893","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":7060,"version_id":"aoa:aoa-techniques:artifact-version:0d2b3964dd9bda40ee753e21"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#execution-profile-long-pass-closeout-ledger","title":"Execution Profile Long-Pass Closeout Ledger"},{"anchor":"verdict","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"landed-packets","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#landed-packets","title":"Landed Packets"},{"anchor":"verdict-counts","level":2,"line":47,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#verdict-counts","title":"Verdict Counts"},{"anchor":"what-changed","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"main-conclusions","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#main-conclusions","title":"Main Conclusions"},{"anchor":"next-owner-route","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#next-owner-route","title":"Next Owner Route"},{"anchor":"stop-lines-preserved","level":2,"line":131,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#stop-lines-preserved","title":"Stop Lines Preserved"},{"anchor":"validation","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"a9c80e99de63ecfb618753b6871729706e46ebf44c7e6fd515ace438303aace6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1b241312902605736060dcf513296a2f57768cd23f30e72c813cf3213f7d94a0","git_blob_id":"2985f581eef01ed3822db93a3556fd51b321d909","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","logical_id":"aoa:aoa-techniques:artifact:85fa0dd5fa67af4cf20c296a","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","repo":"aoa-techniques","size_bytes":12552,"version_id":"aoa:aoa-techniques:artifact-version:09447aae33ba88a634c48872"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-medium-agent-calibration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#execution-profile-medium-agent-calibration-review","title":"Execution Profile Medium-Agent Calibration Review"},{"anchor":"verdict","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"medium-rows","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#medium-rows","title":"Medium Rows"},{"anchor":"calibration-patterns","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#calibration-patterns","title":"Calibration Patterns"},{"anchor":"possible-profile-follow-up","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#possible-profile-follow-up","title":"Possible Profile Follow-Up"},{"anchor":"useful-threads","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#useful-threads","title":"Useful Threads"},{"anchor":"stop-lines","level":2,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":153,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md"},"signs":{"attestation_ref":"","digest":"1b241312902605736060dcf513296a2f57768cd23f30e72c813cf3213f7d94a0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"69eb22b5eb6e435d37ec067279143b14990854d7cc4167feb2a8ad55a5613191","git_blob_id":"bb997c977b620417bc6351713aa535fb0719fc5e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","logical_id":"aoa:aoa-techniques:artifact:5fc8864fff99ac9b0e5403ca","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","repo":"aoa-techniques","size_bytes":18270,"version_id":"aoa:aoa-techniques:artifact-version:2186b2c5f14004be309ac671"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-orchestration-boundary-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#execution-profile-orchestration-boundary-review","title":"Execution Profile Orchestration Boundary Review"},{"anchor":"verdict","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"boundary-rows","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#boundary-rows","title":"Boundary Rows"},{"anchor":"wrapper-types","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#wrapper-types","title":"Wrapper Types"},{"anchor":"medium-edge-revisited","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#medium-edge-revisited","title":"Medium Edge Revisited"},{"anchor":"calibration-notes","level":2,"line":160,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#calibration-notes","title":"Calibration Notes"},{"anchor":"useful-threads","level":2,"line":174,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#useful-threads","title":"Useful Threads"},{"anchor":"stop-lines","level":2,"line":188,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":198,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md"},"signs":{"attestation_ref":"","digest":"69eb22b5eb6e435d37ec067279143b14990854d7cc4167feb2a8ad55a5613191","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5c4890c47062410ec446b2cad3ee4558e8e859eb16b6b8f4bbedee77ad14899d","git_blob_id":"c00b35526046be913451f5e32779839788879b29","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","logical_id":"aoa:aoa-techniques:artifact:da13a2c7837d46ea017e3315","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","repo":"aoa-techniques","size_bytes":6626,"version_id":"aoa:aoa-techniques:artifact-version:c796189715e36a5a20b64186"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-registry-calibration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#execution-profile-registry-calibration-review","title":"Execution Profile Registry Calibration Review"},{"anchor":"verdict","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-sources","level":2,"line":26,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#reviewed-sources","title":"Reviewed Sources"},{"anchor":"current-source-shape","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#current-source-shape","title":"Current Source Shape"},{"anchor":"calibration-decisions","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#calibration-decisions","title":"Calibration Decisions"},{"anchor":"rejected-changes","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#rejected-changes","title":"Rejected Changes"},{"anchor":"source-change-triggers","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#source-change-triggers","title":"Source Change Triggers"},{"anchor":"carry-forward","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#carry-forward","title":"Carry Forward"},{"anchor":"validation","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md"},"signs":{"attestation_ref":"","digest":"5c4890c47062410ec446b2cad3ee4558e8e859eb16b6b8f4bbedee77ad14899d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"eac53b946219d71e3f3765fbd79c01e28e1fd450a918786b3c456f17db813be1","git_blob_id":"dea37331763be4c83acce4d81dd0a96850b82870","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","logical_id":"aoa:aoa-techniques:artifact:94505274bc69b9d88f913f9c","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","repo":"aoa-techniques","size_bytes":6664,"version_id":"aoa:aoa-techniques:artifact-version:b087ea953c6cb9bf58575ea7"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-repair-queue-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#execution-profile-repair-queue-review","title":"Execution Profile Repair Queue Review"},{"anchor":"verdict","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-sources","level":2,"line":23,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#reviewed-sources","title":"Reviewed Sources"},{"anchor":"direct-read-finding","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#direct-read-finding","title":"Direct-Read Finding"},{"anchor":"repair-queue-item","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#repair-queue-item","title":"Repair Queue Item"},{"anchor":"non-queue-decisions","level":2,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#non-queue-decisions","title":"Non-Queue Decisions"},{"anchor":"future-targeted-slice","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#future-targeted-slice","title":"Future Targeted Slice"},{"anchor":"stop-lines","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":114,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md"},"signs":{"attestation_ref":"","digest":"eac53b946219d71e3f3765fbd79c01e28e1fd450a918786b3c456f17db813be1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9bc1e57c29626827e1d9579d3d65f8c29ce351b160f3c0c77c8b8525daae8d33","git_blob_id":"71b78293f5225322760cd975bfefbf240fc51866","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-a-review.md","logical_id":"aoa:aoa-techniques:artifact:2353838de15b55284f3f2147","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md","repo":"aoa-techniques","size_bytes":9974,"version_id":"aoa:aoa-techniques:artifact-version:2b8d0a9f9d1f9222df85f3ba"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-small-agent-wave-a-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#execution-profile-small-agent-wave-a-review","title":"Execution Profile Small-Agent Wave A Review"},{"anchor":"verdict","level":2,"line":12,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"small-agent-rows","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#small-agent-rows","title":"Small-Agent Rows"},{"anchor":"medium-rows-deferred-to-phase-2","level":2,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#medium-rows-deferred-to-phase-2","title":"Medium Rows Deferred To Phase 2"},{"anchor":"orchestration-boundaries","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#orchestration-boundaries","title":"Orchestration Boundaries"},{"anchor":"calibration-notes","level":2,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#calibration-notes","title":"Calibration Notes"},{"anchor":"useful-threads","level":2,"line":114,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#useful-threads","title":"Useful Threads"},{"anchor":"stop-lines","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":135,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md"},"signs":{"attestation_ref":"","digest":"9bc1e57c29626827e1d9579d3d65f8c29ce351b160f3c0c77c8b8525daae8d33","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9a39e8813742b0005c23a6e84bfd27869e2a882dc7b170e50b56bf1f0949e2ee","git_blob_id":"3c36521548d24cd4fc8b8d4d5a8f984bea2b9087","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-wave-b-review.md","logical_id":"aoa:aoa-techniques:artifact:609f6ce98ea11c4052c3ec2c","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md","repo":"aoa-techniques","size_bytes":16076,"version_id":"aoa:aoa-techniques:artifact-version:4777835d6c351b04e0845d74"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-small-agent-wave-b-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#execution-profile-small-agent-wave-b-review","title":"Execution Profile Small-Agent Wave B Review"},{"anchor":"verdict","level":2,"line":10,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":46,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"small-agent-rows","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#small-agent-rows","title":"Small-Agent Rows"},{"anchor":"medium-rows-deferred-to-phase-2","level":2,"line":103,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#medium-rows-deferred-to-phase-2","title":"Medium Rows Deferred To Phase 2"},{"anchor":"orchestration-boundaries","level":2,"line":110,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#orchestration-boundaries","title":"Orchestration Boundaries"},{"anchor":"calibration-notes","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#calibration-notes","title":"Calibration Notes"},{"anchor":"useful-threads","level":2,"line":149,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#useful-threads","title":"Useful Threads"},{"anchor":"stop-lines","level":2,"line":164,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":174,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md"},"signs":{"attestation_ref":"","digest":"9a39e8813742b0005c23a6e84bfd27869e2a882dc7b170e50b56bf1f0949e2ee","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c867755f2b319a6feeb7afbce7a2211f302fa468fd2342479c0f1f308df3b864","git_blob_id":"714930f9aaf9a32341605b2c3918ad81f3e7bf3e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","logical_id":"aoa:aoa-techniques:artifact:ade078f5be561625c320c0c5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","repo":"aoa-techniques","size_bytes":5281,"version_id":"aoa:aoa-techniques:artifact-version:c5b32387baeed72d0f564621"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"execution-profile-truth-boundary-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#execution-profile-truth-boundary-pilot","title":"Execution Profile Truth Boundary Pilot"},{"anchor":"verdict","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#verdict","title":"Verdict"},{"anchor":"reviewed-surfaces","level":2,"line":27,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#reviewed-surfaces","title":"Reviewed Surfaces"},{"anchor":"shelf-calibration","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#shelf-calibration","title":"Shelf Calibration"},{"anchor":"future-long-pass-rhythm","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#future-long-pass-rhythm","title":"Future Long-Pass Rhythm"},{"anchor":"stop-lines","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#stop-lines","title":"Stop Lines"},{"anchor":"validation","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md"},"signs":{"attestation_ref":"","digest":"c867755f2b319a6feeb7afbce7a2211f302fa468fd2342479c0f1f308df3b864","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"16e9827badf2ebb2a1b039f9b566721f35a667da81b81b0175b59f12fe7f58e9","git_blob_id":"a6bc18be3724d34a63e4332dbd28191f7dda44d8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","logical_id":"aoa:aoa-techniques:artifact:9d85e8d2d79a37a46f8b03ea","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","repo":"aoa-techniques","size_bytes":4923,"version_id":"aoa:aoa-techniques:artifact-version:26a9c6bb7cf45b8ac278531a"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"final-tree-migration-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#final-tree-migration-ledger","title":"Final Tree Migration Ledger"},{"anchor":"verdict","level":2,"line":22,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#verdict","title":"Verdict"},{"anchor":"final-counts","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#final-counts","title":"Final Counts"},{"anchor":"receipt-coverage","level":2,"line":52,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#receipt-coverage","title":"Receipt Coverage"},{"anchor":"generated-parity","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#generated-parity","title":"Generated Parity"},{"anchor":"temporary-plan-disposition","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#temporary-plan-disposition","title":"Temporary Plan Disposition"},{"anchor":"next-reform-direction","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#next-reform-direction","title":"Next Reform Direction"},{"anchor":"stop-lines","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md#stop-lines","title":"Stop Lines"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md"},"signs":{"attestation_ref":"","digest":"16e9827badf2ebb2a1b039f9b566721f35a667da81b81b0175b59f12fe7f58e9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3559286eacdfca5ea7a350c429e53d8822f96a70738d1eb423e1a7190e9d5b7b","git_blob_id":"51845628fdff68e738c86618544fc8657c43a107","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c00bb1a986ec29d86f8448ef","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md","logical_id":"aoa:aoa-techniques:artifact:c00bb1a986ec29d86f8448ef","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md","repo":"aoa-techniques","size_bytes":11032,"version_id":"aoa:aoa-techniques:artifact-version:7d134648c045d81b4ff6fdae"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"first-family-shelf-review-pack","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#first-family-shelf-review-pack","title":"First Family Shelf Review Pack"},{"anchor":"verdict","level":2,"line":19,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#verdict","title":"Verdict"},{"anchor":"boundary-map","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#boundary-map","title":"Boundary Map"},{"anchor":"family-disposition","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#family-disposition","title":"Family Disposition"},{"anchor":"stable-shelf-candidates","level":2,"line":84,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#stable-shelf-candidates","title":"Stable Shelf Candidates"},{"anchor":"boundary-watch","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#boundary-watch","title":"Boundary Watch"},{"anchor":"split-pressure","level":2,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#split-pressure","title":"Split Pressure"},{"anchor":"trunk-readout","level":2,"line":138,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#trunk-readout","title":"Trunk Readout"},{"anchor":"projection-pilot-set","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#projection-pilot-set","title":"Projection Pilot Set"},{"anchor":"stop-lines","level":2,"line":176,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":187,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-family-shelf-review-pack.md"},"signs":{"attestation_ref":"","digest":"3559286eacdfca5ea7a350c429e53d8822f96a70738d1eb423e1a7190e9d5b7b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1c06471ec56cc7f40675e2ab1f97e227be1a615aba2ad1daad09bf462db62b51","git_blob_id":"c99b5039ea4a4819944559d289da03228591dcc3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:366b800f4b86c83ca4fc1323","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md","logical_id":"aoa:aoa-techniques:artifact:366b800f4b86c83ca4fc1323","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md","repo":"aoa-techniques","size_bytes":7125,"version_id":"aoa:aoa-techniques:artifact-version:9366791b860220a25ce196a7"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"first-kind-ambiguity-review-pack","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md#first-kind-ambiguity-review-pack","title":"First Kind Ambiguity Review Pack"},{"anchor":"verdict","level":2,"line":19,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md#verdict","title":"Verdict"},{"anchor":"direct-reads","level":2,"line":34,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md#direct-reads","title":"Direct Reads"},{"anchor":"what-the-audit-got-right","level":2,"line":51,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md#what-the-audit-got-right","title":"What The Audit Got Right"},{"anchor":"what-direct-reading-changed","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md#what-direct-reading-changed","title":"What Direct Reading Changed"},{"anchor":"shortlist-for-later-remap-work","level":2,"line":72,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md#shortlist-for-later-remap-work","title":"Shortlist For Later Remap Work"},{"anchor":"stop-lines","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-kind-ambiguity-review-pack.md"},"signs":{"attestation_ref":"","digest":"1c06471ec56cc7f40675e2ab1f97e227be1a615aba2ad1daad09bf462db62b51","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e048d3e6c5d73278803c839a42a8f0afeb77612125cef69fda0d8a86e8213088","git_blob_id":"b9647de5b2a9c15650918891e1c62dfcf9d69145","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8de898f47e9e3b0854d71aba","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","logical_id":"aoa:aoa-techniques:artifact:8de898f47e9e3b0854d71aba","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","repo":"aoa-techniques","size_bytes":4651,"version_id":"aoa:aoa-techniques:artifact-version:52bc7f0439583ca20cd3bee4"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"first-topology-scout-review-pack","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md#first-topology-scout-review-pack","title":"First Topology Scout Review Pack"},{"anchor":"verdict","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md#verdict","title":"Verdict"},{"anchor":"readout","level":2,"line":31,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md#readout","title":"Readout"},{"anchor":"allowed-uses","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md#allowed-uses","title":"Allowed Uses"},{"anchor":"stop-lines","level":2,"line":51,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md#stop-lines","title":"Stop Lines"},{"anchor":"first-review-conclusions","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md#first-review-conclusions","title":"First Review Conclusions"},{"anchor":"next-honest-move","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-topology-scout-review-pack.md"},"signs":{"attestation_ref":"","digest":"e048d3e6c5d73278803c839a42a8f0afeb77612125cef69fda0d8a86e8213088","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5fa5d75e1e40b22836c14fc2088040ac6885f0e67184d3ec892a228b7556153b","git_blob_id":"baf9900ca87fb62c85d6414b535e4286ae274b9d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1bd931ce32fb23c3d04421f5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md","logical_id":"aoa:aoa-techniques:artifact:1bd931ce32fb23c3d04421f5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md","repo":"aoa-techniques","size_bytes":5486,"version_id":"aoa:aoa-techniques:artifact-version:a822e63374657580a3364ef9"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"first-tree-projection-review-pack","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md#first-tree-projection-review-pack","title":"First Tree Projection Review Pack"},{"anchor":"verdict","level":2,"line":19,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md#verdict","title":"Verdict"},{"anchor":"projection-readout","level":2,"line":35,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md#projection-readout","title":"Projection Readout"},{"anchor":"pilot-choice","level":2,"line":59,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md#pilot-choice","title":"Pilot Choice"},{"anchor":"backup-pilot","level":2,"line":82,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md#backup-pilot","title":"Backup Pilot"},{"anchor":"hold-lines-from-projection","level":2,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md#hold-lines-from-projection","title":"Hold Lines From Projection"},{"anchor":"stop-lines","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/first-tree-projection-review-pack.md"},"signs":{"attestation_ref":"","digest":"5fa5d75e1e40b22836c14fc2088040ac6885f0e67184d3ec892a228b7556153b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4cf40d87cb91e821279cdfe1328927395ea12b178ac08e81bd95ca3ce02a1fa1","git_blob_id":"21dae913f4285424168d03ab693341bd5963d45b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9836,"version_id":"aoa:aoa-techniques:artifact-version:e79569f32d932adc2f093f50"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"handoff-continuation-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#handoff-continuation-direct-read-migration-review","title":"Handoff-Continuation Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":20,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":35,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":50,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-read","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"why-not-keep-this-as-agent-workflows","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#why-not-keep-this-as-agent-workflows","title":"Why Not Keep This As Agent Workflows"},{"anchor":"pilot-scope","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":147,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":159,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"4cf40d87cb91e821279cdfe1328927395ea12b178ac08e81bd95ca3ce02a1fa1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6af2cfb4c3bbd1f61689215bc8f097464edbe363d859dc4879e3f1703afbed97","git_blob_id":"756b506841a3f8be91f5d9abdf340f46bdd9bf20","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:160c657e650fc2ebc79cdab5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9819,"version_id":"aoa:aoa-techniques:artifact-version:1ccc5da7e51502049cbaf6f4"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"handoff-continuation-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#handoff-continuation-direct-read-migration-review","title":"Handoff-Continuation Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":20,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":35,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":50,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-read","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"why-not-keep-this-as-agent-workflows","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#why-not-keep-this-as-agent-workflows","title":"Why Not Keep This As Agent Workflows"},{"anchor":"pilot-scope","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":147,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":159,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"6af2cfb4c3bbd1f61689215bc8f097464edbe363d859dc4879e3f1703afbed97","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9769dafb22b7acef83b1aa626d3bd3676ae8369984edad408f26bfc225db2d27","git_blob_id":"b0c434c0596dc696f1bd9e85ba8f8741c08f8d1e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:90067aff1a4f98e3aff450cb","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md","logical_id":"aoa:aoa-techniques:artifact:90067aff1a4f98e3aff450cb","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md","repo":"aoa-techniques","size_bytes":4910,"version_id":"aoa:aoa-techniques:artifact-version:1a5dccdb3d3b31411f48c841"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"handoff-continuation-direct-relation-repair","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#handoff-continuation-direct-relation-repair","title":"Handoff-Continuation Direct Relation Repair"},{"anchor":"verdict","level":2,"line":19,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#verdict","title":"Verdict"},{"anchor":"decision-table","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#decision-table","title":"Decision Table"},{"anchor":"holds","level":2,"line":48,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#holds","title":"Holds"},{"anchor":"what-changed","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"safety-read","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#safety-read","title":"Safety Read"},{"anchor":"stop-lines","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":98,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-relation-repair.md"},"signs":{"attestation_ref":"","digest":"9769dafb22b7acef83b1aa626d3bd3676ae8369984edad408f26bfc225db2d27","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c1b3d8fe070c521d338b55c678e93875fad51f8eac777bf682182eddbc2da5ce","git_blob_id":"3c81002b94b7be102acebef0df7ac282342ada90","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":18517,"version_id":"aoa:aoa-techniques:artifact-version:0939ad50767168ca39614e71"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"history-artifacts-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#history-artifacts-direct-read-migration-review","title":"History-Artifacts Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":109,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"split-decision","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#split-decision","title":"Split Decision"},{"anchor":"history-trunk-fit","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#history-trunk-fit","title":"History Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":154,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":181,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":197,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":215,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":232,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":253,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"c1b3d8fe070c521d338b55c678e93875fad51f8eac777bf682182eddbc2da5ce","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9c3cf6c51cbef4379290615dabf85d9a106428911a8de5b06cdd9de7f4605118","git_blob_id":"fedf90ca1e7442f7fc1299f622d249f4428a1d57","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":11457,"version_id":"aoa:aoa-techniques:artifact-version:642ccb35bd52cb709591247b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"instruction-surface-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#instruction-surface-direct-read-migration-review","title":"Instruction-Surface Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-read","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"mixed-kind-stress","level":2,"line":92,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#mixed-kind-stress","title":"Mixed Kind Stress"},{"anchor":"profile-edge","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#profile-edge","title":"Profile Edge"},{"anchor":"why-not-keep-this-as-docs","level":2,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#why-not-keep-this-as-docs","title":"Why Not Keep This As Docs"},{"anchor":"pilot-scope","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":157,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":177,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":193,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"9c3cf6c51cbef4379290615dabf85d9a106428911a8de5b06cdd9de7f4605118","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0380930cc3287f72c5baa93881a8bcdb96cbaabdd357d0ce5cfdb08b23db1cec","git_blob_id":"026046bb212b63f3d7f598c4e5969f577a6bc187","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:4473eb9fbb1eff69b359f95d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":18500,"version_id":"aoa:aoa-techniques:artifact-version:769f5c7e5fa527f09dc3bdc5"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"history-artifacts-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#history-artifacts-direct-read-migration-review","title":"History-Artifacts Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":109,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"split-decision","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#split-decision","title":"Split Decision"},{"anchor":"history-trunk-fit","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#history-trunk-fit","title":"History Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":154,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":181,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":197,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":215,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":232,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":253,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"0380930cc3287f72c5baa93881a8bcdb96cbaabdd357d0ce5cfdb08b23db1cec","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7581e9c59a74e1c290e99169df70c5b0302f66d1f4763b3c24c6db0e7884f0c4","git_blob_id":"e198ff179344256e6def0cbe52794d3c420fb422","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:c2d3e4c1144ab85477027b71","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":11440,"version_id":"aoa:aoa-techniques:artifact-version:c5805521997e769863958c35"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"instruction-surface-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#instruction-surface-direct-read-migration-review","title":"Instruction-Surface Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-read","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"mixed-kind-stress","level":2,"line":92,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#mixed-kind-stress","title":"Mixed Kind Stress"},{"anchor":"profile-edge","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#profile-edge","title":"Profile Edge"},{"anchor":"why-not-keep-this-as-docs","level":2,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#why-not-keep-this-as-docs","title":"Why Not Keep This As Docs"},{"anchor":"pilot-scope","level":2,"line":140,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":157,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":177,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":193,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"7581e9c59a74e1c290e99169df70c5b0302f66d1f4763b3c24c6db0e7884f0c4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1704aafccf970536db83477cc32158ddf24c5d13fe7db0817c33dbc3ef8933d9","git_blob_id":"8f283a245afb23fe9da2e1f97156beeab3b18c63","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:33de82121c5e5c731af967ab","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:33de82121c5e5c731af967ab","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9850,"version_id":"aoa:aoa-techniques:artifact-version:3c93fa6590d30f459929a68f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"intent-chain-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#intent-chain-direct-read-migration-review","title":"Intent-Chain Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-earlier-small-shelf-hold-no-longer-blocks","level":2,"line":96,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#why-the-earlier-small-shelf-hold-no-longer-blocks","title":"Why The Earlier Small-Shelf Hold No Longer Blocks"},{"anchor":"execution-trunk-fit","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#execution-trunk-fit","title":"Execution Trunk Fit"},{"anchor":"proposed-move","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"stop-lines","level":2,"line":157,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":173,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/intent-chain-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"1704aafccf970536db83477cc32158ddf24c5d13fe7db0817c33dbc3ef8933d9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d6cd0e83a4c4f9c1b12edd262fdb096008ef789f942c183a245ae1305f665d4a","git_blob_id":"798ed331719ce2706dbde21ba34bc26eeb1665d6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":12664,"version_id":"aoa:aoa-techniques:artifact-version:b8c812cfd748e695f18c8507"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"kag-source-lift-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#kag-source-lift-direct-read-migration-review","title":"Kag-Source-Lift Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"source-lift-chain","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#source-lift-chain","title":"Source-Lift Chain"},{"anchor":"boundary-read","level":2,"line":94,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"kag-name-edge","level":2,"line":115,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#kag-name-edge","title":"KAG Name Edge"},{"anchor":"mixed-status-stress","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#mixed-status-stress","title":"Mixed Status Stress"},{"anchor":"why-not-keep-this-as-docs","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#why-not-keep-this-as-docs","title":"Why Not Keep This As Docs"},{"anchor":"pilot-scope","level":2,"line":162,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":180,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":204,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":220,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"d6cd0e83a4c4f9c1b12edd262fdb096008ef789f942c183a245ae1305f665d4a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cf2c7bdbe59777b4a84b22147fe2a381a0f7b587df28c56430d2e62fe544fb16","git_blob_id":"9e345523c4c2c0ad94c555f6664afbd739b6b1eb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:1fdeb70dac373b1ad075169d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":12647,"version_id":"aoa:aoa-techniques:artifact-version:3a586e913b1a4846b82f92e4"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"kag-source-lift-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#kag-source-lift-direct-read-migration-review","title":"Kag-Source-Lift Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"source-lift-chain","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#source-lift-chain","title":"Source-Lift Chain"},{"anchor":"boundary-read","level":2,"line":94,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"kag-name-edge","level":2,"line":115,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#kag-name-edge","title":"KAG Name Edge"},{"anchor":"mixed-status-stress","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#mixed-status-stress","title":"Mixed Status Stress"},{"anchor":"why-not-keep-this-as-docs","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#why-not-keep-this-as-docs","title":"Why Not Keep This As Docs"},{"anchor":"pilot-scope","level":2,"line":162,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":180,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":204,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":220,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"cf2c7bdbe59777b4a84b22147fe2a381a0f7b587df28c56430d2e62fe544fb16","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"da50a1f09fe358c82b1eb7ca6e79884bc01383475ab116c24246200720d09667","git_blob_id":"1cd43fad8d164ded49dad4142336694283b2af0b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:577c1d0e02c2508128663161","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:577c1d0e02c2508128663161","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","repo":"aoa-techniques","size_bytes":9016,"version_id":"aoa:aoa-techniques:artifact-version:3c00d9af5f104b650a6f6e3b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-agent-workflows-core-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#landed-agent-workflows-core-pilot-review","title":"Landed Agent-Workflows-Core Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":59,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-eighteenth-pilot-proved","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#what-the-eighteenth-pilot-proved","title":"What The Eighteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":84,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"nineteenth-shelf-choice","level":2,"line":100,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#nineteenth-shelf-choice","title":"Nineteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":134,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":147,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-agent-workflows-core-pilot-review.md"},"signs":{"attestation_ref":"","digest":"da50a1f09fe358c82b1eb7ca6e79884bc01383475ab116c24246200720d09667","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c6b0db7f8c31612d204b07c63d6384e421b8772445a57b5f68f16fe582b6535a","git_blob_id":"9f4ea61e3a7ddb65f256b0c2d4de0a96509625b6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c9107011968421971fabafeb","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:c9107011968421971fabafeb","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","repo":"aoa-techniques","size_bytes":10789,"version_id":"aoa:aoa-techniques:artifact-version:9da30d853680dca629074a7f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-antifragility-recovery-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#landed-antifragility-recovery-pilot-review","title":"Landed Antifragility-Recovery Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":62,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-fifteenth-pilot-proved","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#what-the-fifteenth-pilot-proved","title":"What The Fifteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"sixteenth-shelf-choice","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#sixteenth-shelf-choice","title":"Sixteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":148,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":167,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md"},"signs":{"attestation_ref":"","digest":"c6b0db7f8c31612d204b07c63d6384e421b8772445a57b5f68f16fe582b6535a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9789eda1aa58ec86d62e45426b8652502815d80c5bc172730abb013a33fad6d0","git_blob_id":"8af300603ad204235cad5bd1bcb02dbf0bfca684","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c9107011968421971fabafeb","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:c9107011968421971fabafeb","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","repo":"aoa-techniques","size_bytes":10772,"version_id":"aoa:aoa-techniques:artifact-version:359b7e8a5a6accf8f0813a87"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-antifragility-recovery-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#landed-antifragility-recovery-pilot-review","title":"Landed Antifragility-Recovery Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":62,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-fifteenth-pilot-proved","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#what-the-fifteenth-pilot-proved","title":"What The Fifteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"sixteenth-shelf-choice","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#sixteenth-shelf-choice","title":"Sixteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":148,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":167,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md"},"signs":{"attestation_ref":"","digest":"9789eda1aa58ec86d62e45426b8652502815d80c5bc172730abb013a33fad6d0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2e481c9e6fc06d77e3e29d6daa211c4a6ac30a557a981f892afd3041cf996660","git_blob_id":"16a61726af28fefc311eef994f05786000a0a09c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:31bd9ed4776744c6bee438e4","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:31bd9ed4776744c6bee438e4","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","repo":"aoa-techniques","size_bytes":10005,"version_id":"aoa:aoa-techniques:artifact-version:fd6bd8b12d22787c7e6baae8"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-approval-evidence-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#landed-approval-evidence-pilot-review","title":"Landed Approval-Evidence Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":59,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-twenty-first-pilot-proved","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#what-the-twenty-first-pilot-proved","title":"What The Twenty-First Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"twenty-second-shelf-choice","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#twenty-second-shelf-choice","title":"Twenty-Second Shelf Choice"},{"anchor":"stop-lines","level":2,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":159,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-approval-evidence-pilot-review.md"},"signs":{"attestation_ref":"","digest":"2e481c9e6fc06d77e3e29d6daa211c4a6ac30a557a981f892afd3041cf996660","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f3424ed514fe56113e7512d10af0271bb609f76dcb04ab372d98f211c5d63413","git_blob_id":"aebf8c94ef092257c2ed378ccff51b1500ae8b74","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dcca45fa1ecaebce1e627100","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:dcca45fa1ecaebce1e627100","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md","repo":"aoa-techniques","size_bytes":3421,"version_id":"aoa:aoa-techniques:artifact-version:aa6a01f42ef8530ef55c3e14"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-automation-readiness-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md#landed-automation-readiness-pilot-review","title":"Landed Automation-Readiness Pilot Review"},{"anchor":"verdict","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md#verdict","title":"Verdict"},{"anchor":"post-migration-evidence","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md#post-migration-evidence","title":"Post-Migration Evidence"},{"anchor":"what-improved","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md#what-improved","title":"What Improved"},{"anchor":"watch-lines","level":2,"line":56,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md#watch-lines","title":"Watch Lines"},{"anchor":"next-honest-move","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-automation-readiness-pilot-review.md"},"signs":{"attestation_ref":"","digest":"f3424ed514fe56113e7512d10af0271bb609f76dcb04ab372d98f211c5d63413","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ff51a82efbeff849b7159430b0915a703285a6eddc34c2ccedce5ec420af1a92","git_blob_id":"32b36d21c3aa2fd47728182bbc808e81edc513a8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","repo":"aoa-techniques","size_bytes":10565,"version_id":"aoa:aoa-techniques:artifact-version:0a2793ab75eda3fefb599ae2"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-capability-boundary-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#landed-capability-boundary-pilot-review","title":"Landed Capability-Boundary Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-ninth-pilot-proved","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#what-the-ninth-pilot-proved","title":"What The Ninth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"tenth-shelf-choice","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#tenth-shelf-choice","title":"Tenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":173,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md"},"signs":{"attestation_ref":"","digest":"ff51a82efbeff849b7159430b0915a703285a6eddc34c2ccedce5ec420af1a92","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1fe896d68b0facdd97f48281901a4b06fee8f8b910e45410e6b27fbb85c24ea6","git_blob_id":"b555a19c8a8287c335d172b4d78d026bb874447f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","repo":"aoa-techniques","size_bytes":10023,"version_id":"aoa:aoa-techniques:artifact-version:7b6e76076d216caa80f86956"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-capability-registry-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#landed-capability-registry-pilot-review","title":"Landed Capability-Registry Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":62,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-eighth-pilot-proved","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#what-the-eighth-pilot-proved","title":"What The Eighth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"ninth-shelf-choice","level":2,"line":109,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#ninth-shelf-choice","title":"Ninth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":153,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":167,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md"},"signs":{"attestation_ref":"","digest":"1fe896d68b0facdd97f48281901a4b06fee8f8b910e45410e6b27fbb85c24ea6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"88441d03a6ef8a5bdd37137dc9b58f48e4cb8c9ba07810c348071551184492c4","git_blob_id":"261e1683fa945df838e42f60938a5ebfcf64c484","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:f8e10b7a9deea208197e75d8","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","repo":"aoa-techniques","size_bytes":10548,"version_id":"aoa:aoa-techniques:artifact-version:1aabf5ebda24b0e088472d71"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-capability-boundary-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#landed-capability-boundary-pilot-review","title":"Landed Capability-Boundary Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-ninth-pilot-proved","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#what-the-ninth-pilot-proved","title":"What The Ninth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"tenth-shelf-choice","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#tenth-shelf-choice","title":"Tenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":173,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md"},"signs":{"attestation_ref":"","digest":"88441d03a6ef8a5bdd37137dc9b58f48e4cb8c9ba07810c348071551184492c4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9890f5fed35ef6de4b6d75937a3b2dba04d8424fc730672b137166d58693b6ef","git_blob_id":"9f2ae0b171d86b0073ea2af82a0847eac17e8a3e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:cd6053b313bb026dc89aadd1","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","repo":"aoa-techniques","size_bytes":10006,"version_id":"aoa:aoa-techniques:artifact-version:035b4b42b44ec2d8686175bb"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-capability-registry-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#landed-capability-registry-pilot-review","title":"Landed Capability-Registry Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":62,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-eighth-pilot-proved","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#what-the-eighth-pilot-proved","title":"What The Eighth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"ninth-shelf-choice","level":2,"line":109,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#ninth-shelf-choice","title":"Ninth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":153,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":167,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md"},"signs":{"attestation_ref":"","digest":"9890f5fed35ef6de4b6d75937a3b2dba04d8424fc730672b137166d58693b6ef","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"efae1b065f8dd711fa5a4a410fba5c0441f796e86ea6306ffcef67d4ccaa0322","git_blob_id":"9840d7f4c318f335fcf04de41155fb82e13ec2e1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:28d2e503ac2d2a27e1a10092","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:28d2e503ac2d2a27e1a10092","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md","repo":"aoa-techniques","size_bytes":9612,"version_id":"aoa:aoa-techniques:artifact-version:f79f2117ea0637f84265b1b0"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-decision-routing-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#landed-decision-routing-pilot-review","title":"Landed Decision-Routing Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":58,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-twentieth-pilot-proved","level":2,"line":70,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#what-the-twentieth-pilot-proved","title":"What The Twentieth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"twenty-first-shelf-choice","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#twenty-first-shelf-choice","title":"Twenty-First Shelf Choice"},{"anchor":"stop-lines","level":2,"line":139,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-decision-routing-pilot-review.md"},"signs":{"attestation_ref":"","digest":"efae1b065f8dd711fa5a4a410fba5c0441f796e86ea6306ffcef67d4ccaa0322","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bf2bc9967ffd50cc45d126d3ff78a9f381b8136980c60dd4ef7e00ee6da9a790","git_blob_id":"3623f0478a2c6237e139b6bb04f77c6b06cd5813","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","repo":"aoa-techniques","size_bytes":8120,"version_id":"aoa:aoa-techniques:artifact-version:b7989edabbd3ccf36a38b6cf"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-diagnosis-repair-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#landed-diagnosis-repair-pilot-review","title":"Landed Diagnosis-Repair Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-fourth-pilot-proved","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#what-the-fourth-pilot-proved","title":"What The Fourth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"fifth-shelf-choice","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#fifth-shelf-choice","title":"Fifth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":139,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md"},"signs":{"attestation_ref":"","digest":"bf2bc9967ffd50cc45d126d3ff78a9f381b8136980c60dd4ef7e00ee6da9a790","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"94b6d2995b045005e7fdd093526bbb84244aa5beb415b71855ccf9ced1120c22","git_blob_id":"a91972d010ca228a811a6b3928e0799bd940ab71","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","repo":"aoa-techniques","size_bytes":9281,"version_id":"aoa:aoa-techniques:artifact-version:ef6e276d493bc58f2f2531d0"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-docs-boundary-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#landed-docs-boundary-pilot-review","title":"Landed Docs-Boundary Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-seventh-pilot-proved","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#what-the-seventh-pilot-proved","title":"What The Seventh Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"eighth-shelf-choice","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#eighth-shelf-choice","title":"Eighth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":146,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":160,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md"},"signs":{"attestation_ref":"","digest":"94b6d2995b045005e7fdd093526bbb84244aa5beb415b71855ccf9ced1120c22","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7bf713796ed0fa8af128c45ed37de9a2395bc59c0d45c1894cef4170a6476ce6","git_blob_id":"39b9990382d6dcc58cac1970e7f9309c9b608a3b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:3b8f2fbc30d3eceb8d4fb01d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","repo":"aoa-techniques","size_bytes":8103,"version_id":"aoa:aoa-techniques:artifact-version:4fecb15a76652a4e9e17d7b2"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-diagnosis-repair-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#landed-diagnosis-repair-pilot-review","title":"Landed Diagnosis-Repair Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-fourth-pilot-proved","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#what-the-fourth-pilot-proved","title":"What The Fourth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"fifth-shelf-choice","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#fifth-shelf-choice","title":"Fifth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":139,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md"},"signs":{"attestation_ref":"","digest":"7bf713796ed0fa8af128c45ed37de9a2395bc59c0d45c1894cef4170a6476ce6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0de6fe97c9901c26f3dc952da00a2acdcd2832583c91559ef7d8209d884b0d28","git_blob_id":"5baca6ed4509cef7c2f356670efd790d72621648","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:662725eb7f01f8e966e5813a","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","repo":"aoa-techniques","size_bytes":9264,"version_id":"aoa:aoa-techniques:artifact-version:7da2ddeac36ceb42cb564e4e"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-docs-boundary-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#landed-docs-boundary-pilot-review","title":"Landed Docs-Boundary Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-seventh-pilot-proved","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#what-the-seventh-pilot-proved","title":"What The Seventh Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"eighth-shelf-choice","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#eighth-shelf-choice","title":"Eighth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":146,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":160,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md"},"signs":{"attestation_ref":"","digest":"0de6fe97c9901c26f3dc952da00a2acdcd2832583c91559ef7d8209d884b0d28","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"361dd6be53218868a60a75d1c41d429bce89c9d2f8cc2d3b40b0b3056a9a7091","git_blob_id":"b6650a52575ac78f3d74c0fa6feacb68b141c70f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ed41d63e9981165c3bbc8857","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:ed41d63e9981165c3bbc8857","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","repo":"aoa-techniques","size_bytes":9691,"version_id":"aoa:aoa-techniques:artifact-version:e839cb962a99f9617fb8ce41"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-donor-harvest-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#landed-donor-harvest-pilot-review","title":"Landed Donor-Harvest Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-nineteenth-pilot-proved","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#what-the-nineteenth-pilot-proved","title":"What The Nineteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"twentieth-shelf-choice","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#twentieth-shelf-choice","title":"Twentieth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":138,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":155,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-donor-harvest-pilot-review.md"},"signs":{"attestation_ref":"","digest":"361dd6be53218868a60a75d1c41d429bce89c9d2f8cc2d3b40b0b3056a9a7091","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c1165ed6258054eb957ab49918add9ccb6962ba7fd22a93fc1a228c5fcd97a38","git_blob_id":"c65835def03940e4f2d40bb67ffa06f0a1533325","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","repo":"aoa-techniques","size_bytes":10662,"version_id":"aoa:aoa-techniques:artifact-version:9dc562b50bf6f9bdcf55b309"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-evaluation-chain-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#landed-evaluation-chain-pilot-review","title":"Landed Evaluation-Chain Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-twelfth-pilot-proved","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#what-the-twelfth-pilot-proved","title":"What The Twelfth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":94,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"thirteenth-shelf-choice","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#thirteenth-shelf-choice","title":"Thirteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":148,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":166,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md"},"signs":{"attestation_ref":"","digest":"c1165ed6258054eb957ab49918add9ccb6962ba7fd22a93fc1a228c5fcd97a38","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0f4c69a800e9679c0a8a85a19bbd0957e714a5a6f79e0b95ac47b572d870aa67","git_blob_id":"38a16a203288dc26c1bb6e08e2c6d3bb6407c15d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","repo":"aoa-techniques","size_bytes":8004,"version_id":"aoa:aoa-techniques:artifact-version:fb7d401dfccc5a54308ae751"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-handoff-continuation-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#landed-handoff-continuation-pilot-review","title":"Landed Handoff-Continuation Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":56,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-second-pilot-proved","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#what-the-second-pilot-proved","title":"What The Second Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":82,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"third-shelf-choice","level":2,"line":93,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#third-shelf-choice","title":"Third Shelf Choice"},{"anchor":"stop-lines","level":2,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":131,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md"},"signs":{"attestation_ref":"","digest":"0f4c69a800e9679c0a8a85a19bbd0957e714a5a6f79e0b95ac47b572d870aa67","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"69264fcf2439cdebcd52885eb148f5ecd49703c663825f55b6a9e8ec7e5f0fc3","git_blob_id":"1518db9b4b3be797474e8e65b9c167f1f81723c0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","repo":"aoa-techniques","size_bytes":11740,"version_id":"aoa:aoa-techniques:artifact-version:32d79caddf8360b323d6dd8f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-history-artifacts-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#landed-history-artifacts-pilot-review","title":"Landed History-Artifacts Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-fourteenth-pilot-proved","level":2,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#what-the-fourteenth-pilot-proved","title":"What The Fourteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":96,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"fifteenth-shelf-choice","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#fifteenth-shelf-choice","title":"Fifteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":157,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":176,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md"},"signs":{"attestation_ref":"","digest":"69264fcf2439cdebcd52885eb148f5ecd49703c663825f55b6a9e8ec7e5f0fc3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2e66e32fe075f5d50f80f3035f4a7bf44f2eae975e8f5f91f0f7de668a7f4fae","git_blob_id":"643ee8eaed93d26abd3a7f3100945e30723e57bb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","repo":"aoa-techniques","size_bytes":10002,"version_id":"aoa:aoa-techniques:artifact-version:e58e0b7d44be0c1a06e5337e"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-instruction-surface-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#landed-instruction-surface-pilot-review","title":"Landed Instruction-Surface Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":62,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-fifth-pilot-proved","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#what-the-fifth-pilot-proved","title":"What The Fifth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"sixth-shelf-choice","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#sixth-shelf-choice","title":"Sixth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":150,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":165,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md"},"signs":{"attestation_ref":"","digest":"2e66e32fe075f5d50f80f3035f4a7bf44f2eae975e8f5f91f0f7de668a7f4fae","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"859e38b8bb12800863e6cf04edbcafb2abd3d42c6ab22aa8672501394ad71967","git_blob_id":"997883d51f106a77933f4173cc47a86eb08349c9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","repo":"aoa-techniques","size_bytes":10121,"version_id":"aoa:aoa-techniques:artifact-version:b51dd116acf02094ce2f7a15"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-intent-chain-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#landed-intent-chain-pilot-review","title":"Landed Intent-Chain Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-seventeenth-pilot-proved","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#what-the-seventeenth-pilot-proved","title":"What The Seventeenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"eighteenth-shelf-choice","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#eighteenth-shelf-choice","title":"Eighteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md"},"signs":{"attestation_ref":"","digest":"859e38b8bb12800863e6cf04edbcafb2abd3d42c6ab22aa8672501394ad71967","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3fd432b492a458c3cfd7a67f8892f95fdaa198aca78062413719631f07ceeff5","git_blob_id":"038dbbe01c8955f8eb75a8665b6e8a4c02b09855","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","repo":"aoa-techniques","size_bytes":10347,"version_id":"aoa:aoa-techniques:artifact-version:9d649fd23469c0ef67d765dc"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-kag-source-lift-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#landed-kag-source-lift-pilot-review","title":"Landed Kag-Source-Lift Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-sixth-pilot-proved","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#what-the-sixth-pilot-proved","title":"What The Sixth Pilot Proved"},{"anchor":"kag-name-edge","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#kag-name-edge","title":"KAG Name Edge"},{"anchor":"remaining-weaknesses","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"seventh-shelf-choice","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#seventh-shelf-choice","title":"Seventh Shelf Choice"},{"anchor":"stop-lines","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":170,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md"},"signs":{"attestation_ref":"","digest":"3fd432b492a458c3cfd7a67f8892f95fdaa198aca78062413719631f07ceeff5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3a0264d4534fc32835aa8e9e4a753a2b3d91fa3af24e30a8b796d90a23414975","git_blob_id":"fee642017101b31dccd95cb5b841faefd1d94597","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","repo":"aoa-techniques","size_bytes":7684,"version_id":"aoa:aoa-techniques:artifact-version:df0fa434acbeb45feb9d7728"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-media-ingest-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#landed-media-ingest-pilot-review","title":"Landed Media-Ingest Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-third-pilot-proved","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#what-the-third-pilot-proved","title":"What The Third Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"fourth-shelf-choice","level":2,"line":96,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#fourth-shelf-choice","title":"Fourth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":119,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":130,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md"},"signs":{"attestation_ref":"","digest":"3a0264d4534fc32835aa8e9e4a753a2b3d91fa3af24e30a8b796d90a23414975","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fc63dceb1fa3d0762c08ea646e50e95911bf5014b7713c15c1dbcf3ca4fefb4b","git_blob_id":"2b1085270de95de67c59c5cad34936f887732a61","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:8e28e52f4f208bfa61ec9fb9","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","repo":"aoa-techniques","size_bytes":10645,"version_id":"aoa:aoa-techniques:artifact-version:3e45ef9b89a32c97722449da"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-evaluation-chain-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#landed-evaluation-chain-pilot-review","title":"Landed Evaluation-Chain Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-twelfth-pilot-proved","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#what-the-twelfth-pilot-proved","title":"What The Twelfth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":94,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"thirteenth-shelf-choice","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#thirteenth-shelf-choice","title":"Thirteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":148,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":166,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md"},"signs":{"attestation_ref":"","digest":"fc63dceb1fa3d0762c08ea646e50e95911bf5014b7713c15c1dbcf3ca4fefb4b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1d1aca7fad9880eae825d967d8bd9e0971b2e058628900b6c7e4da6b10ca01d2","git_blob_id":"f17a6f962f9f4eff158fce5d2b394501be2ac926","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:798bde1ba0b2b1b3388ebb53","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","repo":"aoa-techniques","size_bytes":7987,"version_id":"aoa:aoa-techniques:artifact-version:e7fa5f4ae19b14657413a287"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-handoff-continuation-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#landed-handoff-continuation-pilot-review","title":"Landed Handoff-Continuation Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":56,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-second-pilot-proved","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#what-the-second-pilot-proved","title":"What The Second Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":82,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"third-shelf-choice","level":2,"line":93,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#third-shelf-choice","title":"Third Shelf Choice"},{"anchor":"stop-lines","level":2,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":131,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md"},"signs":{"attestation_ref":"","digest":"1d1aca7fad9880eae825d967d8bd9e0971b2e058628900b6c7e4da6b10ca01d2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e01b0438cd29418b269a4271ff3dfc5d7fa4daf64f93bb03395c8df6d21b2293","git_blob_id":"8919b5b348d96f17ccc9bbd20fc7eb3a8a03cb10","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:dde9378751d78e4abe16be20","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","repo":"aoa-techniques","size_bytes":11723,"version_id":"aoa:aoa-techniques:artifact-version:c8d96a62e66493f26038d570"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-history-artifacts-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#landed-history-artifacts-pilot-review","title":"Landed History-Artifacts Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-fourteenth-pilot-proved","level":2,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#what-the-fourteenth-pilot-proved","title":"What The Fourteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":96,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"fifteenth-shelf-choice","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#fifteenth-shelf-choice","title":"Fifteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":157,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":176,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md"},"signs":{"attestation_ref":"","digest":"e01b0438cd29418b269a4271ff3dfc5d7fa4daf64f93bb03395c8df6d21b2293","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"57472290306e66fce766c46450557414ee04ef33f1e6af3137be49ab1ad02448","git_blob_id":"45cb56cc68f99375952d7f5ff919ed4a262fc65e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:f809a0f65ad77c79fe4f6bd7","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","repo":"aoa-techniques","size_bytes":9985,"version_id":"aoa:aoa-techniques:artifact-version:9304c17929655663ce11515d"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-instruction-surface-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#landed-instruction-surface-pilot-review","title":"Landed Instruction-Surface Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":62,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-fifth-pilot-proved","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#what-the-fifth-pilot-proved","title":"What The Fifth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"sixth-shelf-choice","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#sixth-shelf-choice","title":"Sixth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":150,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":165,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md"},"signs":{"attestation_ref":"","digest":"57472290306e66fce766c46450557414ee04ef33f1e6af3137be49ab1ad02448","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f3177aaa3110c396c73066ceba8af6b069accb1b850e86131c4f824b567d3182","git_blob_id":"bbac6129615b985d5fb3c92400be5a5477356554","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:3c9155b0206084f086c2c3d3","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","repo":"aoa-techniques","size_bytes":10104,"version_id":"aoa:aoa-techniques:artifact-version:1d964184e3c904b8002951c8"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-intent-chain-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#landed-intent-chain-pilot-review","title":"Landed Intent-Chain Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-seventeenth-pilot-proved","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#what-the-seventeenth-pilot-proved","title":"What The Seventeenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"eighteenth-shelf-choice","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#eighteenth-shelf-choice","title":"Eighteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md"},"signs":{"attestation_ref":"","digest":"f3177aaa3110c396c73066ceba8af6b069accb1b850e86131c4f824b567d3182","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9dca2eaed91c55471f9de083a25c3021485a88209f3a64692f95c0808239888f","git_blob_id":"c059d870caf4cec38f302b5303609d0889eaeebf","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:8df7aa087bad1770555d524d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","repo":"aoa-techniques","size_bytes":10330,"version_id":"aoa:aoa-techniques:artifact-version:09c0d5ba8fe2ecd25ae39bb2"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-kag-source-lift-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#landed-kag-source-lift-pilot-review","title":"Landed Kag-Source-Lift Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-sixth-pilot-proved","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#what-the-sixth-pilot-proved","title":"What The Sixth Pilot Proved"},{"anchor":"kag-name-edge","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#kag-name-edge","title":"KAG Name Edge"},{"anchor":"remaining-weaknesses","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"seventh-shelf-choice","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#seventh-shelf-choice","title":"Seventh Shelf Choice"},{"anchor":"stop-lines","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":170,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md"},"signs":{"attestation_ref":"","digest":"9dca2eaed91c55471f9de083a25c3021485a88209f3a64692f95c0808239888f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"91592e5879bf7a11976ceb94071e325a1e3fc75b58f590c18955b2fa7b44c0b4","git_blob_id":"7729310f5d03706fbd95492ba294567b05375e2b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:0eec89a44e3101187ce207e5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","repo":"aoa-techniques","size_bytes":7667,"version_id":"aoa:aoa-techniques:artifact-version:62c67e854b1f4f6401a9a6f1"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-media-ingest-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#landed-media-ingest-pilot-review","title":"Landed Media-Ingest Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-third-pilot-proved","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#what-the-third-pilot-proved","title":"What The Third Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"fourth-shelf-choice","level":2,"line":96,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#fourth-shelf-choice","title":"Fourth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":119,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":130,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md"},"signs":{"attestation_ref":"","digest":"91592e5879bf7a11976ceb94071e325a1e3fc75b58f590c18955b2fa7b44c0b4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"692c44af4a48c49e04602b01cbad37cbeecc4459495828accf1a8456357459d9","git_blob_id":"bd40afb420f29461a9ec2ac9ccc7072a810eac15","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a97d8942d149af1b82453153","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:a97d8942d149af1b82453153","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","repo":"aoa-techniques","size_bytes":14467,"version_id":"aoa:aoa-techniques:artifact-version:eef185dbcbb2843d6dfb7bfd"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-owner-truth-closeout-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#landed-owner-truth-closeout-pilot-review","title":"Landed Owner-Truth-Closeout Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":75,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-twenty-fourth-pilot-proved","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#what-the-twenty-fourth-pilot-proved","title":"What The Twenty-Fourth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"twenty-fifth-shelf-choice","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#twenty-fifth-shelf-choice","title":"Twenty-Fifth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":171,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":190,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-owner-truth-closeout-pilot-review.md"},"signs":{"attestation_ref":"","digest":"692c44af4a48c49e04602b01cbad37cbeecc4459495828accf1a8456357459d9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0d52bc6272b47303a90a2ce2267e417ed6eee4091e5e8d60ea7828d99ab86385","git_blob_id":"661900fe46a5e57aadf9f585156401a9c398c1f3","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:406d0a2cdc8e2dd75bccb45d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:406d0a2cdc8e2dd75bccb45d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md","repo":"aoa-techniques","size_bytes":4777,"version_id":"aoa:aoa-techniques:artifact-version:952adec99a2170847b2f3071"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-practice-adoption-lifecycle-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md#landed-practice-adoption-lifecycle-pilot-review","title":"Landed Practice-Adoption-Lifecycle Pilot Review"},{"anchor":"verdict","level":2,"line":24,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md#verdict","title":"Verdict"},{"anchor":"post-migration-evidence","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md#post-migration-evidence","title":"Post-Migration Evidence"},{"anchor":"what-improved","level":2,"line":51,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md#what-improved","title":"What Improved"},{"anchor":"automation-split-accounting","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md#automation-split-accounting","title":"Automation Split Accounting"},{"anchor":"watch-lines","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md#watch-lines","title":"Watch Lines"},{"anchor":"next-honest-move","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-practice-adoption-lifecycle-pilot-review.md"},"signs":{"attestation_ref":"","digest":"0d52bc6272b47303a90a2ce2267e417ed6eee4091e5e8d60ea7828d99ab86385","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"87c57a1ca5295213ef5946d6a8e5b2294f92edcd3b8db99d2911e8f9ec23ffe3","git_blob_id":"39e15d6fe59f68cc5c4dcd1debd1f8d414964471","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b8752e2dfab43b33fff12bfc","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:b8752e2dfab43b33fff12bfc","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md","repo":"aoa-techniques","size_bytes":3510,"version_id":"aoa:aoa-techniques:artifact-version:2ddf8f0d8602b976506906e8"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-promotion-boundary-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md#landed-promotion-boundary-pilot-review","title":"Landed Promotion-Boundary Pilot Review"},{"anchor":"verdict","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md#verdict","title":"Verdict"},{"anchor":"post-migration-evidence","level":2,"line":35,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md#post-migration-evidence","title":"Post-Migration Evidence"},{"anchor":"what-improved","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md#what-improved","title":"What Improved"},{"anchor":"watch-lines","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md#watch-lines","title":"Watch Lines"},{"anchor":"next-honest-move","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-promotion-boundary-pilot-review.md"},"signs":{"attestation_ref":"","digest":"87c57a1ca5295213ef5946d6a8e5b2294f92edcd3b8db99d2911e8f9ec23ffe3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c7e8308d9b081a1f13a887efe35b599c4631ac8e6e19c43817d1581d128b5dc2","git_blob_id":"2a4f93d4dc6f70b0fb67464948a99a5f9b8cfd71","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","repo":"aoa-techniques","size_bytes":12173,"version_id":"aoa:aoa-techniques:artifact-version:39db7d76bb01f399ca086c29"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-published-summary-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#landed-published-summary-pilot-review","title":"Landed Published-Summary Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-thirteenth-pilot-proved","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#what-the-thirteenth-pilot-proved","title":"What The Thirteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"fourteenth-shelf-choice","level":2,"line":117,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#fourteenth-shelf-choice","title":"Fourteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":161,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md"},"signs":{"attestation_ref":"","digest":"c7e8308d9b081a1f13a887efe35b599c4631ac8e6e19c43817d1581d128b5dc2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6689e5533962862e42f1a11af7da5ac1233a1d1dbc549cc4850947ebae8225bf","git_blob_id":"ddcde3e9b1e93879926e7b32df3d43844e30d739","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","repo":"aoa-techniques","size_bytes":9514,"version_id":"aoa:aoa-techniques:artifact-version:118d689afec79cc1c5ecd09d"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-ready-work-graphs-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#landed-ready-work-graphs-pilot-review","title":"Landed Ready-Work-Graphs Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":59,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-sixteenth-pilot-proved","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#what-the-sixteenth-pilot-proved","title":"What The Sixteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"seventeenth-shelf-choice","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#seventeenth-shelf-choice","title":"Seventeenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":159,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md"},"signs":{"attestation_ref":"","digest":"6689e5533962862e42f1a11af7da5ac1233a1d1dbc549cc4850947ebae8225bf","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bb52bfe732a869da475cb05e2c2d09f71c19d51b5613de5a593b22083c317fd1","git_blob_id":"4f11a634efe6d9dc04b1b6017dad92e5579d4c6a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","repo":"aoa-techniques","size_bytes":6603,"version_id":"aoa:aoa-techniques:artifact-version:76818b8e8b338d4f5008d463"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-review-compaction-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#landed-review-compaction-pilot-review","title":"Landed Review-Compaction Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":48,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-pilot-proved","level":2,"line":59,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#what-the-pilot-proved","title":"What The Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":72,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"next-shelf-choice","level":2,"line":82,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#next-shelf-choice","title":"Next Shelf Choice"},{"anchor":"stop-lines","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":116,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md"},"signs":{"attestation_ref":"","digest":"bb52bfe732a869da475cb05e2c2d09f71c19d51b5613de5a593b22083c317fd1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2ab73bc37df37241234b4abe64e5f43c99bfe465e473e6715ff92003be1c005b","git_blob_id":"8dbff8d7f2b0f8e462e8bb48440d3eab2d08d843","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:094ed56e0ed651d3bb7231fd","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","repo":"aoa-techniques","size_bytes":12156,"version_id":"aoa:aoa-techniques:artifact-version:4564402560b67fcc2bd22a0f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-published-summary-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#landed-published-summary-pilot-review","title":"Landed Published-Summary Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-thirteenth-pilot-proved","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#what-the-thirteenth-pilot-proved","title":"What The Thirteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"fourteenth-shelf-choice","level":2,"line":117,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#fourteenth-shelf-choice","title":"Fourteenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":161,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":179,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md"},"signs":{"attestation_ref":"","digest":"2ab73bc37df37241234b4abe64e5f43c99bfe465e473e6715ff92003be1c005b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3365169d47987a78b40dbd810103a9483e8a8da9523bdd3ab918346c386ad3dd","git_blob_id":"79484d5028e6c115aa572f94c7de4c7b02c6dcff","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:d6b41de903a2e78cafa39669","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","repo":"aoa-techniques","size_bytes":9497,"version_id":"aoa:aoa-techniques:artifact-version:388904ffc4ca7927c7648e81"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-ready-work-graphs-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#landed-ready-work-graphs-pilot-review","title":"Landed Ready-Work-Graphs Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":59,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-sixteenth-pilot-proved","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#what-the-sixteenth-pilot-proved","title":"What The Sixteenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"seventeenth-shelf-choice","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#seventeenth-shelf-choice","title":"Seventeenth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":159,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md"},"signs":{"attestation_ref":"","digest":"3365169d47987a78b40dbd810103a9483e8a8da9523bdd3ab918346c386ad3dd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ce6c71bd9745a92ac845b85ce5f86fa6f9e8bd3b174226e33e42b4e5fde6b1f3","git_blob_id":"6164286216b81a903eb01a49d41269d9568c6c75","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:a81684b9b66d9cf6de13d649","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","repo":"aoa-techniques","size_bytes":6586,"version_id":"aoa:aoa-techniques:artifact-version:abec45c7e17347227047cfdc"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-review-compaction-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#landed-review-compaction-pilot-review","title":"Landed Review-Compaction Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":48,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-pilot-proved","level":2,"line":59,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#what-the-pilot-proved","title":"What The Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":72,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"next-shelf-choice","level":2,"line":82,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#next-shelf-choice","title":"Next Shelf Choice"},{"anchor":"stop-lines","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":116,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md"},"signs":{"attestation_ref":"","digest":"ce6c71bd9745a92ac845b85ce5f86fa6f9e8bd3b174226e33e42b4e5fde6b1f3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3fff1a0667a66fbb8962779d9067e66c864e9f1c16f0c049f1e16f917f46520b","git_blob_id":"89fd8eb25fe565c798a0c92a07c424ec5800b7d0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:31a6a3ce9244beba872569d3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:31a6a3ce9244beba872569d3","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md","repo":"aoa-techniques","size_bytes":11245,"version_id":"aoa:aoa-techniques:artifact-version:5215ddafe6b9b8ba79a54686"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-review-evidence-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#landed-review-evidence-pilot-review","title":"Landed Review-Evidence Pilot Review"},{"anchor":"verdict","level":2,"line":22,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-twenty-second-pilot-proved","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#what-the-twenty-second-pilot-proved","title":"What The Twenty-Second Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"twenty-third-shelf-choice","level":2,"line":112,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#twenty-third-shelf-choice","title":"Twenty-Third Shelf Choice"},{"anchor":"stop-lines","level":2,"line":151,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":168,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-evidence-pilot-review.md"},"signs":{"attestation_ref":"","digest":"3fff1a0667a66fbb8962779d9067e66c864e9f1c16f0c049f1e16f917f46520b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"df30144161d65343e4bf0612bf6e65b1c11ef0d8eb3edc24f458a784c6956511","git_blob_id":"d603c49c70f8b7f5bfa6cb0707a0dccced9843b5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d1724b1d0fcb3bd4e94adfd5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:d1724b1d0fcb3bd4e94adfd5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md","repo":"aoa-techniques","size_bytes":12233,"version_id":"aoa:aoa-techniques:artifact-version:a18ac66e8962af8114eea78e"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-runtime-truth-lifecycle-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#landed-runtime-truth-lifecycle-pilot-review","title":"Landed Runtime-Truth-Lifecycle Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-twenty-third-pilot-proved","level":2,"line":80,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#what-the-twenty-third-pilot-proved","title":"What The Twenty-Third Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"twenty-fourth-shelf-choice","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#twenty-fourth-shelf-choice","title":"Twenty-Fourth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":153,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":171,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-runtime-truth-lifecycle-pilot-review.md"},"signs":{"attestation_ref":"","digest":"df30144161d65343e4bf0612bf6e65b1c11ef0d8eb3edc24f458a784c6956511","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d8b0fce9b5596e6c853317ddf2329d536274be1dcdc189e5daf00dbc519e972d","git_blob_id":"caba45d3204cfdbd9f9abaf9365bfd42963c0fa1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","repo":"aoa-techniques","size_bytes":9681,"version_id":"aoa:aoa-techniques:artifact-version:4832f63c1ae95862a9bfe332"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-skill-discovery-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#landed-skill-discovery-pilot-review","title":"Landed Skill-Discovery Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-tenth-pilot-proved","level":2,"line":75,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#what-the-tenth-pilot-proved","title":"What The Tenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":92,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"eleventh-shelf-choice","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#eleventh-shelf-choice","title":"Eleventh Shelf Choice"},{"anchor":"stop-lines","level":2,"line":147,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":162,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md"},"signs":{"attestation_ref":"","digest":"d8b0fce9b5596e6c853317ddf2329d536274be1dcdc189e5daf00dbc519e972d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9c04accb2d92e021c5334e9b24dc2de6b1480e1ded34abcf84953592d324c42a","git_blob_id":"a29f15b0a163404a54e3953081117c15f84a6a63","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","repo":"aoa-techniques","size_bytes":9169,"version_id":"aoa:aoa-techniques:artifact-version:5d6a870e40b38b9aaf4db5ae"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-skill-support-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#landed-skill-support-pilot-review","title":"Landed Skill-Support Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-eleventh-pilot-proved","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#what-the-eleventh-pilot-proved","title":"What The Eleventh Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"twelfth-shelf-choice","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#twelfth-shelf-choice","title":"Twelfth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md"},"signs":{"attestation_ref":"","digest":"9c04accb2d92e021c5334e9b24dc2de6b1480e1ded34abcf84953592d324c42a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3a2c6c5337139cefc16df79972f2dee84af1f6e6649143c17fa483eb18b9404c","git_blob_id":"0bdc11d99bd4b2f29b55a1814a69b4403fdf6e4a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:a1c927da17d570f44a65a6c5","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","repo":"aoa-techniques","size_bytes":9664,"version_id":"aoa:aoa-techniques:artifact-version:7134c37012605bbccf029f96"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-skill-discovery-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#landed-skill-discovery-pilot-review","title":"Landed Skill-Discovery Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-tenth-pilot-proved","level":2,"line":75,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#what-the-tenth-pilot-proved","title":"What The Tenth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":92,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"eleventh-shelf-choice","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#eleventh-shelf-choice","title":"Eleventh Shelf Choice"},{"anchor":"stop-lines","level":2,"line":147,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":162,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md"},"signs":{"attestation_ref":"","digest":"3a2c6c5337139cefc16df79972f2dee84af1f6e6649143c17fa483eb18b9404c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a4093dd20c27c4910b20168075830a915d1d7abac6ddd645164c51f662628558","git_blob_id":"1ba8629313b3db9a032efbe6c46e166b4f8e9d88","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:b7567a91dd210d6a04eff7a8","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","repo":"aoa-techniques","size_bytes":9152,"version_id":"aoa:aoa-techniques:artifact-version:e45eecf01a6e379c9ec44e92"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-skill-support-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#landed-skill-support-pilot-review","title":"Landed Skill-Support Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-eleventh-pilot-proved","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#what-the-eleventh-pilot-proved","title":"What The Eleventh Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"twelfth-shelf-choice","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#twelfth-shelf-choice","title":"Twelfth Shelf Choice"},{"anchor":"stop-lines","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md"},"signs":{"attestation_ref":"","digest":"a4093dd20c27c4910b20168075830a915d1d7abac6ddd645164c51f662628558","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"22b974e104379a27c0a2ee9ca404bd687358565e9ac5e0e6d51def2b580d1b3a","git_blob_id":"bc12d8119d2128aadf610f9036888b2968ecae5c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:01a70f8ddd540893b5a82d72","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","logical_id":"aoa:aoa-techniques:artifact:01a70f8ddd540893b5a82d72","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","repo":"aoa-techniques","size_bytes":6976,"version_id":"aoa:aoa-techniques:artifact-version:f35e61499b83dbc317f20daf"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"landed-tool-gateway-pilot-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#landed-tool-gateway-pilot-review","title":"Landed Tool-Gateway Pilot Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#sources-read","title":"Sources Read"},{"anchor":"landed-shape-read","level":2,"line":56,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#landed-shape-read","title":"Landed Shape Read"},{"anchor":"what-the-twenty-eighth-pilot-proved","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#what-the-twenty-eighth-pilot-proved","title":"What The Twenty-Eighth Pilot Proved"},{"anchor":"remaining-weaknesses","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"whole-tree-closeout-choice","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#whole-tree-closeout-choice","title":"Whole-Tree Closeout Choice"},{"anchor":"stop-lines","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":123,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/landed-tool-gateway-pilot-review.md"},"signs":{"attestation_ref":"","digest":"22b974e104379a27c0a2ee9ca404bd687358565e9ac5e0e6d51def2b580d1b3a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"47c73a4708c0369de8ba74cbc243e041d1979de29aee757f04f47b7942f165e8","git_blob_id":"c2d1311ea60d9eb139b48e1fc5013a82cc108f0b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:183461d99a40009516486c0e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:183461d99a40009516486c0e","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":10414,"version_id":"aoa:aoa-techniques:artifact-version:230659517cd83870e30aebda"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"media-ingest-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#media-ingest-direct-read-migration-review","title":"Media-Ingest Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-read","level":2,"line":69,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"telegram-edge","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#telegram-edge","title":"Telegram Edge"},{"anchor":"why-not-keep-this-as-agent-workflows","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#why-not-keep-this-as-agent-workflows","title":"Why Not Keep This As Agent Workflows"},{"anchor":"pilot-scope","level":2,"line":121,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":172,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"47c73a4708c0369de8ba74cbc243e041d1979de29aee757f04f47b7942f165e8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"53d8ac63f6d21d3d5bc0c420c055c6713ecacaa5c4f0f38f5b014adb23bdf99a","git_blob_id":"d8c7db1318ad96409530a13af758cb9739195437","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":8559,"version_id":"aoa:aoa-techniques:artifact-version:fb9423a8cc10473e490144a5"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-boundary-bridge-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#owner-boundary-bridge-long-pass-closeout-ledger","title":"Owner-Boundary Bridge Long-Pass Closeout Ledger"},{"anchor":"verdict","level":2,"line":15,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"closeout-stack","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#closeout-stack","title":"Closeout Stack"},{"anchor":"what-this-proves","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#what-this-proves","title":"What This Proves"},{"anchor":"what-this-does-not-prove","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#what-this-does-not-prove","title":"What This Does Not Prove"},{"anchor":"held-owner-boundary-pressure","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#held-owner-boundary-pressure","title":"Held Owner-Boundary Pressure"},{"anchor":"relation-repair-boundary","level":2,"line":100,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#relation-repair-boundary","title":"Relation Repair Boundary"},{"anchor":"temporary-plan-disposition","level":2,"line":116,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#temporary-plan-disposition","title":"Temporary Plan Disposition"},{"anchor":"next-reform-lane","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#next-reform-lane","title":"Next Reform Lane"},{"anchor":"unauthorized-changes-not-made","level":2,"line":151,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#unauthorized-changes-not-made","title":"Unauthorized Changes Not Made"},{"anchor":"validation","level":2,"line":162,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"53d8ac63f6d21d3d5bc0c420c055c6713ecacaa5c4f0f38f5b014adb23bdf99a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2bf7d48674e975d523c038f4ebc47ae2c8cb55b37fff60ec3a2a4a0ab58a3ad7","git_blob_id":"2625ddc6d0aeb9c11b57d2ba6d18d9a244818323","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/TEMP_OWNER_BOUNDARY_BRIDGE_LONG_PASS_PLAN.md","logical_id":"aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md","repo":"aoa-techniques","size_bytes":20033,"version_id":"aoa:aoa-techniques:artifact-version:371c61e801b24a616d98a50a"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"temporary-owner-boundary-bridge-long-pass-plan","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#temporary-owner-boundary-bridge-long-pass-plan","title":"Temporary Owner-Boundary Bridge Long-Pass Plan"},{"anchor":"purpose","level":2,"line":13,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#purpose","title":"Purpose"},{"anchor":"risk-and-mutation-gate","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#risk-and-mutation-gate","title":"Risk And Mutation Gate"},{"anchor":"owner-stop-lines","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#owner-stop-lines","title":"Owner Stop-Lines"},{"anchor":"repair-gate","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#repair-gate","title":"Repair Gate"},{"anchor":"per-shelf-rhythm","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#per-shelf-rhythm","title":"Per-Shelf Rhythm"},{"anchor":"phase-status","level":2,"line":146,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#phase-status","title":"Phase Status"},{"anchor":"calibration-pilots-accounted-set","level":2,"line":161,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#calibration-pilots-accounted-set","title":"Calibration Pilots Accounted Set"},{"anchor":"wave-a-owner-facing-governance-and-proof","level":2,"line":176,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-a-owner-facing-governance-and-proof","title":"Wave A: Owner-Facing Governance And Proof"},{"anchor":"wave-b-proof-publication-and-review-evidence","level":2,"line":215,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-b-proof-publication-and-review-evidence","title":"Wave B: Proof, Publication, And Review Evidence"},{"anchor":"wave-c-skill-instruction-and-capability-edges","level":2,"line":247,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-c-skill-instruction-and-capability-edges","title":"Wave C: Skill, Instruction, And Capability Edges"},{"anchor":"wave-d-execution-and-runtime-adjacent-authority","level":2,"line":297,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-d-execution-and-runtime-adjacent-authority","title":"Wave D: Execution And Runtime-Adjacent Authority"},{"anchor":"wave-e-continuity-checkpoint-recovery-and-donor-edges","level":2,"line":335,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-e-continuity-checkpoint-recovery-and-donor-edges","title":"Wave E: Continuity, Checkpoint, Recovery, And Donor Edges"},{"anchor":"wave-f-knowledge-ingest-history-and-tool-use","level":2,"line":383,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-f-knowledge-ingest-history-and-tool-use","title":"Wave F: Knowledge, Ingest, History, And Tool-Use"},{"anchor":"residual-cross-wave-scan","level":2,"line":429,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#residual-cross-wave-scan","title":"Residual Cross-Wave Scan"},{"anchor":"closeout-ledger","level":2,"line":460,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#closeout-ledger","title":"Closeout Ledger"},{"anchor":"useful-detours-to-capture-not-lose","level":2,"line":483,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#useful-detours-to-capture-not-lose","title":"Useful Detours To Capture, Not Lose"},{"anchor":"first-action-after-this-plan","level":2,"line":501,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#first-action-after-this-plan","title":"First Action After This Plan"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md"},"signs":{"attestation_ref":"","digest":"2bf7d48674e975d523c038f4ebc47ae2c8cb55b37fff60ec3a2a4a0ab58a3ad7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d48775d5f3ffa6ccb41de4d118fb650b12772d042dc60f34223dea5d1310e15e","git_blob_id":"b7c2cb48a1f0c54d58d8bea7f84a693e35e60b5e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:183461d99a40009516486c0e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:183461d99a40009516486c0e","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":10397,"version_id":"aoa:aoa-techniques:artifact-version:6d6d79bb62761c0968874609"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"media-ingest-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#media-ingest-direct-read-migration-review","title":"Media-Ingest Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"boundary-read","level":2,"line":69,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#boundary-read","title":"Boundary Read"},{"anchor":"telegram-edge","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#telegram-edge","title":"Telegram Edge"},{"anchor":"why-not-keep-this-as-agent-workflows","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#why-not-keep-this-as-agent-workflows","title":"Why Not Keep This As Agent Workflows"},{"anchor":"pilot-scope","level":2,"line":121,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":172,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"d48775d5f3ffa6ccb41de4d118fb650b12772d042dc60f34223dea5d1310e15e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"beaf6b6d0ab31069e8c2a154a3350f8370a7d7ed09bcc5967be720dd1905a664","git_blob_id":"9cd77c5625a228626667465f3d679c94ba01e591","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:2c6239e663626d524b83dc48","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":8506,"version_id":"aoa:aoa-techniques:artifact-version:57a9ec852e3a5d24598dd207"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-boundary-bridge-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#owner-boundary-bridge-long-pass-closeout-ledger","title":"Owner-Boundary Bridge Long-Pass Closeout Ledger"},{"anchor":"verdict","level":2,"line":15,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"closeout-stack","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#closeout-stack","title":"Closeout Stack"},{"anchor":"what-this-proves","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#what-this-proves","title":"What This Proves"},{"anchor":"what-this-does-not-prove","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#what-this-does-not-prove","title":"What This Does Not Prove"},{"anchor":"held-owner-boundary-pressure","level":2,"line":85,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#held-owner-boundary-pressure","title":"Held Owner-Boundary Pressure"},{"anchor":"relation-repair-boundary","level":2,"line":100,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#relation-repair-boundary","title":"Relation Repair Boundary"},{"anchor":"temporary-plan-disposition","level":2,"line":116,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#temporary-plan-disposition","title":"Temporary Plan Disposition"},{"anchor":"next-reform-lane","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#next-reform-lane","title":"Next Reform Lane"},{"anchor":"unauthorized-changes-not-made","level":2,"line":151,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#unauthorized-changes-not-made","title":"Unauthorized Changes Not Made"},{"anchor":"validation","level":2,"line":162,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"beaf6b6d0ab31069e8c2a154a3350f8370a7d7ed09bcc5967be720dd1905a664","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5625a74c7f40b24e835a2c5837aaed63c3c2ed619dc3f3c25f323ae2037efb11","git_blob_id":"2489a98065dc83e7b39ac03f98f85547527254da","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/TEMP_OWNER_BOUNDARY_BRIDGE_LONG_PASS_PLAN.md","logical_id":"aoa:aoa-techniques:artifact:77ae89a437f7af629c753dda","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md","repo":"aoa-techniques","size_bytes":19991,"version_id":"aoa:aoa-techniques:artifact-version:dbb762d013be9739389f337f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"temporary-owner-boundary-bridge-long-pass-plan","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#temporary-owner-boundary-bridge-long-pass-plan","title":"Temporary Owner-Boundary Bridge Long-Pass Plan"},{"anchor":"purpose","level":2,"line":13,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#purpose","title":"Purpose"},{"anchor":"risk-and-mutation-gate","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#risk-and-mutation-gate","title":"Risk And Mutation Gate"},{"anchor":"owner-stop-lines","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#owner-stop-lines","title":"Owner Stop-Lines"},{"anchor":"repair-gate","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#repair-gate","title":"Repair Gate"},{"anchor":"per-shelf-rhythm","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#per-shelf-rhythm","title":"Per-Shelf Rhythm"},{"anchor":"phase-status","level":2,"line":146,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#phase-status","title":"Phase Status"},{"anchor":"calibration-pilots-accounted-set","level":2,"line":161,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#calibration-pilots-accounted-set","title":"Calibration Pilots Accounted Set"},{"anchor":"wave-a-owner-facing-governance-and-proof","level":2,"line":176,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-a-owner-facing-governance-and-proof","title":"Wave A: Owner-Facing Governance And Proof"},{"anchor":"wave-b-proof-publication-and-review-evidence","level":2,"line":215,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-b-proof-publication-and-review-evidence","title":"Wave B: Proof, Publication, And Review Evidence"},{"anchor":"wave-c-skill-instruction-and-capability-edges","level":2,"line":247,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-c-skill-instruction-and-capability-edges","title":"Wave C: Skill, Instruction, And Capability Edges"},{"anchor":"wave-d-execution-and-runtime-adjacent-authority","level":2,"line":297,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-d-execution-and-runtime-adjacent-authority","title":"Wave D: Execution And Runtime-Adjacent Authority"},{"anchor":"wave-e-continuity-checkpoint-recovery-and-donor-edges","level":2,"line":335,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-e-continuity-checkpoint-recovery-and-donor-edges","title":"Wave E: Continuity, Checkpoint, Recovery, And Donor Edges"},{"anchor":"wave-f-knowledge-ingest-history-and-tool-use","level":2,"line":383,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#wave-f-knowledge-ingest-history-and-tool-use","title":"Wave F: Knowledge, Ingest, History, And Tool-Use"},{"anchor":"residual-cross-wave-scan","level":2,"line":429,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#residual-cross-wave-scan","title":"Residual Cross-Wave Scan"},{"anchor":"closeout-ledger","level":2,"line":460,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#closeout-ledger","title":"Closeout Ledger"},{"anchor":"useful-detours-to-capture-not-lose","level":2,"line":483,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#useful-detours-to-capture-not-lose","title":"Useful Detours To Capture, Not Lose"},{"anchor":"first-action-after-this-plan","level":2,"line":501,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md#first-action-after-this-plan","title":"First Action After This Plan"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md"},"signs":{"attestation_ref":"","digest":"5625a74c7f40b24e835a2c5837aaed63c3c2ed619dc3f3c25f323ae2037efb11","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a6ae7cb78de7cc4f0a40b57470183257d99ebc90bc923141bd7469bf010da501","git_blob_id":"d66481561d6ce7c3b1322edf3f79d647aaa269da","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c7f5d25fc63cc0a96b9735c2","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md","logical_id":"aoa:aoa-techniques:artifact:c7f5d25fc63cc0a96b9735c2","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md","repo":"aoa-techniques","size_bytes":10025,"version_id":"aoa:aoa-techniques:artifact-version:448cda1669a6503b68d30e3b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-boundary-bridge-practice-adoption-lifecycle-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#owner-boundary-bridge-practice-adoption-lifecycle-pilot","title":"Owner-Boundary Bridge Practice-Adoption-Lifecycle Pilot"},{"anchor":"verdict","level":2,"line":20,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#sources-read","title":"Sources Read"},{"anchor":"boundary-map","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#boundary-map","title":"Boundary Map"},{"anchor":"cross-owner-read","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#cross-owner-read","title":"Cross-Owner Read"},{"anchor":"repair-gate","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#repair-gate","title":"Repair Gate"},{"anchor":"long-pass-readiness","level":2,"line":119,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#long-pass-readiness","title":"Long-Pass Readiness"},{"anchor":"public-safety-read","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#public-safety-read","title":"Public-Safety Read"},{"anchor":"what-this-does-not-do","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#what-this-does-not-do","title":"What This Does Not Do"},{"anchor":"next-honest-move","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-practice-adoption-lifecycle-pilot.md"},"signs":{"attestation_ref":"","digest":"a6ae7cb78de7cc4f0a40b57470183257d99ebc90bc923141bd7469bf010da501","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"91dbb2fc316e4e14e38687ce745e35fa7d9a23de8e09f7d2e47d55883bbf7353","git_blob_id":"7cb2a2ff4aa3bfa1f0a844a972c955f035d5c826","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c7008657e0ae2e93ff9f9bcf","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md","logical_id":"aoa:aoa-techniques:artifact:c7008657e0ae2e93ff9f9bcf","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md","repo":"aoa-techniques","size_bytes":9389,"version_id":"aoa:aoa-techniques:artifact-version:552ffa39b3744a97d799534a"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-boundary-bridge-promotion-boundary-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#owner-boundary-bridge-promotion-boundary-pilot","title":"Owner-Boundary Bridge Promotion-Boundary Pilot"},{"anchor":"verdict","level":2,"line":20,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#sources-read","title":"Sources Read"},{"anchor":"boundary-map","level":2,"line":64,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#boundary-map","title":"Boundary Map"},{"anchor":"cross-owner-read","level":2,"line":72,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#cross-owner-read","title":"Cross-Owner Read"},{"anchor":"repair-gate","level":2,"line":100,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#repair-gate","title":"Repair Gate"},{"anchor":"repeatable-long-pass-rhythm","level":2,"line":114,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#repeatable-long-pass-rhythm","title":"Repeatable Long-Pass Rhythm"},{"anchor":"public-safety-read","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#public-safety-read","title":"Public-Safety Read"},{"anchor":"what-this-does-not-do","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#what-this-does-not-do","title":"What This Does Not Do"},{"anchor":"next-honest-move","level":2,"line":147,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-promotion-boundary-pilot.md"},"signs":{"attestation_ref":"","digest":"91dbb2fc316e4e14e38687ce745e35fa7d9a23de8e09f7d2e47d55883bbf7353","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a3e6af4b80eba1887813bf2bcfda44e1544e9a3068035ff96954b5488e5cdf38","git_blob_id":"c64fe9d2790d113d64219a59e692cf4a57e41d7d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9671af65d12915bba6df468c","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md","logical_id":"aoa:aoa-techniques:artifact:9671af65d12915bba6df468c","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md","repo":"aoa-techniques","size_bytes":7828,"version_id":"aoa:aoa-techniques:artifact-version:e63fb7ee2f2ce9f5f5321a5f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-boundary-bridge-residual-cross-wave-scan","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#owner-boundary-bridge-residual-cross-wave-scan","title":"Owner-Boundary Bridge Residual Cross-Wave Scan"},{"anchor":"verdict","level":2,"line":6,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":28,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#sources-read","title":"Sources Read"},{"anchor":"coverage-ledger","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#coverage-ledger","title":"Coverage Ledger"},{"anchor":"shelf-account","level":2,"line":64,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#shelf-account","title":"Shelf Account"},{"anchor":"parity-checks","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#parity-checks","title":"Parity Checks"},{"anchor":"repair-queue-decision","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#repair-queue-decision","title":"Repair Queue Decision"},{"anchor":"relation-repair-parity","level":2,"line":112,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#relation-repair-parity","title":"Relation Repair Parity"},{"anchor":"unauthorized-changes-not-made","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#unauthorized-changes-not-made","title":"Unauthorized Changes Not Made"},{"anchor":"next-honest-move","level":2,"line":139,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-residual-cross-wave-scan.md"},"signs":{"attestation_ref":"","digest":"a3e6af4b80eba1887813bf2bcfda44e1544e9a3068035ff96954b5488e5cdf38","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -971,8 +971,8 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d4fc5357c8ba6573c35d7be55d2b06135d4a1c005d3d59259fe3ed8458b45ab9","git_blob_id":"168905ca6203f904a80e4de750ba9afa6adb3943","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e8b51cf0ee49407040e14967","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md","logical_id":"aoa:aoa-techniques:artifact:e8b51cf0ee49407040e14967","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md","repo":"aoa-techniques","size_bytes":20673,"version_id":"aoa:aoa-techniques:artifact-version:904053b54edec3a6846ae33d"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-boundary-bridge-wave-e-continuity-recovery-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#owner-boundary-bridge-wave-e-continuity-recovery-review","title":"Owner-Boundary Bridge Wave E Continuity Recovery Review"},{"anchor":"verdict","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#sources-read","title":"Sources Read"},{"anchor":"boundary-map","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#boundary-map","title":"Boundary Map"},{"anchor":"cross-owner-read","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#cross-owner-read","title":"Cross-Owner Read"},{"anchor":"wave-findings","level":2,"line":170,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#wave-findings","title":"Wave Findings"},{"anchor":"repair-gate","level":2,"line":203,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#repair-gate","title":"Repair Gate"},{"anchor":"what-changed","level":2,"line":219,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":225,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"public-safety-read","level":2,"line":236,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#public-safety-read","title":"Public-Safety Read"},{"anchor":"next-honest-move","level":2,"line":245,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-e-continuity-recovery-review.md"},"signs":{"attestation_ref":"","digest":"d4fc5357c8ba6573c35d7be55d2b06135d4a1c005d3d59259fe3ed8458b45ab9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2100809fb3552fd705f33cdeee4304aeb8f39942077fdb2013e8118426d70824","git_blob_id":"57b997d2cff977988a81f2a8042b1aaf71c8f248","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd86ffaf0ac8b5ffb3d7d7cb","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md","logical_id":"aoa:aoa-techniques:artifact:cd86ffaf0ac8b5ffb3d7d7cb","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md","repo":"aoa-techniques","size_bytes":18497,"version_id":"aoa:aoa-techniques:artifact-version:cd9666ccc31d0ef2824c58fe"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review","title":"Owner-Boundary Bridge Wave F Knowledge Ingest History Tool Review"},{"anchor":"verdict","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#sources-read","title":"Sources Read"},{"anchor":"boundary-map","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#boundary-map","title":"Boundary Map"},{"anchor":"cross-owner-read","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#cross-owner-read","title":"Cross-Owner Read"},{"anchor":"wave-findings","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#wave-findings","title":"Wave Findings"},{"anchor":"repair-gate","level":2,"line":183,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#repair-gate","title":"Repair Gate"},{"anchor":"what-changed","level":2,"line":199,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":205,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"public-safety-read","level":2,"line":216,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#public-safety-read","title":"Public-Safety Read"},{"anchor":"next-honest-move","level":2,"line":225,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-wave-f-knowledge-ingest-history-tool-review.md"},"signs":{"attestation_ref":"","digest":"2100809fb3552fd705f33cdeee4304aeb8f39942077fdb2013e8118426d70824","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"228337077fd8756deebcf80f0f16872aec4b10865aa84078631e9e2333d9dad8","git_blob_id":"6f4658a6c08afe4831d410412d2b9f4aed2a7214","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c378e0bb4347b59a1244c35a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:c378e0bb4347b59a1244c35a","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":14984,"version_id":"aoa:aoa-techniques:artifact-version:1e506fd0959a64968921a677"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"owner-truth-closeout-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#owner-truth-closeout-direct-read-migration-review","title":"Owner-Truth-Closeout Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":93,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"proof-trunk-fit","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#proof-trunk-fit","title":"Proof Trunk Fit"},{"anchor":"watch-signals","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":151,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":170,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":190,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/owner-truth-closeout-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"228337077fd8756deebcf80f0f16872aec4b10865aa84078631e9e2333d9dad8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a06581dd1041c83a899497d7086a09684f98c68fb205f90cf887e4d3a724d706","git_blob_id":"75c62af874ec6c43928e1f008a4f49c163ef8adb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","logical_id":"aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","repo":"aoa-techniques","size_bytes":9067,"version_id":"aoa:aoa-techniques:artifact-version:4e3709c06a203ca028e96a6c"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"portability-bridge-handoff-continuation-mini-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#portability-bridge-handoff-continuation-mini-pilot","title":"Portability Bridge Handoff-Continuation Mini-Pilot"},{"anchor":"verdict","level":2,"line":15,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#sources-read","title":"Sources Read"},{"anchor":"portability-read","level":2,"line":52,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#portability-read","title":"Portability Read"},{"anchor":"boundary-read","level":2,"line":64,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#boundary-read","title":"Boundary Read"},{"anchor":"repair-gate","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#repair-gate","title":"Repair Gate"},{"anchor":"repeatable-portability-rhythm","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#repeatable-portability-rhythm","title":"Repeatable Portability Rhythm"},{"anchor":"stop-lines","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#next-honest-move","title":"Next Honest Move"},{"anchor":"validation","level":2,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md"},"signs":{"attestation_ref":"","digest":"a06581dd1041c83a899497d7086a09684f98c68fb205f90cf887e4d3a724d706","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c8b3f55058e9cb439298cf4eb7465ccdb1907cb05d3f427325658a201a17a2aa","git_blob_id":"07d71f3703e27bcb03162d33eaeb0a9e5fa6c17b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":6021,"version_id":"aoa:aoa-techniques:artifact-version:92956729e6e2b0efb352648d"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"portability-bridge-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#portability-bridge-long-pass-closeout-ledger","title":"Portability Bridge Long-Pass Closeout Ledger"},{"anchor":"verdict","level":2,"line":15,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"accounting","level":2,"line":31,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#accounting","title":"Accounting"},{"anchor":"what-changed","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#what-changed","title":"What Changed"},{"anchor":"what-this-proves","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#what-this-proves","title":"What This Proves"},{"anchor":"what-this-does-not-prove","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#what-this-does-not-prove","title":"What This Does Not Prove"},{"anchor":"future-adapter-card-candidate","level":2,"line":84,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#future-adapter-card-candidate","title":"Future Adapter-Card Candidate"},{"anchor":"next-reform-lane","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#next-reform-lane","title":"Next Reform Lane"},{"anchor":"validation","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"c8b3f55058e9cb439298cf4eb7465ccdb1907cb05d3f427325658a201a17a2aa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1925eb1e60452a7ce8cbac0eaacae18d8c6b2b017d1126b68304179b0b639b8f","git_blob_id":"02e068fe7bc0bd147bf428cfa06dbbd1bc1eeb30","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","logical_id":"aoa:aoa-techniques:artifact:7af2c7ad7ca0d75080253f3e","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","repo":"aoa-techniques","size_bytes":8997,"version_id":"aoa:aoa-techniques:artifact-version:185aaaeba45e969d4e19d497"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"portability-bridge-handoff-continuation-mini-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#portability-bridge-handoff-continuation-mini-pilot","title":"Portability Bridge Handoff-Continuation Mini-Pilot"},{"anchor":"verdict","level":2,"line":15,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#sources-read","title":"Sources Read"},{"anchor":"portability-read","level":2,"line":52,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#portability-read","title":"Portability Read"},{"anchor":"boundary-read","level":2,"line":64,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#boundary-read","title":"Boundary Read"},{"anchor":"repair-gate","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#repair-gate","title":"Repair Gate"},{"anchor":"repeatable-portability-rhythm","level":2,"line":102,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#repeatable-portability-rhythm","title":"Repeatable Portability Rhythm"},{"anchor":"stop-lines","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#next-honest-move","title":"Next Honest Move"},{"anchor":"validation","level":2,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md"},"signs":{"attestation_ref":"","digest":"1925eb1e60452a7ce8cbac0eaacae18d8c6b2b017d1126b68304179b0b639b8f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"102ba42a94616ff76d6d4c3887c758193a37c8da4def3b8de1db8f337b310228","git_blob_id":"5456ee702d84d138dc931a8fe83999e40c47b081","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:584c5c2d728fe2c622961ad1","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":5949,"version_id":"aoa:aoa-techniques:artifact-version:1fbbcb37ac20a1a3f4059c18"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"portability-bridge-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#portability-bridge-long-pass-closeout-ledger","title":"Portability Bridge Long-Pass Closeout Ledger"},{"anchor":"verdict","level":2,"line":15,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"accounting","level":2,"line":31,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#accounting","title":"Accounting"},{"anchor":"what-changed","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#what-changed","title":"What Changed"},{"anchor":"what-this-proves","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#what-this-proves","title":"What This Proves"},{"anchor":"what-this-does-not-prove","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#what-this-does-not-prove","title":"What This Does Not Prove"},{"anchor":"future-adapter-card-candidate","level":2,"line":84,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#future-adapter-card-candidate","title":"Future Adapter-Card Candidate"},{"anchor":"next-reform-lane","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#next-reform-lane","title":"Next Reform Lane"},{"anchor":"validation","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"102ba42a94616ff76d6d4c3887c758193a37c8da4def3b8de1db8f337b310228","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"85144fbb7a6d9127e540f5633078cf79f302b4cac81a6724a9664323454e6072","git_blob_id":"55441d745e7dc8177cf5240c64fb76dd60986e94","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a5d8ccba85d0a3c70b399526","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md","logical_id":"aoa:aoa-techniques:artifact:a5d8ccba85d0a3c70b399526","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md","repo":"aoa-techniques","size_bytes":5399,"version_id":"aoa:aoa-techniques:artifact-version:b1a6fbdeecd24f3f00d10861"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"portability-bridge-residual-cross-wave-scan","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md#portability-bridge-residual-cross-wave-scan","title":"Portability Bridge Residual Cross-Wave Scan"},{"anchor":"verdict","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md#verdict","title":"Verdict"},{"anchor":"covered-ids","level":2,"line":31,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md#covered-ids","title":"Covered IDs"},{"anchor":"repeated-adapter-needs","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md#repeated-adapter-needs","title":"Repeated Adapter Needs"},{"anchor":"residual-holds","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md#residual-holds","title":"Residual Holds"},{"anchor":"public-safety-read","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md#public-safety-read","title":"Public-Safety Read"},{"anchor":"next-honest-move","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-residual-cross-wave-scan.md"},"signs":{"attestation_ref":"","digest":"85144fbb7a6d9127e540f5633078cf79f302b4cac81a6724a9664323454e6072","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e496174dcc48d51e7b3bddbbca14280aae633d59b36e74eb7260efc7900390d0","git_blob_id":"e3d37acbddedfad5e56bbaefd401e154225a3f01","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9be1ca9680a3adf4cf38e13a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md","logical_id":"aoa:aoa-techniques:artifact:9be1ca9680a3adf4cf38e13a","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md","repo":"aoa-techniques","size_bytes":9023,"version_id":"aoa:aoa-techniques:artifact-version:36be919f29f525affeba1948"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"portability-bridge-wave-a-history-ingest-continuity-recovery-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md#portability-bridge-wave-a-history-ingest-continuity-recovery-review","title":"Portability Bridge Wave A History Ingest Continuity Recovery Review"},{"anchor":"verdict","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md#sources-read","title":"Sources Read"},{"anchor":"portability-read","level":2,"line":49,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md#portability-read","title":"Portability Read"},{"anchor":"boundary-findings","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md#boundary-findings","title":"Boundary Findings"},{"anchor":"repair-gate","level":2,"line":93,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md#repair-gate","title":"Repair Gate"},{"anchor":"what-this-does-not-do","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md#what-this-does-not-do","title":"What This Does Not Do"},{"anchor":"next-honest-move","level":2,"line":115,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-a-history-ingest-continuity-recovery-review.md"},"signs":{"attestation_ref":"","digest":"e496174dcc48d51e7b3bddbbca14280aae633d59b36e74eb7260efc7900390d0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"575a69f402b8cd0134615cc18e10d5fccceebc3c125d2ef687c10186eda19f90","git_blob_id":"bb2aaf3bdd9f60549b06ebb07459904689221730","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4e66fdff1d365acd57cbf978","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md","logical_id":"aoa:aoa-techniques:artifact:4e66fdff1d365acd57cbf978","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md","repo":"aoa-techniques","size_bytes":8345,"version_id":"aoa:aoa-techniques:artifact-version:ca1c926d35abae25e7d5d78a"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"portability-bridge-wave-b-runtime-recovery-tool-use-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md#portability-bridge-wave-b-runtime-recovery-tool-use-review","title":"Portability Bridge Wave B Runtime Recovery Tool-Use Review"},{"anchor":"verdict","level":2,"line":15,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md#sources-read","title":"Sources Read"},{"anchor":"portability-read","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md#portability-read","title":"Portability Read"},{"anchor":"boundary-findings","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md#boundary-findings","title":"Boundary Findings"},{"anchor":"repair-gate","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md#repair-gate","title":"Repair Gate"},{"anchor":"what-this-does-not-do","level":2,"line":111,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md#what-this-does-not-do","title":"What This Does Not Do"},{"anchor":"next-honest-move","level":2,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-wave-b-runtime-recovery-tool-use-review.md"},"signs":{"attestation_ref":"","digest":"575a69f402b8cd0134615cc18e10d5fccceebc3c125d2ef687c10186eda19f90","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -981,15 +981,15 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"08886e9737bee5a17028f4b218d515ab5bae8b73dcab00afd956860eff12bfdd","git_blob_id":"6f2a64d7801847948c40bb37fefa2c1536f48b37","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b77ebb6f44579ca40ca922fa","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:b77ebb6f44579ca40ca922fa","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":10844,"version_id":"aoa:aoa-techniques:artifact-version:6c6d5f0cbc562af098d00007"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"practice-adoption-lifecycle-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#practice-adoption-lifecycle-direct-read-migration-review","title":"Practice-Adoption-Lifecycle Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":42,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":79,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"governance-trunk-fit","level":2,"line":94,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#governance-trunk-fit","title":"Governance Trunk Fit"},{"anchor":"watch-signals","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":159,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"08886e9737bee5a17028f4b218d515ab5bae8b73dcab00afd956860eff12bfdd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9b68a9f0d3e6789ce31fae0354c373341811174b585a67a162ff223832359824","git_blob_id":"a539c104b1a95bb518a9b59fee24e4bdcb70efc5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d28a9f0415aee8fa14596dbe","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md","logical_id":"aoa:aoa-techniques:artifact:d28a9f0415aee8fa14596dbe","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md","repo":"aoa-techniques","size_bytes":4506,"version_id":"aoa:aoa-techniques:artifact-version:95b3a6ffad542cbb5e16afb7"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"practice-adoption-lifecycle-direct-relation-repair","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#practice-adoption-lifecycle-direct-relation-repair","title":"Practice-Adoption-Lifecycle Direct Relation Repair"},{"anchor":"verdict","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#verdict","title":"Verdict"},{"anchor":"decision-table","level":2,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#decision-table","title":"Decision Table"},{"anchor":"holds","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#holds","title":"Holds"},{"anchor":"what-changed","level":2,"line":49,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"safety-read","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#safety-read","title":"Safety Read"},{"anchor":"stop-lines","level":2,"line":80,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/practice-adoption-lifecycle-direct-relation-repair.md"},"signs":{"attestation_ref":"","digest":"9b68a9f0d3e6789ce31fae0354c373341811174b585a67a162ff223832359824","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b4a77ec867b5ee7a09b1038822b3741930f6dd5934d70b5d89962a389d79c28e","git_blob_id":"a6ec1e4f25554e54218b47de23796286a17e14f7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:53b5a894bcdc854168397bb3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:53b5a894bcdc854168397bb3","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":10418,"version_id":"aoa:aoa-techniques:artifact-version:a0687bed561d3b8adc0dc009"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"promotion-boundary-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#promotion-boundary-direct-read-migration-review","title":"Promotion-Boundary Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"governance-trunk-fit","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#governance-trunk-fit","title":"Governance Trunk Fit"},{"anchor":"watch-signals","level":2,"line":107,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":119,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":127,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":145,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":160,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/promotion-boundary-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"b4a77ec867b5ee7a09b1038822b3741930f6dd5934d70b5d89962a389d79c28e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bd0f1d73fb26f434143e7e240a59777aef7754bed569541f69e30d374f76a719","git_blob_id":"67ea585f4e7045599ba9088a904624309e98f413","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":16534,"version_id":"aoa:aoa-techniques:artifact-version:870e641fcfa0664c10777c82"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"published-summary-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#published-summary-direct-read-migration-review","title":"Published-Summary Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":24,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":50,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"proof-trunk-fit","level":2,"line":129,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#proof-trunk-fit","title":"Proof Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":163,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":177,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":197,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":215,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":235,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"bd0f1d73fb26f434143e7e240a59777aef7754bed569541f69e30d374f76a719","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"53338ef2e0bd69ec2f40cd15397334ce49e384a5d056617cdf3fd2dcf6f622d8","git_blob_id":"06847ba48af1d9b70a22c6b39eb932b1dfe1b369","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:43a58e4f606b040b3dcee458","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":16517,"version_id":"aoa:aoa-techniques:artifact-version:1e2696caa07137bea305080b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"published-summary-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#published-summary-direct-read-migration-review","title":"Published-Summary Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":24,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":50,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":108,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"proof-trunk-fit","level":2,"line":129,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#proof-trunk-fit","title":"Proof Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":142,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":163,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":177,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":197,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":215,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":235,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"53338ef2e0bd69ec2f40cd15397334ce49e384a5d056617cdf3fd2dcf6f622d8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1d4bfb2393d75845825962d3274af902aa0c66ee8a8315791c398dc600f02097","git_blob_id":"cbd02f16a80d1458be730c29bdf04f7ff78e0c2c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fde64b8930329509292434ad","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:fde64b8930329509292434ad","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":13084,"version_id":"aoa:aoa-techniques:artifact-version:6ec6f7c3d65447280560e8e5"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"ready-work-graphs-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#ready-work-graphs-direct-read-migration-review","title":"Ready-Work-Graphs Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":86,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"watch-line-for-aoa-t-0055","level":2,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#watch-line-for-aoa-t-0055","title":"Watch Line For `AOA-T-0055`"},{"anchor":"execution-trunk-fit","level":2,"line":115,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#execution-trunk-fit","title":"Execution Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":145,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":158,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":175,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":192,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":210,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"1d4bfb2393d75845825962d3274af902aa0c66ee8a8315791c398dc600f02097","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1013c81048a39b31fc270f5cdba96332416b0766e418bda78a112c1be945cd63","git_blob_id":"6799eb8437b8c48d8a12fd53cb49c6464cca675d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c69089469604c6b4ee8aeb2b","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md","logical_id":"aoa:aoa-techniques:artifact:c69089469604c6b4ee8aeb2b","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md","repo":"aoa-techniques","size_bytes":3988,"version_id":"aoa:aoa-techniques:artifact-version:bf917fbf8c14c2831ae93b6f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"ready-work-graphs-direct-relation-repair","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#ready-work-graphs-direct-relation-repair","title":"Ready-Work-Graphs Direct Relation Repair"},{"anchor":"verdict","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#verdict","title":"Verdict"},{"anchor":"decision-table","level":2,"line":32,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#decision-table","title":"Decision Table"},{"anchor":"holds","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#holds","title":"Holds"},{"anchor":"what-changed","level":2,"line":47,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"safety-read","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#safety-read","title":"Safety Read"},{"anchor":"stop-lines","level":2,"line":77,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":88,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/ready-work-graphs-direct-relation-repair.md"},"signs":{"attestation_ref":"","digest":"1013c81048a39b31fc270f5cdba96332416b0766e418bda78a112c1be945cd63","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5ecf74660fc43b7ed361fddcab6c49acf9ede57e6583e5b5221328aaf6abb248","git_blob_id":"2f15c3c8ae61d078d613e41e229ae52e15e6fb0a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c38f953d407fda8093621250","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md","logical_id":"aoa:aoa-techniques:artifact:c38f953d407fda8093621250","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md","repo":"aoa-techniques","size_bytes":11312,"version_id":"aoa:aoa-techniques:artifact-version:29d69fc8a2df609c12482c56"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"relations-composition-handoff-continuation-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#relations-composition-handoff-continuation-pilot","title":"Relations Composition Handoff-Continuation Pilot"},{"anchor":"verdict","level":2,"line":19,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#sources-read","title":"Sources Read"},{"anchor":"current-relation-read","level":2,"line":69,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#current-relation-read","title":"Current Relation Read"},{"anchor":"composition-pressure","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#composition-pressure","title":"Composition Pressure"},{"anchor":"relation-type-fit","level":2,"line":103,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#relation-type-fit","title":"Relation Type Fit"},{"anchor":"what-this-proves","level":2,"line":126,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#what-this-proves","title":"What This Proves"},{"anchor":"what-this-does-not-prove","level":2,"line":138,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#what-this-does-not-prove","title":"What This Does Not Prove"},{"anchor":"repair-candidates","level":2,"line":148,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#repair-candidates","title":"Repair Candidates"},{"anchor":"repeatable-relations-pilot-rhythm","level":2,"line":165,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#repeatable-relations-pilot-rhythm","title":"Repeatable Relations Pilot Rhythm"},{"anchor":"stop-lines","level":2,"line":180,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":191,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/relations-composition-handoff-continuation-pilot.md"},"signs":{"attestation_ref":"","digest":"5ecf74660fc43b7ed361fddcab6c49acf9ede57e6583e5b5221328aaf6abb248","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"98bcdb629f5518a0ab53a6a80625e7b5d39301dddb9ee136d678210ae792bd40","git_blob_id":"28827a66cd666fb8a9d7a97f1a021dae367eb3e9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":7465,"version_id":"aoa:aoa-techniques:artifact-version:d0b39ef8476b8f5d92e5abf5"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-compaction-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#review-compaction-direct-read-migration-review","title":"Review-Compaction Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":32,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":50,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"why-not-keep-this-as-agent-workflows","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#why-not-keep-this-as-agent-workflows","title":"Why Not Keep This As Agent Workflows"},{"anchor":"pilot-scope","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":110,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":121,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"98bcdb629f5518a0ab53a6a80625e7b5d39301dddb9ee136d678210ae792bd40","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fb775ce0cc66c45f6eb9cdaa8b3d279d745c172ec4a6d06c0e8e7ec8f40c4d7e","git_blob_id":"0db078e4d269073de8bb4afa1708f28c1a934c66","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:1b9d03bb55e938043ad312a3","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":7448,"version_id":"aoa:aoa-techniques:artifact-version:c88b41b1004796c0a0ad40a9"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-compaction-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#review-compaction-direct-read-migration-review","title":"Review-Compaction Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":32,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-read","level":2,"line":50,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#direct-read","title":"Direct Read"},{"anchor":"why-not-keep-this-as-agent-workflows","level":2,"line":61,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#why-not-keep-this-as-agent-workflows","title":"Why Not Keep This As Agent Workflows"},{"anchor":"pilot-scope","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#pilot-scope","title":"Pilot Scope"},{"anchor":"migration-blast-radius","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"stop-lines","level":2,"line":110,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":121,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"fb775ce0cc66c45f6eb9cdaa8b3d279d745c172ec4a6d06c0e8e7ec8f40c4d7e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0690450d17dc87ee3169f08a610fb9d41362952a7d08a1d64e887b325b2f6b07","git_blob_id":"b46dd6ce8fdf58c6d40afc0d59a2d135c7c36f40","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:24f952fceed043566fc03f8b","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:24f952fceed043566fc03f8b","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":9756,"version_id":"aoa:aoa-techniques:artifact-version:2b1ce3cedc885377800c4fdb"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"review-evidence-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#review-evidence-direct-read-migration-review","title":"Review-Evidence Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":35,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":60,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":68,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"proof-trunk-fit","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#proof-trunk-fit","title":"Proof Trunk Fit"},{"anchor":"watch-signals","level":2,"line":96,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":109,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":117,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":151,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/review-evidence-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"0690450d17dc87ee3169f08a610fb9d41362952a7d08a1d64e887b325b2f6b07","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5b866c15fabe67bd9ffd2e0467be6e9883d76e9cc8148784a717e15c730c3012","git_blob_id":"8c0784e90c7179402e542f875868d96a59b7b6bd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6d639d0fa8f0902c2e18bf90","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:6d639d0fa8f0902c2e18bf90","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":13077,"version_id":"aoa:aoa-techniques:artifact-version:1d30813f5819714ae5236780"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"runtime-truth-lifecycle-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#runtime-truth-lifecycle-direct-read-migration-review","title":"Runtime-Truth-Lifecycle Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-shelf-holds","level":2,"line":83,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#why-this-shelf-holds","title":"Why This Shelf Holds"},{"anchor":"execution-trunk-fit","level":2,"line":100,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#execution-trunk-fit","title":"Execution Trunk Fit"},{"anchor":"watch-signals","level":2,"line":116,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":132,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":159,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":178,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/runtime-truth-lifecycle-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"5b866c15fabe67bd9ffd2e0467be6e9883d76e9cc8148784a717e15c730c3012","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e62ffc3740fb577f6af9b259cfcdb679e5e2fd77a9070bcf50db39b8ef29cbda","git_blob_id":"b67d163aa607c0b30ae29e5e99ec59ac0c28a470","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:99758dab04fd48b9c22c8134","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md","logical_id":"aoa:aoa-techniques:artifact:99758dab04fd48b9c22c8134","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md","repo":"aoa-techniques","size_bytes":5353,"version_id":"aoa:aoa-techniques:artifact-version:2508cd169a425887fa631641"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"second-kind-ambiguity-review-pack","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md#second-kind-ambiguity-review-pack","title":"Second Kind Ambiguity Review Pack"},{"anchor":"source-packet","level":2,"line":12,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md#source-packet","title":"Source Packet"},{"anchor":"verdict","level":2,"line":20,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md#verdict","title":"Verdict"},{"anchor":"direct-reads","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md#direct-reads","title":"Direct Reads"},{"anchor":"boundary-notes","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md#boundary-notes","title":"Boundary Notes"},{"anchor":"next-honest-move","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/second-kind-ambiguity-review-pack.md"},"signs":{"attestation_ref":"","digest":"e62ffc3740fb577f6af9b259cfcdb679e5e2fd77a9070bcf50db39b8ef29cbda","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"87538d528730ecc8c8b2488989f3efc958866c114feb4c85f748a836443e5810","git_blob_id":"ab9d7d61b06feb6d0d955217805679ff8f7e3d68","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":10445,"version_id":"aoa:aoa-techniques:artifact-version:6d700d5201ee2591bf2487a6"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"selector-relation-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#selector-relation-long-pass-closeout-ledger","title":"Selector Relation Long-Pass Closeout Ledger"},{"anchor":"verdict","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":32,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#sources-read","title":"Sources Read"},{"anchor":"coverage-ledger","level":2,"line":51,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#coverage-ledger","title":"Coverage Ledger"},{"anchor":"accepted-relation-repairs","level":2,"line":69,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#accepted-relation-repairs","title":"Accepted Relation Repairs"},{"anchor":"held-relation-pressure","level":2,"line":84,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#held-relation-pressure","title":"Held Relation Pressure"},{"anchor":"selector-lessons","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#selector-lessons","title":"Selector Lessons"},{"anchor":"relation-lessons","level":2,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#relation-lessons","title":"Relation Lessons"},{"anchor":"generated-and-validation-ledger","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#generated-and-validation-ledger","title":"Generated And Validation Ledger"},{"anchor":"future-threads","level":2,"line":169,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#future-threads","title":"Future Threads"},{"anchor":"unauthorized-changes-not-made","level":2,"line":199,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#unauthorized-changes-not-made","title":"Unauthorized Changes Not Made"},{"anchor":"next-honest-move","level":2,"line":213,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"87538d528730ecc8c8b2488989f3efc958866c114feb4c85f748a836443e5810","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"35fcbbf7a51b3e5704819b0373d00933a55085e8e35c4a35bfb728dbe514026f","git_blob_id":"fb3b184aa032fce8a1f3c6006ea41b718c971f92","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:182e3085c84ba2ff7e39a4bd","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":10375,"version_id":"aoa:aoa-techniques:artifact-version:cd9b0a3e5f87d583a94658a6"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"selector-relation-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#selector-relation-long-pass-closeout-ledger","title":"Selector Relation Long-Pass Closeout Ledger"},{"anchor":"verdict","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":32,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#sources-read","title":"Sources Read"},{"anchor":"coverage-ledger","level":2,"line":51,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#coverage-ledger","title":"Coverage Ledger"},{"anchor":"accepted-relation-repairs","level":2,"line":69,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#accepted-relation-repairs","title":"Accepted Relation Repairs"},{"anchor":"held-relation-pressure","level":2,"line":84,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#held-relation-pressure","title":"Held Relation Pressure"},{"anchor":"selector-lessons","level":2,"line":105,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#selector-lessons","title":"Selector Lessons"},{"anchor":"relation-lessons","level":2,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#relation-lessons","title":"Relation Lessons"},{"anchor":"generated-and-validation-ledger","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#generated-and-validation-ledger","title":"Generated And Validation Ledger"},{"anchor":"future-threads","level":2,"line":169,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#future-threads","title":"Future Threads"},{"anchor":"unauthorized-changes-not-made","level":2,"line":199,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#unauthorized-changes-not-made","title":"Unauthorized Changes Not Made"},{"anchor":"next-honest-move","level":2,"line":213,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"35fcbbf7a51b3e5704819b0373d00933a55085e8e35c4a35bfb728dbe514026f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0fa30c97ee3ad517805dadab145baf0847a26085c1244e4cffbf59e1275d0722","git_blob_id":"ec22d869b045d4a2731010741e5d434380d9ccfc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a1368b52e87f2aa01ddbc24f","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md","logical_id":"aoa:aoa-techniques:artifact:a1368b52e87f2aa01ddbc24f","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md","repo":"aoa-techniques","size_bytes":12005,"version_id":"aoa:aoa-techniques:artifact-version:1379ae9f9981c95cfa757fde"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"selector-relation-residual-cross-wave-scan","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#selector-relation-residual-cross-wave-scan","title":"Selector Relation Residual Cross-Wave Scan"},{"anchor":"verdict","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#sources-read","title":"Sources Read"},{"anchor":"singleton-read","level":2,"line":87,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#singleton-read","title":"Singleton Read"},{"anchor":"low-density-review-evidence-read","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#low-density-review-evidence-read","title":"Low-Density Review-Evidence Read"},{"anchor":"accepted-repair-parity","level":2,"line":109,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#accepted-repair-parity","title":"Accepted Repair Parity"},{"anchor":"hold-classes","level":2,"line":123,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#hold-classes","title":"Hold Classes"},{"anchor":"no-repair-decisions","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#no-repair-decisions","title":"No-Repair Decisions"},{"anchor":"what-changed","level":2,"line":143,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":153,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"public-safety-read","level":2,"line":166,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#public-safety-read","title":"Public-Safety Read"},{"anchor":"next-honest-move","level":2,"line":173,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-residual-cross-wave-scan.md"},"signs":{"attestation_ref":"","digest":"0fa30c97ee3ad517805dadab145baf0847a26085c1244e4cffbf59e1275d0722","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9c2e2f53e05b0a24e8cd9d49102452ebd354b087148f987e607754ca59a3e004","git_blob_id":"de1c124eaf6d40f64070348084efcaabf39ca14c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:36efec87ded6f5b069e4f084","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md","logical_id":"aoa:aoa-techniques:artifact:36efec87ded6f5b069e4f084","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md","repo":"aoa-techniques","size_bytes":13857,"version_id":"aoa:aoa-techniques:artifact-version:44b8c93169da9615cbf16e94"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"selector-relation-wave-a-proof-execution-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#selector-relation-wave-a-proof-execution-review","title":"Selector Relation Wave A Proof Execution Review"},{"anchor":"verdict","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#verdict","title":"Verdict"},{"anchor":"phase-01-inventory-result","level":2,"line":43,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#phase-01-inventory-result","title":"Phase 01 Inventory Result"},{"anchor":"sources-read","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#sources-read","title":"Sources Read"},{"anchor":"selector-prompts","level":2,"line":93,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#selector-prompts","title":"Selector Prompts"},{"anchor":"relation-read","level":2,"line":110,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#relation-read","title":"Relation Read"},{"anchor":"repair-gate","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#repair-gate","title":"Repair Gate"},{"anchor":"axis-usefulness","level":2,"line":150,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#axis-usefulness","title":"Axis Usefulness"},{"anchor":"what-changed","level":2,"line":161,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":166,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"public-safety-read","level":2,"line":176,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#public-safety-read","title":"Public-Safety Read"},{"anchor":"next-honest-move","level":2,"line":182,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-a-proof-execution-review.md"},"signs":{"attestation_ref":"","digest":"9c2e2f53e05b0a24e8cd9d49102452ebd354b087148f987e607754ca59a3e004","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"16122b325eed3058f3800cf1682b610e6734948cdb240694c8edfc0d351e5d03","git_blob_id":"1a7f76697abd28b0454443abf686eb03242d5442","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0cbfc31da990762d893d8446","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md","logical_id":"aoa:aoa-techniques:artifact:0cbfc31da990762d893d8446","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md","repo":"aoa-techniques","size_bytes":18375,"version_id":"aoa:aoa-techniques:artifact-version:c30899dd3c359161f324d7d4"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"selector-relation-wave-b-instruction-knowledge-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#selector-relation-wave-b-instruction-knowledge-review","title":"Selector Relation Wave B Instruction Knowledge Review"},{"anchor":"verdict","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#sources-read","title":"Sources Read"},{"anchor":"selector-prompts","level":2,"line":74,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#selector-prompts","title":"Selector Prompts"},{"anchor":"relation-read","level":2,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#relation-read","title":"Relation Read"},{"anchor":"repair-gate","level":2,"line":131,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#repair-gate","title":"Repair Gate"},{"anchor":"axis-usefulness","level":2,"line":150,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#axis-usefulness","title":"Axis Usefulness"},{"anchor":"what-changed","level":2,"line":161,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":166,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"public-safety-read","level":2,"line":178,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#public-safety-read","title":"Public-Safety Read"},{"anchor":"next-honest-move","level":2,"line":186,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-wave-b-instruction-knowledge-review.md"},"signs":{"attestation_ref":"","digest":"16122b325eed3058f3800cf1682b610e6734948cdb240694c8edfc0d351e5d03","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1009,10 +1009,10 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ec58d590bafc352b42bb310ae77b90512083cca910350808c5029ed09b884807","git_blob_id":"fb11087a6da673f2bfbfdf4f44d1f0f9455263b0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:998ba212c6a82e2f08d7b6df","lineage_path":"docs/EVALUATION_CHAIN_SHADOW_REVIEW.md","logical_id":"aoa:aoa-techniques:artifact:998ba212c6a82e2f08d7b6df","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md","repo":"aoa-techniques","size_bytes":4582,"version_id":"aoa:aoa-techniques:artifact-version:a994a3d3278602ddc7200f16"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"evaluation-chain-shadow-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md#evaluation-chain-shadow-review","title":"Evaluation-Chain Shadow Review"},{"anchor":"pair-map","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md#pair-map","title":"Pair Map"},{"anchor":"seam-review","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md#seam-review","title":"Seam Review"},{"anchor":"aoa-t-0003","level":3,"line":23,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md#aoa-t-0003","title":"`AOA-T-0003`"},{"anchor":"aoa-t-0007","level":3,"line":31,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md#aoa-t-0007","title":"`AOA-T-0007`"},{"anchor":"findings","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md#findings","title":"Findings"},{"anchor":"next-step","level":2,"line":48,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md#next-step","title":"Next Step"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/EVALUATION_CHAIN_SHADOW_REVIEW.md"},"signs":{"attestation_ref":"","digest":"ec58d590bafc352b42bb310ae77b90512083cca910350808c5029ed09b884807","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"31c3ea88f8103457772f1c15359a12480278831a29e132bd27318a70c66eef4e","git_blob_id":"9ca90222d87a3767180b8d33d3f80faca3e4337f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2","lineage_path":"docs/PUBLISHED_SUMMARY_SHADOW_REVIEW.md","logical_id":"aoa:aoa-techniques:artifact:98cf36781392a7d59c8728d2","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md","repo":"aoa-techniques","size_bytes":7280,"version_id":"aoa:aoa-techniques:artifact-version:0c6df9e37d5322ead8779811"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"published-summary-shadow-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#published-summary-shadow-review","title":"Published-Summary Shadow Review"},{"anchor":"cluster-map","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#cluster-map","title":"Cluster Map"},{"anchor":"seam-review","level":2,"line":23,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#seam-review","title":"Seam Review"},{"anchor":"aoa-t-0006","level":3,"line":25,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#aoa-t-0006","title":"`AOA-T-0006`"},{"anchor":"aoa-t-0008","level":3,"line":33,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#aoa-t-0008","title":"`AOA-T-0008`"},{"anchor":"aoa-t-0010","level":3,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#aoa-t-0010","title":"`AOA-T-0010`"},{"anchor":"aoa-t-0011","level":3,"line":49,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#aoa-t-0011","title":"`AOA-T-0011`"},{"anchor":"findings","level":2,"line":62,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#findings","title":"Findings"},{"anchor":"next-step","level":2,"line":72,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md#next-step","title":"Next Step"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/PUBLISHED_SUMMARY_SHADOW_REVIEW.md"},"signs":{"attestation_ref":"","digest":"31c3ea88f8103457772f1c15359a12480278831a29e132bd27318a70c66eef4e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6ccaae2e2d08f920048c6aac04e70a7571d526eac107de49452e7b40601adcba","git_blob_id":"53919d8326c28e0db89118c1f9922d31db912a3a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:71201fec2eec509ba55b62ee","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md","logical_id":"aoa:aoa-techniques:artifact:71201fec2eec509ba55b62ee","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md","repo":"aoa-techniques","size_bytes":778,"version_id":"aoa:aoa-techniques:artifact-version:f3429dd11f568fabfc2a7895"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"shadow-review-packets","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md#shadow-review-packets","title":"Shadow Review Packets"},{"anchor":"packets","level":2,"line":14,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md#packets","title":"Packets"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/shadow/README.md"},"signs":{"attestation_ref":"","digest":"6ccaae2e2d08f920048c6aac04e70a7571d526eac107de49452e7b40601adcba","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3bc406b50b37e1c1ae9923b54a50969d8b3bf178f27621b67aa637d8f243ab04","git_blob_id":"1b7d9476b77013d7c9cc6593fae8220610888524","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":11957,"version_id":"aoa:aoa-techniques:artifact-version:de37b61fd26b9a9b6a8d1f04"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"skill-discovery-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#skill-discovery-direct-read-migration-review","title":"Skill-Discovery Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"instruction-trunk-fit","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#instruction-trunk-fit","title":"Instruction Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":112,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":145,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":165,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":180,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":199,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"3bc406b50b37e1c1ae9923b54a50969d8b3bf178f27621b67aa637d8f243ab04","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c220d2949f35eddd0213555aa33b60c3844d8951d67a5d04857b9a9b6ccae3e0","git_blob_id":"92538c85931b253f0cc20fb9304508505a5b4f51","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":12440,"version_id":"aoa:aoa-techniques:artifact-version:469fc2c57c06cc9792871f5b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"skill-support-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#skill-support-direct-read-migration-review","title":"Skill-Support Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"proof-trunk-fit","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#proof-trunk-fit","title":"Proof Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":149,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":169,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":186,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":204,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"c220d2949f35eddd0213555aa33b60c3844d8951d67a5d04857b9a9b6ccae3e0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3e096a32b4fac9b0365a701665bbd385147226ae74a109c345d2874f9e3dd890","git_blob_id":"0d3999a4dd8e71c38556eaeac0a7a3d3eb4bfa31","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:1cc19c2ce030859948a20b54","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":11940,"version_id":"aoa:aoa-techniques:artifact-version:b133ee2201009510f5bc80d8"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"skill-discovery-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#skill-discovery-direct-read-migration-review","title":"Skill-Discovery Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"instruction-trunk-fit","level":2,"line":95,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#instruction-trunk-fit","title":"Instruction Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":112,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":133,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":145,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":165,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":180,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":199,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"3e096a32b4fac9b0365a701665bbd385147226ae74a109c345d2874f9e3dd890","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7bd01c8951ad1936185f8fa38e1bb0f65595f759cb942e88dc0dc775c7a01032","git_blob_id":"891147860be7d282f79c4c6111574e4e9781aa89","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","logical_id":"aoa:aoa-techniques:artifact:0e5d03b7c703b67bec05b7c0","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","repo":"aoa-techniques","size_bytes":12423,"version_id":"aoa:aoa-techniques:artifact-version:306e84e670b43cc4e4f2fa13"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"skill-support-direct-read-migration-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#skill-support-direct-read-migration-review","title":"Skill-Support Direct-Read Migration Review"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":41,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":76,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-the-shelf-holds","level":2,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#why-the-shelf-holds","title":"Why The Shelf Holds"},{"anchor":"proof-trunk-fit","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#proof-trunk-fit","title":"Proof Trunk Fit"},{"anchor":"boundary-watch-accepted","level":2,"line":122,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#boundary-watch-accepted","title":"Boundary Watch Accepted"},{"anchor":"proposed-move","level":2,"line":136,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-blast-radius","level":2,"line":149,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#migration-blast-radius","title":"Migration Blast Radius"},{"anchor":"why-not-neighbor-shelves-in-this-wave","level":2,"line":169,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#why-not-neighbor-shelves-in-this-wave","title":"Why Not Neighbor Shelves In This Wave"},{"anchor":"stop-lines","level":2,"line":186,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":204,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md"},"signs":{"attestation_ref":"","digest":"7bd01c8951ad1936185f8fa38e1bb0f65595f759cb942e88dc0dc775c7a01032","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fec34383d1256377e326320bbb4efa601c30f1d9bc6791fb3d456f7afbc8fa37","git_blob_id":"ee531c4eea82ea7df407a88bf85103ae9cf91d75","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d6d89bc629ac65cb08f10b90","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md","logical_id":"aoa:aoa-techniques:artifact:d6d89bc629ac65cb08f10b90","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md","repo":"aoa-techniques","size_bytes":21171,"version_id":"aoa:aoa-techniques:artifact-version:387cf5b613937da040782da8"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-intelligence-layer-strategy","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#technique-intelligence-layer-strategy","title":"Technique Intelligence Layer Strategy"},{"anchor":"0-why-this-artifact-exists","level":2,"line":10,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#0-why-this-artifact-exists","title":"0. Why This Artifact Exists"},{"anchor":"1-ground-rules","level":2,"line":36,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#1-ground-rules","title":"1. Ground Rules"},{"anchor":"11-technique-source-remains-the-authority","level":3,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#11-technique-source-remains-the-authority","title":"1.1 Technique source remains the authority"},{"anchor":"12-techniques-are-moves","level":3,"line":52,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#12-techniques-are-moves","title":"1.2 Techniques are moves"},{"anchor":"13-scout-axes-stay-scout-axes","level":3,"line":73,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#13-scout-axes-stay-scout-axes","title":"1.3 Scout axes stay scout axes"},{"anchor":"14-ag-ready-means-agentic-graph-ready-not-agent-autonomy","level":3,"line":89,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#14-ag-ready-means-agentic-graph-ready-not-agent-autonomy","title":"1.4 AG-ready means agentic graph-ready, not agent autonomy"},{"anchor":"2-current-reconnaissance","level":2,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#2-current-reconnaissance","title":"2. Current Reconnaissance"},{"anchor":"21-corpus","level":3,"line":101,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#21-corpus","title":"2.1 Corpus"},{"anchor":"22-existing-source-and-generated-surfaces","level":3,"line":120,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#22-existing-source-and-generated-surfaces","title":"2.2 Existing source and generated surfaces"},{"anchor":"23-what-already-works","level":3,"line":172,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#23-what-already-works","title":"2.3 What already works"},{"anchor":"24-what-is-missing","level":3,"line":192,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#24-what-is-missing","title":"2.4 What is missing"},{"anchor":"3-target-system-shape","level":2,"line":211,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#3-target-system-shape","title":"3. Target System Shape"},{"anchor":"4-registry-logical-views","level":2,"line":237,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#4-registry-logical-views","title":"4. Registry Logical Views"},{"anchor":"41-identity-view","level":3,"line":239,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#41-identity-view","title":"4.1 Identity view"},{"anchor":"42-atom-view","level":3,"line":253,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#42-atom-view","title":"4.2 Atom view"},{"anchor":"43-capsule-view","level":3,"line":275,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#43-capsule-view","title":"4.3 Capsule view"},{"anchor":"44-search-document-view","level":3,"line":288,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#44-search-document-view","title":"4.4 Search document view"},{"anchor":"45-topology-view","level":3,"line":314,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#45-topology-view","title":"4.5 Topology view"},{"anchor":"46-relation-view","level":3,"line":335,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#46-relation-view","title":"4.6 Relation view"},{"anchor":"47-boundary-and-owner-handoff-view","level":3,"line":349,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#47-boundary-and-owner-handoff-view","title":"4.7 Boundary and owner handoff view"},{"anchor":"48-fixture-and-proof-readiness-view","level":3,"line":370,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#48-fixture-and-proof-readiness-view","title":"4.8 Fixture and proof-readiness view"},{"anchor":"5-rag-model","level":2,"line":386,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#5-rag-model","title":"5. RAG Model"},{"anchor":"51-owner-and-layer-precheck","level":3,"line":401,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#51-owner-and-layer-precheck","title":"5.1 Owner and layer precheck"},{"anchor":"52-lexical-and-exact-preselect","level":3,"line":417,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#52-lexical-and-exact-preselect","title":"5.2 Lexical and exact preselect"},{"anchor":"53-fts-search","level":3,"line":431,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#53-fts-search","title":"5.3 FTS search"},{"anchor":"54-optional-semantic-retrieval","level":3,"line":446,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#54-optional-semantic-retrieval","title":"5.4 Optional semantic retrieval"},{"anchor":"55-evidence-packet-shape","level":3,"line":455,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#55-evidence-packet-shape","title":"5.5 Evidence packet shape"},{"anchor":"6-agentic-rag-model","level":2,"line":468,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#6-agentic-rag-model","title":"6. Agentic RAG Model"},{"anchor":"7-dag-and-graph-model","level":2,"line":504,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#7-dag-and-graph-model","title":"7. DAG And Graph Model"},{"anchor":"8-first-implementation-slice","level":2,"line":552,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#8-first-implementation-slice","title":"8. First Implementation Slice"},{"anchor":"9-later-phases","level":2,"line":589,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#9-later-phases","title":"9. Later Phases"},{"anchor":"10-risks","level":2,"line":607,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#10-risks","title":"10. Risks"},{"anchor":"101-semantic-layer-steals-authority","level":3,"line":609,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#101-semantic-layer-steals-authority","title":"10.1 Semantic layer steals authority"},{"anchor":"102-technique-layer-becomes-a-workflow-router","level":3,"line":616,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#102-technique-layer-becomes-a-workflow-router","title":"10.2 Technique layer becomes a workflow router"},{"anchor":"103-scout-axes-become-fake-schema","level":3,"line":623,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#103-scout-axes-become-fake-schema","title":"10.3 Scout axes become fake schema"},{"anchor":"104-dag-becomes-fake-world-model","level":3,"line":630,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#104-dag-becomes-fake-world-model","title":"10.4 DAG becomes fake world model"},{"anchor":"105-kag-export-expands-too-early","level":3,"line":636,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#105-kag-export-expands-too-early","title":"10.5 KAG export expands too early"},{"anchor":"106-small-agent-readiness-is-overclaimed","level":3,"line":644,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#106-small-agent-readiness-is-overclaimed","title":"10.6 Small-agent readiness is overclaimed"},{"anchor":"11-success-criteria","level":2,"line":651,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#11-success-criteria","title":"11. Success Criteria"},{"anchor":"12-recommended-next-move","level":2,"line":665,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md#12-recommended-next-move","title":"12. Recommended Next Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/technique-intelligence-layer-strategy.md"},"signs":{"attestation_ref":"","digest":"fec34383d1256377e326320bbb4efa601c30f1d9bc6791fb3d456f7afbc8fa37","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"29bf98aaf3cfa0a1fb1d2f0dbf10fba15d57bd9c33b6fdeb181c6ffcb353b866","git_blob_id":"61cf08a18fd5244fdbdf85754b3ce726d2953c62","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":3912,"version_id":"aoa:aoa-techniques:artifact-version:f91fa967d3b06e2ac9397fcd"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#template-modernization-long-pass-closeout-ledger","title":"Template Modernization Long-Pass Closeout Ledger"},{"anchor":"summary","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#summary","title":"Summary"},{"anchor":"final-counts","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#final-counts","title":"Final Counts"},{"anchor":"durable-decision","level":2,"line":30,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#durable-decision","title":"Durable Decision"},{"anchor":"why-no-broad-rewrite","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#why-no-broad-rewrite","title":"Why No Broad Rewrite"},{"anchor":"packets-landed-by-this-pass","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#packets-landed-by-this-pass","title":"Packets Landed By This Pass"},{"anchor":"next-direction","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#next-direction","title":"Next Direction"},{"anchor":"validation","level":2,"line":84,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"29bf98aaf3cfa0a1fb1d2f0dbf10fba15d57bd9c33b6fdeb181c6ffcb353b866","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2919ce69c349574cab1b81bf348800ccf1bec2c3666f078b791444dd72bae09b","git_blob_id":"bca8bce3906f36039927dc22ca5c46e8e3539bcb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","logical_id":"aoa:aoa-techniques:artifact:eedc42c61f950e5690d7ba1d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","repo":"aoa-techniques","size_bytes":3846,"version_id":"aoa:aoa-techniques:artifact-version:0ba32cc6e395001ce9eab57a"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-long-pass-closeout-ledger","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#template-modernization-long-pass-closeout-ledger","title":"Template Modernization Long-Pass Closeout Ledger"},{"anchor":"summary","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#summary","title":"Summary"},{"anchor":"final-counts","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#final-counts","title":"Final Counts"},{"anchor":"durable-decision","level":2,"line":30,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#durable-decision","title":"Durable Decision"},{"anchor":"why-no-broad-rewrite","level":2,"line":44,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#why-no-broad-rewrite","title":"Why No Broad Rewrite"},{"anchor":"packets-landed-by-this-pass","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#packets-landed-by-this-pass","title":"Packets Landed By This Pass"},{"anchor":"next-direction","level":2,"line":67,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#next-direction","title":"Next Direction"},{"anchor":"validation","level":2,"line":84,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md#validation","title":"Validation"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md"},"signs":{"attestation_ref":"","digest":"2919ce69c349574cab1b81bf348800ccf1bec2c3666f078b791444dd72bae09b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"29387adbceef1e57561db73a392e3d896c0fc51aa55ac274c7350f53636157e7","git_blob_id":"f825ba62912dda2e919bfc77e9fcb9a151c86c27","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:276241f8b398d6731e4f727a","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md","logical_id":"aoa:aoa-techniques:artifact:276241f8b398d6731e4f727a","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md","repo":"aoa-techniques","size_bytes":3563,"version_id":"aoa:aoa-techniques:artifact-version:24bb2d987a0562744ed5f773"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-long-pass-continuity-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md#template-modernization-long-pass-continuity-review","title":"Template Modernization Long-Pass Continuity Review"},{"anchor":"evidence-read","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md#evidence-read","title":"Evidence Read"},{"anchor":"verdict","level":2,"line":18,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md#verdict","title":"Verdict"},{"anchor":"bundle-rows","level":2,"line":26,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md#bundle-rows","title":"Bundle Rows"},{"anchor":"phase-counts","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md#phase-counts","title":"Phase Counts"},{"anchor":"next","level":2,"line":54,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md#next","title":"Next"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-continuity-review.md"},"signs":{"attestation_ref":"","digest":"29387adbceef1e57561db73a392e3d896c0fc51aa55ac274c7350f53636157e7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"359631feebdc4ac2ef3882c9603bd28cea7a90283c17067ffe632b9366681f14","git_blob_id":"91c8e0793fbb50c8738dc4905f22e6efb7cb5396","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:fec3dc23de4553ec2e819b55","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md","logical_id":"aoa:aoa-techniques:artifact:fec3dc23de4553ec2e819b55","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md","repo":"aoa-techniques","size_bytes":13509,"version_id":"aoa:aoa-techniques:artifact-version:8f647a9b19a588f1043e74d5"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-long-pass-corpus-triage","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md#template-modernization-long-pass-corpus-triage","title":"Template Modernization Long-Pass Corpus Triage"},{"anchor":"question","level":2,"line":9,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md#question","title":"Question"},{"anchor":"evidence-read","level":2,"line":16,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md#evidence-read","title":"Evidence Read"},{"anchor":"triage-result","level":2,"line":27,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md#triage-result","title":"Triage Result"},{"anchor":"counts","level":2,"line":53,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md#counts","title":"Counts"},{"anchor":"phase-route","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md#phase-route","title":"Phase Route"},{"anchor":"bundle-rows","level":2,"line":75,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md#bundle-rows","title":"Bundle Rows"},{"anchor":"phase-1-verdict","level":2,"line":187,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md#phase-1-verdict","title":"Phase 1 Verdict"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-corpus-triage.md"},"signs":{"attestation_ref":"","digest":"359631feebdc4ac2ef3882c9603bd28cea7a90283c17067ffe632b9366681f14","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ea73ff37b816cc1490b701b7a043cd0cddafe7a7e73b52ed3781b63dc815d612","git_blob_id":"180d72ee1c8d1684ea1ad6a130a75946f295c6fa","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b152a0b98d3754afb662dffa","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md","logical_id":"aoa:aoa-techniques:artifact:b152a0b98d3754afb662dffa","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md","repo":"aoa-techniques","size_bytes":3770,"version_id":"aoa:aoa-techniques:artifact-version:074a9f4673231288db5c1b09"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-long-pass-execution-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md#template-modernization-long-pass-execution-review","title":"Template Modernization Long-Pass Execution Review"},{"anchor":"evidence-read","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md#evidence-read","title":"Evidence Read"},{"anchor":"verdict","level":2,"line":20,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md#verdict","title":"Verdict"},{"anchor":"bundle-rows","level":2,"line":28,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md#bundle-rows","title":"Bundle Rows"},{"anchor":"phase-counts","level":2,"line":47,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md#phase-counts","title":"Phase Counts"},{"anchor":"next","level":2,"line":56,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md#next","title":"Next"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-execution-review.md"},"signs":{"attestation_ref":"","digest":"ea73ff37b816cc1490b701b7a043cd0cddafe7a7e73b52ed3781b63dc815d612","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1022,8 +1022,8 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ddfca17844df11c1d73ee303d819d743f9b4e0aa0f869e5feda7f5846caf97bc","git_blob_id":"8a8a5c2c19787127fe0b432c109a5dd22a26498c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5a427c584fa1429f11e93829","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md","logical_id":"aoa:aoa-techniques:artifact:5a427c584fa1429f11e93829","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md","repo":"aoa-techniques","size_bytes":5007,"version_id":"aoa:aoa-techniques:artifact-version:68290aef31c6dd222556149f"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-long-pass-proof-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md#template-modernization-long-pass-proof-review","title":"Template Modernization Long-Pass Proof Review"},{"anchor":"evidence-read","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md#evidence-read","title":"Evidence Read"},{"anchor":"verdict","level":2,"line":19,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md#verdict","title":"Verdict"},{"anchor":"bundle-rows","level":2,"line":32,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md#bundle-rows","title":"Bundle Rows"},{"anchor":"phase-counts","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md#phase-counts","title":"Phase Counts"},{"anchor":"next","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md#next","title":"Next"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-proof-review.md"},"signs":{"attestation_ref":"","digest":"ddfca17844df11c1d73ee303d819d743f9b4e0aa0f869e5feda7f5846caf97bc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"10cd31b5a29143d03a8566d16106aa7598cf3e5b7a4cab79d951699103277dd9","git_blob_id":"d82cce19a7bfe21b80f22c187c8af7ae2ee52213","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ce8ca6e1f0f910e839bf7ede","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md","logical_id":"aoa:aoa-techniques:artifact:ce8ca6e1f0f910e839bf7ede","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md","repo":"aoa-techniques","size_bytes":2470,"version_id":"aoa:aoa-techniques:artifact-version:1df74a66de374f07202b82be"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-long-pass-recovery-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md#template-modernization-long-pass-recovery-review","title":"Template Modernization Long-Pass Recovery Review"},{"anchor":"evidence-read","level":2,"line":7,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md#evidence-read","title":"Evidence Read"},{"anchor":"verdict","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md#verdict","title":"Verdict"},{"anchor":"bundle-rows","level":2,"line":24,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md#bundle-rows","title":"Bundle Rows"},{"anchor":"phase-counts","level":2,"line":37,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md#phase-counts","title":"Phase Counts"},{"anchor":"next","level":2,"line":46,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md#next","title":"Next"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-recovery-review.md"},"signs":{"attestation_ref":"","digest":"10cd31b5a29143d03a8566d16106aa7598cf3e5b7a4cab79d951699103277dd9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b174bd994b03503cc4b87cd7c1f54b85e490c47da50a27b8edb3dea1f69cfdc7","git_blob_id":"c48211e1ce80fd63dc4c651bc6a708a2ae82b3e1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4bd7e049d0c871f8d832ce7d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md","logical_id":"aoa:aoa-techniques:artifact:4bd7e049d0c871f8d832ce7d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md","repo":"aoa-techniques","size_bytes":2502,"version_id":"aoa:aoa-techniques:artifact-version:787becdf162536b8fab6da25"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-long-pass-residual-scan","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md#template-modernization-long-pass-residual-scan","title":"Template Modernization Long-Pass Residual Scan"},{"anchor":"coverage","level":2,"line":8,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md#coverage","title":"Coverage"},{"anchor":"phase-packet-coverage","level":2,"line":20,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md#phase-packet-coverage","title":"Phase Packet Coverage"},{"anchor":"parity-checks","level":2,"line":32,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md#parity-checks","title":"Parity Checks"},{"anchor":"residual-classification","level":2,"line":47,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md#residual-classification","title":"Residual Classification"},{"anchor":"residual-verdict","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md#residual-verdict","title":"Residual Verdict"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-residual-scan.md"},"signs":{"attestation_ref":"","digest":"b174bd994b03503cc4b87cd7c1f54b85e490c47da50a27b8edb3dea1f69cfdc7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"babce1cbb81ec975387a54ddc2697ca8198cf62e62b36e0721bcd93006bdb90d","git_blob_id":"cb9721f69f5fbb24bd15259acec7430fe40d28b6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/TEMP_TEMPLATE_MODERNIZATION_LONG_PASS_PLAN.md","logical_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md","repo":"aoa-techniques","size_bytes":28627,"version_id":"aoa:aoa-techniques:artifact-version:b8e92fa8b1be99777613e616"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"temporary-template-modernization-long-pass-plan","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#temporary-template-modernization-long-pass-plan","title":"Temporary Template Modernization Long-Pass Plan"},{"anchor":"purpose","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#purpose","title":"Purpose"},{"anchor":"baseline","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#baseline","title":"Baseline"},{"anchor":"risk-and-mutation-gate","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#risk-and-mutation-gate","title":"Risk And Mutation Gate"},{"anchor":"stop-lines","level":2,"line":98,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#stop-lines","title":"Stop Lines"},{"anchor":"repair-gate","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#repair-gate","title":"Repair Gate"},{"anchor":"per-bundle-rhythm","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#per-bundle-rhythm","title":"Per-Bundle Rhythm"},{"anchor":"full-phase-status","level":2,"line":185,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#full-phase-status","title":"Full Phase Status"},{"anchor":"phase-0-base-and-pilot-landing-gate","level":2,"line":199,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-0-base-and-pilot-landing-gate","title":"Phase 0: Base And Pilot Landing Gate"},{"anchor":"phase-1-full-corpus-inventory-and-triage-ledger","level":2,"line":229,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-1-full-corpus-inventory-and-triage-ledger","title":"Phase 1: Full-Corpus Inventory And Triage Ledger"},{"anchor":"corpus-order","level":2,"line":262,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#corpus-order","title":"Corpus Order"},{"anchor":"phase-2-proof-trunk-review-and-repairs","level":2,"line":277,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-2-proof-trunk-review-and-repairs","title":"Phase 2: Proof Trunk Review And Repairs"},{"anchor":"phase-3-execution-trunk-review-and-repairs","level":2,"line":322,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-3-execution-trunk-review-and-repairs","title":"Phase 3: Execution Trunk Review And Repairs"},{"anchor":"phase-4-continuity-trunk-review-and-repairs","level":2,"line":361,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-4-continuity-trunk-review-and-repairs","title":"Phase 4: Continuity Trunk Review And Repairs"},{"anchor":"phase-5-instruction-trunk-review-and-repairs","level":2,"line":399,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-5-instruction-trunk-review-and-repairs","title":"Phase 5: Instruction Trunk Review And Repairs"},{"anchor":"phase-6-knowledge-history-ingest-and-tool-use-review-and-repairs","level":2,"line":441,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-6-knowledge-history-ingest-and-tool-use-review-and-repairs","title":"Phase 6: Knowledge, History, Ingest, And Tool-Use Review And Repairs"},{"anchor":"phase-7-governance-trunk-review-and-repairs","level":2,"line":485,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-7-governance-trunk-review-and-repairs","title":"Phase 7: Governance Trunk Review And Repairs"},{"anchor":"phase-8-recovery-trunk-review-and-repairs","level":2,"line":522,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-8-recovery-trunk-review-and-repairs","title":"Phase 8: Recovery Trunk Review And Repairs"},{"anchor":"phase-9-generated-parity-residual-scan-and-tail-closure","level":2,"line":553,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-9-generated-parity-residual-scan-and-tail-closure","title":"Phase 9: Generated Parity, Residual Scan, And Tail Closure"},{"anchor":"phase-10-long-pass-closeout-ledger","level":2,"line":591,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-10-long-pass-closeout-ledger","title":"Phase 10: Long-Pass Closeout Ledger"},{"anchor":"review-packet-index-updates","level":2,"line":616,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#review-packet-index-updates","title":"Review Packet Index Updates"},{"anchor":"validation-menu","level":2,"line":634,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#validation-menu","title":"Validation Menu"},{"anchor":"landing-rhythm","level":2,"line":655,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#landing-rhythm","title":"Landing Rhythm"},{"anchor":"live-notes","level":2,"line":681,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#live-notes","title":"Live Notes"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md"},"signs":{"attestation_ref":"","digest":"babce1cbb81ec975387a54ddc2697ca8198cf62e62b36e0721bcd93006bdb90d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9de3b73ba4197d44738132db355d6ed656c9cd52efe24ea7e1a1d2440d419192","git_blob_id":"5169298bf8a3b8c1172ffcb2d2b39a127b362223","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","logical_id":"aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","repo":"aoa-techniques","size_bytes":7098,"version_id":"aoa:aoa-techniques:artifact-version:a1c6a3fbaa98b5e914125a45"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-skill-support-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#template-modernization-skill-support-pilot","title":"Template Modernization Skill-Support Pilot"},{"anchor":"verdict","level":2,"line":19,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#verdict","title":"Verdict"},{"anchor":"why-this-shelf","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#why-this-shelf","title":"Why This Shelf"},{"anchor":"direct-read-outcomes","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#direct-read-outcomes","title":"Direct-Read Outcomes"},{"anchor":"what-changed","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"pilot-rhythm","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#pilot-rhythm","title":"Pilot Rhythm"},{"anchor":"next-clean-move","level":2,"line":121,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#next-clean-move","title":"Next Clean Move"},{"anchor":"validation-menu","level":2,"line":138,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#validation-menu","title":"Validation Menu"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md"},"signs":{"attestation_ref":"","digest":"9de3b73ba4197d44738132db355d6ed656c9cd52efe24ea7e1a1d2440d419192","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"53e126f72317bcef728f229c269b62ac131ab089a5559e108cddaa22e81b248e","git_blob_id":"9dbd3a55c319f39fa354a61344983985fc3a125e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/TEMP_TEMPLATE_MODERNIZATION_LONG_PASS_PLAN.md","logical_id":"aoa:aoa-techniques:artifact:510468dce3adcca5b9dd9e62","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md","repo":"aoa-techniques","size_bytes":28028,"version_id":"aoa:aoa-techniques:artifact-version:4b355ce2b9e1c65a3c048062"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"temporary-template-modernization-long-pass-plan","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#temporary-template-modernization-long-pass-plan","title":"Temporary Template Modernization Long-Pass Plan"},{"anchor":"purpose","level":2,"line":17,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#purpose","title":"Purpose"},{"anchor":"baseline","level":2,"line":39,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#baseline","title":"Baseline"},{"anchor":"risk-and-mutation-gate","level":2,"line":71,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#risk-and-mutation-gate","title":"Risk And Mutation Gate"},{"anchor":"stop-lines","level":2,"line":98,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#stop-lines","title":"Stop Lines"},{"anchor":"repair-gate","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#repair-gate","title":"Repair Gate"},{"anchor":"per-bundle-rhythm","level":2,"line":144,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#per-bundle-rhythm","title":"Per-Bundle Rhythm"},{"anchor":"full-phase-status","level":2,"line":185,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#full-phase-status","title":"Full Phase Status"},{"anchor":"phase-0-base-and-pilot-landing-gate","level":2,"line":199,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-0-base-and-pilot-landing-gate","title":"Phase 0: Base And Pilot Landing Gate"},{"anchor":"phase-1-full-corpus-inventory-and-triage-ledger","level":2,"line":229,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-1-full-corpus-inventory-and-triage-ledger","title":"Phase 1: Full-Corpus Inventory And Triage Ledger"},{"anchor":"corpus-order","level":2,"line":262,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#corpus-order","title":"Corpus Order"},{"anchor":"phase-2-proof-trunk-review-and-repairs","level":2,"line":277,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-2-proof-trunk-review-and-repairs","title":"Phase 2: Proof Trunk Review And Repairs"},{"anchor":"phase-3-execution-trunk-review-and-repairs","level":2,"line":322,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-3-execution-trunk-review-and-repairs","title":"Phase 3: Execution Trunk Review And Repairs"},{"anchor":"phase-4-continuity-trunk-review-and-repairs","level":2,"line":361,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-4-continuity-trunk-review-and-repairs","title":"Phase 4: Continuity Trunk Review And Repairs"},{"anchor":"phase-5-instruction-trunk-review-and-repairs","level":2,"line":399,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-5-instruction-trunk-review-and-repairs","title":"Phase 5: Instruction Trunk Review And Repairs"},{"anchor":"phase-6-knowledge-history-ingest-and-tool-use-review-and-repairs","level":2,"line":441,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-6-knowledge-history-ingest-and-tool-use-review-and-repairs","title":"Phase 6: Knowledge, History, Ingest, And Tool-Use Review And Repairs"},{"anchor":"phase-7-governance-trunk-review-and-repairs","level":2,"line":485,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-7-governance-trunk-review-and-repairs","title":"Phase 7: Governance Trunk Review And Repairs"},{"anchor":"phase-8-recovery-trunk-review-and-repairs","level":2,"line":522,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-8-recovery-trunk-review-and-repairs","title":"Phase 8: Recovery Trunk Review And Repairs"},{"anchor":"phase-9-generated-parity-residual-scan-and-tail-closure","level":2,"line":553,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-9-generated-parity-residual-scan-and-tail-closure","title":"Phase 9: Generated Parity, Residual Scan, And Tail Closure"},{"anchor":"phase-10-long-pass-closeout-ledger","level":2,"line":591,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#phase-10-long-pass-closeout-ledger","title":"Phase 10: Long-Pass Closeout Ledger"},{"anchor":"review-packet-index-updates","level":2,"line":616,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#review-packet-index-updates","title":"Review Packet Index Updates"},{"anchor":"validation-menu","level":2,"line":634,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#validation-menu","title":"Validation Menu"},{"anchor":"landing-rhythm","level":2,"line":640,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#landing-rhythm","title":"Landing Rhythm"},{"anchor":"live-notes","level":2,"line":666,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md#live-notes","title":"Live Notes"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md"},"signs":{"attestation_ref":"","digest":"53e126f72317bcef728f229c269b62ac131ab089a5559e108cddaa22e81b248e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"195edc833440680ce5b8f3603599cf604319b6715bace30940a4c07948c109fa","git_blob_id":"a618adbc22960002c170e76d0328abdf4683fa88","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","logical_id":"aoa:aoa-techniques:artifact:ae08abd868d9a1beac548328","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","repo":"aoa-techniques","size_bytes":7008,"version_id":"aoa:aoa-techniques:artifact-version:0d0a23089ef8e60c2444e526"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"template-modernization-skill-support-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#template-modernization-skill-support-pilot","title":"Template Modernization Skill-Support Pilot"},{"anchor":"verdict","level":2,"line":19,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#verdict","title":"Verdict"},{"anchor":"why-this-shelf","level":2,"line":45,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#why-this-shelf","title":"Why This Shelf"},{"anchor":"direct-read-outcomes","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#direct-read-outcomes","title":"Direct-Read Outcomes"},{"anchor":"what-changed","level":2,"line":65,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#what-changed","title":"What Changed"},{"anchor":"what-did-not-change","level":2,"line":90,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#what-did-not-change","title":"What Did Not Change"},{"anchor":"pilot-rhythm","level":2,"line":104,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#pilot-rhythm","title":"Pilot Rhythm"},{"anchor":"next-clean-move","level":2,"line":121,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#next-clean-move","title":"Next Clean Move"},{"anchor":"validation-menu","level":2,"line":138,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md#validation-menu","title":"Validation Menu"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md"},"signs":{"attestation_ref":"","digest":"195edc833440680ce5b8f3603599cf604319b6715bace30940a4c07948c109fa","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"944bdaec832a80cee456a96ab27012aa50681d337a6a015f584122955e0299c2","git_blob_id":"8eebdc1bc47e1a644c9fa49e175edf8095efc43a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:aba405c32b985c0a2fa81085","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md","logical_id":"aoa:aoa-techniques:artifact:aba405c32b985c0a2fa81085","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md","repo":"aoa-techniques","size_bytes":7024,"version_id":"aoa:aoa-techniques:artifact-version:9af6d1267079e13479daeb77"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"tool-gateway-direct-read-singleton-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#tool-gateway-direct-read-singleton-review","title":"Tool-Gateway Direct-Read Singleton Review"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":40,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#sources-read","title":"Sources Read"},{"anchor":"direct-bundle-read","level":2,"line":57,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#direct-bundle-read","title":"Direct Bundle Read"},{"anchor":"why-this-singleton-holds","level":2,"line":63,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#why-this-singleton-holds","title":"Why This Singleton Holds"},{"anchor":"watch-signals","level":2,"line":78,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#watch-signals","title":"Watch Signals"},{"anchor":"proposed-move","level":2,"line":91,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#proposed-move","title":"Proposed Move"},{"anchor":"migration-requirements","level":2,"line":97,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#migration-requirements","title":"Migration Requirements"},{"anchor":"stop-lines","level":2,"line":113,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":128,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/tool-gateway-direct-read-singleton-review.md"},"signs":{"attestation_ref":"","digest":"944bdaec832a80cee456a96ab27012aa50681d337a6a015f584122955e0299c2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"669b35639dd2ff9ee9861acd371d0b6fea9ca790033ea96ceaa72c9b66975e9e","git_blob_id":"93ca29ddf31c9bbc2c7ba83b7ed8f9f36a70742a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4009d2ba51883ad244865419","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md","logical_id":"aoa:aoa-techniques:artifact:4009d2ba51883ad244865419","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md","repo":"aoa-techniques","size_bytes":11721,"version_id":"aoa:aoa-techniques:artifact-version:c1447eac8bfb64fa3387627b"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"topology-selector-handoff-continuation-mini-pilot","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#topology-selector-handoff-continuation-mini-pilot","title":"Topology Selector Handoff-Continuation Mini-Pilot"},{"anchor":"verdict","level":2,"line":21,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":55,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#sources-read","title":"Sources Read"},{"anchor":"selector-scenario-read","level":2,"line":69,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#selector-scenario-read","title":"Selector Scenario Read"},{"anchor":"axis-usefulness","level":2,"line":81,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#axis-usefulness","title":"Axis Usefulness"},{"anchor":"per-leaf-selector-packet","level":2,"line":94,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#per-leaf-selector-packet","title":"Per-Leaf Selector Packet"},{"anchor":"what-this-proves","level":2,"line":106,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#what-this-proves","title":"What This Proves"},{"anchor":"what-this-does-not-prove","level":2,"line":118,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#what-this-does-not-prove","title":"What This Does Not Prove"},{"anchor":"repair-queue","level":2,"line":129,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#repair-queue","title":"Repair Queue"},{"anchor":"repeatable-mini-pilot-rhythm","level":2,"line":141,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#repeatable-mini-pilot-rhythm","title":"Repeatable Mini-Pilot Rhythm"},{"anchor":"stop-lines","level":2,"line":156,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":166,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/topology-selector-handoff-continuation-mini-pilot.md"},"signs":{"attestation_ref":"","digest":"669b35639dd2ff9ee9861acd371d0b6fea9ca790033ea96ceaa72c9b66975e9e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"85e946983e479c041d389d7a6e62519d4d78740f9fabde2e7ae8be9865d0e929","git_blob_id":"07d43667583f6c6a46456cf9ce92b6982d9b58fa","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8a6542641b3e9209ba03e08d","lineage_path":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md","logical_id":"aoa:aoa-techniques:artifact:8a6542641b3e9209ba03e08d","mime":"text/markdown","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md","repo":"aoa-techniques","size_bytes":8931,"version_id":"aoa:aoa-techniques:artifact-version:2c5d7d9755c5d14959db612e"},"mechanics_role":"part_doc","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"whole-tree-closeout-review","level":1,"line":1,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#whole-tree-closeout-review","title":"Whole-Tree Closeout Review"},{"anchor":"verdict","level":2,"line":22,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#verdict","title":"Verdict"},{"anchor":"sources-read","level":2,"line":38,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#sources-read","title":"Sources Read"},{"anchor":"counted-evidence","level":2,"line":52,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#counted-evidence","title":"Counted Evidence"},{"anchor":"shelf-closeout-map","level":2,"line":66,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#shelf-closeout-map","title":"Shelf Closeout Map"},{"anchor":"invariant-coverage-map","level":2,"line":99,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#invariant-coverage-map","title":"Invariant Coverage Map"},{"anchor":"what-the-whole-pass-proved","level":2,"line":109,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#what-the-whole-pass-proved","title":"What The Whole Pass Proved"},{"anchor":"remaining-weaknesses","level":2,"line":124,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#remaining-weaknesses","title":"Remaining Weaknesses"},{"anchor":"stop-lines","level":2,"line":137,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#stop-lines","title":"Stop Lines"},{"anchor":"next-honest-move","level":2,"line":148,"ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md#next-honest-move","title":"Next Honest Move"}],"line_refs":["mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md:1"],"path_ref":"mechanics/distillation/parts/technique-reform-ingress/reviews/whole-tree-closeout-review.md"},"signs":{"attestation_ref":"","digest":"85e946983e479c041d389d7a6e62519d4d78740f9fabde2e7ae8be9865d0e929","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1042,7 +1042,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","git_blob_id":"56ee1f1f102d417073746fc4a36e7a2cab85245b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py","logical_id":"aoa:aoa-techniques:artifact:7613905457bd23ae20c2e31c","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py","repo":"aoa-techniques","size_bytes":75268,"version_id":"aoa:aoa-techniques:artifact-version:1b471e96507cb19e8ba8c909"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py:1"],"path_ref":"mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py"},"signs":{"attestation_ref":"","digest":"aec36290ecbd8e778c5922111307ae40d32b08fc69e0c0c28722d562314f8ae9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_distillation_tree_pilot_automation_closeout.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","git_blob_id":"52128a565f7c554700c4e577f4e69d2e726d7699","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py","logical_id":"aoa:aoa-techniques:artifact:41ac3f2b3d4fba39e0aa28ee","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py","repo":"aoa-techniques","size_bytes":57064,"version_id":"aoa:aoa-techniques:artifact-version:ecc1aad3d0164cd03f8ef7ce"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py:1"],"path_ref":"mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py"},"signs":{"attestation_ref":"","digest":"7c9442f636ad545addfc93337435cdae332a5ba3daea144f22cd7d3b151521a2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_distillation_tree_pilot_capability_wave.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","git_blob_id":"9341f8de41705c2bb3c8162a964900b64a65ec5b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py","logical_id":"aoa:aoa-techniques:artifact:2a642426970f2a18a85178cf","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py","repo":"aoa-techniques","size_bytes":69709,"version_id":"aoa:aoa-techniques:artifact-version:55debedd98353423662b6244"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py:1"],"path_ref":"mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py"},"signs":{"attestation_ref":"","digest":"a6177ca4b3301ce82368c110e47bf2d58377e0b0adf8c069f0178a46c80c7fe0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_distillation_tree_pilot_history_wave.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","git_blob_id":"1fe92e2d14fb957ede9fefe2504f4901b8e6d4ae","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","logical_id":"aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","repo":"aoa-techniques","size_bytes":60064,"version_id":"aoa:aoa-techniques:artifact-version:d6f37ce3decb1612d8d4d3c6"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py:1"],"path_ref":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py"},"signs":{"attestation_ref":"","digest":"f9d6b9790a3ca454d620bbf3815b023e8d65648b1220a93512a77c055d0e29b1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","git_blob_id":"31105df7e1564bcd50ac130ec7384e8421fac23d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","logical_id":"aoa:aoa-techniques:artifact:a9d48ab51cf9f58a56d8bf87","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","repo":"aoa-techniques","size_bytes":60030,"version_id":"aoa:aoa-techniques:artifact-version:4e972e66fd12161e58edccc0"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py:1"],"path_ref":"mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py"},"signs":{"attestation_ref":"","digest":"1fcc89404e82a1a7cb1ccfea8f9597f74612fb256bd1320c141fd98971a1e01e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","git_blob_id":"baac1c7ff10b58d28ee89b0b73f2acdabe78682a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8","lineage_path":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py","logical_id":"aoa:aoa-techniques:artifact:261914bf096c6fc6c33446d8","mime":"text/x-python","path":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py","repo":"aoa-techniques","size_bytes":95927,"version_id":"aoa:aoa-techniques:artifact-version:0a903e721337618a99ffdef0"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py:1"],"path_ref":"mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py"},"signs":{"attestation_ref":"","digest":"c5f375ff48eb1e0120e2fae9239665fd63ee38f9a176b54fa7ae8e6bf11d6e3a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_distillation_tree_pilot_runtime_wave.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","git_blob_id":"cf64119a688b3019f837e6221c63515d3407573e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6","lineage_path":"tests/test_docs_boundary_tree_pilot.py","logical_id":"aoa:aoa-techniques:artifact:cd11834206853d96580b3ce6","mime":"text/x-python","path":"mechanics/distillation/tests/test_docs_boundary_tree_pilot.py","repo":"aoa-techniques","size_bytes":7102,"version_id":"aoa:aoa-techniques:artifact-version:da20330203c3e66935b80cf0"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_docs_boundary_tree_pilot.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_docs_boundary_tree_pilot.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_docs_boundary_tree_pilot.py:1"],"path_ref":"mechanics/distillation/tests/test_docs_boundary_tree_pilot.py"},"signs":{"attestation_ref":"","digest":"990d9316ce7e0d393589f790ed9d6e2851300a9a2a5361c067e73d70044483b9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_docs_boundary_tree_pilot.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4a09365d51a6b68831dfa2f0681603fd453af9ec9e2a2ff661870efed6e60a3f","git_blob_id":"8164914e62b283a8e68a6d8e7af34f3e13c689c9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:82e028210399ae4428247f3c","lineage_path":"tests/test_evaluation_chain_tree_pilot.py","logical_id":"aoa:aoa-techniques:artifact:82e028210399ae4428247f3c","mime":"text/x-python","path":"mechanics/distillation/tests/test_evaluation_chain_tree_pilot.py","repo":"aoa-techniques","size_bytes":6921,"version_id":"aoa:aoa-techniques:artifact-version:f79cd89b2ac7b1b71624f7d8"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_evaluation_chain_tree_pilot.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_evaluation_chain_tree_pilot.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_evaluation_chain_tree_pilot.py:1"],"path_ref":"mechanics/distillation/tests/test_evaluation_chain_tree_pilot.py"},"signs":{"attestation_ref":"","digest":"4a09365d51a6b68831dfa2f0681603fd453af9ec9e2a2ff661870efed6e60a3f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_evaluation_chain_tree_pilot.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1057,7 +1057,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"be31fda9de0d38712184d67229f7e4ebfa04aff3db72de81710f35db405247e1","git_blob_id":"12b126c733385af6504d8ca9675c73ebf2b832a6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27","lineage_path":"tests/test_skill_support_tree_pilot.py","logical_id":"aoa:aoa-techniques:artifact:9e9466158949a19e42bd7d27","mime":"text/x-python","path":"mechanics/distillation/tests/test_skill_support_tree_pilot.py","repo":"aoa-techniques","size_bytes":6436,"version_id":"aoa:aoa-techniques:artifact-version:fbbfdc8adfc324d8cb85528a"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/distillation/tests/test_skill_support_tree_pilot.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/distillation/tests/test_skill_support_tree_pilot.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/distillation/tests/test_skill_support_tree_pilot.py:1"],"path_ref":"mechanics/distillation/tests/test_skill_support_tree_pilot.py"},"signs":{"attestation_ref":"","digest":"be31fda9de0d38712184d67229f7e4ebfa04aff3db72de81710f35db405247e1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/distillation/tests/test_skill_support_tree_pilot.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8917cbc109dfed5ab3d9d01c70adac34066c4f63087a31db2c72e3a040c2e6a3","git_blob_id":"a697969644f6d3d24d4a187bc1f8acb8ee0f88dc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:97ba6ad641f66f9e5b516012","lineage_path":"mechanics/experience/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:97ba6ad641f66f9e5b516012","mime":"text/markdown","path":"mechanics/experience/AGENTS.md","repo":"aoa-techniques","size_bytes":1917,"version_id":"aoa:aoa-techniques:artifact-version:ab1cd21c2cc152f60517d902"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/experience/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/experience/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/experience/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/experience/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/experience/AGENTS.md#role","title":"Role"},{"anchor":"source-split","level":2,"line":18,"ref":"mechanics/experience/AGENTS.md#source-split","title":"Source split"},{"anchor":"read-before-editing","level":2,"line":27,"ref":"mechanics/experience/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":35,"ref":"mechanics/experience/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":45,"ref":"mechanics/experience/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":60,"ref":"mechanics/experience/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/experience/AGENTS.md:1"],"path_ref":"mechanics/experience/AGENTS.md"},"signs":{"attestation_ref":"","digest":"8917cbc109dfed5ab3d9d01c70adac34066c4f63087a31db2c72e3a040c2e6a3","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3145edd56cc3862bd7db72573095dd5b5e300869753b9bb5f07efecdea39d8f2","git_blob_id":"d77bdc2b4f7efe9a8ccfbf0592c4eed5d970597c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:168341aaed8d3a58118fde73","lineage_path":"mechanics/experience/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:168341aaed8d3a58118fde73","mime":"text/markdown","path":"mechanics/experience/DIRECTION.md","repo":"aoa-techniques","size_bytes":2547,"version_id":"aoa:aoa-techniques:artifact-version:e776a500fefb5012967d742b"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/experience/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/experience/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"experience-direction","level":1,"line":1,"ref":"mechanics/experience/DIRECTION.md#experience-direction","title":"Experience Direction"},{"anchor":"current-intent","level":2,"line":3,"ref":"mechanics/experience/DIRECTION.md#current-intent","title":"Current Intent"},{"anchor":"current-route","level":2,"line":17,"ref":"mechanics/experience/DIRECTION.md#current-route","title":"Current Route"},{"anchor":"boundaries","level":2,"line":36,"ref":"mechanics/experience/DIRECTION.md#boundaries","title":"Boundaries"},{"anchor":"current-structural-posture","level":2,"line":47,"ref":"mechanics/experience/DIRECTION.md#current-structural-posture","title":"Current Structural Posture"}],"line_refs":["mechanics/experience/DIRECTION.md:1"],"path_ref":"mechanics/experience/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"3145edd56cc3862bd7db72573095dd5b5e300869753b9bb5f07efecdea39d8f2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f8a501b6d3c0d5f55cd8094e70a6c7898b79de9eebe28f169840c1b155637034","git_blob_id":"137201143206b36646915b7cf14228fa14ad0f5b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","lineage_path":"mechanics/experience/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","mime":"text/markdown","path":"mechanics/experience/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":2981,"version_id":"aoa:aoa-techniques:artifact-version:8502e8e79966c17a952d6a88"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/experience/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/experience/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"experience-landing-log","level":1,"line":1,"ref":"mechanics/experience/LANDING_LOG.md#experience-landing-log","title":"Experience Landing Log"},{"anchor":"2026-05-14-contract-packet-part-homes","level":2,"line":6,"ref":"mechanics/experience/LANDING_LOG.md#2026-05-14-contract-packet-part-homes","title":"2026-05-14 - Contract Packet Part Homes"},{"anchor":"2026-05-01-active-parts-split","level":2,"line":33,"ref":"mechanics/experience/LANDING_LOG.md#2026-05-01-active-parts-split","title":"2026-05-01 - Active Parts Split"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":58,"ref":"mechanics/experience/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"2026-05-03-technique-candidate-bridge","level":2,"line":66,"ref":"mechanics/experience/LANDING_LOG.md#2026-05-03-technique-candidate-bridge","title":"2026-05-03 - Technique Candidate Bridge"}],"line_refs":["mechanics/experience/LANDING_LOG.md:1"],"path_ref":"mechanics/experience/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"f8a501b6d3c0d5f55cd8094e70a6c7898b79de9eebe28f169840c1b155637034","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"84b32899506adde58b349bda6bd535f5f4b20dc25f8288dd1da51d1d029d6861","git_blob_id":"9ba85c434150b67bd2db1f5047df199cdab03e32","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","lineage_path":"mechanics/experience/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:8f6081b1bcd5d263a152388f","mime":"text/markdown","path":"mechanics/experience/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":2733,"version_id":"aoa:aoa-techniques:artifact-version:5b953f71cd2eb72bdcf8aca6"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/experience/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/experience/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"experience-landing-log","level":1,"line":1,"ref":"mechanics/experience/LANDING_LOG.md#experience-landing-log","title":"Experience Landing Log"},{"anchor":"2026-05-14-contract-packet-part-homes","level":2,"line":6,"ref":"mechanics/experience/LANDING_LOG.md#2026-05-14-contract-packet-part-homes","title":"2026-05-14 - Contract Packet Part Homes"},{"anchor":"2026-05-01-active-parts-split","level":2,"line":28,"ref":"mechanics/experience/LANDING_LOG.md#2026-05-01-active-parts-split","title":"2026-05-01 - Active Parts Split"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":49,"ref":"mechanics/experience/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"2026-05-03-technique-candidate-bridge","level":2,"line":57,"ref":"mechanics/experience/LANDING_LOG.md#2026-05-03-technique-candidate-bridge","title":"2026-05-03 - Technique Candidate Bridge"}],"line_refs":["mechanics/experience/LANDING_LOG.md:1"],"path_ref":"mechanics/experience/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"84b32899506adde58b349bda6bd535f5f4b20dc25f8288dd1da51d1d029d6861","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f32c0cb242b4ca7bdbbf62b880f29c9ca94b081282ce37d52bef459ca1b69604","git_blob_id":"aa61c55cba82a4211d89b9776cb21e4fa1d05f82","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:66fbb26dd96eaa4473a83948","lineage_path":"mechanics/experience/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:66fbb26dd96eaa4473a83948","mime":"text/markdown","path":"mechanics/experience/PARTS.md","repo":"aoa-techniques","size_bytes":4436,"version_id":"aoa:aoa-techniques:artifact-version:7dc1770c29bddb8bd2578862"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/experience/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/experience/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"experience-parts","level":1,"line":1,"ref":"mechanics/experience/PARTS.md#experience-parts","title":"Experience Parts"},{"anchor":"part-local-contract-packets","level":2,"line":17,"ref":"mechanics/experience/PARTS.md#part-local-contract-packets","title":"Part-Local Contract Packets"},{"anchor":"part-rule","level":2,"line":31,"ref":"mechanics/experience/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/experience/PARTS.md:1"],"path_ref":"mechanics/experience/PARTS.md"},"signs":{"attestation_ref":"","digest":"f32c0cb242b4ca7bdbbf62b880f29c9ca94b081282ce37d52bef459ca1b69604","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1ab3863d95a3e795d233bc3f159d2a3dbdef8461f863225a323aa8457e1058b0","git_blob_id":"f5d4b332479948db078eb2e3af1afca0eaf28d1b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5e5a9beb1aec14ac44db6ef3","lineage_path":"mechanics/experience/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:5e5a9beb1aec14ac44db6ef3","mime":"text/markdown","path":"mechanics/experience/PROVENANCE.md","repo":"aoa-techniques","size_bytes":4916,"version_id":"aoa:aoa-techniques:artifact-version:1737a5e5717ca0bd39b34347"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/experience/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/experience/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"experience-provenance-bridge","level":1,"line":1,"ref":"mechanics/experience/PROVENANCE.md#experience-provenance-bridge","title":"Experience Provenance Bridge"},{"anchor":"current-route-first","level":2,"line":7,"ref":"mechanics/experience/PROVENANCE.md#current-route-first","title":"Current Route First"},{"anchor":"source-map","level":2,"line":20,"ref":"mechanics/experience/PROVENANCE.md#source-map","title":"Source Map"},{"anchor":"contract-packet-bridge","level":2,"line":32,"ref":"mechanics/experience/PROVENANCE.md#contract-packet-bridge","title":"Contract Packet Bridge"},{"anchor":"center-context-bridge","level":2,"line":47,"ref":"mechanics/experience/PROVENANCE.md#center-context-bridge","title":"Center Context Bridge"},{"anchor":"legacy-posture","level":2,"line":53,"ref":"mechanics/experience/PROVENANCE.md#legacy-posture","title":"Legacy Posture"},{"anchor":"experience-rule","level":2,"line":60,"ref":"mechanics/experience/PROVENANCE.md#experience-rule","title":"Experience Rule"}],"line_refs":["mechanics/experience/PROVENANCE.md:1"],"path_ref":"mechanics/experience/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"1ab3863d95a3e795d233bc3f159d2a3dbdef8461f863225a323aa8457e1058b0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2e12434832edbc002b62af2775529b51b111b6e021e6da88f49af9eddec4d63d","git_blob_id":"efd7e85cea2171a29e5ea6d0878fe652eec54ebd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:16d501e3e9dde3dd1ee3540d","lineage_path":"mechanics/experience/README.md","logical_id":"aoa:aoa-techniques:artifact:16d501e3e9dde3dd1ee3540d","mime":"text/markdown","path":"mechanics/experience/README.md","repo":"aoa-techniques","size_bytes":3395,"version_id":"aoa:aoa-techniques:artifact-version:ca0075879d8fe2daafbfe8ea"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/experience/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/experience/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"experience","level":1,"line":1,"ref":"mechanics/experience/README.md#experience","title":"Experience"},{"anchor":"mechanic-card","level":2,"line":7,"ref":"mechanics/experience/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":11,"ref":"mechanics/experience/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":17,"ref":"mechanics/experience/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":23,"ref":"mechanics/experience/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":30,"ref":"mechanics/experience/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":38,"ref":"mechanics/experience/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":45,"ref":"mechanics/experience/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":56,"ref":"mechanics/experience/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":62,"ref":"mechanics/experience/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":71,"ref":"mechanics/experience/README.md#functioning-parts","title":"Functioning parts"}],"line_refs":["mechanics/experience/README.md:1"],"path_ref":"mechanics/experience/README.md"},"signs":{"attestation_ref":"","digest":"2e12434832edbc002b62af2775529b51b111b6e021e6da88f49af9eddec4d63d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1094,7 +1094,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","git_blob_id":"8bdc4f3ab1e075aae596268f7bb59be532979d29","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0","lineage_path":"tests/test_experience_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:972efac3114203a9dfece2e0","mime":"text/x-python","path":"mechanics/experience/tests/test_experience_mechanics_topology.py","repo":"aoa-techniques","size_bytes":8571,"version_id":"aoa:aoa-techniques:artifact-version:e61651319f32fccef6cd9ce1"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/experience/tests/test_experience_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/experience/tests/test_experience_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/experience/tests/test_experience_mechanics_topology.py:1"],"path_ref":"mechanics/experience/tests/test_experience_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"e579cebaaf9769aa5ff697ac747697eda1a88104dc10874f153059d0a76419f4","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/experience/tests/test_experience_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d96dc243756ee7158380b102a6db5611a5c6c41ca1ffe4215cb0d1ce6497493f","git_blob_id":"c57590a1400dff5f8f4acc1a40e108be87efc4b4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ac0fbb989bdb0fc797cd718d","lineage_path":"mechanics/growth-cycle/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:ac0fbb989bdb0fc797cd718d","mime":"text/markdown","path":"mechanics/growth-cycle/AGENTS.md","repo":"aoa-techniques","size_bytes":1643,"version_id":"aoa:aoa-techniques:artifact-version:cf14d93fcce5314e71b57d40"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/growth-cycle/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/growth-cycle/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/growth-cycle/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/growth-cycle/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/growth-cycle/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":18,"ref":"mechanics/growth-cycle/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":26,"ref":"mechanics/growth-cycle/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":38,"ref":"mechanics/growth-cycle/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":47,"ref":"mechanics/growth-cycle/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/growth-cycle/AGENTS.md:1"],"path_ref":"mechanics/growth-cycle/AGENTS.md"},"signs":{"attestation_ref":"","digest":"d96dc243756ee7158380b102a6db5611a5c6c41ca1ffe4215cb0d1ce6497493f","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"116a1f0dbe5737ea5b0b48d054a2d7a0322ba9c4b1d22db209719d3ffc094177","git_blob_id":"3af4bec592fa51c2ec2532d8fd0fe3f2d1c9b5a4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dca2b23f8fe41a026708cfba","lineage_path":"mechanics/growth-cycle/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:dca2b23f8fe41a026708cfba","mime":"text/markdown","path":"mechanics/growth-cycle/DIRECTION.md","repo":"aoa-techniques","size_bytes":1787,"version_id":"aoa:aoa-techniques:artifact-version:508ab6b8c02beccc88c0bd16"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/growth-cycle/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/growth-cycle/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"growth-cycle-direction","level":1,"line":1,"ref":"mechanics/growth-cycle/DIRECTION.md#growth-cycle-direction","title":"Growth Cycle Direction"},{"anchor":"source-of-truth-split","level":2,"line":10,"ref":"mechanics/growth-cycle/DIRECTION.md#source-of-truth-split","title":"Source-of-truth Split"},{"anchor":"local-contour","level":2,"line":20,"ref":"mechanics/growth-cycle/DIRECTION.md#local-contour","title":"Local Contour"},{"anchor":"growth-rule","level":2,"line":41,"ref":"mechanics/growth-cycle/DIRECTION.md#growth-rule","title":"Growth Rule"}],"line_refs":["mechanics/growth-cycle/DIRECTION.md:1"],"path_ref":"mechanics/growth-cycle/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"116a1f0dbe5737ea5b0b48d054a2d7a0322ba9c4b1d22db209719d3ffc094177","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e61c8385b2376f3233d2afbea4ed1b6581c054274c914e68169372e1aeeb0276","git_blob_id":"4c97925b557a4967a75ba690f75389c10afe9c80","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","lineage_path":"mechanics/growth-cycle/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","mime":"text/markdown","path":"mechanics/growth-cycle/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1994,"version_id":"aoa:aoa-techniques:artifact-version:2a906b07dbecb8b079b3d123"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/growth-cycle/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/growth-cycle/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"growth-cycle-landing-log","level":1,"line":1,"ref":"mechanics/growth-cycle/LANDING_LOG.md#growth-cycle-landing-log","title":"Growth Cycle Landing Log"},{"anchor":"2026-05-01","level":2,"line":6,"ref":"mechanics/growth-cycle/LANDING_LOG.md#2026-05-01","title":"2026-05-01"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":16,"ref":"mechanics/growth-cycle/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"2026-05-03-stage-technique-anchors","level":2,"line":24,"ref":"mechanics/growth-cycle/LANDING_LOG.md#2026-05-03-stage-technique-anchors","title":"2026-05-03 - Stage Technique Anchors"}],"line_refs":["mechanics/growth-cycle/LANDING_LOG.md:1"],"path_ref":"mechanics/growth-cycle/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"e61c8385b2376f3233d2afbea4ed1b6581c054274c914e68169372e1aeeb0276","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"be5a16710cfe637b7592164c782e3bebaf0ec5b71580eeb46a3bb73cfb4c6c62","git_blob_id":"973a2ee7577f26521b2a7e2c6f34973fda5899b9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","lineage_path":"mechanics/growth-cycle/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:3229d65a07995bee24ba7cde","mime":"text/markdown","path":"mechanics/growth-cycle/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1957,"version_id":"aoa:aoa-techniques:artifact-version:9ff178644da86f524523ccd8"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/growth-cycle/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/growth-cycle/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"growth-cycle-landing-log","level":1,"line":1,"ref":"mechanics/growth-cycle/LANDING_LOG.md#growth-cycle-landing-log","title":"Growth Cycle Landing Log"},{"anchor":"2026-05-01","level":2,"line":6,"ref":"mechanics/growth-cycle/LANDING_LOG.md#2026-05-01","title":"2026-05-01"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":16,"ref":"mechanics/growth-cycle/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"2026-05-03-stage-technique-anchors","level":2,"line":24,"ref":"mechanics/growth-cycle/LANDING_LOG.md#2026-05-03-stage-technique-anchors","title":"2026-05-03 - Stage Technique Anchors"}],"line_refs":["mechanics/growth-cycle/LANDING_LOG.md:1"],"path_ref":"mechanics/growth-cycle/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"be5a16710cfe637b7592164c782e3bebaf0ec5b71580eeb46a3bb73cfb4c6c62","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f17d3eb68deb95b97141faea7664bcb2f5267acd7f84e6d84771b026379671d2","git_blob_id":"6f504ede1ed508fa7cdb9424b4db099aeed6451c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0005dd1f769882e57df585ef","lineage_path":"mechanics/growth-cycle/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:0005dd1f769882e57df585ef","mime":"text/markdown","path":"mechanics/growth-cycle/PARTS.md","repo":"aoa-techniques","size_bytes":1838,"version_id":"aoa:aoa-techniques:artifact-version:a1b8613ca5bad2714efea97d"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/growth-cycle/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/growth-cycle/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"growth-cycle-parts","level":1,"line":1,"ref":"mechanics/growth-cycle/PARTS.md#growth-cycle-parts","title":"Growth Cycle Parts"},{"anchor":"part-rule","level":2,"line":14,"ref":"mechanics/growth-cycle/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/growth-cycle/PARTS.md:1"],"path_ref":"mechanics/growth-cycle/PARTS.md"},"signs":{"attestation_ref":"","digest":"f17d3eb68deb95b97141faea7664bcb2f5267acd7f84e6d84771b026379671d2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0a12f7f3cd40c0ebb6c6d265621b72369be40dd19e00a0ad4c175fef2d671760","git_blob_id":"c313ed08488e336e5a4a07bc416fb908c090599d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9be0d3a9ff402ae88e6df24d","lineage_path":"mechanics/growth-cycle/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:9be0d3a9ff402ae88e6df24d","mime":"text/markdown","path":"mechanics/growth-cycle/PROVENANCE.md","repo":"aoa-techniques","size_bytes":2181,"version_id":"aoa:aoa-techniques:artifact-version:c4361749303aae6cc658ea98"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/growth-cycle/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/growth-cycle/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"growth-cycle-provenance","level":1,"line":1,"ref":"mechanics/growth-cycle/PROVENANCE.md#growth-cycle-provenance","title":"Growth Cycle Provenance"},{"anchor":"active-landing-map","level":2,"line":10,"ref":"mechanics/growth-cycle/PROVENANCE.md#active-landing-map","title":"Active Landing Map"},{"anchor":"center-stage-bridge","level":2,"line":19,"ref":"mechanics/growth-cycle/PROVENANCE.md#center-stage-bridge","title":"Center Stage Bridge"},{"anchor":"aoa-center-relation","level":2,"line":25,"ref":"mechanics/growth-cycle/PROVENANCE.md#aoa-center-relation","title":"AoA Center Relation"}],"line_refs":["mechanics/growth-cycle/PROVENANCE.md:1"],"path_ref":"mechanics/growth-cycle/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"0a12f7f3cd40c0ebb6c6d265621b72369be40dd19e00a0ad4c175fef2d671760","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ecb41f974643319b77ec6ee7386beed52518688772ec8c97cd36c2267c70973a","git_blob_id":"d7cb5ec44bf0933395836dc6d822b083cbc2c65e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dc9132d584369fcbb76fde34","lineage_path":"mechanics/growth-cycle/README.md","logical_id":"aoa:aoa-techniques:artifact:dc9132d584369fcbb76fde34","mime":"text/markdown","path":"mechanics/growth-cycle/README.md","repo":"aoa-techniques","size_bytes":3135,"version_id":"aoa:aoa-techniques:artifact-version:1f1caea14c641b1c8ba54932"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/growth-cycle/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/growth-cycle/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"growth-cycle","level":1,"line":1,"ref":"mechanics/growth-cycle/README.md#growth-cycle","title":"Growth Cycle"},{"anchor":"mechanic-card","level":2,"line":7,"ref":"mechanics/growth-cycle/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":11,"ref":"mechanics/growth-cycle/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":17,"ref":"mechanics/growth-cycle/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":23,"ref":"mechanics/growth-cycle/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":31,"ref":"mechanics/growth-cycle/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":39,"ref":"mechanics/growth-cycle/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":47,"ref":"mechanics/growth-cycle/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":57,"ref":"mechanics/growth-cycle/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":63,"ref":"mechanics/growth-cycle/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":72,"ref":"mechanics/growth-cycle/README.md#functioning-parts","title":"Functioning parts"}],"line_refs":["mechanics/growth-cycle/README.md:1"],"path_ref":"mechanics/growth-cycle/README.md"},"signs":{"attestation_ref":"","digest":"ecb41f974643319b77ec6ee7386beed52518688772ec8c97cd36c2267c70973a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1114,7 +1114,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","git_blob_id":"81e324328a6413dbdda32bcf9834f97c538048ff","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91","lineage_path":"tests/test_growth_cycle_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:dae6aa5a8366ea6d4d055f91","mime":"text/x-python","path":"mechanics/growth-cycle/tests/test_growth_cycle_mechanics_topology.py","repo":"aoa-techniques","size_bytes":7743,"version_id":"aoa:aoa-techniques:artifact-version:02252d9a5e7003949f4c95fd"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/growth-cycle/tests/test_growth_cycle_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/growth-cycle/tests/test_growth_cycle_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/growth-cycle/tests/test_growth_cycle_mechanics_topology.py:1"],"path_ref":"mechanics/growth-cycle/tests/test_growth_cycle_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"6f71802d3041226dc4d63da3057cf0439c71100c10b3868bf7522f3fae0f7203","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/growth-cycle/tests/test_growth_cycle_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"badf03ec874db6375e90952c60b3872418e2b7788eade63eacd1f473220cba2d","git_blob_id":"4fd1980945578266e2cabf25436b65f9a91cd123","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a1437a25a7c1a02db837a57d","lineage_path":"mechanics/method-growth/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:a1437a25a7c1a02db837a57d","mime":"text/markdown","path":"mechanics/method-growth/AGENTS.md","repo":"aoa-techniques","size_bytes":2023,"version_id":"aoa:aoa-techniques:artifact-version:94f66c68eb4c97e455fa4f51"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/method-growth/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/method-growth/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/method-growth/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/method-growth/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/method-growth/AGENTS.md#role","title":"Role"},{"anchor":"source-split","level":2,"line":18,"ref":"mechanics/method-growth/AGENTS.md#source-split","title":"Source split"},{"anchor":"read-before-editing","level":2,"line":27,"ref":"mechanics/method-growth/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":35,"ref":"mechanics/method-growth/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":44,"ref":"mechanics/method-growth/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":59,"ref":"mechanics/method-growth/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/method-growth/AGENTS.md:1"],"path_ref":"mechanics/method-growth/AGENTS.md"},"signs":{"attestation_ref":"","digest":"badf03ec874db6375e90952c60b3872418e2b7788eade63eacd1f473220cba2d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ff72b84443b1f1b3405a1bedadafae1bd2e821cd8006303e3b48dba3e3ccdccc","git_blob_id":"ee7dcfbb38c09d64527d454e2c592edf31c9fe67","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cb611965358d0abf88ec5a5f","lineage_path":"mechanics/method-growth/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:cb611965358d0abf88ec5a5f","mime":"text/markdown","path":"mechanics/method-growth/DIRECTION.md","repo":"aoa-techniques","size_bytes":2064,"version_id":"aoa:aoa-techniques:artifact-version:2303b987747a8d6739a81dab"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/method-growth/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/method-growth/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-direction","level":1,"line":1,"ref":"mechanics/method-growth/DIRECTION.md#method-growth-direction","title":"Method-Growth Direction"},{"anchor":"current-intent","level":2,"line":3,"ref":"mechanics/method-growth/DIRECTION.md#current-intent","title":"Current Intent"},{"anchor":"current-route","level":2,"line":18,"ref":"mechanics/method-growth/DIRECTION.md#current-route","title":"Current Route"},{"anchor":"boundaries","level":2,"line":31,"ref":"mechanics/method-growth/DIRECTION.md#boundaries","title":"Boundaries"},{"anchor":"current-structural-posture","level":2,"line":42,"ref":"mechanics/method-growth/DIRECTION.md#current-structural-posture","title":"Current Structural Posture"}],"line_refs":["mechanics/method-growth/DIRECTION.md:1"],"path_ref":"mechanics/method-growth/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"ff72b84443b1f1b3405a1bedadafae1bd2e821cd8006303e3b48dba3e3ccdccc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e875f78557e154a8d247b716f5ddd79749e4bab8e8718bd5a4cc738de43afb40","git_blob_id":"1cd659b8aa22245d0ebbb9f0b8451e43ba7c7690","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","lineage_path":"mechanics/method-growth/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","mime":"text/markdown","path":"mechanics/method-growth/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":3848,"version_id":"aoa:aoa-techniques:artifact-version:678cc918479eba9f774a4b06"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/method-growth/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/method-growth/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-landing-log","level":1,"line":1,"ref":"mechanics/method-growth/LANDING_LOG.md#method-growth-landing-log","title":"Method-Growth Landing Log"},{"anchor":"2026-05-14-contract-packet-part-homes","level":2,"line":6,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-14-contract-packet-part-homes","title":"2026-05-14 - Contract Packet Part Homes"},{"anchor":"2026-05-01-active-parts-split","level":2,"line":33,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-01-active-parts-split","title":"2026-05-01 - Active Parts Split"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":58,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"2026-05-03-pattern-adoption-gate-extraction","level":2,"line":66,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-pattern-adoption-gate-extraction","title":"2026-05-03 - Pattern Adoption Gate Extraction"},{"anchor":"2026-05-03-skill-proposal-handoff-packet-extraction","level":2,"line":76,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-skill-proposal-handoff-packet-extraction","title":"2026-05-03 - Skill Proposal Handoff Packet Extraction"},{"anchor":"2026-05-03-adopted-practice-retention-review-extraction","level":2,"line":85,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-adopted-practice-retention-review-extraction","title":"2026-05-03 - Adopted Practice Retention Review Extraction"},{"anchor":"2026-05-03-superseded-practice-obsolescence-route-extraction","level":2,"line":94,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-superseded-practice-obsolescence-route-extraction","title":"2026-05-03 - Superseded Practice Obsolescence Route Extraction"}],"line_refs":["mechanics/method-growth/LANDING_LOG.md:1"],"path_ref":"mechanics/method-growth/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"e875f78557e154a8d247b716f5ddd79749e4bab8e8718bd5a4cc738de43afb40","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"90583f33c372afb1d6547a3d7c71247e938d6c610962febd423c215d8dcd9ebb","git_blob_id":"5368e974a0cbc85b30ec01d923dca87a76d1fad4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","lineage_path":"mechanics/method-growth/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:58a28c7b3e3262ea3b19e3fe","mime":"text/markdown","path":"mechanics/method-growth/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":3712,"version_id":"aoa:aoa-techniques:artifact-version:d48f81d336cdf7b21e20ac24"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/method-growth/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/method-growth/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-landing-log","level":1,"line":1,"ref":"mechanics/method-growth/LANDING_LOG.md#method-growth-landing-log","title":"Method-Growth Landing Log"},{"anchor":"2026-05-14-contract-packet-part-homes","level":2,"line":6,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-14-contract-packet-part-homes","title":"2026-05-14 - Contract Packet Part Homes"},{"anchor":"2026-05-01-active-parts-split","level":2,"line":28,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-01-active-parts-split","title":"2026-05-01 - Active Parts Split"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":49,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"2026-05-03-pattern-adoption-gate-extraction","level":2,"line":57,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-pattern-adoption-gate-extraction","title":"2026-05-03 - Pattern Adoption Gate Extraction"},{"anchor":"2026-05-03-skill-proposal-handoff-packet-extraction","level":2,"line":67,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-skill-proposal-handoff-packet-extraction","title":"2026-05-03 - Skill Proposal Handoff Packet Extraction"},{"anchor":"2026-05-03-adopted-practice-retention-review-extraction","level":2,"line":76,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-adopted-practice-retention-review-extraction","title":"2026-05-03 - Adopted Practice Retention Review Extraction"},{"anchor":"2026-05-03-superseded-practice-obsolescence-route-extraction","level":2,"line":85,"ref":"mechanics/method-growth/LANDING_LOG.md#2026-05-03-superseded-practice-obsolescence-route-extraction","title":"2026-05-03 - Superseded Practice Obsolescence Route Extraction"}],"line_refs":["mechanics/method-growth/LANDING_LOG.md:1"],"path_ref":"mechanics/method-growth/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"90583f33c372afb1d6547a3d7c71247e938d6c610962febd423c215d8dcd9ebb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8ed2df6970c0a8636eef2dd0b6c2a4f03d05ec310eee2b8390529da74d36e4fc","git_blob_id":"621eb41669ddcf1efd8ae130b5d0f774a7363839","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bd75897649933a8becf9cd74","lineage_path":"mechanics/method-growth/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:bd75897649933a8becf9cd74","mime":"text/markdown","path":"mechanics/method-growth/PARTS.md","repo":"aoa-techniques","size_bytes":3373,"version_id":"aoa:aoa-techniques:artifact-version:9f1968ac509eaf16caffbbba"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/method-growth/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/method-growth/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-parts","level":1,"line":1,"ref":"mechanics/method-growth/PARTS.md#method-growth-parts","title":"Method-Growth Parts"},{"anchor":"part-local-contract-packets","level":2,"line":14,"ref":"mechanics/method-growth/PARTS.md#part-local-contract-packets","title":"Part-Local Contract Packets"},{"anchor":"part-rule","level":2,"line":27,"ref":"mechanics/method-growth/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/method-growth/PARTS.md:1"],"path_ref":"mechanics/method-growth/PARTS.md"},"signs":{"attestation_ref":"","digest":"8ed2df6970c0a8636eef2dd0b6c2a4f03d05ec310eee2b8390529da74d36e4fc","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c867cf566ed1e2d68bf6274cb0121add7c403ada32e679e51d1e2d152096c46e","git_blob_id":"43d5dbb9ebfe36d8308c26c9c1102a313acc783e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:cd0307e0636674574235aebf","lineage_path":"mechanics/method-growth/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:cd0307e0636674574235aebf","mime":"text/markdown","path":"mechanics/method-growth/PROVENANCE.md","repo":"aoa-techniques","size_bytes":5622,"version_id":"aoa:aoa-techniques:artifact-version:74723efe0e16581ff1944c6a"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/method-growth/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/method-growth/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth-provenance-bridge","level":1,"line":1,"ref":"mechanics/method-growth/PROVENANCE.md#method-growth-provenance-bridge","title":"Method-Growth Provenance Bridge"},{"anchor":"current-route-first","level":2,"line":7,"ref":"mechanics/method-growth/PROVENANCE.md#current-route-first","title":"Current Route First"},{"anchor":"source-map","level":2,"line":20,"ref":"mechanics/method-growth/PROVENANCE.md#source-map","title":"Source Map"},{"anchor":"contract-packet-bridge","level":2,"line":30,"ref":"mechanics/method-growth/PROVENANCE.md#contract-packet-bridge","title":"Contract Packet Bridge"},{"anchor":"legacy-posture","level":2,"line":44,"ref":"mechanics/method-growth/PROVENANCE.md#legacy-posture","title":"Legacy Posture"},{"anchor":"method-growth-rule","level":2,"line":51,"ref":"mechanics/method-growth/PROVENANCE.md#method-growth-rule","title":"Method-Growth Rule"},{"anchor":"extracted-technique-bridge","level":2,"line":57,"ref":"mechanics/method-growth/PROVENANCE.md#extracted-technique-bridge","title":"Extracted Technique Bridge"}],"line_refs":["mechanics/method-growth/PROVENANCE.md:1"],"path_ref":"mechanics/method-growth/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"c867cf566ed1e2d68bf6274cb0121add7c403ada32e679e51d1e2d152096c46e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fd8d1bfc9ff807add633f2b73beb1b76e4c4b7749cbb366a9f9a9a3a57d11339","git_blob_id":"97ad31b6b3f4f46fc327c4385e6641ebb6b196b2","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:13625acb67ef244c4570bac3","lineage_path":"mechanics/method-growth/README.md","logical_id":"aoa:aoa-techniques:artifact:13625acb67ef244c4570bac3","mime":"text/markdown","path":"mechanics/method-growth/README.md","repo":"aoa-techniques","size_bytes":3577,"version_id":"aoa:aoa-techniques:artifact-version:f5531f6ac0b5fa2a598b9488"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/method-growth/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/method-growth/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"method-growth","level":1,"line":1,"ref":"mechanics/method-growth/README.md#method-growth","title":"Method-Growth"},{"anchor":"mechanic-card","level":2,"line":8,"ref":"mechanics/method-growth/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":12,"ref":"mechanics/method-growth/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":18,"ref":"mechanics/method-growth/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":24,"ref":"mechanics/method-growth/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":31,"ref":"mechanics/method-growth/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":39,"ref":"mechanics/method-growth/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":46,"ref":"mechanics/method-growth/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":56,"ref":"mechanics/method-growth/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":63,"ref":"mechanics/method-growth/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":72,"ref":"mechanics/method-growth/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"method-growth-gate","level":2,"line":88,"ref":"mechanics/method-growth/README.md#method-growth-gate","title":"Method-Growth Gate"}],"line_refs":["mechanics/method-growth/README.md:1"],"path_ref":"mechanics/method-growth/README.md"},"signs":{"attestation_ref":"","digest":"fd8d1bfc9ff807add633f2b73beb1b76e4c4b7749cbb366a9f9a9a3a57d11339","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1144,7 +1144,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","git_blob_id":"5c8b733d0a8eedcae679c4e0080f0be50d8b06d6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55","lineage_path":"tests/test_method_growth_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:67f2b18f5a44ee97c7a25b55","mime":"text/x-python","path":"mechanics/method-growth/tests/test_method_growth_mechanics_topology.py","repo":"aoa-techniques","size_bytes":11567,"version_id":"aoa:aoa-techniques:artifact-version:cf24e4102d6156426addbdac"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/method-growth/tests/test_method_growth_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/method-growth/tests/test_method_growth_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/method-growth/tests/test_method_growth_mechanics_topology.py:1"],"path_ref":"mechanics/method-growth/tests/test_method_growth_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"a4601bf47a183f7f29f214e1f951400a370409fc9692e5b3ed4546265b5b29b5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/method-growth/tests/test_method_growth_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c3bfe7733b215efecf9ed9e9dcdef07c5bd76c4cb3bb71a82789410fdcf166c2","git_blob_id":"1ff337f14088d775c7ba2495b08371bb6898ed48","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:19cf9e44d6ce3b2b9ead568b","lineage_path":"mechanics/questbook/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:19cf9e44d6ce3b2b9ead568b","mime":"text/markdown","path":"mechanics/questbook/AGENTS.md","repo":"aoa-techniques","size_bytes":2141,"version_id":"aoa:aoa-techniques:artifact-version:a99773b29a1d0f864247ea25"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/questbook/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/questbook/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/questbook/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/questbook/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/questbook/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":19,"ref":"mechanics/questbook/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":28,"ref":"mechanics/questbook/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":45,"ref":"mechanics/questbook/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":54,"ref":"mechanics/questbook/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/questbook/AGENTS.md:1"],"path_ref":"mechanics/questbook/AGENTS.md"},"signs":{"attestation_ref":"","digest":"c3bfe7733b215efecf9ed9e9dcdef07c5bd76c4cb3bb71a82789410fdcf166c2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e6c476c082837599eaccccdbe4290bb5aae42ee0c097e76b409d8b5bb2503feb","git_blob_id":"21f3537f460a661b20479b8b4e75d0ac264cd2d4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c696ee454107eeaf73493386","lineage_path":"mechanics/questbook/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:c696ee454107eeaf73493386","mime":"text/markdown","path":"mechanics/questbook/DIRECTION.md","repo":"aoa-techniques","size_bytes":2342,"version_id":"aoa:aoa-techniques:artifact-version:651ffb11a8f3d9c7bf7b46c5"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/questbook/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/questbook/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-direction","level":1,"line":1,"ref":"mechanics/questbook/DIRECTION.md#questbook-direction","title":"Questbook Direction"},{"anchor":"source-of-truth-split","level":2,"line":11,"ref":"mechanics/questbook/DIRECTION.md#source-of-truth-split","title":"Source-of-truth Split"},{"anchor":"local-contour","level":2,"line":25,"ref":"mechanics/questbook/DIRECTION.md#local-contour","title":"Local Contour"},{"anchor":"growth-rule","level":2,"line":48,"ref":"mechanics/questbook/DIRECTION.md#growth-rule","title":"Growth Rule"}],"line_refs":["mechanics/questbook/DIRECTION.md:1"],"path_ref":"mechanics/questbook/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"e6c476c082837599eaccccdbe4290bb5aae42ee0c097e76b409d8b5bb2503feb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"784ee888bad83a3357f52a74278ac5189655c71f7454c95024658762772886d9","git_blob_id":"0f1ac2253c97313607d91b21ff786fa4f6c49a35","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","lineage_path":"mechanics/questbook/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","mime":"text/markdown","path":"mechanics/questbook/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1372,"version_id":"aoa:aoa-techniques:artifact-version:2083ca7dda2acd1706c4328e"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/questbook/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/questbook/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-landing-log","level":1,"line":1,"ref":"mechanics/questbook/LANDING_LOG.md#questbook-landing-log","title":"Questbook Landing Log"},{"anchor":"2026-05-03","level":2,"line":6,"ref":"mechanics/questbook/LANDING_LOG.md#2026-05-03","title":"2026-05-03"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":22,"ref":"mechanics/questbook/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"verification-route","level":2,"line":30,"ref":"mechanics/questbook/LANDING_LOG.md#verification-route","title":"Verification Route"}],"line_refs":["mechanics/questbook/LANDING_LOG.md:1"],"path_ref":"mechanics/questbook/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"784ee888bad83a3357f52a74278ac5189655c71f7454c95024658762772886d9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1f26b74709cb90876b3fae70a5be5b1e29b41192eb3f5c7f1d121eed809a8d89","git_blob_id":"c93695faacb299bde5a39ccfd8abf54273771617","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","lineage_path":"mechanics/questbook/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:37440acb8d1cd8b727a20264","mime":"text/markdown","path":"mechanics/questbook/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1275,"version_id":"aoa:aoa-techniques:artifact-version:b5bca98c9343587f2db97b34"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/questbook/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/questbook/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-landing-log","level":1,"line":1,"ref":"mechanics/questbook/LANDING_LOG.md#questbook-landing-log","title":"Questbook Landing Log"},{"anchor":"2026-05-03","level":2,"line":6,"ref":"mechanics/questbook/LANDING_LOG.md#2026-05-03","title":"2026-05-03"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":22,"ref":"mechanics/questbook/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"verification-route","level":2,"line":30,"ref":"mechanics/questbook/LANDING_LOG.md#verification-route","title":"Verification Route"}],"line_refs":["mechanics/questbook/LANDING_LOG.md:1"],"path_ref":"mechanics/questbook/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"1f26b74709cb90876b3fae70a5be5b1e29b41192eb3f5c7f1d121eed809a8d89","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9929f464ca2810e505118957c47edd346d6d62f742c6e2d8c6a395e054abb472","git_blob_id":"4df7569a1136417dc65e4ace164aa66fb2836a5a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8ec3726817bef92fcf35c7c6","lineage_path":"mechanics/questbook/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:8ec3726817bef92fcf35c7c6","mime":"text/markdown","path":"mechanics/questbook/PARTS.md","repo":"aoa-techniques","size_bytes":1272,"version_id":"aoa:aoa-techniques:artifact-version:52479fc35b8a59be22ced79a"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/questbook/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/questbook/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-parts","level":1,"line":1,"ref":"mechanics/questbook/PARTS.md#questbook-parts","title":"Questbook Parts"},{"anchor":"part-rule","level":2,"line":12,"ref":"mechanics/questbook/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/questbook/PARTS.md:1"],"path_ref":"mechanics/questbook/PARTS.md"},"signs":{"attestation_ref":"","digest":"9929f464ca2810e505118957c47edd346d6d62f742c6e2d8c6a395e054abb472","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"69f7a27f892dbb8dd1450f07ec07e536174531f6e85e9ce0bcc02761a66f676a","git_blob_id":"cafd2119bf739431ff6255aad56acff9adb0f807","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:de1c334450c40e51bb158627","lineage_path":"mechanics/questbook/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:de1c334450c40e51bb158627","mime":"text/markdown","path":"mechanics/questbook/PROVENANCE.md","repo":"aoa-techniques","size_bytes":4688,"version_id":"aoa:aoa-techniques:artifact-version:f94268a177311cb8b50de67f"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/questbook/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/questbook/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook-provenance","level":1,"line":1,"ref":"mechanics/questbook/PROVENANCE.md#questbook-provenance","title":"Questbook Provenance"},{"anchor":"active-landing-map","level":2,"line":14,"ref":"mechanics/questbook/PROVENANCE.md#active-landing-map","title":"Active Landing Map"},{"anchor":"aoa-center-relation","level":2,"line":22,"ref":"mechanics/questbook/PROVENANCE.md#aoa-center-relation","title":"AoA Center Relation"},{"anchor":"source-bridge","level":2,"line":33,"ref":"mechanics/questbook/PROVENANCE.md#source-bridge","title":"Source Bridge"}],"line_refs":["mechanics/questbook/PROVENANCE.md:1"],"path_ref":"mechanics/questbook/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"69f7a27f892dbb8dd1450f07ec07e536174531f6e85e9ce0bcc02761a66f676a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5ac9557960f3fec67c66e69dc066f3f0933e19e0c3a1dedd5cca2ef0c05b7523","git_blob_id":"45a404c925ff5c09399c27b9808b75a32c5f9afd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1542cfb27c305bbfb441f82f","lineage_path":"mechanics/questbook/README.md","logical_id":"aoa:aoa-techniques:artifact:1542cfb27c305bbfb441f82f","mime":"text/markdown","path":"mechanics/questbook/README.md","repo":"aoa-techniques","size_bytes":4134,"version_id":"aoa:aoa-techniques:artifact-version:988bd41eb43d577da8f512e5"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/questbook/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/questbook/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"questbook","level":1,"line":1,"ref":"mechanics/questbook/README.md#questbook","title":"Questbook"},{"anchor":"mechanic-card","level":2,"line":16,"ref":"mechanics/questbook/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":20,"ref":"mechanics/questbook/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":26,"ref":"mechanics/questbook/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":32,"ref":"mechanics/questbook/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":40,"ref":"mechanics/questbook/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":48,"ref":"mechanics/questbook/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":55,"ref":"mechanics/questbook/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":67,"ref":"mechanics/questbook/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":74,"ref":"mechanics/questbook/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":82,"ref":"mechanics/questbook/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"boundary","level":2,"line":94,"ref":"mechanics/questbook/README.md#boundary","title":"Boundary"},{"anchor":"aoa-relation","level":2,"line":106,"ref":"mechanics/questbook/README.md#aoa-relation","title":"AoA relation"}],"line_refs":["mechanics/questbook/README.md:1"],"path_ref":"mechanics/questbook/README.md"},"signs":{"attestation_ref":"","digest":"5ac9557960f3fec67c66e69dc066f3f0933e19e0c3a1dedd5cca2ef0c05b7523","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1162,7 +1162,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","git_blob_id":"52b47fd11c6344fbf430f268db74e36f15e9f914","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","lineage_path":"tests/test_questbook_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:3f880a46842b12278652a736","mime":"text/x-python","path":"mechanics/questbook/tests/test_questbook_mechanics_topology.py","repo":"aoa-techniques","size_bytes":9145,"version_id":"aoa:aoa-techniques:artifact-version:c9e7cc75a3391d9129942045"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/questbook/tests/test_questbook_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/questbook/tests/test_questbook_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/questbook/tests/test_questbook_mechanics_topology.py:1"],"path_ref":"mechanics/questbook/tests/test_questbook_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"e3944091c13b0f47f51c12e691e0920a0fb5f6b0d55c02b3e02b2dc3e9d43de6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/questbook/tests/test_questbook_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f25cc64a173ed291ae99f475cd41de8ad5d1b14ed0d658442e68308cbe5b93b8","git_blob_id":"693cc3aa260cccbe239f21f3e76e8e70ca606757","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8a4bf6cbf0b0b17588e64529","lineage_path":"mechanics/recurrence/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:8a4bf6cbf0b0b17588e64529","mime":"text/markdown","path":"mechanics/recurrence/AGENTS.md","repo":"aoa-techniques","size_bytes":1720,"version_id":"aoa:aoa-techniques:artifact-version:b8ecb81aece534cc96505ab9"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/recurrence/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/recurrence/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/recurrence/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/recurrence/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/recurrence/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":17,"ref":"mechanics/recurrence/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":25,"ref":"mechanics/recurrence/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":38,"ref":"mechanics/recurrence/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":47,"ref":"mechanics/recurrence/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/recurrence/AGENTS.md:1"],"path_ref":"mechanics/recurrence/AGENTS.md"},"signs":{"attestation_ref":"","digest":"f25cc64a173ed291ae99f475cd41de8ad5d1b14ed0d658442e68308cbe5b93b8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"aa9170e0b0b203d27a79dd56516c4c0ac5e89df0abfb57a5e216814f23709416","git_blob_id":"9e1b3fca4a41ade15ccd46eb75776765b2b05dff","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:373d31bb4eefee2cd479babf","lineage_path":"mechanics/recurrence/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:373d31bb4eefee2cd479babf","mime":"text/markdown","path":"mechanics/recurrence/DIRECTION.md","repo":"aoa-techniques","size_bytes":1787,"version_id":"aoa:aoa-techniques:artifact-version:b8e5dbe4340a77724d70622b"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/recurrence/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/recurrence/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-direction","level":1,"line":1,"ref":"mechanics/recurrence/DIRECTION.md#recurrence-direction","title":"Recurrence Direction"},{"anchor":"source-of-truth-split","level":2,"line":9,"ref":"mechanics/recurrence/DIRECTION.md#source-of-truth-split","title":"Source-of-truth Split"},{"anchor":"local-contour","level":2,"line":20,"ref":"mechanics/recurrence/DIRECTION.md#local-contour","title":"Local Contour"},{"anchor":"growth-rule","level":2,"line":40,"ref":"mechanics/recurrence/DIRECTION.md#growth-rule","title":"Growth Rule"}],"line_refs":["mechanics/recurrence/DIRECTION.md:1"],"path_ref":"mechanics/recurrence/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"aa9170e0b0b203d27a79dd56516c4c0ac5e89df0abfb57a5e216814f23709416","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3da63d3c458ba51897cb3d84346c0eb534a87de44b1311259129111ee0477f31","git_blob_id":"47d5d7b152f759d27bf0ee37bbbc276d42f8a593","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","lineage_path":"mechanics/recurrence/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","mime":"text/markdown","path":"mechanics/recurrence/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":2785,"version_id":"aoa:aoa-techniques:artifact-version:13ad917b4b58cd569a2c9869"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/recurrence/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/recurrence/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-landing-log","level":1,"line":1,"ref":"mechanics/recurrence/LANDING_LOG.md#recurrence-landing-log","title":"Recurrence Landing Log"},{"anchor":"2026-05-14-live-receipt-publisher-part-home","level":2,"line":7,"ref":"mechanics/recurrence/LANDING_LOG.md#2026-05-14-live-receipt-publisher-part-home","title":"2026-05-14 - Live Receipt Publisher Part Home"},{"anchor":"2026-05-14-manifest-part-home","level":2,"line":29,"ref":"mechanics/recurrence/LANDING_LOG.md#2026-05-14-manifest-part-home","title":"2026-05-14 - Manifest Part Home"},{"anchor":"2026-05-02","level":2,"line":48,"ref":"mechanics/recurrence/LANDING_LOG.md#2026-05-02","title":"2026-05-02"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":62,"ref":"mechanics/recurrence/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"}],"line_refs":["mechanics/recurrence/LANDING_LOG.md:1"],"path_ref":"mechanics/recurrence/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"3da63d3c458ba51897cb3d84346c0eb534a87de44b1311259129111ee0477f31","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b1fe6fb1dcd52bf4bc47df24add2d4fbeb4028a0e399c86278505d3dd2329187","git_blob_id":"909d7224589414d5399dc816f39eeee3f8303d38","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","lineage_path":"mechanics/recurrence/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:450d3e3c040dc1d34c8a2d0f","mime":"text/markdown","path":"mechanics/recurrence/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":2592,"version_id":"aoa:aoa-techniques:artifact-version:861ec50b7dcdf9c929b1e202"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/recurrence/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/recurrence/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-landing-log","level":1,"line":1,"ref":"mechanics/recurrence/LANDING_LOG.md#recurrence-landing-log","title":"Recurrence Landing Log"},{"anchor":"2026-05-14-live-receipt-publisher-part-home","level":2,"line":7,"ref":"mechanics/recurrence/LANDING_LOG.md#2026-05-14-live-receipt-publisher-part-home","title":"2026-05-14 - Live Receipt Publisher Part Home"},{"anchor":"2026-05-14-manifest-part-home","level":2,"line":23,"ref":"mechanics/recurrence/LANDING_LOG.md#2026-05-14-manifest-part-home","title":"2026-05-14 - Manifest Part Home"},{"anchor":"2026-05-02","level":2,"line":37,"ref":"mechanics/recurrence/LANDING_LOG.md#2026-05-02","title":"2026-05-02"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":51,"ref":"mechanics/recurrence/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"}],"line_refs":["mechanics/recurrence/LANDING_LOG.md:1"],"path_ref":"mechanics/recurrence/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"b1fe6fb1dcd52bf4bc47df24add2d4fbeb4028a0e399c86278505d3dd2329187","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5125ad2c8fa8866877fec596ede11ebf064d4d58b77db002255a092711ad9600","git_blob_id":"a4b6e6ee812e112bd5db41cb630d647db3c0ed0a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:c187a0a940d29d727be151a6","lineage_path":"mechanics/recurrence/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:c187a0a940d29d727be151a6","mime":"text/markdown","path":"mechanics/recurrence/PARTS.md","repo":"aoa-techniques","size_bytes":1188,"version_id":"aoa:aoa-techniques:artifact-version:b8746fc60f02abc8abe985cd"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/recurrence/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/recurrence/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-parts","level":1,"line":1,"ref":"mechanics/recurrence/PARTS.md#recurrence-parts","title":"Recurrence Parts"},{"anchor":"part-rule","level":2,"line":11,"ref":"mechanics/recurrence/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/recurrence/PARTS.md:1"],"path_ref":"mechanics/recurrence/PARTS.md"},"signs":{"attestation_ref":"","digest":"5125ad2c8fa8866877fec596ede11ebf064d4d58b77db002255a092711ad9600","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cc11cec358e13849b29e23d9ebf438665425c244986a65b2c891c1955d495a3e","git_blob_id":"b7c333f4aba93aed23760516330eac7220c4b44e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8876379d2e54475aa9b24341","lineage_path":"mechanics/recurrence/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:8876379d2e54475aa9b24341","mime":"text/markdown","path":"mechanics/recurrence/PROVENANCE.md","repo":"aoa-techniques","size_bytes":2717,"version_id":"aoa:aoa-techniques:artifact-version:4c842b1088b4c762ed3b2112"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/recurrence/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/recurrence/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence-provenance","level":1,"line":1,"ref":"mechanics/recurrence/PROVENANCE.md#recurrence-provenance","title":"Recurrence Provenance"},{"anchor":"active-landing-map","level":2,"line":10,"ref":"mechanics/recurrence/PROVENANCE.md#active-landing-map","title":"Active Landing Map"},{"anchor":"aoa-center-relation","level":2,"line":17,"ref":"mechanics/recurrence/PROVENANCE.md#aoa-center-relation","title":"AoA Center Relation"},{"anchor":"source-bridge","level":2,"line":28,"ref":"mechanics/recurrence/PROVENANCE.md#source-bridge","title":"Source Bridge"}],"line_refs":["mechanics/recurrence/PROVENANCE.md:1"],"path_ref":"mechanics/recurrence/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"cc11cec358e13849b29e23d9ebf438665425c244986a65b2c891c1955d495a3e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8973bdf860486578924f16fba28a7c210e97790cee80a4fcd2fd8e2e3a382297","git_blob_id":"19cbe8240140cfa9b9d54f6643e359bdb91fa443","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:19fb3d55a5cf2e7e3f87c063","lineage_path":"mechanics/recurrence/README.md","logical_id":"aoa:aoa-techniques:artifact:19fb3d55a5cf2e7e3f87c063","mime":"text/markdown","path":"mechanics/recurrence/README.md","repo":"aoa-techniques","size_bytes":3631,"version_id":"aoa:aoa-techniques:artifact-version:1dce88971fc10a37fbec6f48"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/recurrence/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/recurrence/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"recurrence","level":1,"line":1,"ref":"mechanics/recurrence/README.md#recurrence","title":"Recurrence"},{"anchor":"mechanic-card","level":2,"line":13,"ref":"mechanics/recurrence/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":17,"ref":"mechanics/recurrence/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":23,"ref":"mechanics/recurrence/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":29,"ref":"mechanics/recurrence/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":37,"ref":"mechanics/recurrence/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":45,"ref":"mechanics/recurrence/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":52,"ref":"mechanics/recurrence/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":63,"ref":"mechanics/recurrence/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":69,"ref":"mechanics/recurrence/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":77,"ref":"mechanics/recurrence/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"boundary","level":2,"line":84,"ref":"mechanics/recurrence/README.md#boundary","title":"Boundary"},{"anchor":"aoa-relation","level":2,"line":94,"ref":"mechanics/recurrence/README.md#aoa-relation","title":"AoA relation"}],"line_refs":["mechanics/recurrence/README.md:1"],"path_ref":"mechanics/recurrence/README.md"},"signs":{"attestation_ref":"","digest":"8973bdf860486578924f16fba28a7c210e97790cee80a4fcd2fd8e2e3a382297","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1185,7 +1185,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","git_blob_id":"2de721b2454ef2761f93f5e2a609030ffff75ae0","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7","lineage_path":"tests/test_recurrence_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:36d0f9de874115f8fe8cfcb7","mime":"text/x-python","path":"mechanics/recurrence/tests/test_recurrence_mechanics_topology.py","repo":"aoa-techniques","size_bytes":4783,"version_id":"aoa:aoa-techniques:artifact-version:c230e5e5f573e330c6b6c0a7"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/recurrence/tests/test_recurrence_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/recurrence/tests/test_recurrence_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/recurrence/tests/test_recurrence_mechanics_topology.py:1"],"path_ref":"mechanics/recurrence/tests/test_recurrence_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"d9ff0fc676fa73fee169d26cd95ac73acd6a22dcd74bdbfc0bccb8dff0edb235","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/recurrence/tests/test_recurrence_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c97cd62c8b22500a968644f1a333230987586af28b7765bf91114ae0cdc95dd9","git_blob_id":"1afa54c50f5c4bafcf3dcdc0f190299b9019164c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:301079de4f207771e1be5e44","lineage_path":"mechanics/release-support/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:301079de4f207771e1be5e44","mime":"text/markdown","path":"mechanics/release-support/AGENTS.md","repo":"aoa-techniques","size_bytes":1731,"version_id":"aoa:aoa-techniques:artifact-version:26fbc3439f6a6cc85f272149"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/release-support/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/release-support/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/release-support/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/release-support/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/release-support/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":18,"ref":"mechanics/release-support/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":26,"ref":"mechanics/release-support/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":38,"ref":"mechanics/release-support/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":47,"ref":"mechanics/release-support/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/release-support/AGENTS.md:1"],"path_ref":"mechanics/release-support/AGENTS.md"},"signs":{"attestation_ref":"","digest":"c97cd62c8b22500a968644f1a333230987586af28b7765bf91114ae0cdc95dd9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6ba8bf9ab1584882054e37c797529366624dad13ad86c34140970a3c3bd86c11","git_blob_id":"b265c5fd778cd17247d357ba25fcce44795ec147","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00","lineage_path":"mechanics/release-support/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:bd309b4a03d91b8b24030b00","mime":"text/markdown","path":"mechanics/release-support/DIRECTION.md","repo":"aoa-techniques","size_bytes":1801,"version_id":"aoa:aoa-techniques:artifact-version:ec1730d2a7e0fe3661b84a69"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/release-support/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/release-support/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"release-support-direction","level":1,"line":1,"ref":"mechanics/release-support/DIRECTION.md#release-support-direction","title":"Release Support Direction"},{"anchor":"source-of-truth-split","level":2,"line":9,"ref":"mechanics/release-support/DIRECTION.md#source-of-truth-split","title":"Source-of-truth Split"},{"anchor":"local-contour","level":2,"line":20,"ref":"mechanics/release-support/DIRECTION.md#local-contour","title":"Local Contour"},{"anchor":"growth-rule","level":2,"line":42,"ref":"mechanics/release-support/DIRECTION.md#growth-rule","title":"Growth Rule"}],"line_refs":["mechanics/release-support/DIRECTION.md:1"],"path_ref":"mechanics/release-support/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"6ba8bf9ab1584882054e37c797529366624dad13ad86c34140970a3c3bd86c11","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"947565c6126d54bed011d2d94d28276109bfb2e7802432d51e1a87267ab099fb","git_blob_id":"b88b4c27b3f2998e23045f12993a113cd749980d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","lineage_path":"mechanics/release-support/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","mime":"text/markdown","path":"mechanics/release-support/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":2065,"version_id":"aoa:aoa-techniques:artifact-version:2f2d8123f7a0f6764f3f6914"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/release-support/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/release-support/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"release-support-landing-log","level":1,"line":1,"ref":"mechanics/release-support/LANDING_LOG.md#release-support-landing-log","title":"Release Support Landing Log"},{"anchor":"2026-05-14-contract-packet-part-homes","level":2,"line":7,"ref":"mechanics/release-support/LANDING_LOG.md#2026-05-14-contract-packet-part-homes","title":"2026-05-14 - Contract Packet Part Homes"},{"anchor":"2026-05-02","level":2,"line":28,"ref":"mechanics/release-support/LANDING_LOG.md#2026-05-02","title":"2026-05-02"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":41,"ref":"mechanics/release-support/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"}],"line_refs":["mechanics/release-support/LANDING_LOG.md:1"],"path_ref":"mechanics/release-support/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"947565c6126d54bed011d2d94d28276109bfb2e7802432d51e1a87267ab099fb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b10c39b9cfc44721c74fa62900dd3d3e9adb372a63063fdfef58f4887fe98672","git_blob_id":"1530403bc892d7c6afefd3a0ac3a6486406bef38","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","lineage_path":"mechanics/release-support/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:2c0c634c2aa13198ddbecc64","mime":"text/markdown","path":"mechanics/release-support/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1966,"version_id":"aoa:aoa-techniques:artifact-version:5bfa95530b151d743b65e2d0"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/release-support/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/release-support/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"release-support-landing-log","level":1,"line":1,"ref":"mechanics/release-support/LANDING_LOG.md#release-support-landing-log","title":"Release Support Landing Log"},{"anchor":"2026-05-14-contract-packet-part-homes","level":2,"line":7,"ref":"mechanics/release-support/LANDING_LOG.md#2026-05-14-contract-packet-part-homes","title":"2026-05-14 - Contract Packet Part Homes"},{"anchor":"2026-05-02","level":2,"line":23,"ref":"mechanics/release-support/LANDING_LOG.md#2026-05-02","title":"2026-05-02"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":36,"ref":"mechanics/release-support/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"}],"line_refs":["mechanics/release-support/LANDING_LOG.md:1"],"path_ref":"mechanics/release-support/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"b10c39b9cfc44721c74fa62900dd3d3e9adb372a63063fdfef58f4887fe98672","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9c6577a71eda6d2943da35a445f56fc2cd627dec0c8728836cc4c78e8c0e55e9","git_blob_id":"08c672d6034adf48dadeef7731155a7a8aef913c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:07208cf1e5f67b4a2e115f21","lineage_path":"mechanics/release-support/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:07208cf1e5f67b4a2e115f21","mime":"text/markdown","path":"mechanics/release-support/PARTS.md","repo":"aoa-techniques","size_bytes":2010,"version_id":"aoa:aoa-techniques:artifact-version:acd9fb8b9387b177a5aa5b5b"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/release-support/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/release-support/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"release-support-parts","level":1,"line":1,"ref":"mechanics/release-support/PARTS.md#release-support-parts","title":"Release Support Parts"},{"anchor":"part-local-contract-packets","level":2,"line":12,"ref":"mechanics/release-support/PARTS.md#part-local-contract-packets","title":"Part-Local Contract Packets"},{"anchor":"part-rule","level":2,"line":22,"ref":"mechanics/release-support/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/release-support/PARTS.md:1"],"path_ref":"mechanics/release-support/PARTS.md"},"signs":{"attestation_ref":"","digest":"9c6577a71eda6d2943da35a445f56fc2cd627dec0c8728836cc4c78e8c0e55e9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fb668f5f4ebc4b4722bffadf735f9e04cea8538ff209bf483a003b8a4bf8bac6","git_blob_id":"501fe89cc577dd3a0adda2493c5ad2fe4daba64d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6699026f4eaa3488aa900737","lineage_path":"mechanics/release-support/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:6699026f4eaa3488aa900737","mime":"text/markdown","path":"mechanics/release-support/PROVENANCE.md","repo":"aoa-techniques","size_bytes":3023,"version_id":"aoa:aoa-techniques:artifact-version:b526ec33a34e424eb1f0a5bc"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/release-support/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/release-support/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"release-support-provenance","level":1,"line":1,"ref":"mechanics/release-support/PROVENANCE.md#release-support-provenance","title":"Release Support Provenance"},{"anchor":"active-landing-map","level":2,"line":10,"ref":"mechanics/release-support/PROVENANCE.md#active-landing-map","title":"Active Landing Map"},{"anchor":"contract-packet-bridge","level":2,"line":17,"ref":"mechanics/release-support/PROVENANCE.md#contract-packet-bridge","title":"Contract Packet Bridge"},{"anchor":"aoa-center-relation","level":2,"line":28,"ref":"mechanics/release-support/PROVENANCE.md#aoa-center-relation","title":"AoA Center Relation"},{"anchor":"source-bridge","level":2,"line":39,"ref":"mechanics/release-support/PROVENANCE.md#source-bridge","title":"Source Bridge"}],"line_refs":["mechanics/release-support/PROVENANCE.md:1"],"path_ref":"mechanics/release-support/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"fb668f5f4ebc4b4722bffadf735f9e04cea8538ff209bf483a003b8a4bf8bac6","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"53e9144823499a671120765da136298ef42a5a58cc719c4657a628f9055a8570","git_blob_id":"c4b9a31ea408ca23099736e389add5088f54397a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f","lineage_path":"mechanics/release-support/README.md","logical_id":"aoa:aoa-techniques:artifact:04a06230b4e4da1ae930621f","mime":"text/markdown","path":"mechanics/release-support/README.md","repo":"aoa-techniques","size_bytes":3629,"version_id":"aoa:aoa-techniques:artifact-version:df03875cbbdb8db27d7f8445"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/release-support/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/release-support/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"release-support","level":1,"line":1,"ref":"mechanics/release-support/README.md#release-support","title":"Release Support"},{"anchor":"mechanic-card","level":2,"line":13,"ref":"mechanics/release-support/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":17,"ref":"mechanics/release-support/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":23,"ref":"mechanics/release-support/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":29,"ref":"mechanics/release-support/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":37,"ref":"mechanics/release-support/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":45,"ref":"mechanics/release-support/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":52,"ref":"mechanics/release-support/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":63,"ref":"mechanics/release-support/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":69,"ref":"mechanics/release-support/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":77,"ref":"mechanics/release-support/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"boundary","level":2,"line":85,"ref":"mechanics/release-support/README.md#boundary","title":"Boundary"},{"anchor":"aoa-relation","level":2,"line":95,"ref":"mechanics/release-support/README.md#aoa-relation","title":"AoA relation"}],"line_refs":["mechanics/release-support/README.md:1"],"path_ref":"mechanics/release-support/README.md"},"signs":{"attestation_ref":"","digest":"53e9144823499a671120765da136298ef42a5a58cc719c4657a628f9055a8570","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1206,7 +1206,7 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","git_blob_id":"8c432529e7ebaacfc12380f166320d881c8645c1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187","lineage_path":"tests/test_release_support_mechanics_topology.py","logical_id":"aoa:aoa-techniques:artifact:0fe833418dc1eab0b2818187","mime":"text/x-python","path":"mechanics/release-support/tests/test_release_support_mechanics_topology.py","repo":"aoa-techniques","size_bytes":7607,"version_id":"aoa:aoa-techniques:artifact-version:01a0632aa42e2fb671168fda"},"mechanics_role":"mechanic_package","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"mechanics/release-support/tests/test_release_support_mechanics_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/release-support/tests/test_release_support_mechanics_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["mechanics/release-support/tests/test_release_support_mechanics_topology.py:1"],"path_ref":"mechanics/release-support/tests/test_release_support_mechanics_topology.py"},"signs":{"attestation_ref":"","digest":"eb064ca8d9dd633e6558b26bc20620185cce784ac9a9fafeb8d0eaa55e7a386d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest mechanics/release-support/tests/test_release_support_mechanics_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"97943993751889bebffefcace950bf563562570ff2c8cccbd81f8f1596c37cf7","git_blob_id":"d7886cee4cc022e46bd10ceb878cb8361b9f93cc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1bea40a4f33d56ec3110ebf3","lineage_path":"mechanics/rpg/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:1bea40a4f33d56ec3110ebf3","mime":"text/markdown","path":"mechanics/rpg/AGENTS.md","repo":"aoa-techniques","size_bytes":3225,"version_id":"aoa:aoa-techniques:artifact-version:0d223a1739797462fefbdf79"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/rpg/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/rpg/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"mechanics/rpg/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"mechanics/rpg/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"mechanics/rpg/AGENTS.md#role","title":"Role"},{"anchor":"owner-lane","level":2,"line":18,"ref":"mechanics/rpg/AGENTS.md#owner-lane","title":"Owner Lane"},{"anchor":"read-before-editing","level":2,"line":42,"ref":"mechanics/rpg/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":51,"ref":"mechanics/rpg/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":69,"ref":"mechanics/rpg/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":85,"ref":"mechanics/rpg/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["mechanics/rpg/AGENTS.md:1"],"path_ref":"mechanics/rpg/AGENTS.md"},"signs":{"attestation_ref":"","digest":"97943993751889bebffefcace950bf563562570ff2c8cccbd81f8f1596c37cf7","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"187067da38d8c48dab79a0d40192b8d5a0dd052a7032bc1af0c29aa5eec0611b","git_blob_id":"967b4e6ab77426ed1f72bfdc5643f5f8aa32e9f5","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ec069fbc48c817d019b7b03b","lineage_path":"mechanics/rpg/DIRECTION.md","logical_id":"aoa:aoa-techniques:artifact:ec069fbc48c817d019b7b03b","mime":"text/markdown","path":"mechanics/rpg/DIRECTION.md","repo":"aoa-techniques","size_bytes":2096,"version_id":"aoa:aoa-techniques:artifact-version:2011a30afe26fe7caa53b75d"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/rpg/DIRECTION.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/rpg/DIRECTION.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"rpg-direction","level":1,"line":1,"ref":"mechanics/rpg/DIRECTION.md#rpg-direction","title":"RPG Direction"},{"anchor":"source-of-truth-split","level":2,"line":3,"ref":"mechanics/rpg/DIRECTION.md#source-of-truth-split","title":"Source-Of-Truth Split"},{"anchor":"local-contour","level":2,"line":15,"ref":"mechanics/rpg/DIRECTION.md#local-contour","title":"Local Contour"},{"anchor":"growth-rule","level":2,"line":42,"ref":"mechanics/rpg/DIRECTION.md#growth-rule","title":"Growth Rule"},{"anchor":"review-posture","level":2,"line":49,"ref":"mechanics/rpg/DIRECTION.md#review-posture","title":"Review Posture"}],"line_refs":["mechanics/rpg/DIRECTION.md:1"],"path_ref":"mechanics/rpg/DIRECTION.md"},"signs":{"attestation_ref":"","digest":"187067da38d8c48dab79a0d40192b8d5a0dd052a7032bc1af0c29aa5eec0611b","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"42712a2597a56a9985b4a5f282535879ea3864d0b963fb1680c56a6f15cfa236","git_blob_id":"3c99b99b20f9dea8c6100fac08842008dd3eab2e","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","lineage_path":"mechanics/rpg/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","mime":"text/markdown","path":"mechanics/rpg/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1497,"version_id":"aoa:aoa-techniques:artifact-version:4bb44e5816459d77d470949a"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/rpg/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/rpg/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"rpg-landing-log","level":1,"line":1,"ref":"mechanics/rpg/LANDING_LOG.md#rpg-landing-log","title":"RPG Landing Log"},{"anchor":"2026-05-03-candidate-mechanics-surface","level":2,"line":3,"ref":"mechanics/rpg/LANDING_LOG.md#2026-05-03-candidate-mechanics-surface","title":"2026-05-03 - Candidate Mechanics Surface"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":27,"ref":"mechanics/rpg/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"verification-route","level":2,"line":34,"ref":"mechanics/rpg/LANDING_LOG.md#verification-route","title":"Verification Route"}],"line_refs":["mechanics/rpg/LANDING_LOG.md:1"],"path_ref":"mechanics/rpg/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"42712a2597a56a9985b4a5f282535879ea3864d0b963fb1680c56a6f15cfa236","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"mechanics_doc","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1223fda4383e0ac682b924b97b1af5351220aa574d7c33dfa67a9e63fc46ac4e","git_blob_id":"71570b8498923fb787ad6bd0646bacca1e795872","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","lineage_path":"mechanics/rpg/LANDING_LOG.md","logical_id":"aoa:aoa-techniques:artifact:bb0e7fd3ebc770c8a4eedaed","mime":"text/markdown","path":"mechanics/rpg/LANDING_LOG.md","repo":"aoa-techniques","size_bytes":1373,"version_id":"aoa:aoa-techniques:artifact-version:4d7ad98e29edd58e7292d0d7"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/rpg/LANDING_LOG.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/rpg/LANDING_LOG.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"rpg-landing-log","level":1,"line":1,"ref":"mechanics/rpg/LANDING_LOG.md#rpg-landing-log","title":"RPG Landing Log"},{"anchor":"2026-05-03-candidate-mechanics-surface","level":2,"line":3,"ref":"mechanics/rpg/LANDING_LOG.md#2026-05-03-candidate-mechanics-surface","title":"2026-05-03 - Candidate Mechanics Surface"},{"anchor":"2026-05-03-legacy-scaffold-bridge","level":2,"line":27,"ref":"mechanics/rpg/LANDING_LOG.md#2026-05-03-legacy-scaffold-bridge","title":"2026-05-03 - Legacy Scaffold Bridge"},{"anchor":"verification-route","level":2,"line":34,"ref":"mechanics/rpg/LANDING_LOG.md#verification-route","title":"Verification Route"}],"line_refs":["mechanics/rpg/LANDING_LOG.md:1"],"path_ref":"mechanics/rpg/LANDING_LOG.md"},"signs":{"attestation_ref":"","digest":"1223fda4383e0ac682b924b97b1af5351220aa574d7c33dfa67a9e63fc46ac4e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"parts","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a4f67672bdee3b1210d073ef334d8e21a467cffa77778bc2adb518cc65c16477","git_blob_id":"53213f6d25050a44e38b4b76a298756ffb8f58a7","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:da1e4d646a243e773637436c","lineage_path":"mechanics/rpg/PARTS.md","logical_id":"aoa:aoa-techniques:artifact:da1e4d646a243e773637436c","mime":"text/markdown","path":"mechanics/rpg/PARTS.md","repo":"aoa-techniques","size_bytes":1545,"version_id":"aoa:aoa-techniques:artifact-version:3bfc6fb14992b41914c8eea6"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/rpg/PARTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/rpg/PARTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"rpg-parts","level":1,"line":1,"ref":"mechanics/rpg/PARTS.md#rpg-parts","title":"RPG Parts"},{"anchor":"part-rule","level":2,"line":14,"ref":"mechanics/rpg/PARTS.md#part-rule","title":"Part Rule"}],"line_refs":["mechanics/rpg/PARTS.md:1"],"path_ref":"mechanics/rpg/PARTS.md"},"signs":{"attestation_ref":"","digest":"a4f67672bdee3b1210d073ef334d8e21a467cffa77778bc2adb518cc65c16477","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"provenance","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"934bccf8f875c5c4f2d134079196f65b601d7ec2b5938269e422c5c2453f4457","git_blob_id":"003ad428446f8bb252d3abe9c0bea607b637d5f9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a9cd7cf6fa46aa3e2ec978f9","lineage_path":"mechanics/rpg/PROVENANCE.md","logical_id":"aoa:aoa-techniques:artifact:a9cd7cf6fa46aa3e2ec978f9","mime":"text/markdown","path":"mechanics/rpg/PROVENANCE.md","repo":"aoa-techniques","size_bytes":2758,"version_id":"aoa:aoa-techniques:artifact-version:62142db9182943b51ff2aa42"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/rpg/PROVENANCE.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/rpg/PROVENANCE.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"rpg-provenance","level":1,"line":1,"ref":"mechanics/rpg/PROVENANCE.md#rpg-provenance","title":"RPG Provenance"},{"anchor":"status","level":2,"line":3,"ref":"mechanics/rpg/PROVENANCE.md#status","title":"Status"},{"anchor":"aoa-center-bridge","level":2,"line":17,"ref":"mechanics/rpg/PROVENANCE.md#aoa-center-bridge","title":"AoA Center Bridge"},{"anchor":"local-source-bridge","level":2,"line":32,"ref":"mechanics/rpg/PROVENANCE.md#local-source-bridge","title":"Local Source Bridge"},{"anchor":"active-part-bridge","level":2,"line":55,"ref":"mechanics/rpg/PROVENANCE.md#active-part-bridge","title":"Active Part Bridge"},{"anchor":"non-authority-notes","level":2,"line":64,"ref":"mechanics/rpg/PROVENANCE.md#non-authority-notes","title":"Non-Authority Notes"}],"line_refs":["mechanics/rpg/PROVENANCE.md:1"],"path_ref":"mechanics/rpg/PROVENANCE.md"},"signs":{"attestation_ref":"","digest":"934bccf8f875c5c4f2d134079196f65b601d7ec2b5938269e422c5c2453f4457","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5dd6ef8bd9f86ddfd462d1ea205894e5ae0e1765358a23c42f07f24fd632afbb","git_blob_id":"5a7fd3ea3d19a5d42d2aabd98098db1cc98e2360","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:850e7b6f4f85c0ec893fb9c2","lineage_path":"mechanics/rpg/README.md","logical_id":"aoa:aoa-techniques:artifact:850e7b6f4f85c0ec893fb9c2","mime":"text/markdown","path":"mechanics/rpg/README.md","repo":"aoa-techniques","size_bytes":4319,"version_id":"aoa:aoa-techniques:artifact-version:ec48baac5fbd5939f8d55ebe"},"mechanics_role":"mechanic_package","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"mechanics/rpg/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"mechanics/rpg/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"rpg","level":1,"line":1,"ref":"mechanics/rpg/README.md#rpg","title":"RPG"},{"anchor":"mechanic-card","level":2,"line":13,"ref":"mechanics/rpg/README.md#mechanic-card","title":"Mechanic card"},{"anchor":"trigger","level":3,"line":17,"ref":"mechanics/rpg/README.md#trigger","title":"Trigger"},{"anchor":"local-owns","level":3,"line":23,"ref":"mechanics/rpg/README.md#local-owns","title":"Local owns"},{"anchor":"stronger-owner-split","level":3,"line":29,"ref":"mechanics/rpg/README.md#stronger-owner-split","title":"Stronger owner split"},{"anchor":"inputs","level":3,"line":38,"ref":"mechanics/rpg/README.md#inputs","title":"Inputs"},{"anchor":"outputs","level":3,"line":46,"ref":"mechanics/rpg/README.md#outputs","title":"Outputs"},{"anchor":"must-not-claim","level":3,"line":53,"ref":"mechanics/rpg/README.md#must-not-claim","title":"Must not claim"},{"anchor":"next-route","level":3,"line":68,"ref":"mechanics/rpg/README.md#next-route","title":"Next route"},{"anchor":"active-route","level":2,"line":74,"ref":"mechanics/rpg/README.md#active-route","title":"Active route"},{"anchor":"functioning-parts","level":2,"line":82,"ref":"mechanics/rpg/README.md#functioning-parts","title":"Functioning parts"},{"anchor":"boundary","level":2,"line":99,"ref":"mechanics/rpg/README.md#boundary","title":"Boundary"},{"anchor":"aoa-relation","level":2,"line":110,"ref":"mechanics/rpg/README.md#aoa-relation","title":"AoA relation"}],"line_refs":["mechanics/rpg/README.md:1"],"path_ref":"mechanics/rpg/README.md"},"signs":{"attestation_ref":"","digest":"5dd6ef8bd9f86ddfd462d1ea205894e5ae0e1765358a23c42f07f24fd632afbb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1295,10 +1295,11 @@ {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"221578d391c0093be1779f0567fe82934a9b0087378c308cae08a199793e71da","git_blob_id":"be2c209da806c7428dd02468ef20cfc13c4c08e6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:97117975e7a1a05d5c0e0a11","lineage_path":"scripts/validate_agents_md_shape.py","logical_id":"aoa:aoa-techniques:artifact:97117975e7a1a05d5c0e0a11","mime":"text/x-python","path":"scripts/validate_agents_md_shape.py","repo":"aoa-techniques","size_bytes":2695,"version_id":"aoa:aoa-techniques:artifact-version:bb0c7712272294b1f9bdef9a"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_agents_md_shape.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_agents_md_shape.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_agents_md_shape.py:1"],"path_ref":"scripts/validate_agents_md_shape.py"},"signs":{"attestation_ref":"","digest":"221578d391c0093be1779f0567fe82934a9b0087378c308cae08a199793e71da","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_agents_md_shape.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0698f43610ea36b5d60daae4e37ba8a6b516bbc1870378fcd068b7d3d186bdb0","git_blob_id":"1ddf6fd63a73968f5757626a64d29205c7efa3b4","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5dc490a89b7477c117470956","lineage_path":"scripts/validate_agents_mesh.py","logical_id":"aoa:aoa-techniques:artifact:5dc490a89b7477c117470956","mime":"text/x-python","path":"scripts/validate_agents_mesh.py","repo":"aoa-techniques","size_bytes":3439,"version_id":"aoa:aoa-techniques:artifact-version:49bae4c16219ab8ac2d011ce"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_agents_mesh.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_agents_mesh.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_agents_mesh.py:1"],"path_ref":"scripts/validate_agents_mesh.py"},"signs":{"attestation_ref":"","digest":"0698f43610ea36b5d60daae4e37ba8a6b516bbc1870378fcd068b7d3d186bdb0","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_agents_mesh.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1fc10e20b4e033b8ee432185b81c73abe7a4bb8b8979fded2ffd530cfc831b2e","git_blob_id":"d8da42039ec01113343532e698ad380b85c8f8de","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e5f4c29fb35ffbe366619cd7","lineage_path":"scripts/validate_agents_mesh_index.py","logical_id":"aoa:aoa-techniques:artifact:e5f4c29fb35ffbe366619cd7","mime":"text/x-python","path":"scripts/validate_agents_mesh_index.py","repo":"aoa-techniques","size_bytes":2702,"version_id":"aoa:aoa-techniques:artifact-version:84290b5c59a163973fd016ce"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_agents_mesh_index.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_agents_mesh_index.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_agents_mesh_index.py:1"],"path_ref":"scripts/validate_agents_mesh_index.py"},"signs":{"attestation_ref":"","digest":"1fc10e20b4e033b8ee432185b81c73abe7a4bb8b8979fded2ffd530cfc831b2e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_agents_mesh_index.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"efd486b5f0ebebbfdca1b64eb45b38f51036e7918b78539d59b3dc57a0646c0a","git_blob_id":"02aa408586765db392314430ede70e698dc05525","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","lineage_path":"scripts/validate_local_stats_port.py","logical_id":"aoa:aoa-techniques:artifact:ea1a73c3524c9e1c4469c454","mime":"text/x-python","path":"scripts/validate_local_stats_port.py","repo":"aoa-techniques","size_bytes":1159,"version_id":"aoa:aoa-techniques:artifact-version:6ebdb6d1dd7b7766e7a76cca"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_local_stats_port.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_local_stats_port.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_local_stats_port.py:1"],"path_ref":"scripts/validate_local_stats_port.py"},"signs":{"attestation_ref":"","digest":"efd486b5f0ebebbfdca1b64eb45b38f51036e7918b78539d59b3dc57a0646c0a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_local_stats_port.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1e933171e646487625f55bc0333e6eb72d497f11db815e02115d900602461df1","git_blob_id":"c1d36f5b3c487d6e497f5e26f89e8b226a5023fc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5befe5bd63a605b75db26c3a","lineage_path":"scripts/validate_nested_agents.py","logical_id":"aoa:aoa-techniques:artifact:5befe5bd63a605b75db26c3a","mime":"text/x-python","path":"scripts/validate_nested_agents.py","repo":"aoa-techniques","size_bytes":7821,"version_id":"aoa:aoa-techniques:artifact-version:479f88e43a6e886c9ca21029"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_nested_agents.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_nested_agents.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_nested_agents.py:1"],"path_ref":"scripts/validate_nested_agents.py"},"signs":{"attestation_ref":"","digest":"1e933171e646487625f55bc0333e6eb72d497f11db815e02115d900602461df1","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_nested_agents.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"8858f8f414f8672562ec74916c216ff33ce8e7bb84ba928ec3d52f5c4c50a1ca","git_blob_id":"aa9176f9b1bdc52155ff126ae4558839b15eb90c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:179cd9e9a1e53d6027df9638","lineage_path":"scripts/validate_public_hygiene.py","logical_id":"aoa:aoa-techniques:artifact:179cd9e9a1e53d6027df9638","mime":"text/x-python","path":"scripts/validate_public_hygiene.py","repo":"aoa-techniques","size_bytes":644,"version_id":"aoa:aoa-techniques:artifact-version:fb9756d7b86484a81fe0da86"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_public_hygiene.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_public_hygiene.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_public_hygiene.py:1"],"path_ref":"scripts/validate_public_hygiene.py"},"signs":{"attestation_ref":"","digest":"8858f8f414f8672562ec74916c216ff33ce8e7bb84ba928ec3d52f5c4c50a1ca","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_public_hygiene.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ed0726263ac070986cea996c85d319a328d20d1e3d743d19439aa6f38340e229","git_blob_id":"aa86a12556e8819ea0ee1aa7baa12eee5e154347","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","lineage_path":"scripts/validate_repo.py","logical_id":"aoa:aoa-techniques:artifact:1c4be8b17371f455a3c245ab","mime":"text/x-python","path":"scripts/validate_repo.py","repo":"aoa-techniques","size_bytes":333,"version_id":"aoa:aoa-techniques:artifact-version:79c45103a4d7b7458c9f1fd0"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_repo.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_repo.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_repo.py:1"],"path_ref":"scripts/validate_repo.py"},"signs":{"attestation_ref":"","digest":"ed0726263ac070986cea996c85d319a328d20d1e3d743d19439aa6f38340e229","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_repo.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","git_blob_id":"548ca9324ca7314011c25ebc4122ad242825a169","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","lineage_path":"scripts/validate_repo_local_kag_index.py","logical_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","mime":"text/x-python","path":"scripts/validate_repo_local_kag_index.py","repo":"aoa-techniques","size_bytes":4063,"version_id":"aoa:aoa-techniques:artifact-version:7a18fd0c05df73f36a479280"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_repo_local_kag_index.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_repo_local_kag_index.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_repo_local_kag_index.py:1"],"path_ref":"scripts/validate_repo_local_kag_index.py"},"signs":{"attestation_ref":"","digest":"1098035e89631d5ab7ac5d77d210b6c978178730d0d75b0ad166b6a5ed51063d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_repo_local_kag_index.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","git_blob_id":"c5c120c28abb2b68917f60136e86f9102e6961ac","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","lineage_path":"scripts/validate_repo_local_kag_index.py","logical_id":"aoa:aoa-techniques:artifact:4985b57a7e6846702112cadd","mime":"text/x-python","path":"scripts/validate_repo_local_kag_index.py","repo":"aoa-techniques","size_bytes":4089,"version_id":"aoa:aoa-techniques:artifact-version:928270eff17a628c6ea7ced4"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_repo_local_kag_index.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_repo_local_kag_index.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_repo_local_kag_index.py:1"],"path_ref":"scripts/validate_repo_local_kag_index.py"},"signs":{"attestation_ref":"","digest":"28b6075bd6e0ab3b582a1ba9054928e69fce771c40362029210c61d23920e182","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_repo_local_kag_index.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"cb4693f0c81b74d76252ea5f3fed57b86a7ff90d4487f9c09bd8be57ebf0d9be","git_blob_id":"bdb47a4c1d4d8ae663ade2cefe713a5a8a4601f2","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7d17f6046e98c9a3736efcb8","lineage_path":"scripts/validate_semantic_agents.py","logical_id":"aoa:aoa-techniques:artifact:7d17f6046e98c9a3736efcb8","mime":"text/x-python","path":"scripts/validate_semantic_agents.py","repo":"aoa-techniques","size_bytes":3663,"version_id":"aoa:aoa-techniques:artifact-version:81617d0b49164b98c4570637"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_semantic_agents.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_semantic_agents.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_semantic_agents.py:1"],"path_ref":"scripts/validate_semantic_agents.py"},"signs":{"attestation_ref":"","digest":"cb4693f0c81b74d76252ea5f3fed57b86a7ff90d4487f9c09bd8be57ebf0d9be","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_semantic_agents.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"ca1ada6eca3ae7ae5d6b9d6dc71d733240b0fd039716926bf328969eb179be01","git_blob_id":"e257c58706e3f864e7c8b3fb16b8f6f2cf985015","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:712bfcf4dd0980ac8009ae26","lineage_path":"scripts/validate_source_contracts.py","logical_id":"aoa:aoa-techniques:artifact:712bfcf4dd0980ac8009ae26","mime":"text/x-python","path":"scripts/validate_source_contracts.py","repo":"aoa-techniques","size_bytes":1193,"version_id":"aoa:aoa-techniques:artifact-version:8a4e89439eed1d0fddb9de59"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"scripts/validate_source_contracts.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validate_source_contracts.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validate_source_contracts.py:1"],"path_ref":"scripts/validate_source_contracts.py"},"signs":{"attestation_ref":"","digest":"ca1ada6eca3ae7ae5d6b9d6dc71d733240b0fd039716926bf328969eb179be01","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python scripts/validate_source_contracts.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"source_code","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"source_code","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"source_module","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9a2f191ab2fe80ef539b138aa8d9f94b468c8775b1d12ea15254a6bc707a0dca","git_blob_id":"bf6ef97a366b8f8c69eef57c64d49495bb8fb95c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:dda053a98d0f42c53736338b","lineage_path":"scripts/validation_lanes.py","logical_id":"aoa:aoa-techniques:artifact:dda053a98d0f42c53736338b","mime":"text/x-python","path":"scripts/validation_lanes.py","repo":"aoa-techniques","size_bytes":6724,"version_id":"aoa:aoa-techniques:artifact-version:46c2b51f991bbcea91360ae4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"scripts/validation_lanes.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validation_lanes.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validation_lanes.py:1"],"path_ref":"scripts/validation_lanes.py"},"signs":{"attestation_ref":"","digest":"9a2f191ab2fe80ef539b138aa8d9f94b468c8775b1d12ea15254a6bc707a0dca","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -1316,6 +1317,10 @@ {"abi":{"abi_epoch":"source","artifact_class":"source_code","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"source_code","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"source_module","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"601f26e61b30dc3b8c8bec75d34e2870e56ad43b26c8baf9b3bcd8418fa05b8a","git_blob_id":"27aeb133e9d055e416a7f1c5ad7b4340ca4b3ee6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:350991278c050e85113cce7c","lineage_path":"scripts/validators/public_hygiene.py","logical_id":"aoa:aoa-techniques:artifact:350991278c050e85113cce7c","mime":"text/x-python","path":"scripts/validators/public_hygiene.py","repo":"aoa-techniques","size_bytes":1789,"version_id":"aoa:aoa-techniques:artifact-version:13152130caac0dde1c84015d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"scripts/validators/public_hygiene.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validators/public_hygiene.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validators/public_hygiene.py:1"],"path_ref":"scripts/validators/public_hygiene.py"},"signs":{"attestation_ref":"","digest":"601f26e61b30dc3b8c8bec75d34e2870e56ad43b26c8baf9b3bcd8418fa05b8a","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"source_code","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"source_code","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"source_module","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"b3786fbfc06e9e21b51f7d3d0f47c7ad6ae285a03a6e3b3fd651de536c70a30c","git_blob_id":"500b99c58a1e38974bf1c54ba703d9ab24e362cb","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:5b642e24330a04d5119f4f1a","lineage_path":"scripts/validators/questbook.py","logical_id":"aoa:aoa-techniques:artifact:5b642e24330a04d5119f4f1a","mime":"text/x-python","path":"scripts/validators/questbook.py","repo":"aoa-techniques","size_bytes":23581,"version_id":"aoa:aoa-techniques:artifact-version:0d5701b53ba96c4d7506e9be"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"scripts/validators/questbook.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validators/questbook.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validators/questbook.py:1"],"path_ref":"scripts/validators/questbook.py"},"signs":{"attestation_ref":"","digest":"b3786fbfc06e9e21b51f7d3d0f47c7ad6ae285a03a6e3b3fd651de536c70a30c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"source_code","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"source_code","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"source_module","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","git_blob_id":"f617e44a8c15a840c0ba6ecd5ca00cfdbed5b092","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c","lineage_path":"scripts/validators/source_contracts.py","logical_id":"aoa:aoa-techniques:artifact:4400b0a685bbe453fa4ac22c","mime":"text/x-python","path":"scripts/validators/source_contracts.py","repo":"aoa-techniques","size_bytes":99991,"version_id":"aoa:aoa-techniques:artifact-version:265d0f2e64e3636d440f59ae"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"scripts/validators/source_contracts.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"scripts/validators/source_contracts.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["scripts/validators/source_contracts.py:1"],"path_ref":"scripts/validators/source_contracts.py"},"signs":{"attestation_ref":"","digest":"46b7b6ac75a70e57e2dd7d6b9ecd27f192b2106125db269a3319678a94508c44","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"487c331a007d383597c96a84c5f6f615f13ef1cba3a2e6659af894290a98659e","git_blob_id":"feb4104391f96d3052b4ecf43fb6228d2e0e9c74","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","lineage_path":"stats/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:3f9a778b411bd0a36e67cf1a","mime":"text/markdown","path":"stats/AGENTS.md","repo":"aoa-techniques","size_bytes":1671,"version_id":"aoa:aoa-techniques:artifact-version:67e14a565409059c79b667e9"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"stats/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"stats/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"stats/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"stats/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":7,"ref":"stats/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":17,"ref":"stats/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":24,"ref":"stats/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":33,"ref":"stats/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":43,"ref":"stats/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["stats/AGENTS.md:1"],"path_ref":"stats/AGENTS.md"},"signs":{"attestation_ref":"","digest":"487c331a007d383597c96a84c5f6f615f13ef1cba3a2e6659af894290a98659e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"readme","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9a0b05cbf14fe7e7ba41cacb323f1c6c2efd15c352bd5dda296d698eabaa0242","git_blob_id":"ced1094176cfde4c0c9fb1450ced7a8be89a0b2b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","lineage_path":"stats/README.md","logical_id":"aoa:aoa-techniques:artifact:6bac6d2ff5dc7734bc000fb5","mime":"text/markdown","path":"stats/README.md","repo":"aoa-techniques","size_bytes":1857,"version_id":"aoa:aoa-techniques:artifact-version:dcee9f8ead80b7814af63949"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"stats/README.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"stats/README.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"technique-canon-statistics","level":1,"line":1,"ref":"stats/README.md#technique-canon-statistics","title":"Technique-canon statistics"},{"anchor":"current-question","level":2,"line":10,"ref":"stats/README.md#current-question","title":"Current question"},{"anchor":"reference-derivation","level":2,"line":20,"ref":"stats/README.md#reference-derivation","title":"Reference derivation"},{"anchor":"owner-routes","level":2,"line":33,"ref":"stats/README.md#owner-routes","title":"Owner routes"}],"line_refs":["stats/README.md:1"],"path_ref":"stats/README.md"},"signs":{"attestation_ref":"","digest":"9a0b05cbf14fe7e7ba41cacb323f1c6c2efd15c352bd5dda296d698eabaa0242","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"1.0.0","schema_version":"aoa_stats_measurement_packet_v1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"80d17cfbce1cf277115c965ae5fa916344e8aef0cf28e6cce6e44c37b54e5e60","git_blob_id":"b98380ec107dea3fdd8038567145bf5a1880ba3b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","lineage_path":"stats/packets/published-promotion-readiness-pass-ratio.reference.json","logical_id":"aoa:aoa-techniques:artifact:41627642723565570a5ba138","mime":"application/json","path":"stats/packets/published-promotion-readiness-pass-ratio.reference.json","repo":"aoa-techniques","size_bytes":2572,"version_id":"aoa:aoa-techniques:artifact-version:c3a5e60947061ee404e3a8b6"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"stats/packets/published-promotion-readiness-pass-ratio.reference.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"stats/packets/published-promotion-readiness-pass-ratio.reference.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["stats/packets/published-promotion-readiness-pass-ratio.reference.json:1"],"path_ref":"stats/packets/published-promotion-readiness-pass-ratio.reference.json"},"signs":{"attestation_ref":"","digest":"80d17cfbce1cf277115c965ae5fa916344e8aef0cf28e6cce6e44c37b54e5e60","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"config","compatibility":"stable","contract_version":"1.0.0","schema_version":"aoa_stats_local_port_v1"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"config","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"c57416357b479f9c0d29cc2af610fcaa5e8239b55cb930ae26c420c495971a26","git_blob_id":"aae6fa03e11a48cca063bf0adb4f78ac1bbb09a6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","lineage_path":"stats/port.manifest.json","logical_id":"aoa:aoa-techniques:artifact:98b9bdeccf4b63a7dd99a0ee","mime":"application/json","path":"stats/port.manifest.json","repo":"aoa-techniques","size_bytes":3926,"version_id":"aoa:aoa-techniques:artifact-version:7b226751a5779ec3035b239d"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"stats/port.manifest.json"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"stats/port.manifest.json","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["stats/port.manifest.json:1"],"path_ref":"stats/port.manifest.json"},"signs":{"attestation_ref":"","digest":"c57416357b479f9c0d29cc2af610fcaa5e8239b55cb930ae26c420c495971a26","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["jq"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a76c718ad1736c20c88b31ffe3d4dd9e3e1b81e63e8a1880105b2348f4098a58","git_blob_id":"dca6e18e459f016afa338cfb5a75d2d554921007","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d537a4537f49cb72b8045d90","lineage_path":"techniques/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:d537a4537f49cb72b8045d90","mime":"text/markdown","path":"techniques/AGENTS.md","repo":"aoa-techniques","size_bytes":2079,"version_id":"aoa:aoa-techniques:artifact-version:877f3fe721805c934dbfe3b0"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"techniques/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"techniques/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"techniques/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"techniques/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"techniques/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":16,"ref":"techniques/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":29,"ref":"techniques/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":46,"ref":"techniques/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":61,"ref":"techniques/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["techniques/AGENTS.md:1"],"path_ref":"techniques/AGENTS.md"},"signs":{"attestation_ref":"","digest":"a76c718ad1736c20c88b31ffe3d4dd9e3e1b81e63e8a1880105b2348f4098a58","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f6797d4ff6a798518d0bd46cd16f30ff2de7aea43780638bcafa933a9e527dde","git_blob_id":"0bd735aa177d7880c89806ac19b10071a1680611","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:aac1fdea85399dc5bb3a69f6","lineage_path":"techniques/agent-workflows/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:aac1fdea85399dc5bb3a69f6","mime":"text/markdown","path":"techniques/agent-workflows/AGENTS.md","repo":"aoa-techniques","size_bytes":2600,"version_id":"aoa:aoa-techniques:artifact-version:d812a05deb525c7601e19f92"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"techniques/agent-workflows/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"techniques/agent-workflows/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"techniques/agent-workflows/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"techniques/agent-workflows/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"techniques/agent-workflows/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":23,"ref":"techniques/agent-workflows/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":33,"ref":"techniques/agent-workflows/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":58,"ref":"techniques/agent-workflows/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":68,"ref":"techniques/agent-workflows/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["techniques/agent-workflows/AGENTS.md:1"],"path_ref":"techniques/agent-workflows/AGENTS.md"},"signs":{"attestation_ref":"","digest":"f6797d4ff6a798518d0bd46cd16f30ff2de7aea43780638bcafa933a9e527dde","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3c90ec66af5505b2fd251f4b193230ea5c068e073dd60b1221e4ddcf9e2f2a49","git_blob_id":"ee0a37e1758ca726211388637436dd4341a955fc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7aa7e4b9fe7d2eed132b58ee","lineage_path":"techniques/continuity/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:7aa7e4b9fe7d2eed132b58ee","mime":"text/markdown","path":"techniques/continuity/AGENTS.md","repo":"aoa-techniques","size_bytes":2592,"version_id":"aoa:aoa-techniques:artifact-version:c8b5087ddad0a3afb7c1568e"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"techniques/continuity/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"techniques/continuity/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"techniques/continuity/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"techniques/continuity/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"techniques/continuity/AGENTS.md#role","title":"Role"},{"anchor":"current-shelves","level":2,"line":18,"ref":"techniques/continuity/AGENTS.md#current-shelves","title":"Current Shelves"},{"anchor":"read-before-editing","level":2,"line":31,"ref":"techniques/continuity/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"trunk-rules","level":2,"line":41,"ref":"techniques/continuity/AGENTS.md#trunk-rules","title":"Trunk Rules"},{"anchor":"boundaries","level":2,"line":47,"ref":"techniques/continuity/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":65,"ref":"techniques/continuity/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":75,"ref":"techniques/continuity/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["techniques/continuity/AGENTS.md:1"],"path_ref":"techniques/continuity/AGENTS.md"},"signs":{"attestation_ref":"","digest":"3c90ec66af5505b2fd251f4b193230ea5c068e073dd60b1221e4ddcf9e2f2a49","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -2147,12 +2152,13 @@ {"abi":{"abi_epoch":"source","artifact_class":"document","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"document","classification":{"confidence":"high","primary_kind":"document"},"code_role":"none","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"agents","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"fd9b39d29f61072a219597669884cba0cb428a694b37283a8410424ce516e0f8","git_blob_id":"5eb40a11331a68a326b8ffd35300276a6909ca79","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:712d5f03480e57eb0994afdd","lineage_path":"tests/AGENTS.md","logical_id":"aoa:aoa-techniques:artifact:712d5f03480e57eb0994afdd","mime":"text/markdown","path":"tests/AGENTS.md","repo":"aoa-techniques","size_bytes":2078,"version_id":"aoa:aoa-techniques:artifact-version:0735c6f95709d68acb07e7cf"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"document_owner","surface":"tests/AGENTS.md"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/AGENTS.md","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[{"anchor":"agentsmd","level":1,"line":1,"ref":"tests/AGENTS.md#agentsmd","title":"AGENTS.md"},{"anchor":"applies-to","level":2,"line":3,"ref":"tests/AGENTS.md#applies-to","title":"Applies to"},{"anchor":"role","level":2,"line":8,"ref":"tests/AGENTS.md#role","title":"Role"},{"anchor":"read-before-editing","level":2,"line":19,"ref":"tests/AGENTS.md#read-before-editing","title":"Read before editing"},{"anchor":"boundaries","level":2,"line":27,"ref":"tests/AGENTS.md#boundaries","title":"Boundaries"},{"anchor":"validation","level":2,"line":37,"ref":"tests/AGENTS.md#validation","title":"Validation"},{"anchor":"closeout","level":2,"line":59,"ref":"tests/AGENTS.md#closeout","title":"Closeout"}],"line_refs":["tests/AGENTS.md:1"],"path_ref":"tests/AGENTS.md"},"signs":{"attestation_ref":"","digest":"fd9b39d29f61072a219597669884cba0cb428a694b37283a8410424ce516e0f8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":[]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"source_code","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"source_code","classification":{"confidence":"high","primary_kind":"surface"},"code_role":"source_module","command_role":"none","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"1b52c67d7c1052a668437eb7b9297e9f0a6bc8bb5c66f0010014530163a9cd62","git_blob_id":"37f6837aaa2442866ee6b324f3dabaf03387b8b6","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:018896bc1d0eaf2756c5b6ee","lineage_path":"tests/support/topology_inventory.py","logical_id":"aoa:aoa-techniques:artifact:018896bc1d0eaf2756c5b6ee","mime":"text/x-python","path":"tests/support/topology_inventory.py","repo":"aoa-techniques","size_bytes":5832,"version_id":"aoa:aoa-techniques:artifact-version:2e7bca9615305a7df09c68a4"},"mechanics_role":"none","observed_form":"file","owner_return_route":{"repo":"aoa-techniques","route_kind":"source_owner","surface":"tests/support/topology_inventory.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/support/topology_inventory.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/support/topology_inventory.py:1"],"path_ref":"tests/support/topology_inventory.py"},"signs":{"attestation_ref":"","digest":"1b52c67d7c1052a668437eb7b9297e9f0a6bc8bb5c66f0010014530163a9cd62","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":[],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"validator","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"validator","classification":{"confidence":"high","primary_kind":"command"},"code_role":"validator","command_role":"validator","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"2a4931bc44563a5b22ba1c58a88c6e265b6cfdc610f693fd50bba9af1ea9e600","git_blob_id":"3a9f4cd343fa2715852878336d48d5c9b60f28b8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:40891dcacd7def19d666e3eb","lineage_path":"tests/support/validate_repo_fixtures.py","logical_id":"aoa:aoa-techniques:artifact:40891dcacd7def19d666e3eb","mime":"text/x-python","path":"tests/support/validate_repo_fixtures.py","repo":"aoa-techniques","size_bytes":1222,"version_id":"aoa:aoa-techniques:artifact-version:5a250130adf5d736c25d532c"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"validator_owner","surface":"tests/support/validate_repo_fixtures.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/support/validate_repo_fixtures.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/support/validate_repo_fixtures.py:1"],"path_ref":"tests/support/validate_repo_fixtures.py"},"signs":{"attestation_ref":"","digest":"2a4931bc44563a5b22ba1c58a88c6e265b6cfdc610f693fd50bba9af1ea9e600","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python tests/support/validate_repo_fixtures.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","git_blob_id":"7a7d0fa2ce8f63762e3e84bcd9b46f8b4e2d15fe","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","lineage_path":"tests/test_agents_mesh.py","logical_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","mime":"text/x-python","path":"tests/test_agents_mesh.py","repo":"aoa-techniques","size_bytes":3864,"version_id":"aoa:aoa-techniques:artifact-version:adf3dd8f82093a69abe927b9"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_agents_mesh.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_agents_mesh.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_agents_mesh.py:1"],"path_ref":"tests/test_agents_mesh.py"},"signs":{"attestation_ref":"","digest":"9ca68890cbc6822d0bf174450063c691d31bf08b40e7a5c9868fd6a4045e6e38","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_agents_mesh.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","git_blob_id":"1d9dd571505d5519d0d47907c4dbd96df327adc9","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","lineage_path":"tests/test_agents_mesh.py","logical_id":"aoa:aoa-techniques:artifact:4ec817b9c123b16f2ea3e2ad","mime":"text/x-python","path":"tests/test_agents_mesh.py","repo":"aoa-techniques","size_bytes":3952,"version_id":"aoa:aoa-techniques:artifact-version:3d19d685ea1f4b710cc67ec7"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_agents_mesh.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_agents_mesh.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_agents_mesh.py:1"],"path_ref":"tests/test_agents_mesh.py"},"signs":{"attestation_ref":"","digest":"d06831fe87ceea4bd9d7dadd73b47c640e72b4144b3e5be8f18bdafdb8b225f9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_agents_mesh.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"96d942021322b174f8afd2a30e359ef662363ad2c5716c1dae7f1022e004500c","git_blob_id":"24fe879b88ad86227d4c9e41385deb6d93fde36f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:098f12afb4fd11c72d66bfee","lineage_path":"tests/test_current_direction_routes.py","logical_id":"aoa:aoa-techniques:artifact:098f12afb4fd11c72d66bfee","mime":"text/x-python","path":"tests/test_current_direction_routes.py","repo":"aoa-techniques","size_bytes":1470,"version_id":"aoa:aoa-techniques:artifact-version:34b454455e5fea83ca698ee3"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_current_direction_routes.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_current_direction_routes.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_current_direction_routes.py:1"],"path_ref":"tests/test_current_direction_routes.py"},"signs":{"attestation_ref":"","digest":"96d942021322b174f8afd2a30e359ef662363ad2c5716c1dae7f1022e004500c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_current_direction_routes.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3e4860d66a8089f02520e200b18e22b7798ee6dbc31d20eecd3ccc193101246d","git_blob_id":"cae2cb36ef649115336bbd44591d936fdc08c626","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b90af86566bbb19195eefe41","lineage_path":"tests/test_decision_indexes.py","logical_id":"aoa:aoa-techniques:artifact:b90af86566bbb19195eefe41","mime":"text/x-python","path":"tests/test_decision_indexes.py","repo":"aoa-techniques","size_bytes":4630,"version_id":"aoa:aoa-techniques:artifact-version:e8b0c5e5af2dbc96f521fbb4"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_decision_indexes.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_decision_indexes.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_decision_indexes.py:1"],"path_ref":"tests/test_decision_indexes.py"},"signs":{"attestation_ref":"","digest":"3e4860d66a8089f02520e200b18e22b7798ee6dbc31d20eecd3ccc193101246d","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_decision_indexes.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","git_blob_id":"15b97f46cfd72afa9a654b0dffdb4911daee394c","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171","lineage_path":"tests/test_docs_surface_guardrails.py","logical_id":"aoa:aoa-techniques:artifact:b8fdc3193156fb70d810d171","mime":"text/x-python","path":"tests/test_docs_surface_guardrails.py","repo":"aoa-techniques","size_bytes":16968,"version_id":"aoa:aoa-techniques:artifact-version:4fddbe4cd5c2d62d37465c73"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_docs_surface_guardrails.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_docs_surface_guardrails.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_docs_surface_guardrails.py:1"],"path_ref":"tests/test_docs_surface_guardrails.py"},"signs":{"attestation_ref":"","digest":"d7425174854b213941efae90d4a611d74f9c0e3438856fcce363e0e4e473c0bd","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_docs_surface_guardrails.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","git_blob_id":"72c3c114cce9cdb811c76af366c5f05a72d89e0a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0","lineage_path":"tests/test_downstream_feed_contracts.py","logical_id":"aoa:aoa-techniques:artifact:abc4f4e39f6baeccd4afcfd0","mime":"text/x-python","path":"tests/test_downstream_feed_contracts.py","repo":"aoa-techniques","size_bytes":13477,"version_id":"aoa:aoa-techniques:artifact-version:6a09d8d83d4f4019841bfa60"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_downstream_feed_contracts.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_downstream_feed_contracts.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_downstream_feed_contracts.py:1"],"path_ref":"tests/test_downstream_feed_contracts.py"},"signs":{"attestation_ref":"","digest":"54c78eed71dd651dba785b974228b47f3b97745f5fa246c27289a071eb79599c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_downstream_feed_contracts.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","git_blob_id":"7ca287d8103fb6e5faa25d8dc00bffd74aff2501","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","lineage_path":"tests/test_github_workflow_topology.py","logical_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","mime":"text/x-python","path":"tests/test_github_workflow_topology.py","repo":"aoa-techniques","size_bytes":3345,"version_id":"aoa:aoa-techniques:artifact-version:f0ca578bbb3891fa67c3c2d1"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_github_workflow_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_github_workflow_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_github_workflow_topology.py:1"],"path_ref":"tests/test_github_workflow_topology.py"},"signs":{"attestation_ref":"","digest":"99a7e2ba55d0bc1ae6525806c177ff89e993bd0bad466f76ad02540e64d3020c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_github_workflow_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","git_blob_id":"64b35665bf669b3a4e4184091f0e1c9ca2069075","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","lineage_path":"tests/test_github_workflow_topology.py","logical_id":"aoa:aoa-techniques:artifact:a7b69e5f4cc475772781f136","mime":"text/x-python","path":"tests/test_github_workflow_topology.py","repo":"aoa-techniques","size_bytes":4584,"version_id":"aoa:aoa-techniques:artifact-version:fd3f511b90d49cc949ce1ad5"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_github_workflow_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_github_workflow_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_github_workflow_topology.py:1"],"path_ref":"tests/test_github_workflow_topology.py"},"signs":{"attestation_ref":"","digest":"81ea032ab7ef64832436771d545a8e74828044593a5cf657edffc660caa54982","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_github_workflow_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","git_blob_id":"bac3d2ddb531600d09526a49dbe48588a7312073","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","lineage_path":"tests/test_local_stats_port.py","logical_id":"aoa:aoa-techniques:artifact:7c14d47a29e5f71aed1ddd47","mime":"text/x-python","path":"tests/test_local_stats_port.py","repo":"aoa-techniques","size_bytes":2193,"version_id":"aoa:aoa-techniques:artifact-version:2dafcd9ee202ad442c00693b"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_local_stats_port.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_local_stats_port.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_local_stats_port.py:1"],"path_ref":"tests/test_local_stats_port.py"},"signs":{"attestation_ref":"","digest":"459676ec6c657e191c2ea78ac0524fc6617baf85353116f1c359ce1be2a12b13","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_local_stats_port.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5ee32f86c3257b326899f3050bf53f8522dae8b94b895673bf5c542c48b06aed","git_blob_id":"bef904207dd12cddeb2ac56fc08317bf9345503f","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:d990104fd42a98fd27b96867","lineage_path":"tests/test_nested_agents_docs.py","logical_id":"aoa:aoa-techniques:artifact:d990104fd42a98fd27b96867","mime":"text/x-python","path":"tests/test_nested_agents_docs.py","repo":"aoa-techniques","size_bytes":1991,"version_id":"aoa:aoa-techniques:artifact-version:2d466dbc90c09f1c0ed1941e"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_nested_agents_docs.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_nested_agents_docs.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_nested_agents_docs.py:1"],"path_ref":"tests/test_nested_agents_docs.py"},"signs":{"attestation_ref":"","digest":"5ee32f86c3257b326899f3050bf53f8522dae8b94b895673bf5c542c48b06aed","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_nested_agents_docs.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","git_blob_id":"14b193a25ec9520bec9e64068180a509f1338281","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2","lineage_path":"tests/test_release_check.py","logical_id":"aoa:aoa-techniques:artifact:3f21f1424c231b9e7323c3f2","mime":"text/x-python","path":"tests/test_release_check.py","repo":"aoa-techniques","size_bytes":6729,"version_id":"aoa:aoa-techniques:artifact-version:63c1406f2a534e0b5eb82efe"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_release_check.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_release_check.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_release_check.py:1"],"path_ref":"tests/test_release_check.py"},"signs":{"attestation_ref":"","digest":"28abcb6318b65fad4c38a99d6808dee76a51fbe9fe28d83e3a271f18cfd1fbeb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_release_check.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"15d361a33c946c95bd1412b67adb2fa94deb43ad1c64abd045e29d269141cafb","git_blob_id":"ed6e34fb84963ce1c72c7ab294f24bfc470833f8","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0","lineage_path":"tests/test_roadmap_parity.py","logical_id":"aoa:aoa-techniques:artifact:574915dc67fceb4a19d9a4b0","mime":"text/x-python","path":"tests/test_roadmap_parity.py","repo":"aoa-techniques","size_bytes":6327,"version_id":"aoa:aoa-techniques:artifact-version:89d85f810ef18872c37d777f"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_roadmap_parity.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_roadmap_parity.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_roadmap_parity.py:1"],"path_ref":"tests/test_roadmap_parity.py"},"signs":{"attestation_ref":"","digest":"15d361a33c946c95bd1412b67adb2fa94deb43ad1c64abd045e29d269141cafb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_roadmap_parity.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, @@ -2161,15 +2167,15 @@ {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","git_blob_id":"58063446eba2e68c58d47cf8f178ec3cc19e7e57","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae","lineage_path":"tests/test_technique_intelligence.py","logical_id":"aoa:aoa-techniques:artifact:24fa58fe2c64b5fa17c73aae","mime":"text/x-python","path":"tests/test_technique_intelligence.py","repo":"aoa-techniques","size_bytes":4633,"version_id":"aoa:aoa-techniques:artifact-version:f79c2f99154cc211058be9e7"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_technique_intelligence.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_technique_intelligence.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_technique_intelligence.py:1"],"path_ref":"tests/test_technique_intelligence.py"},"signs":{"attestation_ref":"","digest":"956d4bc5c9e91545712e815d702f4a45605e954b2fe8dee307cb9c669fc7d579","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_technique_intelligence.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","git_blob_id":"c2fb737f9322bd9e10f84398c0e389a03c9d3db1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:9474485b910fe51774c07f50","lineage_path":"tests/test_test_topology.py","logical_id":"aoa:aoa-techniques:artifact:9474485b910fe51774c07f50","mime":"text/x-python","path":"tests/test_test_topology.py","repo":"aoa-techniques","size_bytes":10433,"version_id":"aoa:aoa-techniques:artifact-version:b10c4a080a06a3c55a680563"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_test_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_test_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_test_topology.py:1"],"path_ref":"tests/test_test_topology.py"},"signs":{"attestation_ref":"","digest":"82598278953002b8cf23bee9a1cd1e8150543e33dc9b0a0f346a76f699ae76ee","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_test_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"786d9d04a6dcba445b9be1ae3e7d5d533b56d5f9d4d8097711cee65cb9789176","git_blob_id":"f79cc88f0973c16d3af054270be1f7aaf5eb597b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:8658ee6a5e9a7c7b185a1d3e","lineage_path":"tests/test_validate_repo_agents_mesh.py","logical_id":"aoa:aoa-techniques:artifact:8658ee6a5e9a7c7b185a1d3e","mime":"text/x-python","path":"tests/test_validate_repo_agents_mesh.py","repo":"aoa-techniques","size_bytes":3466,"version_id":"aoa:aoa-techniques:artifact-version:7300d3d49db4c4e9ab1553e6"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_agents_mesh.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_agents_mesh.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_agents_mesh.py:1"],"path_ref":"tests/test_validate_repo_agents_mesh.py"},"signs":{"attestation_ref":"","digest":"786d9d04a6dcba445b9be1ae3e7d5d533b56d5f9d4d8097711cee65cb9789176","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_agents_mesh.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","git_blob_id":"21707ed54e1df3489e889eec4791709806fdd21b","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","lineage_path":"tests/test_validate_repo_ci_release_authority.py","logical_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","mime":"text/x-python","path":"tests/test_validate_repo_ci_release_authority.py","repo":"aoa-techniques","size_bytes":7624,"version_id":"aoa:aoa-techniques:artifact-version:a7aa9bab4ffbf8813640e43f"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_ci_release_authority.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_ci_release_authority.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_ci_release_authority.py:1"],"path_ref":"tests/test_validate_repo_ci_release_authority.py"},"signs":{"attestation_ref":"","digest":"f27fb67d806edd5922a38685170bcadb4eec7ba85f514895f8149bc7fb55bda9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_ci_release_authority.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","git_blob_id":"13e89897734b6e4dd52fceb2499e41b932bc81fc","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","lineage_path":"tests/test_validate_repo_ci_release_authority.py","logical_id":"aoa:aoa-techniques:artifact:f8a3b9c764d1be17db35a8fe","mime":"text/x-python","path":"tests/test_validate_repo_ci_release_authority.py","repo":"aoa-techniques","size_bytes":7658,"version_id":"aoa:aoa-techniques:artifact-version:c988c88b13672222377d62ee"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_ci_release_authority.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_ci_release_authority.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_ci_release_authority.py:1"],"path_ref":"tests/test_validate_repo_ci_release_authority.py"},"signs":{"attestation_ref":"","digest":"453ff589e8994fe94fbeaddcb62509ffbacfc7da291e0d911d4af5485f7bdebe","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_ci_release_authority.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"75ea96accc00d5ba348a1a3db62197b0bfc93400342ad6609a271e406821649c","git_blob_id":"614b892b1089de3c273b8b3b5dd9cc6e9d29cb0d","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:b8959f6cec62a716dfef8fd1","lineage_path":"tests/test_validate_repo_compatibility_imports.py","logical_id":"aoa:aoa-techniques:artifact:b8959f6cec62a716dfef8fd1","mime":"text/x-python","path":"tests/test_validate_repo_compatibility_imports.py","repo":"aoa-techniques","size_bytes":1309,"version_id":"aoa:aoa-techniques:artifact-version:ab41a33ab6fa05a4a102d256"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_compatibility_imports.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_compatibility_imports.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_compatibility_imports.py:1"],"path_ref":"tests/test_validate_repo_compatibility_imports.py"},"signs":{"attestation_ref":"","digest":"75ea96accc00d5ba348a1a3db62197b0bfc93400342ad6609a271e406821649c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_compatibility_imports.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","git_blob_id":"5f55538cece3595b82055730f5832d7f3ca55743","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8","lineage_path":"tests/test_validate_repo_generated_drift.py","logical_id":"aoa:aoa-techniques:artifact:33a13c6a675a1b4196d4b4a8","mime":"text/x-python","path":"tests/test_validate_repo_generated_drift.py","repo":"aoa-techniques","size_bytes":65284,"version_id":"aoa:aoa-techniques:artifact-version:673ab89718ddce6f6c7d1819"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_generated_drift.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_generated_drift.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_generated_drift.py:1"],"path_ref":"tests/test_validate_repo_generated_drift.py"},"signs":{"attestation_ref":"","digest":"4483aaf4f5d187089909af340ca555b7d74b93f729a8f8402b3a64d0c4775c38","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_generated_drift.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","git_blob_id":"14729d0a8157d031bf3cb51cf6bd7041d65ba748","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:20edd23620da977fb144b11f","lineage_path":"tests/test_validate_repo_public_hygiene.py","logical_id":"aoa:aoa-techniques:artifact:20edd23620da977fb144b11f","mime":"text/x-python","path":"tests/test_validate_repo_public_hygiene.py","repo":"aoa-techniques","size_bytes":9254,"version_id":"aoa:aoa-techniques:artifact-version:777b44133425654ed434e3eb"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_public_hygiene.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_public_hygiene.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_public_hygiene.py:1"],"path_ref":"tests/test_validate_repo_public_hygiene.py"},"signs":{"attestation_ref":"","digest":"5471b56db478e4a821a00452cd390560ab202bdc29a70dbc19f0fbf9e7f8d64c","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_public_hygiene.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","git_blob_id":"4612cf646e37207c02e3da845c3fc2fa1ee52811","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd","lineage_path":"tests/test_validate_repo_questbook_intelligence.py","logical_id":"aoa:aoa-techniques:artifact:71426c49f6417b454eedddbd","mime":"text/x-python","path":"tests/test_validate_repo_questbook_intelligence.py","repo":"aoa-techniques","size_bytes":14934,"version_id":"aoa:aoa-techniques:artifact-version:43db612874895e4f8e1fcbca"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_questbook_intelligence.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_questbook_intelligence.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_questbook_intelligence.py:1"],"path_ref":"tests/test_validate_repo_questbook_intelligence.py"},"signs":{"attestation_ref":"","digest":"f13929a3fab0f9884db083b2c012b96600b00ddae4b19c6cf986090a18fc5f7e","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_questbook_intelligence.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","git_blob_id":"c9a55249b5ce3a78c040b2d9b471c38c6ca1cc6a","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","lineage_path":"tests/test_validate_repo_source_contracts.py","logical_id":"aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","mime":"text/x-python","path":"tests/test_validate_repo_source_contracts.py","repo":"aoa-techniques","size_bytes":55698,"version_id":"aoa:aoa-techniques:artifact-version:b1304c57b82ac4fc6f98af2e"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_source_contracts.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_source_contracts.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_source_contracts.py:1"],"path_ref":"tests/test_validate_repo_source_contracts.py"},"signs":{"attestation_ref":"","digest":"bbb3c7db913ad5784d791207ef38290de6af8f918b925212ebeb599f5b873a77","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_source_contracts.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","git_blob_id":"cdae919c2a51183fea4f0abea0e2b191010d07af","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","lineage_path":"tests/test_validate_repo_source_contracts.py","logical_id":"aoa:aoa-techniques:artifact:e0bd6f96b5834f3924a91acf","mime":"text/x-python","path":"tests/test_validate_repo_source_contracts.py","repo":"aoa-techniques","size_bytes":55664,"version_id":"aoa:aoa-techniques:artifact-version:d61e6af0add0f3a8452c2912"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_repo_source_contracts.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_repo_source_contracts.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_repo_source_contracts.py:1"],"path_ref":"tests/test_validate_repo_source_contracts.py"},"signs":{"attestation_ref":"","digest":"a720b0d34b5dc2693ccb5c91e4cf0a013218c9fdb4511c75a70f36f57000dc34","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_repo_source_contracts.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"6311888aa2c60efcd52e728336a7175582dbb67e30a7a6b4efe7a2ca538af4f9","git_blob_id":"7b31256f958ec22ba139cd22c87225b46322ddcd","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:03b76abc01704964e291b6af","lineage_path":"tests/test_validate_semantic_agents.py","logical_id":"aoa:aoa-techniques:artifact:03b76abc01704964e291b6af","mime":"text/x-python","path":"tests/test_validate_semantic_agents.py","repo":"aoa-techniques","size_bytes":2280,"version_id":"aoa:aoa-techniques:artifact-version:36ef42c83cf5045714890bac"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validate_semantic_agents.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validate_semantic_agents.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validate_semantic_agents.py:1"],"path_ref":"tests/test_validate_semantic_agents.py"},"signs":{"attestation_ref":"","digest":"6311888aa2c60efcd52e728336a7175582dbb67e30a7a6b4efe7a2ca538af4f9","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validate_semantic_agents.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","git_blob_id":"33fe5539498e92860114a9bac76ed2c8a7f6ab79","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","lineage_path":"tests/test_validation_command_authority.py","logical_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","mime":"text/x-python","path":"tests/test_validation_command_authority.py","repo":"aoa-techniques","size_bytes":15258,"version_id":"aoa:aoa-techniques:artifact-version:b702756e0a23fb1f7645144b"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validation_command_authority.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validation_command_authority.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validation_command_authority.py:1"],"path_ref":"tests/test_validation_command_authority.py"},"signs":{"attestation_ref":"","digest":"5f5d7f4a2b9e33dfd99572059babd52baa707507b625e9c1f2b096fafd71ddfb","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validation_command_authority.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, - {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","git_blob_id":"0ea800dd1179968831b3a117896da92b5fd8a240","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","lineage_path":"tests/test_validation_topology.py","logical_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","mime":"text/x-python","path":"tests/test_validation_topology.py","repo":"aoa-techniques","size_bytes":6988,"version_id":"aoa:aoa-techniques:artifact-version:e14305252f7eb53e56093c58"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validation_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validation_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validation_topology.py:1"],"path_ref":"tests/test_validation_topology.py"},"signs":{"attestation_ref":"","digest":"0adff51c48bbfcd9a08e11bbd2f9ab9fe1a0057190520befe6373b023096a2f2","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validation_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","git_blob_id":"25f727a5e13a23f4b05caf1b1b72929ecbab8b70","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","lineage_path":"tests/test_validation_command_authority.py","logical_id":"aoa:aoa-techniques:artifact:78624b39c65895c43629e995","mime":"text/x-python","path":"tests/test_validation_command_authority.py","repo":"aoa-techniques","size_bytes":17377,"version_id":"aoa:aoa-techniques:artifact-version:b73c41117774fafedf764d5d"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validation_command_authority.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validation_command_authority.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validation_command_authority.py:1"],"path_ref":"tests/test_validation_command_authority.py"},"signs":{"attestation_ref":"","digest":"3144a60863b6663bf57664e7de57ea40b3954b3b5f51485a0180673402709895","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validation_command_authority.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, + {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","git_blob_id":"d9e1b463bdede89ffb3bced1ea6d810915cf8417","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","lineage_path":"tests/test_validation_topology.py","logical_id":"aoa:aoa-techniques:artifact:f6818f763cf40101bb774211","mime":"text/x-python","path":"tests/test_validation_topology.py","repo":"aoa-techniques","size_bytes":7224,"version_id":"aoa:aoa-techniques:artifact-version:67c4a6bb2529015d626ec5a2"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validation_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validation_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validation_topology.py:1"],"path_ref":"tests/test_validation_topology.py"},"signs":{"attestation_ref":"","digest":"071664fd7f715079cf5f9d4221700d15177e85dce1017e9b4ab2b7a2cb00cfd5","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validation_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}}, {"abi":{"abi_epoch":"source","artifact_class":"test","compatibility":"stable","contract_version":"none","schema_version":"none"},"access":{"scope":"public","secrets_risk":"none"},"artifact_kind":"test","classification":{"confidence":"high","primary_kind":"command"},"code_role":"test","command_role":"test","consumer_route":{"repo":"aoa-kag","route_kind":"query","surface":"scripts/query_repo_local_kag.py"},"document_role":"none","freshness":{"checked_ref":"git-index-source-tree","mode":"source_snapshot","state":"current"},"identity":{"content_hash":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","git_blob_id":"0a86d124b1accdf41db8fbcf1e9c4c0a1dd263f1","git_ref":"git-index-source-tree","id":"aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473","lineage_path":"tests/test_validator_module_topology.py","logical_id":"aoa:aoa-techniques:artifact:12b5f4eff632c2c255f96473","mime":"text/x-python","path":"tests/test_validator_module_topology.py","repo":"aoa-techniques","size_bytes":10075,"version_id":"aoa:aoa-techniques:artifact-version:e9fa3859d5e4f70a2ffd14e2"},"mechanics_role":"none","observed_form":"command","owner_return_route":{"repo":"aoa-techniques","route_kind":"test_owner","surface":"tests/test_validator_module_topology.py"},"provenance":{"generated_by":"","materials":[],"observed_by":"aoa-kag:scripts/generate_repo_local_kag_index.py","source_refs":[{"authority":"authored_source","path":"tests/test_validator_module_topology.py","repo":"aoa-techniques","role":"primary"}],"validated_by":["aoa-kag:scripts/validate_kag.py"]},"refs":{"heading_refs":[],"line_refs":["tests/test_validator_module_topology.py:1"],"path_ref":"tests/test_validator_module_topology.py"},"signs":{"attestation_ref":"","digest":"7de1861e99cf1c192d50f37075d875628f13b53efa5a8466327fe2935ce382d8","signature_ref":"","verification_state":"digest-only"},"surface_state":"authored_source","toolchain":{"detected_tools":["git","python"],"owner_commands":["python -m unittest tests/test_validator_module_topology.py"],"required_tools":["python"]},"validator_route":{"repo":"aoa-kag","route_kind":"source_fast","surface":"aoa-kag:scripts/validate_kag.py"}} ], "registry_output": { diff --git a/legacy/archive/AGENTS_ROOT_REFERENCE.md b/legacy/archive/AGENTS_ROOT_REFERENCE.md index 47af21cf..f6715093 100644 --- a/legacy/archive/AGENTS_ROOT_REFERENCE.md +++ b/legacy/archive/AGENTS_ROOT_REFERENCE.md @@ -184,26 +184,16 @@ repository integrity. Minimum validation for meaning, schema, script, or generated-surface changes: -```bash -python scripts/validate_repo.py -python scripts/run_tests.py -``` +The archived route covered its targeted owner checks and repository validation lanes. Use the broader release-prep path when the change touches publication posture, wide generated outputs, or release-facing docs: -```bash -python scripts/release_check.py -git status -sb -``` +The archived route covered its targeted owner checks and repository validation lanes. If the task touches the Agon Wave IV technique candidate bridge, also run: -```bash -python mechanics/agon/parts/move-technique-bridge/scripts/build_agon_technique_binding_candidates.py --check -python mechanics/agon/parts/move-technique-bridge/scripts/validate_agon_technique_binding_candidates.py -python -m pytest -q mechanics/agon/parts/move-technique-bridge/tests/test_agon_technique_binding_candidates.py -``` +The archived route covered its targeted owner checks and repository validation lanes. Confirm that: diff --git a/legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md b/legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md index 6483af04..13efdb6f 100644 --- a/legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md +++ b/legacy/receipts/2026-05-04-capability-boundary-tree-pilot.md @@ -52,6 +52,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-04-capability-registry-tree-pilot.md b/legacy/receipts/2026-05-04-capability-registry-tree-pilot.md index 1488b7c0..55677b22 100644 --- a/legacy/receipts/2026-05-04-capability-registry-tree-pilot.md +++ b/legacy/receipts/2026-05-04-capability-registry-tree-pilot.md @@ -50,6 +50,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md b/legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md index 7bfcf825..13722c40 100644 --- a/legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md +++ b/legacy/receipts/2026-05-04-diagnosis-repair-tree-pilot.md @@ -49,6 +49,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md b/legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md index b328ac8f..897e9db3 100644 --- a/legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md +++ b/legacy/receipts/2026-05-04-docs-boundary-tree-pilot.md @@ -50,6 +50,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md b/legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md index 6a1934a2..d2d31fb9 100644 --- a/legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md +++ b/legacy/receipts/2026-05-04-handoff-continuation-tree-pilot.md @@ -50,6 +50,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md b/legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md index b5bc474a..d85db1a5 100644 --- a/legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md +++ b/legacy/receipts/2026-05-04-instruction-surface-tree-pilot.md @@ -54,6 +54,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md b/legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md index 39519bc7..8f41226c 100644 --- a/legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md +++ b/legacy/receipts/2026-05-04-kag-source-lift-tree-pilot.md @@ -55,6 +55,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-04-media-ingest-tree-pilot.md b/legacy/receipts/2026-05-04-media-ingest-tree-pilot.md index 8a336744..9bac772c 100644 --- a/legacy/receipts/2026-05-04-media-ingest-tree-pilot.md +++ b/legacy/receipts/2026-05-04-media-ingest-tree-pilot.md @@ -49,6 +49,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-04-review-compaction-tree-pilot.md b/legacy/receipts/2026-05-04-review-compaction-tree-pilot.md index 25caa343..22e8d66b 100644 --- a/legacy/receipts/2026-05-04-review-compaction-tree-pilot.md +++ b/legacy/receipts/2026-05-04-review-compaction-tree-pilot.md @@ -44,6 +44,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md b/legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md index 05e664a8..f4d31b57 100644 --- a/legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md +++ b/legacy/receipts/2026-05-05-agent-workflows-core-tree-pilot.md @@ -54,9 +54,4 @@ law, broad methodology doctrine, or a reason to move all remaining Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md b/legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md index 5799023c..bf8cbec0 100644 --- a/legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md +++ b/legacy/receipts/2026-05-05-antifragility-recovery-tree-pilot.md @@ -56,6 +56,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md b/legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md index 28788a8b..d8417712 100644 --- a/legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md +++ b/legacy/receipts/2026-05-05-approval-evidence-tree-pilot.md @@ -49,9 +49,4 @@ to move all remaining `agent-workflows` leaves. Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md b/legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md index 62decce2..6cf6541e 100644 --- a/legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md +++ b/legacy/receipts/2026-05-05-automation-readiness-tree-pilot.md @@ -50,9 +50,4 @@ governance, or a move for the queued `promotion-boundary` and Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-decision-routing-tree-pilot.md b/legacy/receipts/2026-05-05-decision-routing-tree-pilot.md index f7b735ee..9c6714b1 100644 --- a/legacy/receipts/2026-05-05-decision-routing-tree-pilot.md +++ b/legacy/receipts/2026-05-05-decision-routing-tree-pilot.md @@ -50,9 +50,4 @@ doctrine, neighboring governance authority, or a reason to move all remaining Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md b/legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md index 8877d001..6382f529 100644 --- a/legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md +++ b/legacy/receipts/2026-05-05-donor-harvest-tree-pilot.md @@ -53,9 +53,4 @@ remaining `agent-workflows` leaves. Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md b/legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md index 24db8370..093942bd 100644 --- a/legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md +++ b/legacy/receipts/2026-05-05-evaluation-chain-tree-pilot.md @@ -53,6 +53,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md b/legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md index 1fc1ca7a..9cc3abc4 100644 --- a/legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md +++ b/legacy/receipts/2026-05-05-history-artifacts-tree-pilot.md @@ -55,6 +55,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-05-intent-chain-tree-pilot.md b/legacy/receipts/2026-05-05-intent-chain-tree-pilot.md index 04f1f32b..7e221761 100644 --- a/legacy/receipts/2026-05-05-intent-chain-tree-pilot.md +++ b/legacy/receipts/2026-05-05-intent-chain-tree-pilot.md @@ -49,9 +49,4 @@ execution shelves. Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md b/legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md index 5a0239ac..c197ecff 100644 --- a/legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md +++ b/legacy/receipts/2026-05-05-owner-truth-closeout-tree-pilot.md @@ -57,9 +57,4 @@ runtime behavior, KAG promotion, ToS canon, or `aoa-evals` verdict authority. Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md b/legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md index ef389542..09f6eba2 100644 --- a/legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md +++ b/legacy/receipts/2026-05-05-practice-adoption-lifecycle-tree-pilot.md @@ -52,9 +52,4 @@ promotion, ToS canon, broad orchestration governance, or a move for the queued Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md b/legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md index 3ebde391..5ada358f 100644 --- a/legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md +++ b/legacy/receipts/2026-05-05-promotion-boundary-tree-pilot.md @@ -51,9 +51,4 @@ governance, or a move for the queued `practice-adoption-lifecycle` candidate. Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-published-summary-tree-pilot.md b/legacy/receipts/2026-05-05-published-summary-tree-pilot.md index ad710b24..f67bf0e9 100644 --- a/legacy/receipts/2026-05-05-published-summary-tree-pilot.md +++ b/legacy/receipts/2026-05-05-published-summary-tree-pilot.md @@ -55,6 +55,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md b/legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md index f2565348..a3eaa4b7 100644 --- a/legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md +++ b/legacy/receipts/2026-05-05-ready-work-graphs-tree-pilot.md @@ -56,6 +56,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-05-review-evidence-tree-pilot.md b/legacy/receipts/2026-05-05-review-evidence-tree-pilot.md index 633f0e1e..11addbb9 100644 --- a/legacy/receipts/2026-05-05-review-evidence-tree-pilot.md +++ b/legacy/receipts/2026-05-05-review-evidence-tree-pilot.md @@ -52,9 +52,4 @@ KAG promotion, ToS canon, or skill activation. Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md b/legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md index 1bde320f..06cc4a10 100644 --- a/legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md +++ b/legacy/receipts/2026-05-05-runtime-truth-lifecycle-tree-pilot.md @@ -55,9 +55,4 @@ runtime behavior, KAG promotion, ToS canon, or skill activation. Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md b/legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md index c84c241c..34c92de7 100644 --- a/legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md +++ b/legacy/receipts/2026-05-05-skill-discovery-tree-pilot.md @@ -50,6 +50,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-05-skill-support-tree-pilot.md b/legacy/receipts/2026-05-05-skill-support-tree-pilot.md index 6ff49f90..4207d44a 100644 --- a/legacy/receipts/2026-05-05-skill-support-tree-pilot.md +++ b/legacy/receipts/2026-05-05-skill-support-tree-pilot.md @@ -51,6 +51,6 @@ Root legacy preserves only this migration accounting. ## Validation -- `python scripts/release_check.py` passed after rebuilding generated surfaces, +- the release lane passed after rebuilding generated surfaces, running the full unittest suite, validating nested `AGENTS.md` coverage, and validating repository parity. diff --git a/legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md b/legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md index 4f5f2047..f36691e3 100644 --- a/legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md +++ b/legacy/receipts/2026-05-05-tool-gateway-tree-pilot.md @@ -47,9 +47,4 @@ authority, route mutation, or canonical promotion. Expected validation for the migration wave: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_validate_repo tests.test_skill_discovery_tree_pilot tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +The archived route covered its targeted owner checks and repository validation lanes. diff --git a/mechanics/agon/LANDING_LOG.md b/mechanics/agon/LANDING_LOG.md index 0fde50b8..234897a7 100644 --- a/mechanics/agon/LANDING_LOG.md +++ b/mechanics/agon/LANDING_LOG.md @@ -21,14 +21,8 @@ Stop-lines preserved: Validation lane: -- `python mechanics/agon/parts/move-technique-bridge/scripts/build_agon_technique_binding_candidates.py --check` -- `python mechanics/agon/parts/move-technique-bridge/scripts/validate_agon_technique_binding_candidates.py` -- `python -m pytest -q mechanics/agon/parts/move-technique-bridge/tests/test_agon_technique_binding_candidates.py` -- `python mechanics/agon/parts/epistemic-technique-candidates/scripts/build_agon_epistemic_technique_candidates.py --check` -- `python mechanics/agon/parts/epistemic-technique-candidates/scripts/validate_agon_epistemic_technique_candidates.py` -- `python -m pytest -q mechanics/agon/parts/epistemic-technique-candidates/tests/test_agon_epistemic_technique_candidates.py` -- `python scripts/validate_repo.py` -- `python -m unittest discover -s tests` +Both Agon parts passed their owner builders, validators, and targeted tests, +followed by repository validation and the repository test suite. ## 2026-05-03 - Distillation candidate handoff route @@ -48,7 +42,5 @@ Stop-lines preserved: Validation lane: -- `python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check` -- `python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py` -- `python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py` -- `python -m unittest tests.test_agon_mechanics_topology tests.test_distillation_mechanics_topology` +The handoff part passed its owner builder, validator, targeted part-local tests, +and the affected mechanic suites. diff --git a/mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md b/mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md index 3b6efe04..d7b310fc 100644 --- a/mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md +++ b/mechanics/agon/legacy/raw/AGON_WAVE4_TECHNIQUE_LANDING.md @@ -8,11 +8,7 @@ It does not create canonical techniques. ## Validation -```bash -python scripts/build_agon_technique_binding_candidates.py --check -python scripts/validate_agon_technique_binding_candidates.py -python -m pytest -q tests/test_agon_technique_binding_candidates.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. ## Exit criteria diff --git a/mechanics/audit/LANDING_LOG.md b/mechanics/audit/LANDING_LOG.md index bf8b936b..40ac65ae 100644 --- a/mechanics/audit/LANDING_LOG.md +++ b/mechanics/audit/LANDING_LOG.md @@ -16,11 +16,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_audit_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -62,12 +58,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_audit_mechanics_topology -python -m unittest tests.test_roadmap_parity -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -88,12 +79,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_audit_mechanics_topology -python -m unittest tests.test_roadmap_parity -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -114,12 +100,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_audit_mechanics_topology -python -m unittest tests.test_roadmap_parity -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -138,10 +119,7 @@ Changed: Verification lane: -```bash -python scripts/release_check.py -git diff --check -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -166,11 +144,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_audit_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: diff --git a/mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md b/mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md index d97c6cb1..a5802df8 100644 --- a/mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md +++ b/mechanics/audit/legacy/raw/ROOT_CLOSURE_AUDIT_ROADMAP_2026-05-03.md @@ -14,7 +14,7 @@ Historical note: ## Current Live Closure Snapshot -- current verification path: read-only current-state checks via `python scripts/validate_repo.py` plus `python -m unittest discover -s tests`, and bounded release-prep parity via `python scripts/release_check.py` +- current verification path: read-only current-state checks via repository validation plus the repository test suite, and bounded release-prep parity via the release lane - current corpus split: `100` bundles, `25 canonical`, `75 promoted` - current release contour: `v0.4.2` carries the workspace ingress and mutation gate, audit-to-closeout proof loop, recommendation-truth-versus-host @@ -80,7 +80,7 @@ Historical note: ## Baseline -- baseline verification path: `python -m unittest discover -s tests` and `python scripts/validate_repo.py` +- baseline verification path: the repository test suite and repository validation - current corpus split: `34` bundles, `17 canonical`, `17 promoted` - current promoted backlog: - [AOA-T-0005](techniques/agent-workflows/new-intent-rollout-checklist/TECHNIQUE.md) @@ -185,9 +185,9 @@ Findings: - [scripts/release_check.py](scripts/release_check.py) covers every current repo-owned builder family, then runs tests and [scripts/validate_repo.py](scripts/validate_repo.py). No hidden generated family was found outside that path. - The release path is structurally sound: builder order is explicit, worktree stabilization is checked, and a clean repo must stay diff-clean after the bounded release pass. -- `repo-only closure`: dirty-worktree drift detection is weaker than clean-worktree drift detection. The current stabilization logic compares `git status --porcelain` snapshots, so a tracked file that was already `M` can still change content without changing the snapshot shape. +- `repo-only closure`: dirty-worktree drift detection is weaker than clean-worktree drift detection. The current stabilization logic compares the worktree status check snapshots, so a tracked file that was already `M` can still change content without changing the snapshot shape. - `repo-only closure`: there is no targeted regression test for the dirty-worktree masking case in [tests/test_validate_repo.py](tests/test_validate_repo.py). -- `keep`: release doctrine is still described in more than one place, but [docs/RELEASING.md](docs/RELEASING.md) and [CONTRIBUTING.md](CONTRIBUTING.md) now agree on `python scripts/release_check.py` as the bounded release-prep path while still surfacing the lower-level commands. +- `keep`: release doctrine is still described in more than one place, but [docs/RELEASING.md](docs/RELEASING.md) and [CONTRIBUTING.md](CONTRIBUTING.md) now agree on the release lane as the bounded release-prep path while still surfacing the lower-level commands. - `keep`: generated parity and route prose are now aligned on the `12`-doc repo-doc source set, and current tests lock that docs-map claim directly. Wave 1B backlog: @@ -370,7 +370,7 @@ The queue below is now historical and shipped: - route references from [docs/START_HERE.md](docs/START_HERE.md) - close: - earlier repo-doc source-count drift on the docs path - - missing mention of `python scripts/release_check.py` in contribution guidance + - missing mention of the release lane in contribution guidance - missing route to this audit roadmap 2. `selection and semantic-review contract hardening` - target surfaces: @@ -429,9 +429,9 @@ Status: `completed` - [scripts/validate_repo.py](scripts/validate_repo.py) - [tests/test_validate_repo.py](tests/test_validate_repo.py) - tests and validation: - - `python -m unittest discover -s tests` - - `python scripts/validate_repo.py` - - `python scripts/release_check.py` only if generated-family parity is touched + - the repository test suite + - repository validation + - the release lane only if generated-family parity is touched - merge order: - docs wording first - guides second @@ -455,9 +455,9 @@ Status: `completed` - landed agent-workflows canonical-core semantic review for `AOA-T-0001`, `AOA-T-0004`, and `AOA-T-0014` - landed wording refresh for [SKILL_SUPPORT_SEMANTIC_REVIEW.md](docs/SKILL_SUPPORT_SEMANTIC_REVIEW.md) - tests and validation: - - `python scripts/build_semantic_review_manifest.py` if a new review doc is added - - `python -m unittest discover -s tests` - - `python scripts/validate_repo.py` + - the semantic-review manifest builder if a new review doc is added + - the repository test suite + - repository validation - merge order: - author review doc - sync semantic-review manifest @@ -505,7 +505,7 @@ Status: `active` - turn the current `future import here` intake lane into one coherent wave program without reopening overlap, incubation, or substrate lanes - close Wave A as fully landed now that [AOA-T-0035](techniques/docs/profile-preset-composition/TECHNIQUE.md), [AOA-T-0036](techniques/agent-workflows/render-truth-before-startup/TECHNIQUE.md), [AOA-T-0037](techniques/evaluation/contextual-host-doctor/TECHNIQUE.md), [AOA-T-0038](techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md), and [AOA-T-0039](techniques/evaluation/baseline-first-additive-profile-benchmarks/TECHNIQUE.md) have landed, then close Wave B as fully landed through [AOA-T-0040](techniques/docs/skill-vs-command-boundary/TECHNIQUE.md), [AOA-T-0041](techniques/docs/skill-marketplace-curation/TECHNIQUE.md), [AOA-T-0042](techniques/evaluation/upstream-skill-health-checking/TECHNIQUE.md), and [AOA-T-0043](techniques/docs/multi-source-primary-input-provenance/TECHNIQUE.md) - swarm layout: - - main agent owns wave boundaries, final wording, intake/roadmap sync, shared generated surfaces, and `python scripts/release_check.py` + - main agent owns wave boundaries, final wording, intake/roadmap sync, shared generated surfaces, and the release lane - each worker owns one candidate bundle at a time, plus only its `notes/`, `checks/`, and `examples/` - shared catalog, index, and other generated surfaces are synchronized only after a merge-ready bundle draft exists - wave order: diff --git a/mechanics/audit/parts/promotion-readiness-matrix/README.md b/mechanics/audit/parts/promotion-readiness-matrix/README.md index d2d9912e..2f0ccf19 100644 --- a/mechanics/audit/parts/promotion-readiness-matrix/README.md +++ b/mechanics/audit/parts/promotion-readiness-matrix/README.md @@ -8,6 +8,10 @@ This doc complements [Roadmap](../../../../ROADMAP.md) and [Long-Gap Canon Desig Bundle meaning still lives in each `TECHNIQUE.md` and `notes/canonical-readiness.md`. For the current actionable first wave, open [Promotion Evidence Runbook](../promotion-evidence-runbook/README.md). +The owner-local [promotion-readiness pass ratio](../../../../stats/README.md) +observes the generated readiness cohort as a revision-bound census. It does +not replace this bundle-by-bundle audit route or authorize a status change. + ## Current Posture - current promoted corpus: `9` techniques diff --git a/mechanics/boundary-bridge/LANDING_LOG.md b/mechanics/boundary-bridge/LANDING_LOG.md index d344f54f..37563cce 100644 --- a/mechanics/boundary-bridge/LANDING_LOG.md +++ b/mechanics/boundary-bridge/LANDING_LOG.md @@ -31,8 +31,4 @@ is not a roadmap and not a technique status source. Use: -```bash -python -m unittest tests.test_boundary_bridge_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. diff --git a/mechanics/checkpoint/LANDING_LOG.md b/mechanics/checkpoint/LANDING_LOG.md index 2c90e918..ad7aa71d 100644 --- a/mechanics/checkpoint/LANDING_LOG.md +++ b/mechanics/checkpoint/LANDING_LOG.md @@ -30,8 +30,4 @@ a roadmap and not a technique status source. Use: -```bash -python -m unittest tests.test_checkpoint_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. diff --git a/mechanics/distillation/LANDING_LOG.md b/mechanics/distillation/LANDING_LOG.md index 9e0e0c2f..140b066e 100644 --- a/mechanics/distillation/LANDING_LOG.md +++ b/mechanics/distillation/LANDING_LOG.md @@ -30,12 +30,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_incoming_topology -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -git diff --check -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -62,14 +57,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_topology_scout.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_tree_projection.py -python -m unittest tests.test_distillation_mechanics_topology tests.test_validate_repo -python scripts/validate_repo.py -python scripts/release_check.py -git diff --check -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -93,16 +81,7 @@ Changed: Verification lane: -```bash -python scripts/build_kind_manifest.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_topology_scout.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_tree_projection.py -python -m unittest tests.test_distillation_mechanics_topology tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -git diff --check -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -128,18 +107,7 @@ Changed: Verification lane: -```bash -python scripts/build_kind_manifest.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_topology_scout.py -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_tree_projection.py -python scripts/validate_semantic_agents.py -python -m unittest tests.test_validate_repo -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -git diff --check -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -167,13 +135,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_validate_repo -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -218,11 +180,7 @@ Changed: Verification lane: -```bash -python scripts/release_check.py -python -m unittest tests.test_nested_agents_docs tests.test_distillation_mechanics_topology tests.test_validate_repo tests.test_roadmap_parity -python scripts/validate_repo.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -249,12 +207,7 @@ Changed: Verification lane: -```bash -python scripts/validate_nested_agents.py -python -m unittest tests.test_nested_agents_docs -python -m unittest tests.test_distillation_mechanics_topology tests.test_validate_repo tests.test_roadmap_parity -python scripts/validate_repo.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -282,11 +235,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_validate_repo tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -313,11 +262,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -343,12 +288,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_validate_repo tests.test_skill_discovery_tree_pilot tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -377,11 +317,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -407,11 +343,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -438,12 +370,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -475,11 +402,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -505,10 +428,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -535,12 +455,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -570,11 +485,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -600,11 +511,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -630,12 +537,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -666,11 +568,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -698,11 +596,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -734,11 +628,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -772,11 +662,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -809,12 +695,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -853,10 +734,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -881,10 +759,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -916,12 +791,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -957,10 +827,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -986,10 +853,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1020,12 +884,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1056,10 +915,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1087,10 +943,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1118,12 +971,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1152,10 +1000,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1181,10 +1026,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1214,10 +1056,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -1250,10 +1089,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1283,10 +1119,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1313,10 +1146,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology tests.test_root_legacy_topology tests.test_roadmap_parity -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -1349,10 +1179,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1382,10 +1209,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1413,10 +1237,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -1447,10 +1268,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1478,10 +1296,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1508,10 +1323,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -1540,10 +1352,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1571,10 +1380,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1601,10 +1407,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -1631,10 +1434,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1661,10 +1461,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1695,10 +1492,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -1728,10 +1522,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1758,10 +1549,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1792,11 +1580,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_history_artifacts_tree_pilot -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -1823,10 +1607,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1852,10 +1633,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1887,10 +1665,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_published_summary_tree_pilot -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -1922,11 +1697,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1953,10 +1724,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -1987,10 +1755,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_evaluation_chain_tree_pilot -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -2020,11 +1785,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2050,10 +1811,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2083,10 +1841,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_skill_support_tree_pilot -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -2116,11 +1871,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2146,10 +1897,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2178,10 +1926,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_skill_discovery_tree_pilot -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -2212,11 +1957,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2245,10 +1986,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2278,10 +2016,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_capability_boundary_tree_pilot -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not changed: @@ -2311,11 +2046,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2343,11 +2074,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2376,15 +2103,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_capability_registry_tree_pilot tests.test_root_legacy_topology tests.test_distillation_mechanics_topology tests.test_docs_boundary_tree_pilot tests.test_kag_source_lift_tree_pilot -git diff --check -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2414,11 +2133,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2446,11 +2161,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2480,15 +2191,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_docs_boundary_tree_pilot tests.test_root_legacy_topology tests.test_distillation_mechanics_topology -git diff --check -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2519,11 +2222,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2551,11 +2250,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2585,15 +2280,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_kag_source_lift_tree_pilot tests.test_root_legacy_topology tests.test_distillation_mechanics_topology -git diff --check -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2624,11 +2311,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2655,11 +2338,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2685,15 +2364,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_instruction_surface_tree_pilot tests.test_root_legacy_topology tests.test_distillation_mechanics_topology -git diff --check -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2722,11 +2393,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2751,11 +2418,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2781,14 +2444,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_diagnosis_repair_tree_pilot tests.test_root_legacy_topology tests.test_distillation_mechanics_topology -git diff --check -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2816,11 +2472,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2844,11 +2496,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2873,15 +2521,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_media_ingest_tree_pilot tests.test_root_legacy_topology tests.test_distillation_mechanics_topology -git diff --check -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python scripts/validate_semantic_agents.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2907,11 +2547,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2935,11 +2571,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2965,13 +2597,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_root_legacy_topology tests.test_handoff_continuation_tree_pilot -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -2995,11 +2621,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3021,11 +2643,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3049,13 +2667,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_root_legacy_topology tests.test_review_compaction_tree_pilot -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3078,11 +2690,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3107,13 +2715,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/technique-reform-ingress/scripts/build_tree_projection.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3137,12 +2739,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3166,12 +2763,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3195,12 +2787,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3223,11 +2810,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3251,12 +2834,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3280,12 +2858,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3309,12 +2882,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3340,12 +2908,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3371,12 +2934,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3398,11 +2956,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3422,10 +2976,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. ## 2026-05-01 - External candidate ledger compaction @@ -3440,11 +2991,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. ## 2026-05-01 - External candidate registry @@ -3460,14 +3007,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/external-candidate-ledger/scripts/build_external_candidate_registry.py --check -python mechanics/distillation/parts/external-candidate-ledger/scripts/validate_external_candidate_registry.py -python -m pytest -q mechanics/distillation/parts/external-candidate-ledger/tests/test_external_candidate_registry.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3494,14 +3034,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/build_cross_layer_candidate_registry.py --check -python mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/validate_cross_layer_candidate_registry.py -python -m pytest -q mechanics/distillation/parts/cross-layer-candidate-ledger/tests/test_cross_layer_candidate_registry.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3525,11 +3058,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_recurrence_manifest_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3550,13 +3079,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python mechanics/distillation/parts/external-candidate-ledger/scripts/validate_external_candidate_registry.py -python mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/validate_cross_layer_candidate_registry.py -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3578,13 +3101,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/build_cross_layer_candidate_registry.py --check -python mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/validate_cross_layer_candidate_registry.py -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3607,14 +3124,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology tests.test_agon_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3636,14 +3146,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3665,14 +3168,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3694,14 +3190,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3726,14 +3215,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3758,14 +3240,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3788,14 +3263,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3820,13 +3288,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3851,12 +3313,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -python scripts/release_check.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3882,14 +3339,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3917,14 +3367,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity tests.test_audit_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3950,14 +3393,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology tests.test_roadmap_parity -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -3982,13 +3418,7 @@ Changed: Verification lane: -```bash -python mechanics/distillation/parts/agon-candidate-handoff/scripts/build_agon_candidate_handoff.py --check -python mechanics/distillation/parts/agon-candidate-handoff/scripts/validate_agon_candidate_handoff.py -python -m pytest -q mechanics/distillation/parts/agon-candidate-handoff/tests/test_agon_candidate_handoff.py -python -m unittest tests.test_distillation_mechanics_topology -python scripts/validate_repo.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: diff --git a/mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md b/mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md index 4595acba..5e1efc5c 100644 --- a/mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md +++ b/mechanics/distillation/legacy/raw/CROSS_LAYER_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md @@ -71,11 +71,7 @@ recurrence promotion authority. Validation: -```bash -python mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/build_cross_layer_candidate_registry.py --check -python mechanics/distillation/parts/cross-layer-candidate-ledger/scripts/validate_cross_layer_candidate_registry.py -python -m pytest -q mechanics/distillation/parts/cross-layer-candidate-ledger/tests/test_cross_layer_candidate_registry.py -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. ## Already Staged Elsewhere @@ -115,8 +111,8 @@ The `already staged elsewhere` candidates keep their inherited placement in the Each technique in a wave still lands through its own PR. The wave is a family-level import program, not a multi-technique merge unit. -- the main agent owns wave boundaries, final wording, shared generated surfaces, intake or roadmap sync, and `python scripts/release_check.py` -- before that final release-check path, install local validator deps with `python -m pip install -r requirements-dev.txt` +- the main agent owns wave boundaries, final wording, shared generated surfaces, intake or roadmap sync, and the release lane +- before that final release-check path, install local validator deps with the repository development dependencies - each worker should own only one future bundle directory plus its `notes/`, `checks/`, and `examples/` - shared files such as catalog, index, and generated surfaces stay out of worker ownership until a bundle draft is merge-ready diff --git a/mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md b/mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md index ae4f6979..295d9023 100644 --- a/mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md +++ b/mechanics/distillation/legacy/raw/EXTERNAL_CANDIDATE_LEDGER_2026-05-01_PRE_PRUNE.md @@ -89,8 +89,8 @@ The goal is to keep the import path coherent by family while still landing one t ## Swarm Execution Layer -- the main agent owns wave boundaries, final wording, the cross-doc sequence, shared generated-surface sync, and `python scripts/release_check.py` so the shared contract does not fragment across workers -- before that final release-check path, install local validator deps with `python -m pip install -r requirements-dev.txt` +- the main agent owns wave boundaries, final wording, the cross-doc sequence, shared generated-surface sync, and the release lane so the shared contract does not fragment across workers +- before that final release-check path, install local validator deps with the repository development dependencies - each worker handles one technique at a time, with one bundle draft, one evidence package, and one PR-sized scope - external anchors are execution seeds, not merge units: they mark which candidate opens the wave, while the rest of the family follows under the same boundary - execution role: keep [AOA-T-0038](../../../../techniques/agent-workflows/one-command-service-lifecycle/TECHNIQUE.md) as the landed Wave A lifecycle anchor inside the now-complete runtime family after `profile-preset-composition`, `render-truth-before-startup`, `contextual-host-doctor`, and `baseline-first-additive-profile-benchmarks` fixed the sibling boundaries diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md index ffcb4ab5..d316be0c 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/antifragility-recovery-direct-read-migration-review.md @@ -242,4 +242,4 @@ Move exactly `AOA-T-0097`, `AOA-T-0099`, `AOA-T-0100`, and `AOA-T-0098` into route card; preserve a root `legacy/receipts/` migration receipt; repair authored links including Antifragility mechanic anchors; rebuild generated surfaces; and validate with the narrow tree-pilot tests plus -`python scripts/release_check.py`. +the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md index b279328d..e5ee1e41 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-capsule-gap-repair-cohort.md @@ -66,11 +66,11 @@ list item text that was already authored. Passed locally: -1. `python -m unittest tests.test_validate_repo.TechniqueContentSmokeTests.test_capsule_markdown_items_preserve_wrapped_bullets` -2. `python scripts/build_capsules.py` -3. `python -m unittest discover -s tests` -4. `python scripts/release_check.py` -5. `python scripts/validate_repo.py` +1. the targeted tests +2. the capsule builder +3. the repository test suite +4. the release lane +5. repository validation ## Stop Lines diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md index 7b5ce3f8..a827de46 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/bundle-anatomy-final-closeout-ledger.md @@ -106,8 +106,8 @@ They are review pressure, not authority. Final closeout validation: -1. `python scripts/release_check.py` -2. `python scripts/validate_repo.py` +1. the release lane +2. repository validation The temporary rhythm plan was distilled into this ledger and removed from the working tree. It was local scratch, not source truth. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md index 23e296cb..396db0dd 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/capability-boundary-direct-read-migration-review.md @@ -204,4 +204,4 @@ Move exactly `AOA-T-0040`, `AOA-T-0043`, and `AOA-T-0093` into `capability-boundary/` shelf scope to `techniques/instruction/AGENTS.md`; preserve a root `legacy/receipts/` migration receipt; repair authored links; rebuild generated surfaces; and validate with the narrow tree-pilot tests plus -`python scripts/release_check.py`. +the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md index 328841e1..751aa845 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/capability-registry-direct-read-migration-review.md @@ -162,4 +162,4 @@ Move exactly `AOA-T-0025`, `AOA-T-0063`, and `AOA-T-0064` into `capability-registry/` shelf scope to `techniques/instruction/AGENTS.md`; preserve a root `legacy/receipts/` migration receipt; repair authored links; rebuild generated surfaces; and validate with the narrow tree-pilot tests plus -`python scripts/release_check.py`. +the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md index f5c65f28..93ef7a8a 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/diagnosis-repair-direct-read-migration-review.md @@ -156,4 +156,4 @@ Run the fourth pilot migration. Move exactly `AOA-T-0080` through `AOA-T-0083` into `techniques/recovery/diagnosis-repair/`, add the minimal `recovery/` route card, repair authored links, preserve a root legacy receipt, rebuild generated -surfaces, and run `python scripts/release_check.py`. +surfaces, and run the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md index b02237a3..5fb90be5 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/docs-boundary-direct-read-migration-review.md @@ -183,4 +183,4 @@ Run the seventh pilot migration. Move exactly `AOA-T-0002`, `AOA-T-0009`, `AOA-T-0034`, and `AOA-T-0033` into `techniques/instruction/docs-boundary/`, update the existing `instruction/` route card, repair authored links, preserve a root legacy -receipt, rebuild generated surfaces, and run `python scripts/release_check.py`. +receipt, rebuild generated surfaces, and run the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md index 51f6c694..ea2084e9 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/evaluation-chain-direct-read-migration-review.md @@ -215,4 +215,4 @@ Move exactly `AOA-T-0003`, `AOA-T-0007`, and `AOA-T-0032` into `techniques/proof/evaluation-chain/`; update the compact proof trunk route card; preserve a root `legacy/receipts/` migration receipt; repair authored links; rebuild generated surfaces; and validate with the narrow tree-pilot -tests plus `python scripts/release_check.py`. +tests plus the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md index 78bf9c04..cccb3ad1 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-empirical-harness-decision.md @@ -125,6 +125,6 @@ A future `aoa-evals` bundle should include: This packet is review-only. Required validation after landing this wave: -1. `python -m unittest tests.test_distillation_mechanics_topology` -2. `python scripts/validate_repo.py` -3. `python scripts/release_check.py` before GitHub merge +1. the targeted tests +2. repository validation +3. the release lane before GitHub merge diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md index 405d378d..5f98d5cd 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-fixture-sketch-ledger.md @@ -151,6 +151,6 @@ name: This packet is a review-only source artifact. Required validation after landing this wave: -1. `python -m unittest tests.test_distillation_mechanics_topology` -2. `python scripts/validate_repo.py` -3. `python scripts/release_check.py` before GitHub merge +1. the targeted tests +2. repository validation +3. the release lane before GitHub merge diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md index e27b186d..1a5b34bc 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-long-pass-closeout-ledger.md @@ -142,7 +142,7 @@ likely either: Required before landing this closeout wave: -1. `python mechanics/distillation/parts/technique-reform-ingress/scripts/build_topology_scout.py` -2. `python -m unittest tests.test_distillation_mechanics_topology` -3. `python scripts/validate_repo.py` -4. `python scripts/release_check.py` +1. the topology-scout builder +2. the targeted tests +3. repository validation +4. the release lane diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md index c5e81e2d..2985f581 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-medium-agent-calibration-review.md @@ -155,6 +155,6 @@ Carry these forward: This packet is a review-only source artifact. Required validation after landing this wave: -1. `python -m unittest tests.test_distillation_mechanics_topology` -2. `python scripts/validate_repo.py` -3. `python scripts/release_check.py` before GitHub merge +1. the targeted tests +2. repository validation +3. the release lane before GitHub merge diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md index d62342cb..bb997c97 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-orchestration-boundary-review.md @@ -200,6 +200,6 @@ Carry these forward: This packet is a review-only source artifact. Required validation after landing this wave: -1. `python -m unittest tests.test_distillation_mechanics_topology` -2. `python scripts/validate_repo.py` -3. `python scripts/release_check.py` before GitHub merge +1. the targeted tests +2. repository validation +3. the release lane before GitHub merge diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md index b07b5877..c00b3552 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-registry-calibration-review.md @@ -114,6 +114,6 @@ these happens: This packet is review-only. Required validation after landing this wave: -1. `python -m unittest tests.test_distillation_mechanics_topology` -2. `python scripts/validate_repo.py` -3. `python scripts/release_check.py` before GitHub merge +1. the targeted tests +2. repository validation +3. the release lane before GitHub merge diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md index 9443ffd6..dea37331 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-repair-queue-review.md @@ -115,6 +115,6 @@ If `AOA-T-0095` is repaired later, keep the slice small: This packet is review-only. Required validation after landing this wave: -1. `python -m unittest tests.test_distillation_mechanics_topology` -2. `python scripts/validate_repo.py` -3. `python scripts/release_check.py` before GitHub merge +1. the targeted tests +2. repository validation +3. the release lane before GitHub merge diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md index 8b25ae8c..71b78293 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-core-shelves-review.md @@ -137,7 +137,7 @@ Carry these forward: This packet is a review-only source artifact. Required validation after landing this wave: -1. `python -m unittest tests.test_distillation_mechanics_topology` -2. `python scripts/validate_repo.py` -3. `python scripts/release_check.py` before GitHub merge if the packet is +1. the targeted tests +2. repository validation +3. the release lane before GitHub merge if the packet is published as a durable review surface diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md index dc08430e..3c365215 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-small-agent-remaining-shelves-review.md @@ -176,6 +176,6 @@ Carry these forward: This packet is a review-only source artifact. Required validation after landing this wave: -1. `python -m unittest tests.test_distillation_mechanics_topology` -2. `python scripts/validate_repo.py` -3. `python scripts/release_check.py` before GitHub merge +1. the targeted tests +2. repository validation +3. the release lane before GitHub merge diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md index 1ce0b1f6..714930f9 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/execution-profile-truth-boundary-pilot.md @@ -67,7 +67,7 @@ Use this rhythm for the long execution-profile pass: 7. Change registry wording or generated projection rules only when the pilot finds repeated confusion. 8. Rebuild generated scout surfaces only from source inputs. -9. Run `python scripts/release_check.py` and `python scripts/validate_repo.py` +9. Run the release lane and repository validation for any registry, generated, or broad reader-surface change. Recommended order for the long pass: @@ -91,10 +91,10 @@ Recommended order for the long pass: Passed locally: -1. `python mechanics/distillation/parts/technique-reform-ingress/scripts/build_topology_scout.py` -2. `python -m unittest tests.test_distillation_mechanics_topology` -3. `python scripts/validate_repo.py` -4. `python scripts/release_check.py` +1. the topology-scout builder +2. the targeted tests +3. repository validation +4. the release lane `build_topology_scout.py` rewrote the generated scout files without producing a tracked generated diff. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md index 7c0a3628..a6bc18be 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/final-tree-migration-ledger.md @@ -71,7 +71,7 @@ on `2026-05-04` and later pilots landed on `2026-05-05`. ## Generated Parity The final pass rebuilt and validated generated reader and report surfaces with -`python scripts/release_check.py`. +the release lane. The release check rebuilt catalogs, capsules, section/checklist/example/evidence surfaces, semantic and shadow manifests, topology scout, tree projection, KAG diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md index 21dae913..756b5068 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/handoff-continuation-direct-read-migration-review.md @@ -163,4 +163,4 @@ Run the second pilot migration. Move exactly `AOA-T-0056` through `AOA-T-0062` into `techniques/continuity/handoff-continuation/`, update the continuity trunk route card, repair authored links, preserve a root legacy receipt, rebuild generated -surfaces, and run `python scripts/release_check.py`. +surfaces, and run the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md index 3c81002b..026046bb 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/history-artifacts-direct-read-migration-review.md @@ -259,4 +259,4 @@ Move exactly `AOA-T-0044`, `AOA-T-0053`, `AOA-T-0026`, `AOA-T-0045`, `techniques/history/history-artifacts/`; update the compact history route card; preserve a root `legacy/receipts/` migration receipt; repair authored links; rebuild generated surfaces; and validate with the narrow tree-pilot tests plus -`python scripts/release_check.py`. +the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md index fedf90ca..e198ff17 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/instruction-surface-direct-read-migration-review.md @@ -198,4 +198,4 @@ Move exactly `AOA-T-0012`, `AOA-T-0013`, `AOA-T-0024`, `AOA-T-0027`, `AOA-T-0029`, `AOA-T-0030`, and `AOA-T-0035` into `techniques/instruction/instruction-surface/`, add the minimal `instruction/` route card, repair authored links, preserve a root legacy receipt, rebuild -generated surfaces, and run `python scripts/release_check.py`. +generated surfaces, and run the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md index 798ed331..9e345523 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/kag-source-lift-direct-read-migration-review.md @@ -225,4 +225,4 @@ Move exactly `AOA-T-0018`, `AOA-T-0019`, `AOA-T-0020`, `AOA-T-0021`, `AOA-T-0022`, `AOA-T-0046`, `AOA-T-0047`, and `AOA-T-0048` into `techniques/knowledge-lift/kag-source-lift/`, add the minimal `knowledge-lift/` route card, repair authored links, preserve a root legacy -receipt, rebuild generated surfaces, and run `python scripts/release_check.py`. +receipt, rebuild generated surfaces, and run the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md index 9f4ea61e..8af30060 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-antifragility-recovery-pilot-review.md @@ -57,7 +57,7 @@ trunk is accepted only from projection rows. - [AOA-T-0049 dependency-aware-task-graph](../../../../../techniques/execution/ready-work-graphs/dependency-aware-task-graph/TECHNIQUE.md) - [AOA-T-0050 ready-work-from-blocker-graph](../../../../../techniques/execution/ready-work-graphs/ready-work-from-blocker-graph/TECHNIQUE.md) - [AOA-T-0055 requirements-design-tasks-ladder](../../../../../techniques/execution/ready-work-graphs/requirements-design-tasks-ladder/TECHNIQUE.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md index 32b36d21..261e1683 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-boundary-pilot-review.md @@ -66,7 +66,7 @@ governance, or routing policy. - [Technique topology scout rows for `capability-boundary` and `skill-discovery`](../reports/technique_topology_scout.md) - [Landed capability-registry pilot review](landed-capability-registry-pilot-review.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md index b555a19c..9f2ae0b1 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-capability-registry-pilot-review.md @@ -57,7 +57,7 @@ runtime execution doctrine. - [Technique tree projection rows for `capability-registry`, `capability-boundary`, and `skill-discovery`](../reports/technique_tree_projection.md) - [Landed docs-boundary pilot review](landed-docs-boundary-pilot-review.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md index 3623f047..39b99903 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-diagnosis-repair-pilot-review.md @@ -48,7 +48,7 @@ test a docs-rooted instruction district before the more derived `instruction-surface`, and `kag-source-lift`](../reports/technique_tree_projection.md) - [First family shelf review pack](first-family-shelf-review-pack.md) - [First tree projection review pack](first-tree-projection-review-pack.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md index a91972d0..5baca6ed 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-docs-boundary-pilot-review.md @@ -56,7 +56,7 @@ resolution, or marketplace curation. - [First family shelf review pack](first-family-shelf-review-pack.md) - [First tree projection review pack](first-tree-projection-review-pack.md) - [Landed kag-source-lift pilot review](landed-kag-source-lift-pilot-review.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md index c65835de..2b108527 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-evaluation-chain-pilot-review.md @@ -58,7 +58,7 @@ four published-summary bundles directly before any path movement. - [AOA-T-0008 published-summary-remediation-snapshot](../../../../../techniques/proof/published-summary/published-summary-remediation-snapshot/TECHNIQUE.md) - [AOA-T-0010 telemetry-integrity-snapshot](../../../../../techniques/proof/published-summary/telemetry-integrity-snapshot/TECHNIQUE.md) - [AOA-T-0011 required-vs-optional-source-rendering](../../../../../techniques/proof/published-summary/required-vs-optional-source-rendering/TECHNIQUE.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md index 38a16a20..f17a6f96 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-handoff-continuation-pilot-review.md @@ -51,7 +51,7 @@ machinery and the next pressure should test a different root district. `media-ingest`](../reports/technique_tree_projection.md) - `mechanics/distillation/legacy/archive/closed-incoming-packets/chat-graph-review-mailbox/docs/EXTERNAL_TECHNIQUE_CANDIDATES_CHAT_GRAPH_REVIEW_MAILBOX.md` - `mechanics/distillation/legacy/archive/closed-incoming-packets/chat-handoff-bounded-continuation/docs/EXTERNAL_TECHNIQUE_CANDIDATES_CHAT_HANDOFF_BOUNDED_CONTINUATION.md` -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md index 1518db9b..8919b5b3 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-history-artifacts-pilot-review.md @@ -61,7 +61,7 @@ read the four recovery bundles directly before any path movement. - [AOA-T-0099 isolated-service-stop-on-shared-substrate](../../../../../techniques/recovery/antifragility-recovery/isolated-service-stop-on-shared-substrate/TECHNIQUE.md) - [AOA-T-0100 stress-receipt-reground-closeout](../../../../../techniques/recovery/antifragility-recovery/stress-receipt-reground-closeout/TECHNIQUE.md) - [AOA-T-0098 receipt-first-failure-analysis](../../../../../techniques/recovery/antifragility-recovery/receipt-first-failure-analysis/TECHNIQUE.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md index 643ee8ea..45cb56cc 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-instruction-surface-pilot-review.md @@ -57,7 +57,7 @@ subordinate to authored markdown and outside KAG owner authority. - initial direct-read headers and section maps for `AOA-T-0018`, `AOA-T-0019`, `AOA-T-0020`, `AOA-T-0021`, `AOA-T-0022`, `AOA-T-0046`, `AOA-T-0047`, and `AOA-T-0048` -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md index 997883d5..bbac6129 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-intent-chain-pilot-review.md @@ -56,7 +56,7 @@ now-projected shelf and `AOA-T-0004` has already landed under `intent-chain`. - [AOA-T-0023 stateless-single-shot-agent](../../../../../techniques/execution/agent-workflows-core/stateless-single-shot-agent/TECHNIQUE.md) - [AOA-T-0028 confirmation-gated-mutating-action](../../../../../techniques/execution/agent-workflows-core/confirmation-gated-mutating-action/TECHNIQUE.md) - [AOA-T-0031 shell-composable-agent-invocation](../../../../../techniques/execution/agent-workflows-core/shell-composable-agent-invocation/TECHNIQUE.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md index 038dbbe0..c059d870 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-kag-source-lift-pilot-review.md @@ -61,7 +61,7 @@ decision rationale form a clean document-boundary shelf before any path move. - [First family shelf review pack](first-family-shelf-review-pack.md) - [First tree projection review pack](first-tree-projection-review-pack.md) - [Landed instruction-surface pilot review](landed-instruction-surface-pilot-review.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md index fee64201..7729310f 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-media-ingest-pilot-review.md @@ -50,7 +50,7 @@ instruction or knowledge-lift shelves move. `diagnosis-repair`](../reports/technique_tree_projection.md) - `mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/docs/EXTERNAL_TECHNIQUE_CANDIDATES_PERSONAL_MEDIA_INGEST.md` - `mechanics/distillation/legacy/archive/closed-incoming-packets/personal-media-ingest/docs/TELEGRAM_ACCOUNT_AUTH_AND_SESSION_BRIDGE_CLOSEOUT_MEMO.md` -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md index 2a4f93d4..8dbff8d7 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-published-summary-pilot-review.md @@ -63,7 +63,7 @@ six history bundles directly before any path movement. - [AOA-T-0045 witness-trace-as-reviewable-artifact](../../../../../techniques/history/history-artifacts/witness-trace-as-reviewable-artifact/TECHNIQUE.md) - [AOA-T-0066 transcript-replay-artifact](../../../../../techniques/history/history-artifacts/transcript-replay-artifact/TECHNIQUE.md) - [AOA-T-0067 transcript-linked-code-lineage](../../../../../techniques/history/history-artifacts/transcript-linked-code-lineage/TECHNIQUE.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md index ddcde3e9..79484d50 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-ready-work-graphs-pilot-review.md @@ -54,7 +54,7 @@ action-contract pressure than ready-work visibility. - [Technique topology scout rows for `intent-chain`](../reports/technique_topology_scout.md) - [AOA-T-0004 intent-plan-dry-run-contract-chain](../../../../../techniques/execution/intent-chain/intent-plan-dry-run-contract-chain/TECHNIQUE.md) - [AOA-T-0005 new-intent-rollout-checklist](../../../../../techniques/execution/intent-chain/new-intent-rollout-checklist/TECHNIQUE.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md index 4f11a634..61642862 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-review-compaction-pilot-review.md @@ -43,7 +43,7 @@ that shelf is the nearest continuity sibling and will test whether - [Review-compaction tree pilot receipt](../../../../../legacy/receipts/2026-05-04-review-compaction-tree-pilot.md) - [Technique tree projection rows for `review-compaction` and `handoff-continuation`](../reports/technique_tree_projection.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md index caba45d3..0bdc11d9 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-discovery-pilot-review.md @@ -58,7 +58,7 @@ and practical, but they must not become one vague proof doctrine. - [AOA-T-0015 contract-test-design](../../../../../techniques/proof/skill-support/contract-test-design/TECHNIQUE.md) - [AOA-T-0017 property-invariants](../../../../../techniques/proof/skill-support/property-invariants/TECHNIQUE.md) - [Landed capability-boundary pilot review](landed-capability-boundary-pilot-review.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md index a29f15b0..1ba86293 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/landed-skill-support-pilot-review.md @@ -56,7 +56,7 @@ path movement. - [Technique topology scout rows for `skill-support` and `evaluation-chain`](../reports/technique_topology_scout.md) - [Skill-support direct-read migration review](skill-support-direct-read-migration-review.md) - [Landed skill-discovery pilot review](landed-skill-discovery-pilot-review.md) -- `python scripts/release_check.py` result recorded in the migration receipt +- the release lane result recorded in the migration receipt ## Landed Shape Read diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md index c2d1311e..b7c2cb48 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/media-ingest-direct-read-migration-review.md @@ -176,4 +176,4 @@ Run the third pilot migration. Move exactly `AOA-T-0070` through `AOA-T-0074` into `techniques/ingest/media-ingest/`, add the minimal `ingest/` route card, repair authored links, preserve a root legacy receipt, rebuild generated surfaces, and -run `python scripts/release_check.py`. +run the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md index d8c7db13..9cd77c56 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-closeout-ledger.md @@ -164,8 +164,8 @@ pass/fail evidence. Final closeout validation should use the same bounded menu as the residual scan: -1. `git diff --check` +1. the diff hygiene check 2. public-safety grep over touched public-share surfaces 3. bridge-block grep over touched public-share surfaces -4. `python -m unittest tests.test_distillation_mechanics_topology` -5. `python scripts/validate_repo.py` +4. the targeted tests +5. repository validation diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md index 2625ddc6..2489a980 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/owner-boundary-bridge-long-pass-working-plan.md @@ -136,10 +136,10 @@ Use this exact loop for every wave: 9. Update [Technique Reform Ingress](../README.md) only when the contour actually changes. 10. Validate the smallest honest surface: - - `git diff --check`; + - the diff hygiene check; - public-safety grep over touched files; - - `python -m unittest discover -s mechanics/distillation/tests`; - - `python scripts/validate_repo.py` for structural or index changes. + - the Distillation test suite; + - repository validation for structural or index changes. 11. Land each completed wave as its own commit/PR/merge during the execution pass. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md index 75c62af8..02e068fe 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-handoff-continuation-mini-pilot.md @@ -144,8 +144,8 @@ or runtime doctrine. Passed locally: -1. `git diff --check` +1. the diff hygiene check 2. public-share grep over the changed review surfaces -3. `python -m unittest tests.test_distillation_mechanics_topology` -4. `python scripts/validate_repo.py` -5. `python scripts/release_check.py` +3. the targeted tests +4. repository validation +5. the release lane diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md index 07d71f37..5456ee70 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/portability-bridge-long-pass-closeout-ledger.md @@ -123,11 +123,11 @@ model execution proof belongs in eval ownership. Passed locally after closeout indexing and temporary-plan removal: -1. `git diff --cached --check` +1. the staged-diff hygiene check 2. public-share grep over changed review and index surfaces -3. `python -m unittest tests.test_distillation_mechanics_topology` -4. `python scripts/validate_repo.py` -5. `python scripts/release_check.py` +3. the targeted tests +4. repository validation +5. the release lane The pre-mutation public-share guard surfaced sanitization and explicit risk gates; this closeout satisfied them through the staged review scope, public diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md index 67ea585f..06847ba4 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/published-summary-direct-read-migration-review.md @@ -240,4 +240,4 @@ Move exactly `AOA-T-0006`, `AOA-T-0008`, `AOA-T-0010`, and `AOA-T-0011` into `techniques/proof/published-summary/`; update the compact proof trunk route card; preserve a root `legacy/receipts/` migration receipt; repair authored links; rebuild generated surfaces; and validate with the narrow tree-pilot -tests plus `python scripts/release_check.py`. +tests plus the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md index 28827a66..0db078e4 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/review-compaction-direct-read-migration-review.md @@ -125,4 +125,4 @@ Run the first pilot migration. Move exactly `AOA-T-0051`, `AOA-T-0052`, and `AOA-T-0054` into `techniques/continuity/review-compaction/`, add the minimal trunk `AGENTS.md`, repair authored links, and rebuild generated surfaces. -Run `python scripts/release_check.py`. +Run the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md index ab9d7d61..fb3b184a 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/selector-relation-long-pass-closeout-ledger.md @@ -158,10 +158,10 @@ was accepted. Validation across the pass used the same bounded menu repeatedly: -- `git diff --check`; -- `python -m unittest tests.test_distillation_mechanics_topology`; -- `python scripts/validate_repo.py`; -- `python scripts/release_check.py`; +- the diff hygiene check; +- the targeted tests; +- repository validation; +- the release lane; - public-safety grep on public-share diffs before publishing review surfaces. The final residual addendum also passed checkpoint review after commit. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md index 1b7d9476..0d3999a4 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/skill-discovery-direct-read-migration-review.md @@ -205,4 +205,4 @@ Move exactly `AOA-T-0041` and `AOA-T-0042` into `skill-discovery/` shelf scope to `techniques/instruction/AGENTS.md`; preserve a root `legacy/receipts/` migration receipt; repair authored links; rebuild generated surfaces; and validate with the narrow tree-pilot tests plus -`python scripts/release_check.py`. +the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md index 92538c85..89114786 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/skill-support-direct-read-migration-review.md @@ -209,4 +209,4 @@ Move exactly `AOA-T-0016`, `AOA-T-0015`, and `AOA-T-0017` into `techniques/proof/skill-support/`; add a compact proof trunk route card; preserve a root `legacy/receipts/` migration receipt; repair authored links; rebuild generated surfaces; and validate with the narrow tree-pilot tests plus -`python scripts/release_check.py`. +the release lane. diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md index 61cf08a1..bca8bce3 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-closeout-ledger.md @@ -86,9 +86,9 @@ Good next posture: Final validation is recorded in closeout reporting rather than this source packet. The required final checks are: -- `git diff --check` +- the diff hygiene check - public-safety grep over touched public surfaces - bridge-block grep over touched public surfaces -- `python -m unittest tests.test_distillation_mechanics_topology` -- `python scripts/validate_repo.py` -- `python -m unittest discover -s tests` +- the targeted tests +- repository validation +- the repository test suite diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md index cb9721f6..9dbd3a55 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-long-pass-working-plan.md @@ -203,8 +203,8 @@ Goal: make the starting base explicit before the long pass begins. Steps: 1. Confirm branch and dirty surface: - - `git status --short --branch` - - `git diff --stat` + - the worktree status check + - the diff summary 2. Confirm the `proof/skill-support` pilot package: - source edits in `AOA-T-0015`, `AOA-T-0016`, `AOA-T-0017` - optional-section validator support @@ -213,7 +213,7 @@ Steps: - review packet - roadmap and changelog updates 3. Rerun or confirm full validation: - - `python scripts/release_check.py` + - the release lane 4. If the user asks for landing, commit the pilot plus this corrected long-pass plan, push, open PR, wait for GitHub `Repo Validation`, merge, return to `main`, fast-forward, and confirm clean. @@ -633,24 +633,9 @@ contour actually changes. Do not turn this temporary plan into the roadmap. ## Validation Menu -Use the smallest honest menu for plan-only changes: - -1. `git diff --check` -2. public-safety grep over touched public-share files -3. bridge-block grep over touched public-share files -4. `python -m unittest discover -s mechanics/distillation/tests` -5. `python scripts/validate_repo.py` - -Use the source-repair menu after any `TECHNIQUE.md` or validator change: - -1. `git diff --check` -2. public-safety grep over touched public-share files -3. bridge-block grep over touched public-share files -4. `python -m unittest discover -s tests -p 'test_validate_repo.py'` -5. `python -m unittest discover -s mechanics/distillation/tests` -6. `python scripts/validate_nested_agents.py` -7. `python scripts/validate_repo.py` -8. `python scripts/release_check.py` +Plan-only and source-repair verification followed the Distillation owner card +and repository lanes. This working plan does not own an executable validation +sequence. ## Landing Rhythm @@ -669,7 +654,7 @@ Preferred landing units during execution: For each landing when the user asks: -1. inspect `git diff --stat` +1. inspect the diff summary 2. stage only intended files 3. commit with a surface-naming message 4. push branch diff --git a/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md b/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md index 5169298b..a618adbc 100644 --- a/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md +++ b/mechanics/distillation/parts/technique-reform-ingress/reviews/template-modernization-skill-support-pilot.md @@ -139,10 +139,10 @@ as source-derived parity rather than noise. Close this pilot with: -1. `git diff --check` +1. the diff hygiene check 2. public-safety grep over touched public-share surfaces 3. bridge-block grep over touched public-share surfaces -4. `python -m unittest tests.test_distillation_mechanics_topology` -5. `python scripts/validate_nested_agents.py` -6. `python scripts/validate_repo.py` -7. `python scripts/release_check.py` +4. the targeted tests +5. the nested-agent check +6. repository validation +7. the release lane diff --git a/mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py b/mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py index 1fe92e2d..31105df7 100644 --- a/mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py +++ b/mechanics/distillation/tests/test_distillation_tree_pilot_ingress_wave.py @@ -60,7 +60,7 @@ def test_review_compaction_pilot_migration_is_landed_after_direct_read(self) -> self.assertIn("Do not move files from this review pack alone", review) self.assertIn("Do not add `family` or `tree_path` frontmatter", review) self.assertIn("Create a minimal `techniques/continuity/AGENTS.md`", review) - self.assertIn("Run `python scripts/release_check.py`", review) + self.assertIn("Run the release lane", review) self.assertIn("review-compaction-direct-read-migration-review", reviews_index) self.assertIn("review-compaction direct-read review: landed", ingress) @@ -195,7 +195,7 @@ def test_handoff_continuation_direct_read_review_accepts_second_pilot_without_mi self.assertIn("Do not move files from this review pack alone", review) self.assertIn("Do not add `family` or `tree_path` frontmatter", review) self.assertIn("Run the second pilot migration", review) - self.assertIn("run `python scripts/release_check.py`", review) + self.assertIn("run the release lane", review) self.assertIn("handoff-continuation-direct-read-migration-review", reviews_index) self.assertIn("handoff-continuation direct-read review: landed", ingress) diff --git a/mechanics/experience/LANDING_LOG.md b/mechanics/experience/LANDING_LOG.md index 13720114..9ba85c43 100644 --- a/mechanics/experience/LANDING_LOG.md +++ b/mechanics/experience/LANDING_LOG.md @@ -16,12 +16,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_experience_adoption_contracts tests.test_experience_governance_contracts tests.test_experience_release_contracts -python -m unittest tests.test_experience_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -43,11 +38,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_experience_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -76,11 +67,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_experience_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: diff --git a/mechanics/growth-cycle/LANDING_LOG.md b/mechanics/growth-cycle/LANDING_LOG.md index 4c97925b..973a2ee7 100644 --- a/mechanics/growth-cycle/LANDING_LOG.md +++ b/mechanics/growth-cycle/LANDING_LOG.md @@ -36,11 +36,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_growth_cycle_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: diff --git a/mechanics/method-growth/LANDING_LOG.md b/mechanics/method-growth/LANDING_LOG.md index 1cd659b8..5368e974 100644 --- a/mechanics/method-growth/LANDING_LOG.md +++ b/mechanics/method-growth/LANDING_LOG.md @@ -16,12 +16,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_experience_adoption_contracts -python -m unittest tests.test_method_growth_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: @@ -43,11 +38,7 @@ Changed: Verification lane: -```bash -python -m unittest tests.test_method_growth_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. Not moved: diff --git a/mechanics/questbook/LANDING_LOG.md b/mechanics/questbook/LANDING_LOG.md index 0f1ac225..c93695fa 100644 --- a/mechanics/questbook/LANDING_LOG.md +++ b/mechanics/questbook/LANDING_LOG.md @@ -31,8 +31,4 @@ a roadmap and not a quest source or technique status source. Use: -```bash -python -m unittest tests.test_questbook_mechanics_topology tests.test_mechanics_request_receipts tests.test_validate_repo -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. diff --git a/mechanics/recurrence/LANDING_LOG.md b/mechanics/recurrence/LANDING_LOG.md index 47d5d7b1..909d7224 100644 --- a/mechanics/recurrence/LANDING_LOG.md +++ b/mechanics/recurrence/LANDING_LOG.md @@ -18,13 +18,7 @@ technique review. Verification lane: -```bash -python -m unittest tests.test_publish_live_receipts -python -m unittest tests.test_recurrence_mechanics_topology -python scripts/validate_repo.py -python scripts/release_check.py -git diff --check -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. ## 2026-05-14 - Manifest Part Home @@ -38,12 +32,7 @@ git diff --check Verification lane: -```bash -python -m unittest tests.test_recurrence_manifest_topology -python -m unittest tests.test_recurrence_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. ## 2026-05-02 diff --git a/mechanics/release-support/LANDING_LOG.md b/mechanics/release-support/LANDING_LOG.md index b88b4c27..1530403b 100644 --- a/mechanics/release-support/LANDING_LOG.md +++ b/mechanics/release-support/LANDING_LOG.md @@ -18,12 +18,7 @@ substitute for technique review, public-claim proof, or owner acceptance. Verification lane: -```bash -python -m unittest tests.test_experience_release_contracts -python -m unittest tests.test_release_support_mechanics_topology -python scripts/validate_repo.py -python -m unittest discover -s tests -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. ## 2026-05-02 diff --git a/mechanics/rpg/LANDING_LOG.md b/mechanics/rpg/LANDING_LOG.md index 3c99b99b..71570b84 100644 --- a/mechanics/rpg/LANDING_LOG.md +++ b/mechanics/rpg/LANDING_LOG.md @@ -35,10 +35,4 @@ Explicitly not included: Use: -```bash -python -m unittest tests.test_rpg_mechanics_topology tests.test_mechanics_request_receipts -python scripts/validate_nested_agents.py -python scripts/validate_repo.py -python -m unittest discover -s tests -git diff --check -``` +Verification covered the targeted owner checks and repository validation lanes recorded for this landing. diff --git a/scripts/validate_local_stats_port.py b/scripts/validate_local_stats_port.py new file mode 100644 index 00000000..02aa4085 --- /dev/null +++ b/scripts/validate_local_stats_port.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python3 +"""Delegate owner-local stats validation to the aoa-stats contract owner.""" + +from __future__ import annotations + +import os +from pathlib import Path +import subprocess +import sys + + +REPO_ROOT = Path(__file__).resolve().parents[1] +PORT_PATH = REPO_ROOT / "stats" / "port.manifest.json" + + +def _candidate_roots() -> tuple[Path, ...]: + explicit = os.environ.get("AOA_STATS_ROOT") + if explicit is not None: + return (Path(explicit).expanduser(),) + return (REPO_ROOT / ".deps" / "aoa-stats", REPO_ROOT.parent / "aoa-stats") + + +def main() -> int: + candidates = _candidate_roots() + for root in candidates: + validator = root / "scripts" / "validate_stats_protocol.py" + if validator.is_file(): + return subprocess.run( + (sys.executable, str(validator), "--port", str(PORT_PATH)), + cwd=REPO_ROOT, + check=False, + ).returncode + + checked = ", ".join(str(root) for root in candidates) + print(f"[error] aoa-stats validator is unavailable; checked: {checked}", file=sys.stderr) + return 1 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/validate_repo_local_kag_index.py b/scripts/validate_repo_local_kag_index.py index 548ca932..c5c120c2 100755 --- a/scripts/validate_repo_local_kag_index.py +++ b/scripts/validate_repo_local_kag_index.py @@ -18,6 +18,7 @@ HISTORY_REPO_ENV = "AOA_REPO_LOCAL_KAG_HISTORY_REPO" HISTORY_REF_ENV = "AOA_REPO_LOCAL_KAG_HISTORY_REF" EVENT_HISTORY_REF_ENV = "AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF" +OWNER_REPO = "aoa-techniques" def resolve_aoa_kag_root( @@ -60,7 +61,7 @@ def resolve_history_refs( env: Mapping[str, str] = os.environ, repo_root: Path = REPO_ROOT, ) -> tuple[str | None, str | None]: - if env.get(HISTORY_REPO_ENV) == repo_root.name: + if env.get(HISTORY_REPO_ENV) == OWNER_REPO: history_ref = env.get(HISTORY_REF_ENV, "").strip() event_history_ref = env.get(EVENT_HISTORY_REF_ENV, "").strip() if history_ref: diff --git a/stats/AGENTS.md b/stats/AGENTS.md new file mode 100644 index 00000000..feb41043 --- /dev/null +++ b/stats/AGENTS.md @@ -0,0 +1,47 @@ +# AGENTS.md + +## Applies to + +This card applies to `stats/` and all descendants. + +## Role + +`stats/` is the owner-local measurement port for the public technique canon. +It defines technique-domain questions, populations, measures, evidence refs, +and authority ceilings while remaining compatible with the central +`aoa-stats` protocol. + +It does not own cross-repository aggregation, technique status, promotion +decisions, eval verdicts, usage surveillance, skill adoption, or runtime truth. + +## Read before editing + +1. Root `AGENTS.md`, `DESIGN.md`, and `docs/TECHNIQUE_ATOM_CONTRACT.md`. +2. `README.md` and `port.manifest.json` in this district. +3. The owner source and consuming mechanic named by the measurement. +4. The central `aoa-stats` measurement and local-port contracts. + +## Boundaries + +- Derive only from public owner surfaces and retain portable evidence refs. +- Keep packet refs repository-relative and raw evidence content out of packets. +- Treat generated readiness as a projection of technique bundles, not as + technique meaning or a promotion verdict. +- Keep live/reference posture explicit; the current export is reference-only. +- Do not add a measure without a real owner question and a named consumer. + +## Validation + +```bash +python scripts/validate_local_stats_port.py +python -m unittest tests.test_local_stats_port +``` + +The repository-wide lane remains `source-fast`; its command sequence is owned +by `config/validation_lanes.json`. + +## Closeout + +Report the question, population, source revision, reference/live posture, +authority ceiling, owner readiness evidence inspected, whether the reference +packet was refreshed, and which validation route ran. diff --git a/stats/README.md b/stats/README.md new file mode 100644 index 00000000..ced10941 --- /dev/null +++ b/stats/README.md @@ -0,0 +1,41 @@ +# Technique-canon statistics + +This directory is the owner-local stats port for `aoa-techniques`. It names +measurements whose domain meaning belongs to the public practice canon and +hands their portable contracts and evidence refs to `aoa-stats`. + +The port does not observe private use, infer technique quality, decide +promotion, or replace authored `TECHNIQUE.md` status and review evidence. + +## Current question + +`aoa-techniques/published-promotion-readiness-pass-ratio` asks what fraction of +the current published, non-deprecated readiness records carry +`readiness_passed: true` in the owner-generated promotion-readiness projection. + +The consumer is the Audit promotion-readiness route. The statistic helps that +route notice cohort-level movement without turning a ratio into a status +change or proof claim. + +## Reference derivation + +The denominator is every record in +`generated/technique_promotion_readiness.min.json`. The numerator is the subset +whose owner-generated `readiness_passed` field is true. The current packet is a +source-revision census, not live telemetry. + +`readiness_passed` means only that the projection found none of its declared +local blockers: a promoted bundle without its canonical-readiness note, or a +canonical bundle without its adverse-effects review. It does not establish +quality, effectiveness, adoption, external validation, skill lift, eval +success, runtime use, or permission to change technique status. + +## Owner routes + +- `port.manifest.json` owns the local question and measurement contract. +- `packets/` contains the revision-bound public reference packet. +- `generated/technique_promotion_readiness.min.json` is the derived owner + evidence surface. +- `techniques/**/TECHNIQUE.md` and their typed notes remain authored truth. +- `mechanics/audit/parts/promotion-readiness-matrix/` owns the consuming audit + route. diff --git a/stats/packets/published-promotion-readiness-pass-ratio.reference.json b/stats/packets/published-promotion-readiness-pass-ratio.reference.json new file mode 100644 index 00000000..b98380ec --- /dev/null +++ b/stats/packets/published-promotion-readiness-pass-ratio.reference.json @@ -0,0 +1,82 @@ +{ + "schema_version": "aoa_stats_measurement_packet_v1", + "contract_ref": "stats/port.manifest.json#/measurements/0", + "contract_version": "1.0.0", + "measurement_id": "aoa-techniques/published-promotion-readiness-pass-ratio", + "writer_repo": "aoa-techniques", + "observation_id": "aoa-techniques:published-promotion-readiness-pass-ratio:5fa63ab7464b502a", + "observed_at": "2026-07-13T07:47:23-06:00", + "object_ref": { + "kind": "published-technique-readiness-record", + "id": "published-technique-readiness-cohort:5fa63ab7464b502a", + "version": "5fa63ab7464b502a5cf3412e4680d1ef9f13ecce" + }, + "population": { + "id": "published-technique-readiness-records:5fa63ab7464b502a", + "definition_ref": "stats/port.manifest.json#/measurements/0/population", + "size": 107 + }, + "sample": { + "size": 107, + "selection": "census of techniques entries in the generated promotion-readiness projection" + }, + "cohort": null, + "window": { + "id": "source-revision:5fa63ab7464b502a5cf3412e4680d1ef9f13ecce", + "start": "2026-07-13T07:47:23-06:00", + "end": "2026-07-13T07:47:23-06:00", + "temporality": "instant" + }, + "dimensions": {}, + "value": { + "status": "observed", + "kind": "ratio", + "unit": "1", + "number": 1.0, + "numerator": 107, + "denominator": 107 + }, + "uncertainty": { + "status": "not_applicable", + "sample_size": 107, + "method": "not_applicable", + "reason": "The packet is a census of the owner-generated published readiness cohort." + }, + "provenance": { + "evidence_refs": [ + { + "kind": "technique-promotion-readiness-projection", + "ref": "generated/technique_promotion_readiness.min.json" + }, + { + "kind": "authored-technique-bundles", + "ref": "techniques/**/TECHNIQUE.md" + }, + { + "kind": "promotion-readiness-audit-route", + "ref": "mechanics/audit/parts/promotion-readiness-matrix/README.md" + }, + { + "kind": "promotion-readiness-projection-rule", + "ref": "scripts/validators/projection_catalog.py" + } + ], + "derivation_ref": "stats/README.md#reference-derivation", + "source_revision": "5fa63ab7464b502a5cf3412e4680d1ef9f13ecce" + }, + "reporting_rule": { + "id": "aoa-techniques/published-promotion-readiness-pass-ratio/reference-census", + "version": "1.0.0" + }, + "posture": { + "freshness": "current", + "live_state": "reference", + "privacy": "public", + "raw_content_included": false + }, + "progress": { + "state": "terminal", + "completed": 107, + "total": 107 + } +} diff --git a/stats/port.manifest.json b/stats/port.manifest.json new file mode 100644 index 00000000..aae6fa03 --- /dev/null +++ b/stats/port.manifest.json @@ -0,0 +1,112 @@ +{ + "schema_version": "aoa_stats_local_port_v1", + "contract_version": "1.0.0", + "owner_repo": "aoa-techniques", + "status": "active", + "owner_boundary_ref": "AGENTS.md", + "central_contract_refs": [ + "aoa-stats:stats/measurement-contract/measurement-contract.schema.json", + "aoa-stats:stats/measurement-contract/measurement-packet.schema.json" + ], + "evidence_posture": { + "live_state": "reference_only", + "privacy": "public", + "raw_content_allowed": false + }, + "questions": [ + { + "id": "question:published-promotion-readiness-pass-ratio", + "question": "What fraction of current published non-deprecated technique readiness records pass the owner-defined readiness projection at this source revision?", + "consumer_refs": [ + "stats/README.md", + "mechanics/audit/parts/promotion-readiness-matrix/README.md" + ] + } + ], + "measurements": [ + { + "schema_version": "aoa_stats_measurement_contract_v1", + "measurement_id": "aoa-techniques/published-promotion-readiness-pass-ratio", + "contract_version": "1.0.0", + "owner_repo": "aoa-techniques", + "question_ref": "question:published-promotion-readiness-pass-ratio", + "semantic_class": "statistic", + "statistic": "ratio", + "object_kind": "published-technique-readiness-record", + "unit": { + "symbol": "1", + "quantity": "proportion" + }, + "population": { + "subject": "current published non-deprecated technique readiness records", + "definition": "one techniques entry in the generated promotion-readiness projection", + "inclusion_rule": "every canonical or promoted technique record emitted by the owner projection at the source revision", + "exclusion_rule": "draft and deprecated bundles, mechanics candidates, examples, private usage, runtime observations, external adoption, and records absent from the owner-generated readiness cohort", + "sampling": "census" + }, + "window": { + "temporality": "instant", + "clock": "owner_defined" + }, + "dimensions": { + "allowed": [], + "prohibited": [ + "technique_id", + "technique_name", + "session_id", + "consumer_identity" + ] + }, + "aggregation": { + "operator": "none", + "across": [] + }, + "missingness": { + "states": [ + "missing", + "unknown", + "stale" + ], + "zero_is_observation": true + }, + "uncertainty": { + "required": false, + "methods": [ + "not_applicable" + ] + }, + "provenance": { + "evidence_refs_required": true, + "source_revision_required": true + }, + "lifecycle": { + "status": "active", + "compatible_with": [] + }, + "privacy": { + "classification": "public", + "raw_content_allowed": false, + "sensitive_dimensions_allowed": false + }, + "live_state": { + "capability": "reference_only" + }, + "authority_ceiling": "Reports only the fraction of current published readiness records for which the owner projection found none of its declared local blockers; it does not establish technique quality, canonical status, effectiveness, adoption, external evidence sufficiency, skill lift, eval success, runtime use, or permission to change technique status." + } + ], + "exports": [ + { + "measurement_id": "aoa-techniques/published-promotion-readiness-pass-ratio", + "posture": "reference", + "packet_refs": [ + "stats/packets/published-promotion-readiness-pass-ratio.reference.json" + ], + "evidence_refs": [ + "generated/technique_promotion_readiness.min.json", + "techniques/**/TECHNIQUE.md", + "mechanics/audit/parts/promotion-readiness-matrix/README.md", + "scripts/validators/projection_catalog.py" + ] + } + ] +} diff --git a/tests/test_agents_mesh.py b/tests/test_agents_mesh.py index 7a7d0fa2..1d9dd571 100644 --- a/tests/test_agents_mesh.py +++ b/tests/test_agents_mesh.py @@ -50,6 +50,7 @@ def test_generated_mesh_records_only_canonical_cards(self) -> None: ) self.assertIn("mechanics/agon/AGENTS.md", cards_by_path) self.assertEqual("canonical", cards_by_path["mechanics/agon/AGENTS.md"]["shape_status"]) + self.assertEqual("canonical", cards_by_path["stats/AGENTS.md"]["shape_status"]) def test_agents_mesh_config_names_design_sources(self) -> None: config = json.loads((REPO_ROOT / "config" / "agents_mesh.json").read_text()) diff --git a/tests/test_github_workflow_topology.py b/tests/test_github_workflow_topology.py index 7ca287d8..64b35665 100644 --- a/tests/test_github_workflow_topology.py +++ b/tests/test_github_workflow_topology.py @@ -9,6 +9,8 @@ WORKFLOWS = REPO_ROOT / ".github" / "workflows" PINNED_CHECKOUT = "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd" PINNED_SETUP_PYTHON = "actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405" +PINNED_AOA_KAG = "da9f50a581645b2173b99dbf771a63d447ec2fec" +PINNED_AOA_STATS = "25ebfb784f01d3b93f62994908579c4a2c5d87b1" class GitHubWorkflowTopologyTests(unittest.TestCase): @@ -59,6 +61,28 @@ def test_workflows_use_pinned_actions(self) -> None: self.assertNotRegex(text, re.compile(r"actions/checkout@v\d+")) self.assertNotRegex(text, re.compile(r"actions/setup-python@v\d+")) + def test_stats_protocol_dependency_is_pinned_for_current_consuming_lanes(self) -> None: + repo_validation = self.workflow_text("repo-validation.yml") + release = self.workflow_text("release-audit.yml") + nightly = self.workflow_text("nightly-sentinel.yml") + moving_main = nightly.split(" latest_release_repro:", 1)[0] + + for name, workflow in ( + ("repo-validation", repo_validation), + ("release-audit", release), + ("nightly-moving-main", moving_main), + ): + with self.subTest(workflow=name): + self.assertIn("AOA_STATS_ROOT:", workflow) + self.assertIn("repository: 8Dionysus/aoa-stats", workflow) + self.assertIn(f"ref: {PINNED_AOA_STATS}", workflow) + + self.assertIn("AOA_KAG_ROOT:", moving_main) + self.assertIn("repository: 8Dionysus/aoa-kag", moving_main) + self.assertIn(f"ref: {PINNED_AOA_KAG}", moving_main) + self.assertEqual(1, nightly.count("repository: 8Dionysus/aoa-stats")) + self.assertEqual(1, nightly.count("repository: 8Dionysus/aoa-kag")) + def test_pull_request_template_names_lanes_not_release_check_as_repo_validation( self, ) -> None: diff --git a/tests/test_local_stats_port.py b/tests/test_local_stats_port.py new file mode 100644 index 00000000..bac3d2dd --- /dev/null +++ b/tests/test_local_stats_port.py @@ -0,0 +1,63 @@ +from __future__ import annotations + +from copy import deepcopy +import json +from pathlib import Path +import unittest + + +REPO_ROOT = Path(__file__).resolve().parents[1] +READINESS_PATH = REPO_ROOT / "generated" / "technique_promotion_readiness.min.json" +PACKET_PATH = REPO_ROOT / ( + "stats/packets/published-promotion-readiness-pass-ratio.reference.json" +) + + +def load_json(path: Path) -> dict: + return json.loads(path.read_text(encoding="utf-8")) + + +def readiness_census() -> tuple[int, int]: + records = load_json(READINESS_PATH)["techniques"] + passed = sum(record["readiness_passed"] is True for record in records) + return passed, len(records) + + +def assert_packet_matches_owner_readiness(packet: dict) -> None: + passed, population_size = readiness_census() + + assert population_size > 0, "owner readiness population must not be empty" + assert packet["population"]["size"] == population_size + assert packet["sample"]["size"] == population_size + assert packet["value"]["numerator"] == passed, ( + "packet numerator must match readiness_passed records" + ) + assert packet["value"]["denominator"] == population_size + assert packet["value"]["number"] == passed / population_size + assert packet["progress"] == { + "state": "terminal", + "completed": population_size, + "total": population_size, + } + + +class LocalStatsPortTests(unittest.TestCase): + def test_reference_ratio_matches_current_owner_readiness_projection(self) -> None: + assert_packet_matches_owner_readiness(load_json(PACKET_PATH)) + + def test_false_readiness_numerator_is_rejected(self) -> None: + false_packet = deepcopy(load_json(PACKET_PATH)) + passed, population_size = readiness_census() + false_numerator = (passed + 1) % (population_size + 1) + false_packet["value"]["numerator"] = false_numerator + false_packet["value"]["number"] = false_numerator / population_size + + with self.assertRaisesRegex( + AssertionError, + "packet numerator must match readiness_passed records", + ): + assert_packet_matches_owner_readiness(false_packet) + + +if __name__ == "__main__": + unittest.main() diff --git a/tests/test_validate_repo_ci_release_authority.py b/tests/test_validate_repo_ci_release_authority.py index 21707ed5..13e89897 100644 --- a/tests/test_validate_repo_ci_release_authority.py +++ b/tests/test_validate_repo_ci_release_authority.py @@ -71,6 +71,7 @@ def test_codeowners_is_present_and_scoped_narrowly(self) -> None: for target in ( "/.github/ @8Dionysus", "/scripts/ @8Dionysus", + "/stats/ @8Dionysus", "/docs/ @8Dionysus", "/techniques/ @8Dionysus", ): diff --git a/tests/test_validate_repo_source_contracts.py b/tests/test_validate_repo_source_contracts.py index c9a55249..cdae919c 100644 --- a/tests/test_validate_repo_source_contracts.py +++ b/tests/test_validate_repo_source_contracts.py @@ -814,7 +814,7 @@ def test_external_candidates_doc_describes_swarm_execution_roles(self) -> None: self.assertIn(target, candidates) for target in ( - "the main agent owns wave boundaries, final wording, the cross-doc sequence, shared generated-surface sync, and `python scripts/release_check.py`", + "the main agent owns wave boundaries, final wording, the cross-doc sequence, shared generated-surface sync, and the release lane", "execution role: keep [AOA-T-0038]", "execution role: keep [AOA-T-0041]", "[AOA-T-0043]", @@ -884,7 +884,7 @@ def test_deep_audit_roadmap_describes_swarm_future_import_execution_pack(self) - ).read_text(encoding="utf-8") for target in ( - "main agent owns wave boundaries, final wording, intake/roadmap sync, shared generated surfaces, and `python scripts/release_check.py`", + "main agent owns wave boundaries, final wording, intake/roadmap sync, shared generated surfaces, and the release lane", "Wave A: `profile-preset-composition`, `render-truth-before-startup`, `contextual-host-doctor`, `one-command-service-lifecycle`, `baseline-first-additive-profile-benchmarks`", "Wave B: `skill-vs-command-boundary`, `skill-marketplace-curation`, `upstream-skill-health-checking`, `multi-source-primary-input-provenance`", "[AOA-T-0041]", diff --git a/tests/test_validation_command_authority.py b/tests/test_validation_command_authority.py index 33fe5539..25f727a5 100644 --- a/tests/test_validation_command_authority.py +++ b/tests/test_validation_command_authority.py @@ -1,6 +1,7 @@ from __future__ import annotations import json +import re import subprocess import sys import unittest @@ -14,6 +15,28 @@ REPO_ROOT = Path(__file__).resolve().parents[1] +COMMAND_BLOCK_LINE = re.compile( + r"^\s*(?:\$\s*)?(?:python(?:3)?|git|gh|pytest|pip|uv|make|bash|sh|find|" + r"cargo|npm|node|ruff|mypy|jq|rg|curl|docker|podman|\./)\s" +) +REPO_COMMAND_LITERAL = re.compile( + r"python (?:scripts/|mechanics/|\.agents/|-m (?:unittest|pytest|pip))|" + r"git (?:diff --|status --|status -|mv )" +) + + +def markdown_command_nonowners() -> tuple[Path, ...]: + paths: list[Path] = [] + for path in REPO_ROOT.rglob("*.md"): + relative = path.relative_to(REPO_ROOT) + if path.name == "AGENTS.md": + continue + if relative.parts[:2] == (".agents", "skills"): + continue + if relative.parts and relative.parts[0] == "techniques": + continue + paths.append(path) + return tuple(sorted(paths)) def command_sequence_from_manifest(name: str) -> tuple[tuple[str, ...], ...]: @@ -51,6 +74,10 @@ def test_validation_lanes_manifest_is_loader_authority(self) -> None: ("python", "scripts/validate_source_contracts.py"), validation_lanes.SOURCE_FAST_COMMAND_SEQUENCE, ) + self.assertIn( + ("python", "scripts/validate_local_stats_port.py"), + validation_lanes.SOURCE_FAST_COMMAND_SEQUENCE, + ) self.assertEqual( ("python", "scripts/validate_repo_local_kag_index.py"), validation_lanes.SOURCE_FAST_COMMAND_SEQUENCE[0], @@ -88,6 +115,10 @@ def test_validation_lanes_manifest_is_loader_authority(self) -> None: command_sequence_from_manifest("release_check"), validation_lanes.RELEASE_CHECK_COMMAND_SEQUENCE, ) + self.assertIn( + ("python", "scripts/validate_local_stats_port.py"), + validation_lanes.RELEASE_CHECK_COMMAND_SEQUENCE, + ) self.assertEqual( command_sequence_from_manifest("release_check"), validation_lanes.command_sequence_for_lane("release"), @@ -224,7 +255,9 @@ def test_workflow_calls_ci_lane_entrypoints_not_release_check(self) -> None: self.assertNotIn("python scripts/validate_repo.py", workflow) self.assertNotIn("python scripts/validate_source_contracts.py", workflow) self.assertIn("repository: 8Dionysus/aoa-kag", workflow) + self.assertIn("repository: 8Dionysus/aoa-stats", workflow) self.assertIn("AOA_KAG_ROOT:", workflow) + self.assertIn("AOA_STATS_ROOT:", workflow) self.assertIn("AOA_REPO_LOCAL_KAG_HISTORY_REF:", workflow) self.assertIn("AOA_REPO_LOCAL_KAG_EVENT_HISTORY_REF:", workflow) self.assertIn("fetch-depth: 0", workflow) @@ -342,19 +375,39 @@ def test_active_decision_guidance_uses_lanes_not_command_runbooks(self) -> None: with self.subTest(surface=relative_path, command=command): self.assertNotIn(command, text) - def test_historical_decision_records_may_preserve_command_evidence(self) -> None: - decisions_agent = ( - REPO_ROOT / "docs" / "decisions" / "AGENTS.md" - ).read_text(encoding="utf-8") - historical_record = ( - REPO_ROOT - / "docs" - / "decisions" - / "AOA-TECH-D-0051-review-packet-mechanics-home.md" - ).read_text(encoding="utf-8") - - self.assertIn("historical verification evidence", decisions_agent) - self.assertIn("python scripts/release_check.py", historical_record) + def test_markdown_nonowners_do_not_store_command_blocks(self) -> None: + offenders: list[str] = [] + for path in markdown_command_nonowners(): + relative = path.relative_to(REPO_ROOT).as_posix() + lines = path.read_text(encoding="utf-8").splitlines() + index = 0 + while index < len(lines): + if not lines[index].lstrip().startswith("```"): + index += 1 + continue + start = index + 1 + index += 1 + body: list[str] = [] + while index < len(lines) and not lines[index].lstrip().startswith("```"): + body.append(lines[index]) + index += 1 + if any(COMMAND_BLOCK_LINE.match(line) for line in body): + offenders.append(f"{relative}:{start}") + index += 1 + + self.assertEqual([], offenders) + + def test_markdown_nonowners_do_not_store_repo_command_literals(self) -> None: + offenders: list[str] = [] + for path in markdown_command_nonowners(): + relative = path.relative_to(REPO_ROOT).as_posix() + for line_number, line in enumerate( + path.read_text(encoding="utf-8").splitlines(), 1 + ): + if REPO_COMMAND_LITERAL.search(line): + offenders.append(f"{relative}:{line_number}") + + self.assertEqual([], offenders) if __name__ == "__main__": diff --git a/tests/test_validation_topology.py b/tests/test_validation_topology.py index 0ea800dd..d9e1b463 100644 --- a/tests/test_validation_topology.py +++ b/tests/test_validation_topology.py @@ -48,6 +48,7 @@ def test_manifest_defines_owner_surface_lanes_without_wholesale_runtime_copy( tuple(command) for command in manifest["command_sequences"]["source_fast"] } self.assertIn(("python", "scripts/validate_source_contracts.py"), source_commands) + self.assertIn(("python", "scripts/validate_local_stats_port.py"), source_commands) self.assertNotIn(("python", "scripts/validate_repo.py"), source_commands) self.assertNotIn(("python", "scripts/build_catalog.py"), source_commands) @@ -111,6 +112,8 @@ def test_validation_docs_name_all_lanes_and_owner_boundaries(self) -> None: self.assertIn("eval verdict layer", topology) self.assertIn("runtime policy engine", topology) self.assertIn("fast authored technique source contracts", topology) + self.assertIn("owner-local stats protocol", topology) + self.assertIn("cross-owner aggregation remain with `aoa-stats`", topology) def test_mechanics_part_local_lane_covers_discovered_part_tests(self) -> None: manifest = load_json(LANES_PATH)