Skip to content

Commit da6bcf3

Browse files
committed
chore: rename agent_instructions to bot_directives for spec alignment
1 parent 67454cd commit da6bcf3

18 files changed

Lines changed: 21 additions & 21 deletions

File tree

.machine_readable/6a2/STATE.a2ml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ added = [
227227
".machine_readable/contractiles/ (migrated from root via git mv — history preserved)",
228228
".machine_readable/contractiles/adjust/Adjustfile.a2ml",
229229
".machine_readable/contractiles/intend/Intentfile.a2ml",
230-
".machine_readable/agent_instructions/README.adoc",
231-
".machine_readable/agent_instructions/coverage.a2ml",
232-
".machine_readable/agent_instructions/debt.a2ml",
233-
".machine_readable/agent_instructions/methodology.a2ml",
230+
".machine_readable/bot_directives/README.adoc",
231+
".machine_readable/bot_directives/coverage.a2ml",
232+
".machine_readable/bot_directives/debt.a2ml",
233+
".machine_readable/bot_directives/methodology.a2ml",
234234
".machine_readable/integrations/verisimdb.a2ml",
235235
".machine_readable/integrations/vexometer.a2ml",
236236
".machine_readable/ADJUST.contractile",

.machine_readable/6a2/anchor/ANCHOR.a2ml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# the language scope from bot-drift back to user intent. This ANCHOR is
66
# retroactive: the project predates the ANCHOR.a2ml convention, and a full
77
# .machine_readable/ suite upgrade (anchors/, CLADE.a2ml, contractiles/,
8-
# agent_instructions/, integrations/, top-level .contractile files) is deferred
8+
# bot_directives/, integrations/, top-level .contractile files) is deferred
99
# as separate work — see STATE.a2ml [deferred-upgrade].
1010

1111
id: "org.hyperpolymath.affinescript"
@@ -109,7 +109,7 @@ realignment-history:
109109
Brought .machine_readable/ up to the canonical standards repo shape.
110110
Migrated root contractiles/ → .machine_readable/contractiles/ (git mv,
111111
history preserved). Added: CLADE.a2ml, contractiles/adjust/Adjustfile.a2ml,
112-
contractiles/intend/Intentfile.a2ml, agent_instructions/ (README + coverage
112+
contractiles/intend/Intentfile.a2ml, bot_directives/ (README + coverage
113113
+ debt + methodology), integrations/ (verisimdb + vexometer),
114114
ADJUST.contractile, INTENT.contractile, MUST.contractile, TRUST.contractile.
115115
STATE.a2ml [deferred-upgrade] marked done.
@@ -118,7 +118,7 @@ realignment-history:
118118
- ".machine_readable/ now matches canonical standards shape"
119119
- "root contractiles/ migrated to .machine_readable/contractiles/"
120120
- "CLADE.a2ml added (clade=language)"
121-
- "agent_instructions/ + integrations/ added"
121+
- "bot_directives/ + integrations/ added"
122122
- "top-level .contractile instance files added"
123123
- "ANCHOR notes section updated"
124124

@@ -176,4 +176,4 @@ notes: >
176176
now matches the canonical standards repo shape. The minimum captured in the
177177
first ANCHOR (identity, thesis, authorities, relationships, manhattan-recovery)
178178
is preserved; the suite-upgrade adds the contractile instance files,
179-
CLADE.a2ml, agent_instructions/, and integrations/.
179+
CLADE.a2ml, bot_directives/, and integrations/.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0-AI-MANIFEST.a2ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Project metadata and AI agent configuration files live under `.machine_readable/
1919
- **CLADE.a2ml** - Phylogenetic context within the estate
2020
- **anchors/ANCHOR.a2ml** - Stable references for tooling
2121

22-
## Agent guidance (`.machine_readable/agent_instructions/`)
22+
## Agent guidance (`.machine_readable/bot_directives/`)
2323

2424
- **methodology.a2ml** - Required checks (dune build / dune runtest must pass; see for the full list)
2525
- **coverage.a2ml**, **debt.a2ml** - Tracked metrics
@@ -32,6 +32,6 @@ Project metadata and AI agent configuration files live under `.machine_readable/
3232
1. Read `.machine_readable/6a2/*.a2ml` files at session start
3333
2. Check `STATE.a2ml` for current phase, blockers, next actions
3434
3. Follow patterns and constraints from `AGENTIC.a2ml`
35-
4. Follow methodology gates from `agent_instructions/methodology.a2ml`
35+
4. Follow methodology gates from `bot_directives/methodology.a2ml`
3636
5. Update `STATE.a2ml` after completing work
3737
6. Sync to database: `~/sync-language-tracker.sh`

affinescript-vite/.machine_readable/6a2/AGENTIC.a2ml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ release-claim-requires-hard-pass = true
3434
# METHODOLOGY (ADR-002)
3535
# ============================================================================
3636
# Detailed methodology configuration lives in:
37-
# .machine_readable/agent_instructions/methodology.a2ml
38-
# .machine_readable/agent_instructions/coverage.a2ml
39-
# .machine_readable/agent_instructions/debt.a2ml
37+
# .machine_readable/bot_directives/methodology.a2ml
38+
# .machine_readable/bot_directives/coverage.a2ml
39+
# .machine_readable/bot_directives/debt.a2ml
4040
#
4141
# AGENTIC.a2ml declares WHAT agents can do (permissions, gating).
42-
# agent_instructions/ declares HOW agents should work (methodology).
42+
# bot_directives/ declares HOW agents should work (methodology).
4343

4444
[methodology]
45-
instructions-dir = ".machine_readable/agent_instructions/"
45+
instructions-dir = ".machine_readable/bot_directives/"
4646
default-mode = "hybrid"
4747

4848
[automation-hooks]
49-
# on-enter: Read 0-AI-MANIFEST.a2ml, then STATE.a2ml, then agent_instructions/
49+
# on-enter: Read 0-AI-MANIFEST.a2ml, then STATE.a2ml, then bot_directives/
5050
# on-exit: Update STATE.a2ml, coverage.a2ml, and debt.a2ml with session outcomes
5151
# on-commit: Run just validate-rsr

affinescript-vite/.machine_readable/agent_instructions/README.adoc renamed to affinescript-vite/.machine_readable/bot_directives/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Methodology-aware configuration for AI agents. Read by any AI agent
3232
== Relationship to Other Files
3333

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

affinescript-vite/.machine_readable/agent_instructions/coverage.a2ml renamed to affinescript-vite/.machine_readable/bot_directives/coverage.a2ml

File renamed without changes.

0 commit comments

Comments
 (0)