Skip to content

Commit 030bb27

Browse files
committed
chore: rename agent_instructions to bot_directives for spec alignment
1 parent 9059627 commit 030bb27

105 files changed

Lines changed: 475 additions & 130 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/CLAUDE.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
## CRITICAL: Pedagogy Lives Outside This Repo
26

37
Curriculum, syllabus, aspect-agents, kin framework, and the Me runtime projector all live
@@ -41,14 +45,14 @@ The following files in `.machine_readable/` contain structured project metadata:
4145

4246
| Language/Tool | Use Case | Notes |
4347
|---------------|----------|-------|
44-
| **ReScript** | Primary application code | Compiles to JS, type-safe |
48+
| **AffineScript** | Primary application code | Compiles to JS, type-safe |
4549
| **Deno** | Runtime & package management | Replaces Node/npm/bun |
4650
| **Rust** | Performance-critical, systems, WASM | Preferred for CLI tools |
4751
| **Tauri 2.0+** | Mobile apps (iOS/Android) | Rust backend + web UI |
4852
| **Dioxus** | Mobile apps (native UI) | Pure Rust, React-like |
4953
| **Gleam** | Backend services | Runs on BEAM or compiles to JS |
5054
| **Bash/POSIX Shell** | Scripts, automation | Keep minimal |
51-
| **JavaScript** | Only where ReScript cannot | MCP protocol glue, Deno APIs |
55+
| **JavaScript** | Only where AffineScript cannot | MCP protocol glue, Deno APIs |
5256
| **Nickel** | Configuration language | For complex configs |
5357
| **Guile Scheme** | State/meta files | .machine_readable/6a2/STATE.a2ml, .machine_readable/6a2/META.a2ml, .machine_readable/6a2/ECOSYSTEM.a2ml |
5458
| **Julia** | Batch scripts, data processing | Per RSR |
@@ -59,13 +63,13 @@ The following files in `.machine_readable/` contain structured project metadata:
5963

6064
| Banned | Replacement |
6165
|--------|-------------|
62-
| TypeScript | ReScript |
66+
| TypeScript | AffineScript |
6367
| Node.js | Deno |
6468
| npm | Deno |
6569
| Bun | Deno |
6670
| pnpm/yarn | Deno |
6771
| Go | Rust |
68-
| Python | Julia/Rust/ReScript |
72+
| Python | Julia/Rust/AffineScript |
6973
| Java/Kotlin | Rust/Tauri/Dioxus |
7074
| Swift | Tauri/Dioxus |
7175
| React Native | Tauri/Dioxus |
@@ -75,18 +79,18 @@ The following files in `.machine_readable/` contain structured project metadata:
7579

7680
**No exceptions for Kotlin/Swift** - use Rust-first approach:
7781

78-
1. **Tauri 2.0+** - Web UI (ReScript) + Rust backend, MIT/Apache-2.0
82+
1. **Tauri 2.0+** - Web UI (AffineScript) + Rust backend, MIT/Apache-2.0
7983
2. **Dioxus** - Pure Rust native UI, MIT/Apache-2.0
8084

8185
Both are FOSS with independent governance (no Big Tech).
8286

8387
### Enforcement Rules
8488

85-
1. **No new TypeScript files** - Convert existing TS to ReScript
86-
2. **No package.json for runtime deps** - Use deno.json imports
89+
1. **No new TypeScript files** - Convert existing TS to AffineScript
90+
2. **No package.json - use deno.json deps** - Use deno.json imports
8791
3. **No node_modules in production** - Deno caches deps automatically
8892
4. **No Go code** - Use Rust instead
89-
5. **No Python anywhere** - Use Julia for data/batch, Rust for systems, ReScript for apps
93+
5. **No Python anywhere** - Use Julia for data/batch, Rust for systems, AffineScript for apps
9094
6. **No Kotlin/Swift for mobile** - Use Tauri 2.0+ or Dioxus
9195

9296
### Package Management

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Bug report
37
about: Create a report to help us improve

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Custom issue template
37
about: Describe this issue template's purpose here.

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Documentation
37
about: Report unclear, missing, or incorrect documentation

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Feature request
37
about: Suggest an idea for this project

.github/ISSUE_TEMPLATE/question.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<!--
2+
SPDX-License-Identifier: MPL-2.0
3+
Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+
-->
15
---
26
name: Question
37
about: Ask a question about usage or behaviour

.github/copilot/coding-agent.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mcp_servers:
2+
boj-server:
3+
command: npx
4+
args: ["-y", "@hyperpolymath/boj-server@latest"]
5+
env:
6+
BOJ_URL: http://localhost:7700

.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/codeql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ permissions:
2323
jobs:
2424
analyze:
2525
runs-on: ubuntu-latest
26+
timeout-minutes: 15
2627
permissions:
2728
contents: read
2829
security-events: write

0 commit comments

Comments
 (0)