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
37Curriculum, 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
79832 . ** Dioxus** - Pure Rust native UI, MIT/Apache-2.0
8084
8185Both 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
87913 . ** No node_modules in production** - Deno caches deps automatically
88924 . ** 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
90946 . ** No Kotlin/Swift for mobile** - Use Tauri 2.0+ or Dioxus
9195
9296### Package Management
0 commit comments