@@ -33,14 +33,14 @@ The following files in `.machine_readable/` contain structured project metadata:
3333
3434| Language/Tool | Use Case | Notes |
3535| ---------------| ----------| -------|
36- | ** ReScript ** | Primary application code | Compiles to JS, type-safe |
36+ | ** AffineScript ** | Primary application code | Compiles to JS, type-safe |
3737| ** Deno** | Runtime & package management | Replaces Node/npm/bun |
3838| ** Rust** | Performance-critical, systems, WASM | Preferred for CLI tools |
3939| ** Tauri 2.0+** | Mobile apps (iOS/Android) | Rust backend + web UI |
4040| ** Dioxus** | Mobile apps (native UI) | Pure Rust, React-like |
4141| ** Gleam** | Backend services | Runs on BEAM or compiles to JS |
4242| ** Bash/POSIX Shell** | Scripts, automation | Keep minimal |
43- | ** JavaScript** | Only where ReScript cannot | MCP protocol glue, Deno APIs |
43+ | ** JavaScript** | Only where AffineScript cannot | MCP protocol glue, Deno APIs |
4444| ** Python** | SaltStack only | No other Python permitted |
4545| ** Nickel** | Configuration language | For complex configs |
4646| ** Guile Scheme** | State/meta files | .machine_readable/6a2/STATE.a2ml, .machine_readable/6a2/META.a2ml, .machine_readable/6a2/ECOSYSTEM.a2ml |
@@ -52,13 +52,13 @@ The following files in `.machine_readable/` contain structured project metadata:
5252
5353| Banned | Replacement |
5454| --------| -------------|
55- | TypeScript | ReScript |
55+ | TypeScript | AffineScript |
5656| Node.js | Deno |
5757| npm | Deno |
5858| Bun | Deno |
5959| pnpm/yarn | Deno |
6060| Go | Rust |
61- | Python (general) | ReScript /Rust |
61+ | Python (general) | AffineScript /Rust |
6262| Java/Kotlin | Rust/Tauri/Dioxus |
6363| Swift | Tauri/Dioxus |
6464| React Native | Tauri/Dioxus |
@@ -68,15 +68,15 @@ The following files in `.machine_readable/` contain structured project metadata:
6868
6969** No exceptions for Kotlin/Swift** - use Rust-first approach:
7070
71- 1 . ** Tauri 2.0+** - Web UI (ReScript ) + Rust backend, MIT/Apache-2.0
71+ 1 . ** Tauri 2.0+** - Web UI (AffineScript ) + Rust backend, MIT/Apache-2.0
72722 . ** Dioxus** - Pure Rust native UI, MIT/Apache-2.0
7373
7474Both are FOSS with independent governance (no Big Tech).
7575
7676### Enforcement Rules
7777
78- 1 . ** No new TypeScript files** - Convert existing TS to ReScript
79- 2 . ** No package.json for runtime deps** - Use deno.json imports
78+ 1 . ** No new TypeScript files** - Convert existing TS to AffineScript
79+ 2 . ** No package.json - use deno.json deps** - Use deno.json imports
80803 . ** No node_modules in production** - Deno caches deps automatically
81814 . ** No Go code** - Use Rust instead
82825 . ** Python only for SaltStack** - All other Python must be rewritten
0 commit comments