Skip to content

Commit f7a48e2

Browse files
committed
chore: rename agent_instructions to bot_directives for spec alignment
1 parent d5cf1d9 commit f7a48e2

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

.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

.machine_readable/agent_instructions/README.adoc renamed to .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

File renamed without changes.
File renamed without changes.
File renamed without changes.

.machine_readable/contractiles/self-validating/methodology-guard.k9.ncl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# K9 Validator: Methodology Guard
55
# Checks that agent work respects methodology constraints declared in
6-
# agent_instructions/methodology.a2ml.
6+
# bot_directives/methodology.a2ml.
77
#
88
# Usage: k9 validate methodology-guard
99

@@ -50,7 +50,7 @@ let methodology_guard = {
5050
coverage_updated = {
5151
description = "coverage.a2ml should be updated within 30 days",
5252
severity = "info",
53-
file = ".machine_readable/agent_instructions/coverage.a2ml",
53+
file = ".machine_readable/bot_directives/coverage.a2ml",
5454
staleness_days = 30,
5555
},
5656
},

Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,8 @@ self-assess:
499499
echo " ready for automated maintenance when the fleet arrives."
500500
fi
501501
502-
if [ -d ".machine_readable/agent_instructions" ]; then
503-
echo "agent_instructions/ — AI agent methodology config."
502+
if [ -d ".machine_readable/bot_directives" ]; then
503+
echo "bot_directives/ — AI agent methodology config."
504504
echo " Guides Claude/Gemini/etc on how to work in this repo."
505505
echo " No cost to keep. Improves AI assistance quality."
506506
fi

0 commit comments

Comments
 (0)