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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Methodology-aware configuration for AI agents. Read by any AI agent
== Relationship to Other Files

* `AGENTIC.a2ml` says WHAT agents can do (permissions, gating)
* `agent_instructions/` says HOW agents should work (methodology)
* `bot_directives/` says HOW agents should work (methodology)
* `bot_directives/` says what the gitbot-fleet does (fleet-specific)
* `CLAUDE.md` says how Claude specifically should work (Claude-specific)

Expand Down
4 changes: 2 additions & 2 deletions .machine_readable/contractiles/adjust/adjust.k9.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ let base = import "../_base.ncl" in
{ kind = 'verisimdb, table = "contractile_executions",
schema = "contractile_execution_v1",
aux_tables = [ "adjust_drift_history" ] },
{ kind = 'drift_log, path = ".machine_readable/6a2/DRIFT.a2ml",
{ kind = 'drift_log, path = ".machine_readable/descriptiles/DRIFT.a2ml",
append_only = true },
],

Expand Down Expand Up @@ -141,7 +141,7 @@ let base = import "../_base.ncl" in
signature_required = true,
},
],
signed_record_destination = ".machine_readable/6a2/ratification-<session-id>.a2ml",
signed_record_destination = ".machine_readable/descriptiles/ratification-<session-id>.a2ml",
must_precede_work = true,
},

Expand Down
4 changes: 2 additions & 2 deletions .machine_readable/contractiles/bust/bust.k9.ncl
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ let base = import "../_base.ncl" in
{ kind = 'verisimdb, table = "contractile_executions",
schema = "contractile_execution_v1",
aux_tables = [ "bust_recovery_times" ] },
{ kind = 'failure_log, path = ".machine_readable/6a2/FAILURES.a2ml",
{ kind = 'failure_log, path = ".machine_readable/descriptiles/FAILURES.a2ml",
append_only = true },
],

Expand Down Expand Up @@ -142,7 +142,7 @@ let base = import "../_base.ncl" in
signature_required = true,
},
],
signed_record_destination = ".machine_readable/6a2/ratification-<session-id>.a2ml",
signed_record_destination = ".machine_readable/descriptiles/ratification-<session-id>.a2ml",
must_precede_work = true,
},

Expand Down
12 changes: 6 additions & 6 deletions 0-AI-MANIFEST.a2ml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repo = "https://github.com/hyperpolymath/echidna"
[context-tiers]
# Tier 0 (always load): This file + .claude/CLAUDE.md — orientation only
# Tier 1 (load if working on code): README.adoc, EXPLAINME.adoc, Justfile, Cargo.toml
# Tier 2 (load on demand): .machine_readable/6a2/*.a2ml, docs/
# Tier 2 (load on demand): .machine_readable/descriptiles/*.a2ml, docs/
# Tier 3 (never load unless asked): tests/, generated/, proofs/
#
# DO NOT READ unless specifically asked:
Expand All @@ -32,9 +32,9 @@ repo = "https://github.com/hyperpolymath/echidna"

[canonical-locations]
state-files = ".machine_readable/"
state = ".machine_readable/6a2/STATE.a2ml"
meta = ".machine_readable/6a2/META.a2ml"
ecosystem = ".machine_readable/6a2/ECOSYSTEM.a2ml"
state = ".machine_readable/descriptiles/STATE.a2ml"
meta = ".machine_readable/descriptiles/META.a2ml"
ecosystem = ".machine_readable/descriptiles/ECOSYSTEM.a2ml"
anchors = ".machine_readable/anchors/"
policies = ".machine_readable/policies/"
contractiles = ".machine_readable/contractiles/"
Expand Down Expand Up @@ -95,9 +95,9 @@ invariant-9 = "Zero believe-me in Idris2 ABI (src/abi/)"
[session-protocol]
on-enter = [
"Read this manifest",
"Read .machine_readable/6a2/STATE.a2ml for current status",
"Read .machine_readable/descriptiles/STATE.a2ml for current status",
"Read .claude/CLAUDE.md for build commands and conventions",
]
on-exit = [
"Update .machine_readable/6a2/STATE.a2ml with progress",
"Update .machine_readable/descriptiles/STATE.a2ml with progress",
]
2 changes: 1 addition & 1 deletion scripts/collect-field-signal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -euo pipefail

REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
STATE_FILE="${REPO_ROOT}/.machine_readable/6a2/STATE.a2ml"
STATE_FILE="${REPO_ROOT}/.machine_readable/descriptiles/STATE.a2ml"
TIMESTAMP=$(date -u +"%Y-%m-%d")

# 1. Cold-start latency from Fly.io logs (requires auth)
Expand Down
Loading