1+ <!--
2+ SPDX-License-Identifier: MPL-2.0
3+ Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
4+ -->
15## Machine-Readable Artefacts
26
37The following files in ` .machine_readable/ ` contain structured project metadata:
@@ -19,14 +23,14 @@ The following files in `.machine_readable/` contain structured project metadata:
1923
2024| Language/Tool | Use Case | Notes |
2125| ---------------| ----------| -------|
22- | ** ReScript ** | Primary application code | Compiles to JS, type-safe |
26+ | ** AffineScript ** | Primary application code | Compiles to JS, type-safe |
2327| ** Deno** | Runtime & package management | Replaces Node/npm/bun |
2428| ** Rust** | Performance-critical, systems, WASM | Preferred for CLI tools |
2529| ** Tauri 2.0+** | Mobile apps (iOS/Android) | Rust backend + web UI |
2630| ** Dioxus** | Mobile apps (native UI) | Pure Rust, React-like |
2731| ** Gleam** | Backend services | Runs on BEAM or compiles to JS |
2832| ** Bash/POSIX Shell** | Scripts, automation | Keep minimal |
29- | ** JavaScript** | Only where ReScript cannot | MCP protocol glue, Deno APIs |
33+ | ** JavaScript** | Only where AffineScript cannot | MCP protocol glue, Deno APIs |
3034| ** Nickel** | Configuration language | For complex configs |
3135| ** Guile Scheme** | State/meta files | STATE.scm, META.scm, ECOSYSTEM.scm |
3236| ** Julia** | Batch scripts, data processing | Per RSR |
@@ -37,13 +41,13 @@ The following files in `.machine_readable/` contain structured project metadata:
3741
3842| Banned | Replacement |
3943| --------| -------------|
40- | TypeScript | ReScript |
44+ | TypeScript | AffineScript |
4145| Node.js | Deno |
4246| npm | Deno |
4347| Bun | Deno |
4448| pnpm/yarn | Deno |
4549| Go | Rust |
46- | Python | Julia/Rust/ReScript |
50+ | Python | Julia/Rust/AffineScript |
4751| Java/Kotlin | Rust/Tauri/Dioxus |
4852| Swift | Tauri/Dioxus |
4953| React Native | Tauri/Dioxus |
@@ -53,18 +57,18 @@ The following files in `.machine_readable/` contain structured project metadata:
5357
5458** No exceptions for Kotlin/Swift** - use Rust-first approach:
5559
56- 1 . ** Tauri 2.0+** - Web UI (ReScript ) + Rust backend, MIT/Apache-2.0
60+ 1 . ** Tauri 2.0+** - Web UI (AffineScript ) + Rust backend, MIT/Apache-2.0
57612 . ** Dioxus** - Pure Rust native UI, MIT/Apache-2.0
5862
5963Both are FOSS with independent governance (no Big Tech).
6064
6165### Enforcement Rules
6266
63- 1 . ** No new TypeScript files** - Convert existing TS to ReScript
64- 2 . ** No package.json for runtime deps** - Use deno.json imports
67+ 1 . ** No new TypeScript files** - Convert existing TS to AffineScript
68+ 2 . ** No package.json - use deno.json deps** - Use deno.json imports
65693 . ** No node_modules in production** - Deno caches deps automatically
66704 . ** No Go code** - Use Rust instead
67- 5 . ** No Python anywhere** - Use Julia for data/batch, Rust for systems, ReScript for apps
71+ 5 . ** No Python anywhere** - Use Julia for data/batch, Rust for systems, AffineScript for apps
68726 . ** No Kotlin/Swift for mobile** - Use Tauri 2.0+ or Dioxus
6973
7074### Package Management
0 commit comments