Skip to content

Commit a4a32ab

Browse files
committed
chore: rename agent_instructions to bot_directives for spec alignment
1 parent be1ee1a commit a4a32ab

29 files changed

Lines changed: 156 additions & 4 deletions

.github/workflows/boj-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
jobs:
88
trigger-boj:
99
runs-on: ubuntu-latest
10+
timeout-minutes: 15
1011
steps:
1112
- name: Checkout
1213
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

.github/workflows/casket-pages.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ concurrency:
1818
jobs:
1919
build:
2020
runs-on: ubuntu-latest
21+
timeout-minutes: 15
2122
steps:
2223
- name: Checkout
2324
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
@@ -109,6 +110,7 @@ jobs:
109110
name: github-pages
110111
url: ${{ steps.deployment.outputs.page_url }}
111112
runs-on: ubuntu-latest
113+
timeout-minutes: 15
112114
needs: build
113115
steps:
114116
- name: Deploy to GitHub Pages

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
test:
1818
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }}
1919
runs-on: ${{ matrix.os }}
20+
timeout-minutes: 15
2021
strategy:
2122
fail-fast: false
2223
matrix:

.github/workflows/governance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ permissions:
3232
jobs:
3333
governance:
3434
uses: hyperpolymath/standards/.github/workflows/governance-reusable.yml@861b5e911d9e5dcfb3c0ab3dd2a9a3c8fd0a1613
35+
timeout-minutes: 10

.github/workflows/hypatia-scan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
scan:
4444
name: Hypatia Neurosymbolic Analysis
4545
runs-on: ubuntu-latest
46+
timeout-minutes: 15
4647

4748
steps:
4849
- name: Checkout repository

.github/workflows/instant-sync.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ permissions:
1414
jobs:
1515
dispatch:
1616
runs-on: ubuntu-latest
17+
timeout-minutes: 15
1718
steps:
1819
- name: Trigger Propagation
1920
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v3

.github/workflows/mirror.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ permissions:
1313
jobs:
1414
mirror-gitlab:
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 15
1617
if: vars.GITLAB_MIRROR_ENABLED == 'true'
1718
steps:
1819
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -31,6 +32,7 @@ jobs:
3132
3233
mirror-bitbucket:
3334
runs-on: ubuntu-latest
35+
timeout-minutes: 15
3436
if: vars.BITBUCKET_MIRROR_ENABLED == 'true'
3537
steps:
3638
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -49,6 +51,7 @@ jobs:
4951
5052
mirror-codeberg:
5153
runs-on: ubuntu-latest
54+
timeout-minutes: 15
5255
if: vars.CODEBERG_MIRROR_ENABLED == 'true'
5356
steps:
5457
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -67,6 +70,7 @@ jobs:
6770
6871
mirror-sourcehut:
6972
runs-on: ubuntu-latest
73+
timeout-minutes: 15
7074
if: vars.SOURCEHUT_MIRROR_ENABLED == 'true'
7175
steps:
7276
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -85,6 +89,7 @@ jobs:
8589
8690
mirror-disroot:
8791
runs-on: ubuntu-latest
92+
timeout-minutes: 15
8893
if: vars.DISROOT_MIRROR_ENABLED == 'true'
8994
steps:
9095
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -103,6 +108,7 @@ jobs:
103108
104109
mirror-gitea:
105110
runs-on: ubuntu-latest
111+
timeout-minutes: 15
106112
if: vars.GITEA_MIRROR_ENABLED == 'true'
107113
steps:
108114
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -121,6 +127,7 @@ jobs:
121127
122128
mirror-radicle:
123129
runs-on: ubuntu-latest
130+
timeout-minutes: 15
124131
if: vars.RADICLE_MIRROR_ENABLED == 'true'
125132
steps:
126133
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.github/workflows/scorecard-enforcer.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ permissions:
2323
jobs:
2424
scorecard:
2525
runs-on: ubuntu-latest
26+
timeout-minutes: 15
2627
permissions:
2728
security-events: write
2829
id-token: write # For OIDC
@@ -61,6 +62,7 @@ jobs:
6162
# Check specific high-priority items
6263
check-critical:
6364
runs-on: ubuntu-latest
65+
timeout-minutes: 15
6466
steps:
6567
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6668

.github/workflows/secret-scanner.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ permissions:
2121
jobs:
2222
trufflehog:
2323
runs-on: ubuntu-latest
24+
timeout-minutes: 15
2425
steps:
2526
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2627
with:
@@ -33,6 +34,7 @@ jobs:
3334

3435
gitleaks:
3536
runs-on: ubuntu-latest
37+
timeout-minutes: 15
3638
steps:
3739
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3840
with:
@@ -46,6 +48,7 @@ jobs:
4648
# Rust-specific: Check for hardcoded crypto values
4749
rust-secrets:
4850
runs-on: ubuntu-latest
51+
timeout-minutes: 15
4952
if: hashFiles('**/Cargo.toml') != ''
5053
steps:
5154
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# AI Manifest for 6a2 Directory
2+
3+
## Purpose
4+
5+
This manifest declares the AI-assistant context for the 6a2 machine-readable metadata directory.
6+
7+
## Canonical Locations
8+
9+
The 6 core A2ML files MUST exist in this directory:
10+
1. AGENTIC.a2ml
11+
2. ECOSYSTEM.a2ml
12+
3. META.a2ml
13+
4. NEUROSYM.a2ml
14+
5. PLAYBOOK.a2ml
15+
6. STATE.a2ml
16+
17+
## Invariants
18+
19+
- No duplicate files in root directory
20+
- Single source of truth: this directory is authoritative
21+
- No stale metadata
22+
23+
## Protocol
24+
25+
When multiple agents may write to A2ML files concurrently:
26+
1. Read file and record git-sha-at-read in [provenance] section
27+
2. Lock by creating .lock-<FILENAME>
28+
3. Write updated file with new [provenance] metadata
29+
4. Release by removing lock file
30+
5. On conflict: re-read and retry if git-sha-at-read does not match HEAD
31+

0 commit comments

Comments
 (0)