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| ** Python** | SaltStack only | No other Python permitted |
3135| ** Nickel** | Configuration language | For complex configs |
3236| ** Guile Scheme** | State/meta files | STATE.scm, META.scm, ECOSYSTEM.scm |
@@ -38,13 +42,13 @@ The following files in `.machine_readable/` contain structured project metadata:
3842
3943| Banned | Replacement |
4044| --------| -------------|
41- | TypeScript | ReScript |
45+ | TypeScript | AffineScript |
4246| Node.js | Deno |
4347| npm | Deno |
4448| Bun | Deno |
4549| pnpm/yarn | Deno |
4650| Go | Rust |
47- | Python (general) | ReScript /Rust |
51+ | Python (general) | AffineScript /Rust |
4852| Java/Kotlin | Rust/Tauri/Dioxus |
4953| Swift | Tauri/Dioxus |
5054| React Native | Tauri/Dioxus |
@@ -54,15 +58,15 @@ The following files in `.machine_readable/` contain structured project metadata:
5458
5559** No exceptions for Kotlin/Swift** - use Rust-first approach:
5660
57- 1 . ** Tauri 2.0+** - Web UI (ReScript ) + Rust backend, MIT/Apache-2.0
61+ 1 . ** Tauri 2.0+** - Web UI (AffineScript ) + Rust backend, MIT/Apache-2.0
58622 . ** Dioxus** - Pure Rust native UI, MIT/Apache-2.0
5963
6064Both are FOSS with independent governance (no Big Tech).
6165
6266### Enforcement Rules
6367
64- 1 . ** No new TypeScript files** - Convert existing TS to ReScript
65- 2 . ** No package.json for runtime deps** - Use deno.json imports
68+ 1 . ** No new TypeScript files** - Convert existing TS to AffineScript
69+ 2 . ** No package.json - use deno.json deps** - Use deno.json imports
66703 . ** No node_modules in production** - Deno caches deps automatically
67714 . ** No Go code** - Use Rust instead
68725 . ** Python only for SaltStack** - All other Python must be rewritten
0 commit comments