Skip to content

Commit c45475a

Browse files
chore: Item 9 — retire ReScript guidance → AffineScript (#65)
## Estate Tech-Debt — Item 9 (ReScript→AffineScript CI-text sweep) Rewrites guidance/policy text that recommended **ReScript** as the TypeScript/Python replacement to recommend **AffineScript** instead, per the estate language policy (RS/TS/JS → AffineScript → typed-wasm). ### Scope - ✅ In scope: "use ReScript instead" guidance, `Rust/ReScript` migration-guide phrasing, `Rust or ReScript` policy text. - ⛔ Out of scope (intentionally untouched): any `rescript`-named path/dir and ReScript **adapters** (e.g. proven). That work is preserved intact and usable for the ReScript ecosystem — only the forward-looking recommendation changes. Mechanical, reviewed substitution; residual in-scope occurrences verified 0. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: hyperpolymath <hyperpolymath@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 0c78bfc commit c45475a

150 files changed

Lines changed: 216 additions & 216 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata:
4343
| Bun | Deno |
4444
| pnpm/yarn | Deno |
4545
| Go | Rust |
46-
| Python | Julia/Rust/ReScript |
46+
| Python | Julia/Rust/AffineScript |
4747
| Java/Kotlin | Rust/Tauri/Dioxus |
4848
| Swift | Tauri/Dioxus |
4949
| React Native | Tauri/Dioxus |

.github/workflows/rsr-antipattern.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
| grep -v 'bindings/redis' \
5656
|| true)
5757
if [ -n "$TS_FILES" ]; then
58-
echo "❌ TypeScript files detected - use ReScript instead"
58+
echo "❌ TypeScript files detected - use AffineScript instead"
5959
echo "$TS_FILES"
6060
exit 1
6161
fi
@@ -91,7 +91,7 @@ jobs:
9191
- name: Check for tsconfig
9292
run: |
9393
if [ -f "tsconfig.json" ]; then
94-
echo "❌ tsconfig.json detected - use ReScript instead"
94+
echo "❌ tsconfig.json detected - use AffineScript instead"
9595
exit 1
9696
fi
9797
echo "✅ No tsconfig.json"

.github/workflows/ts-blocker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
NEW_JS=$(git diff --name-only --diff-filter=A HEAD~1 2>/dev/null | grep -E '\.(js|jsx)$' | grep -v '\.res\.js$' | grep -v '\.gen\.' | grep -v 'node_modules' || true)
1919
2020
if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then
21-
echo "❌ New TS/JS files detected. Use ReScript instead."
21+
echo "❌ New TS/JS files detected. Use AffineScript instead."
2222
[ -n "$NEW_TS" ] && echo "$NEW_TS"
2323
[ -n "$NEW_JS" ] && echo "$NEW_JS"
2424
exit 1

ada-ecosystem/ada-loom-registry/.claude/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata:
4343
| Bun | Deno |
4444
| pnpm/yarn | Deno |
4545
| Go | Rust |
46-
| Python | Julia/Rust/ReScript |
46+
| Python | Julia/Rust/AffineScript |
4747
| Java/Kotlin | Rust/Tauri/Dioxus |
4848
| Swift | Tauri/Dioxus |
4949
| React Native | Tauri/Dioxus |

ada-ecosystem/ada-loom-registry/.github/workflows/rsr-antipattern.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI
3131
TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true)
3232
if [ -n "$TS_FILES" ]; then
33-
echo "❌ TypeScript files detected - use ReScript instead"
33+
echo "❌ TypeScript files detected - use AffineScript instead"
3434
echo "$TS_FILES"
3535
exit 1
3636
fi
@@ -66,7 +66,7 @@ jobs:
6666
- name: Check for tsconfig
6767
run: |
6868
if [ -f "tsconfig.json" ]; then
69-
echo "❌ tsconfig.json detected - use ReScript instead"
69+
echo "❌ tsconfig.json detected - use AffineScript instead"
7070
exit 1
7171
fi
7272
echo "✅ No tsconfig.json"

ada-ecosystem/ada-loom-registry/.github/workflows/ts-blocker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
NEW_JS=$(git diff --name-only --diff-filter=A HEAD~1 2>/dev/null | grep -E '\.(js|jsx)$' | grep -v '\.res\.js$' | grep -v '\.gen\.' | grep -v 'node_modules' || true)
1818
1919
if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then
20-
echo "❌ New TS/JS files detected. Use ReScript instead."
20+
echo "❌ New TS/JS files detected. Use AffineScript instead."
2121
[ -n "$NEW_TS" ] && echo "$NEW_TS"
2222
[ -n "$NEW_JS" ] && echo "$NEW_JS"
2323
exit 1

affinescript-ecosystem/affinescript-vite/.github/workflows/rsr-antipattern.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI
3232
TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true)
3333
if [ -n "$TS_FILES" ]; then
34-
echo "❌ TypeScript files detected - use ReScript instead"
34+
echo "❌ TypeScript files detected - use AffineScript instead"
3535
echo "$TS_FILES"
3636
exit 1
3737
fi
@@ -67,7 +67,7 @@ jobs:
6767
- name: Check for tsconfig
6868
run: |
6969
if [ -f "tsconfig.json" ]; then
70-
echo "❌ tsconfig.json detected - use ReScript instead"
70+
echo "❌ tsconfig.json detected - use AffineScript instead"
7171
exit 1
7272
fi
7373
echo "✅ No tsconfig.json"

affinescript-ecosystem/affinescript-vite/.github/workflows/ts-blocker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
NEW_JS=$(git diff --name-only --diff-filter=A HEAD~1 2>/dev/null | grep -E '\.(js|jsx)$' | grep -v '\.res\.js$' | grep -v '\.gen\.' | grep -v 'node_modules' || true)
1919
2020
if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then
21-
echo "❌ New TS/JS files detected. Use ReScript instead."
21+
echo "❌ New TS/JS files detected. Use AffineScript instead."
2222
[ -n "$NEW_TS" ] && echo "$NEW_TS"
2323
[ -n "$NEW_JS" ] && echo "$NEW_JS"
2424
exit 1

affinescript-ecosystem/affinescriptiser/.github/workflows/rsr-antipattern.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI
3232
TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true)
3333
if [ -n "$TS_FILES" ]; then
34-
echo "❌ TypeScript files detected - use ReScript instead"
34+
echo "❌ TypeScript files detected - use AffineScript instead"
3535
echo "$TS_FILES"
3636
exit 1
3737
fi
@@ -67,7 +67,7 @@ jobs:
6767
- name: Check for tsconfig
6868
run: |
6969
if [ -f "tsconfig.json" ]; then
70-
echo "❌ tsconfig.json detected - use ReScript instead"
70+
echo "❌ tsconfig.json detected - use AffineScript instead"
7171
exit 1
7272
fi
7373
echo "✅ No tsconfig.json"

affinescript-ecosystem/affinescriptiser/.github/workflows/ts-blocker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
NEW_JS=$(git diff --name-only --diff-filter=A HEAD~1 2>/dev/null | grep -E '\.(js|jsx)$' | grep -v '\.res\.js$' | grep -v '\.gen\.' | grep -v 'node_modules' || true)
1919
2020
if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then
21-
echo "❌ New TS/JS files detected. Use ReScript instead."
21+
echo "❌ New TS/JS files detected. Use AffineScript instead."
2222
[ -n "$NEW_TS" ] && echo "$NEW_TS"
2323
[ -n "$NEW_JS" ] && echo "$NEW_JS"
2424
exit 1

0 commit comments

Comments
 (0)