diff --git a/.claude/CLAUDE.md b/.claude/CLAUDE.md index 807f1817..c3890a0e 100644 --- a/.claude/CLAUDE.md +++ b/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/.github/workflows/rsr-antipattern.yml b/.github/workflows/rsr-antipattern.yml index 61fac42e..be255819 100644 --- a/.github/workflows/rsr-antipattern.yml +++ b/.github/workflows/rsr-antipattern.yml @@ -55,7 +55,7 @@ jobs: | grep -v 'bindings/redis' \ || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -91,7 +91,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/.github/workflows/ts-blocker.yml b/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/.github/workflows/ts-blocker.yml +++ b/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/ada-ecosystem/ada-loom-registry/.claude/CLAUDE.md b/ada-ecosystem/ada-loom-registry/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/ada-ecosystem/ada-loom-registry/.claude/CLAUDE.md +++ b/ada-ecosystem/ada-loom-registry/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/ada-ecosystem/ada-loom-registry/.github/workflows/rsr-antipattern.yml b/ada-ecosystem/ada-loom-registry/.github/workflows/rsr-antipattern.yml index b04e35a5..37944275 100644 --- a/ada-ecosystem/ada-loom-registry/.github/workflows/rsr-antipattern.yml +++ b/ada-ecosystem/ada-loom-registry/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/ada-ecosystem/ada-loom-registry/.github/workflows/ts-blocker.yml b/ada-ecosystem/ada-loom-registry/.github/workflows/ts-blocker.yml index a26367b7..a37d03ba 100644 --- a/ada-ecosystem/ada-loom-registry/.github/workflows/ts-blocker.yml +++ b/ada-ecosystem/ada-loom-registry/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/affinescript-ecosystem/affinescript-vite/.github/workflows/rsr-antipattern.yml b/affinescript-ecosystem/affinescript-vite/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/affinescript-ecosystem/affinescript-vite/.github/workflows/rsr-antipattern.yml +++ b/affinescript-ecosystem/affinescript-vite/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/affinescript-ecosystem/affinescript-vite/.github/workflows/ts-blocker.yml b/affinescript-ecosystem/affinescript-vite/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/affinescript-ecosystem/affinescript-vite/.github/workflows/ts-blocker.yml +++ b/affinescript-ecosystem/affinescript-vite/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/affinescript-ecosystem/affinescriptiser/.github/workflows/rsr-antipattern.yml b/affinescript-ecosystem/affinescriptiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/affinescript-ecosystem/affinescriptiser/.github/workflows/rsr-antipattern.yml +++ b/affinescript-ecosystem/affinescriptiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/affinescript-ecosystem/affinescriptiser/.github/workflows/ts-blocker.yml b/affinescript-ecosystem/affinescriptiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/affinescript-ecosystem/affinescriptiser/.github/workflows/ts-blocker.yml +++ b/affinescript-ecosystem/affinescriptiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/affinescript-ecosystem/rattlescript/.github/workflows/rsr-antipattern.yml b/affinescript-ecosystem/rattlescript/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/affinescript-ecosystem/rattlescript/.github/workflows/rsr-antipattern.yml +++ b/affinescript-ecosystem/rattlescript/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/affinescript-ecosystem/rattlescript/.github/workflows/ts-blocker.yml b/affinescript-ecosystem/rattlescript/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/affinescript-ecosystem/rattlescript/.github/workflows/ts-blocker.yml +++ b/affinescript-ecosystem/rattlescript/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/affinescript-ecosystem/rattlescript/affinescript/.github/workflows/rsr-antipattern.yml b/affinescript-ecosystem/rattlescript/affinescript/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/affinescript-ecosystem/rattlescript/affinescript/.github/workflows/rsr-antipattern.yml +++ b/affinescript-ecosystem/rattlescript/affinescript/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/affinescript-ecosystem/rattlescript/affinescript/.github/workflows/ts-blocker.yml b/affinescript-ecosystem/rattlescript/affinescript/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/affinescript-ecosystem/rattlescript/affinescript/.github/workflows/ts-blocker.yml +++ b/affinescript-ecosystem/rattlescript/affinescript/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/aggregate-library/.claude/CLAUDE.md b/aggregate-library/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/aggregate-library/.claude/CLAUDE.md +++ b/aggregate-library/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/aggregate-library/.github/workflows/rsr-antipattern.yml b/aggregate-library/.github/workflows/rsr-antipattern.yml index 95fba7b0..9b76f94f 100644 --- a/aggregate-library/.github/workflows/rsr-antipattern.yml +++ b/aggregate-library/.github/workflows/rsr-antipattern.yml @@ -23,7 +23,7 @@ jobs: - name: Check for TypeScript run: | if find . -name "*.ts" -o -name "*.tsx" | grep -v node_modules | grep -q .; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" find . -name "*.ts" -o -name "*.tsx" | grep -v node_modules exit 1 fi @@ -59,7 +59,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/aggregate-library/CLAUDE.md b/aggregate-library/CLAUDE.md index a1ba159d..717282bf 100644 --- a/aggregate-library/CLAUDE.md +++ b/aggregate-library/CLAUDE.md @@ -75,7 +75,7 @@ Per hyperpolymath language policy: - ✅ **Rust, Gleam, Elixir**: Optional alternative implementations **Banned**: -- ❌ TypeScript (use ReScript instead) +- ❌ TypeScript (use AffineScript instead) - ❌ Node.js, npm, Bun (use Deno instead) - ❌ Python, Go (use Rust/Gleam/Elixir instead) diff --git a/asdf-augmenters/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/.github/workflows/rsr-antipattern.yml index b04e35a5..37944275 100644 --- a/asdf-augmenters/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/asdf-augmenters/.github/workflows/ts-blocker.yml b/asdf-augmenters/.github/workflows/ts-blocker.yml index a26367b7..a37d03ba 100644 --- a/asdf-augmenters/.github/workflows/ts-blocker.yml +++ b/asdf-augmenters/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/asdf-augmenters/asdf-acceleration-middleware/.claude/CLAUDE.md b/asdf-augmenters/asdf-acceleration-middleware/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-acceleration-middleware/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-acceleration-middleware/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-acceleration-middleware/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-acceleration-middleware/.github/workflows/rsr-antipattern.yml index 86a006a4..4ce88aa8 100644 --- a/asdf-augmenters/asdf-acceleration-middleware/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-acceleration-middleware/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/asdf-augmenters/asdf-acceleration-middleware/.github/workflows/ts-blocker.yml b/asdf-augmenters/asdf-acceleration-middleware/.github/workflows/ts-blocker.yml index f2762d95..bb246ac8 100644 --- a/asdf-augmenters/asdf-acceleration-middleware/.github/workflows/ts-blocker.yml +++ b/asdf-augmenters/asdf-acceleration-middleware/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/asdf-augmenters/asdf-control-tower/.claude/CLAUDE.md b/asdf-augmenters/asdf-control-tower/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-control-tower/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-control-tower/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-control-tower/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-control-tower/.github/workflows/rsr-antipattern.yml index ff6860ef..2c7968fe 100644 --- a/asdf-augmenters/asdf-control-tower/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-control-tower/.github/workflows/rsr-antipattern.yml @@ -19,7 +19,7 @@ jobs: - name: Check for TypeScript run: | if find . -name "*.ts" -o -name "*.tsx" | grep -v node_modules | grep -q .; then - echo "::error::TypeScript files found! Use ReScript instead (per RSR policy)" + echo "::error::TypeScript files found! Use AffineScript instead (per RSR policy)" exit 1 fi echo "✓ No TypeScript files found" diff --git a/asdf-augmenters/asdf-ghjk/.claude/CLAUDE.md b/asdf-augmenters/asdf-ghjk/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-ghjk/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-ghjk/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-ghjk/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-ghjk/.github/workflows/rsr-antipattern.yml index 4a4d82d1..3e6881ac 100644 --- a/asdf-augmenters/asdf-ghjk/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-ghjk/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-metaiconic-plugin/.claude/CLAUDE.md b/asdf-augmenters/asdf-metaiconic-plugin/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-metaiconic-plugin/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-metaiconic-plugin/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-metaiconic-plugin/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-metaiconic-plugin/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-metaiconic-plugin/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-metaiconic-plugin/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/ada/.claude/CLAUDE.md b/asdf-augmenters/asdf-plugin-collection/plugins/ada/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/ada/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-plugin-collection/plugins/ada/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/ada/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-plugin-collection/plugins/ada/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/ada/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-plugin-collection/plugins/ada/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/casket-ssg/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-plugin-collection/plugins/casket-ssg/.github/workflows/rsr-antipattern.yml index 52122efe..d94b1b3b 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/casket-ssg/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-plugin-collection/plugins/casket-ssg/.github/workflows/rsr-antipattern.yml @@ -19,7 +19,7 @@ jobs: - name: Check for TypeScript run: | if find . -name "*.ts" -o -name "*.tsx" | grep -v node_modules | grep -q .; then - echo "::error::TypeScript files found! Use ReScript instead (per RSR policy)" + echo "::error::TypeScript files found! Use AffineScript instead (per RSR policy)" exit 1 fi echo "✓ No TypeScript files found" diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/cobol/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-plugin-collection/plugins/cobol/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/cobol/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-plugin-collection/plugins/cobol/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/metaiconic/.claude/CLAUDE.md b/asdf-augmenters/asdf-plugin-collection/plugins/metaiconic/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/metaiconic/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-plugin-collection/plugins/metaiconic/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/metaiconic/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-plugin-collection/plugins/metaiconic/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/metaiconic/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-plugin-collection/plugins/metaiconic/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/security/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-plugin-collection/plugins/security/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/security/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-plugin-collection/plugins/security/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/ui/.claude/CLAUDE.md b/asdf-augmenters/asdf-plugin-collection/plugins/ui/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/ui/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-plugin-collection/plugins/ui/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/ui/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-plugin-collection/plugins/ui/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/ui/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-plugin-collection/plugins/ui/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-plugin-collection/plugins/zig/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-plugin-collection/plugins/zig/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-plugin-collection/plugins/zig/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-plugin-collection/plugins/zig/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-plugin-configurator/.claude/CLAUDE.md b/asdf-augmenters/asdf-plugin-configurator/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-plugin-configurator/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-plugin-configurator/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-plugin-configurator/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-plugin-configurator/.github/workflows/rsr-antipattern.yml index 5ff47a2b..52373951 100644 --- a/asdf-augmenters/asdf-plugin-configurator/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-plugin-configurator/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-plugin-configurator/ROADMAP.adoc b/asdf-augmenters/asdf-plugin-configurator/ROADMAP.adoc index 143544e9..ad77ba95 100644 --- a/asdf-augmenters/asdf-plugin-configurator/ROADMAP.adoc +++ b/asdf-augmenters/asdf-plugin-configurator/ROADMAP.adoc @@ -266,7 +266,7 @@ docs/ # Documentation * No TypeScript/Node.js - Use ReScript for any web UI * No Go - Use Rust instead -* No Python (except SaltStack) - Use Rust/ReScript +* No Python (except SaltStack) - Use Rust/AffineScript * No Kotlin/Swift - Use Tauri/Dioxus for mobile ''' diff --git a/asdf-augmenters/asdf-security-plugin/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-security-plugin/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-security-plugin/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-security-plugin/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/asdf-augmenters/asdf-ui-plugin/.claude/CLAUDE.md b/asdf-augmenters/asdf-ui-plugin/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/asdf-augmenters/asdf-ui-plugin/.claude/CLAUDE.md +++ b/asdf-augmenters/asdf-ui-plugin/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/asdf-augmenters/asdf-ui-plugin/.github/workflows/rsr-antipattern.yml b/asdf-augmenters/asdf-ui-plugin/.github/workflows/rsr-antipattern.yml index 02912273..b00930e3 100644 --- a/asdf-augmenters/asdf-ui-plugin/.github/workflows/rsr-antipattern.yml +++ b/asdf-augmenters/asdf-ui-plugin/.github/workflows/rsr-antipattern.yml @@ -22,7 +22,7 @@ jobs: # Check for TypeScript files if find . -name "*.ts" -not -path "./node_modules/*" | grep -q .; then - echo "::error::TypeScript files found. Use ReScript instead." + echo "::error::TypeScript files found. Use AffineScript instead." errors=$((errors + 1)) fi @@ -40,7 +40,7 @@ jobs: # Check for Python files if find . -name "*.py" -not -path "./.venv/*" | grep -q .; then - echo "::error::Python files found. Use Julia, Rust, or ReScript instead." + echo "::error::Python files found. Use Julia, Rust, or AffineScript instead." errors=$((errors + 1)) fi diff --git a/bridge-nginx-zig/.claude/CLAUDE.md b/bridge-nginx-zig/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/bridge-nginx-zig/.claude/CLAUDE.md +++ b/bridge-nginx-zig/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/bridge-nginx-zig/.github/workflows/rsr-antipattern.yml b/bridge-nginx-zig/.github/workflows/rsr-antipattern.yml index eec6896f..592765fa 100644 --- a/bridge-nginx-zig/.github/workflows/rsr-antipattern.yml +++ b/bridge-nginx-zig/.github/workflows/rsr-antipattern.yml @@ -19,7 +19,7 @@ jobs: - name: Check for TypeScript run: | if find . -name "*.ts" -o -name "*.tsx" | grep -v node_modules | grep -q .; then - echo "::error::TypeScript files found! Use ReScript instead (per RSR policy)" + echo "::error::TypeScript files found! Use AffineScript instead (per RSR policy)" exit 1 fi echo "✓ No TypeScript files found" diff --git a/cadre-router/.claude/CLAUDE.md b/cadre-router/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/cadre-router/.claude/CLAUDE.md +++ b/cadre-router/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/cadre-router/.github/workflows/rsr-antipattern.yml b/cadre-router/.github/workflows/rsr-antipattern.yml index 86a006a4..4ce88aa8 100644 --- a/cadre-router/.github/workflows/rsr-antipattern.yml +++ b/cadre-router/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/cadre-router/.github/workflows/ts-blocker.yml b/cadre-router/.github/workflows/ts-blocker.yml index f2762d95..bb246ac8 100644 --- a/cadre-router/.github/workflows/ts-blocker.yml +++ b/cadre-router/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/cadre-tea-router/.github/workflows/rsr-antipattern.yml b/cadre-tea-router/.github/workflows/rsr-antipattern.yml index b04e35a5..37944275 100644 --- a/cadre-tea-router/.github/workflows/rsr-antipattern.yml +++ b/cadre-tea-router/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/cadre-tea-router/.github/workflows/ts-blocker.yml b/cadre-tea-router/.github/workflows/ts-blocker.yml index a26367b7..a37d03ba 100644 --- a/cadre-tea-router/.github/workflows/ts-blocker.yml +++ b/cadre-tea-router/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/coq-ecosystem/coq-jr/.claude/CLAUDE.md b/coq-ecosystem/coq-jr/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/coq-ecosystem/coq-jr/.claude/CLAUDE.md +++ b/coq-ecosystem/coq-jr/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/coq-ecosystem/coq-jr/.github/workflows/rsr-antipattern.yml b/coq-ecosystem/coq-jr/.github/workflows/rsr-antipattern.yml index eec6896f..592765fa 100644 --- a/coq-ecosystem/coq-jr/.github/workflows/rsr-antipattern.yml +++ b/coq-ecosystem/coq-jr/.github/workflows/rsr-antipattern.yml @@ -19,7 +19,7 @@ jobs: - name: Check for TypeScript run: | if find . -name "*.ts" -o -name "*.tsx" | grep -v node_modules | grep -q .; then - echo "::error::TypeScript files found! Use ReScript instead (per RSR policy)" + echo "::error::TypeScript files found! Use AffineScript instead (per RSR policy)" exit 1 fi echo "✓ No TypeScript files found" diff --git a/czech-file-knife/.claude/CLAUDE.md b/czech-file-knife/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/czech-file-knife/.claude/CLAUDE.md +++ b/czech-file-knife/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/czech-file-knife/.github/workflows/rsr-antipattern.yml b/czech-file-knife/.github/workflows/rsr-antipattern.yml index 641deeda..b32aeae6 100644 --- a/czech-file-knife/.github/workflows/rsr-antipattern.yml +++ b/czech-file-knife/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/czech-file-knife/.github/workflows/ts-blocker.yml b/czech-file-knife/.github/workflows/ts-blocker.yml index dc48b3a2..0cae55ad 100644 --- a/czech-file-knife/.github/workflows/ts-blocker.yml +++ b/czech-file-knife/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/deno-ecosystem/.github/workflows/language-policy.yml b/deno-ecosystem/.github/workflows/language-policy.yml index e9406882..13255493 100644 --- a/deno-ecosystem/.github/workflows/language-policy.yml +++ b/deno-ecosystem/.github/workflows/language-policy.yml @@ -19,7 +19,7 @@ jobs: - name: Check for banned TypeScript files run: | if find . -name "*.ts" -type f | grep -v node_modules | grep -q .; then - echo "ERROR: TypeScript files found. Use ReScript instead." + echo "ERROR: TypeScript files found. Use AffineScript instead." find . -name "*.ts" -type f | grep -v node_modules exit 1 fi diff --git a/deno-ecosystem/.github/workflows/rsr-antipattern.yml b/deno-ecosystem/.github/workflows/rsr-antipattern.yml index 86a006a4..4ce88aa8 100644 --- a/deno-ecosystem/.github/workflows/rsr-antipattern.yml +++ b/deno-ecosystem/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/deno-ecosystem/.github/workflows/ts-blocker.yml b/deno-ecosystem/.github/workflows/ts-blocker.yml index f2762d95..bb246ac8 100644 --- a/deno-ecosystem/.github/workflows/ts-blocker.yml +++ b/deno-ecosystem/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/devkit-risc-v/.claude/CLAUDE.md b/devkit-risc-v/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/devkit-risc-v/.claude/CLAUDE.md +++ b/devkit-risc-v/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/devkit-risc-v/.github/workflows/rsr-antipattern.yml b/devkit-risc-v/.github/workflows/rsr-antipattern.yml index b04e35a5..37944275 100644 --- a/devkit-risc-v/.github/workflows/rsr-antipattern.yml +++ b/devkit-risc-v/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/devkit-risc-v/.github/workflows/ts-blocker.yml b/devkit-risc-v/.github/workflows/ts-blocker.yml index a26367b7..a37d03ba 100644 --- a/devkit-risc-v/.github/workflows/ts-blocker.yml +++ b/devkit-risc-v/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/dnfinition/.claude/CLAUDE.md b/dnfinition/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/dnfinition/.claude/CLAUDE.md +++ b/dnfinition/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/dnfinition/.github/workflows/rsr-antipattern.yml b/dnfinition/.github/workflows/rsr-antipattern.yml index 04d8b7db..6785b69f 100644 --- a/dnfinition/.github/workflows/rsr-antipattern.yml +++ b/dnfinition/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/dnfinition/.github/workflows/ts-blocker.yml b/dnfinition/.github/workflows/ts-blocker.yml index 1f4780f4..1dae7061 100644 --- a/dnfinition/.github/workflows/ts-blocker.yml +++ b/dnfinition/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/alloyiser/.github/workflows/rsr-antipattern.yml b/iser-tools/alloyiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/alloyiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/alloyiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/alloyiser/.github/workflows/ts-blocker.yml b/iser-tools/alloyiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/alloyiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/alloyiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/anvomidaviser/.github/workflows/rsr-antipattern.yml b/iser-tools/anvomidaviser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/anvomidaviser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/anvomidaviser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/anvomidaviser/.github/workflows/ts-blocker.yml b/iser-tools/anvomidaviser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/anvomidaviser/.github/workflows/ts-blocker.yml +++ b/iser-tools/anvomidaviser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/atsiser/.github/workflows/rsr-antipattern.yml b/iser-tools/atsiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/atsiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/atsiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/atsiser/.github/workflows/ts-blocker.yml b/iser-tools/atsiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/atsiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/atsiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/betlangiser/.github/workflows/rsr-antipattern.yml b/iser-tools/betlangiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/betlangiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/betlangiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/betlangiser/.github/workflows/ts-blocker.yml b/iser-tools/betlangiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/betlangiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/betlangiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/bqniser/.github/workflows/rsr-antipattern.yml b/iser-tools/bqniser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/bqniser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/bqniser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/bqniser/.github/workflows/ts-blocker.yml b/iser-tools/bqniser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/bqniser/.github/workflows/ts-blocker.yml +++ b/iser-tools/bqniser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/chapeliser/.github/workflows/rsr-antipattern.yml b/iser-tools/chapeliser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/chapeliser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/chapeliser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/chapeliser/.github/workflows/ts-blocker.yml b/iser-tools/chapeliser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/chapeliser/.github/workflows/ts-blocker.yml +++ b/iser-tools/chapeliser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/dafniser/.github/workflows/rsr-antipattern.yml b/iser-tools/dafniser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/dafniser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/dafniser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/dafniser/.github/workflows/ts-blocker.yml b/iser-tools/dafniser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/dafniser/.github/workflows/ts-blocker.yml +++ b/iser-tools/dafniser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/eclexiaiser/.github/workflows/rsr-antipattern.yml b/iser-tools/eclexiaiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/eclexiaiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/eclexiaiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/eclexiaiser/.github/workflows/ts-blocker.yml b/iser-tools/eclexiaiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/eclexiaiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/eclexiaiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/ephapaxiser/.github/workflows/rsr-antipattern.yml b/iser-tools/ephapaxiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/ephapaxiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/ephapaxiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/ephapaxiser/.github/workflows/ts-blocker.yml b/iser-tools/ephapaxiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/ephapaxiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/ephapaxiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/futharkiser/.github/workflows/rsr-antipattern.yml b/iser-tools/futharkiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/futharkiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/futharkiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/futharkiser/.github/workflows/ts-blocker.yml b/iser-tools/futharkiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/futharkiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/futharkiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/halideiser/.github/workflows/rsr-antipattern.yml b/iser-tools/halideiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/halideiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/halideiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/halideiser/.github/workflows/ts-blocker.yml b/iser-tools/halideiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/halideiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/halideiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/idrisiser/.github/workflows/rsr-antipattern.yml b/iser-tools/idrisiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/idrisiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/idrisiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/idrisiser/.github/workflows/ts-blocker.yml b/iser-tools/idrisiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/idrisiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/idrisiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/iseriser/.github/workflows/rsr-antipattern.yml b/iser-tools/iseriser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/iseriser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/iseriser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/iseriser/.github/workflows/ts-blocker.yml b/iser-tools/iseriser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/iseriser/.github/workflows/ts-blocker.yml +++ b/iser-tools/iseriser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/julianiser/.github/workflows/rsr-antipattern.yml b/iser-tools/julianiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/julianiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/julianiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/julianiser/.github/workflows/ts-blocker.yml b/iser-tools/julianiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/julianiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/julianiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/lustreiser/.github/workflows/rsr-antipattern.yml b/iser-tools/lustreiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/lustreiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/lustreiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/lustreiser/.github/workflows/ts-blocker.yml b/iser-tools/lustreiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/lustreiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/lustreiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/mylangiser/.github/workflows/rsr-antipattern.yml b/iser-tools/mylangiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/mylangiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/mylangiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/mylangiser/.github/workflows/ts-blocker.yml b/iser-tools/mylangiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/mylangiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/mylangiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/nimiser/.github/workflows/rsr-antipattern.yml b/iser-tools/nimiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/nimiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/nimiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/nimiser/.github/workflows/ts-blocker.yml b/iser-tools/nimiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/nimiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/nimiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/oblibeniser/.github/workflows/rsr-antipattern.yml b/iser-tools/oblibeniser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/oblibeniser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/oblibeniser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/oblibeniser/.github/workflows/ts-blocker.yml b/iser-tools/oblibeniser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/oblibeniser/.github/workflows/ts-blocker.yml +++ b/iser-tools/oblibeniser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/otpiser/.github/workflows/rsr-antipattern.yml b/iser-tools/otpiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/otpiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/otpiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/otpiser/.github/workflows/ts-blocker.yml b/iser-tools/otpiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/otpiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/otpiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/phronesiser/.github/workflows/rsr-antipattern.yml b/iser-tools/phronesiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/phronesiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/phronesiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/phronesiser/.github/workflows/ts-blocker.yml b/iser-tools/phronesiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/phronesiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/phronesiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/ponyiser/.github/workflows/rsr-antipattern.yml b/iser-tools/ponyiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/ponyiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/ponyiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/ponyiser/.github/workflows/ts-blocker.yml b/iser-tools/ponyiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/ponyiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/ponyiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/tlaiser/.github/workflows/rsr-antipattern.yml b/iser-tools/tlaiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/tlaiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/tlaiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/tlaiser/.github/workflows/ts-blocker.yml b/iser-tools/tlaiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/tlaiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/tlaiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/iser-tools/wokelangiser/.github/workflows/rsr-antipattern.yml b/iser-tools/wokelangiser/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/iser-tools/wokelangiser/.github/workflows/rsr-antipattern.yml +++ b/iser-tools/wokelangiser/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/iser-tools/wokelangiser/.github/workflows/ts-blocker.yml b/iser-tools/wokelangiser/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/iser-tools/wokelangiser/.github/workflows/ts-blocker.yml +++ b/iser-tools/wokelangiser/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/riscv-guix-buildsys/.github/workflows/rsr-antipattern.yml b/riscv-guix-buildsys/.github/workflows/rsr-antipattern.yml index 86a006a4..4ce88aa8 100644 --- a/riscv-guix-buildsys/.github/workflows/rsr-antipattern.yml +++ b/riscv-guix-buildsys/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/riscv-guix-buildsys/.github/workflows/ts-blocker.yml b/riscv-guix-buildsys/.github/workflows/ts-blocker.yml index f2762d95..bb246ac8 100644 --- a/riscv-guix-buildsys/.github/workflows/ts-blocker.yml +++ b/riscv-guix-buildsys/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/scaffoldia/.claude/CLAUDE.md b/scaffoldia/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/scaffoldia/.claude/CLAUDE.md +++ b/scaffoldia/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/scaffoldia/.github/workflows/rsr-antipattern.yml b/scaffoldia/.github/workflows/rsr-antipattern.yml index b04e35a5..37944275 100644 --- a/scaffoldia/.github/workflows/rsr-antipattern.yml +++ b/scaffoldia/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/scaffoldia/.github/workflows/ts-blocker.yml b/scaffoldia/.github/workflows/ts-blocker.yml index a26367b7..a37d03ba 100644 --- a/scaffoldia/.github/workflows/ts-blocker.yml +++ b/scaffoldia/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/synapse/.claude/CLAUDE.md b/synapse/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/synapse/.claude/CLAUDE.md +++ b/synapse/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/synapse/.github/workflows/rsr-antipattern.yml b/synapse/.github/workflows/rsr-antipattern.yml index 86a006a4..4ce88aa8 100644 --- a/synapse/.github/workflows/rsr-antipattern.yml +++ b/synapse/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/synapse/.github/workflows/ts-blocker.yml b/synapse/.github/workflows/ts-blocker.yml index f2762d95..bb246ac8 100644 --- a/synapse/.github/workflows/ts-blocker.yml +++ b/synapse/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/techstack-enforcer/.github/workflows/rsr-antipattern.yml b/techstack-enforcer/.github/workflows/rsr-antipattern.yml index 641deeda..b32aeae6 100644 --- a/techstack-enforcer/.github/workflows/rsr-antipattern.yml +++ b/techstack-enforcer/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/techstack-enforcer/.github/workflows/ts-blocker.yml b/techstack-enforcer/.github/workflows/ts-blocker.yml index dc48b3a2..0cae55ad 100644 --- a/techstack-enforcer/.github/workflows/ts-blocker.yml +++ b/techstack-enforcer/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-benchmarks/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-benchmarks/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v-benchmarks/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-benchmarks/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-benchmarks/.github/workflows/ts-blocker.yml b/v-ecosystem/v-benchmarks/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v-benchmarks/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-benchmarks/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-graphql/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-graphql/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/v-ecosystem/v-graphql/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-graphql/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-graphql/.github/workflows/ts-blocker.yml b/v-ecosystem/v-graphql/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/v-ecosystem/v-graphql/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-graphql/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-grpc/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-grpc/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/v-ecosystem/v-grpc/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-grpc/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-grpc/.github/workflows/ts-blocker.yml b/v-ecosystem/v-grpc/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/v-ecosystem/v-grpc/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-grpc/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-idris-abi/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-idris-abi/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v-idris-abi/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-idris-abi/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-idris-abi/.github/workflows/ts-blocker.yml b/v-ecosystem/v-idris-abi/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v-idris-abi/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-idris-abi/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-middleware/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-middleware/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v-middleware/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-middleware/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-middleware/.github/workflows/ts-blocker.yml b/v-ecosystem/v-middleware/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v-middleware/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-middleware/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-rest/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-rest/.github/workflows/rsr-antipattern.yml index e81eafa5..256f1f04 100644 --- a/v-ecosystem/v-rest/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-rest/.github/workflows/rsr-antipattern.yml @@ -31,7 +31,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -67,7 +67,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-rest/.github/workflows/ts-blocker.yml b/v-ecosystem/v-rest/.github/workflows/ts-blocker.yml index 6a09ba26..45919fca 100644 --- a/v-ecosystem/v-rest/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-rest/.github/workflows/ts-blocker.yml @@ -18,7 +18,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-telemetry/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-telemetry/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v-telemetry/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-telemetry/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-telemetry/.github/workflows/ts-blocker.yml b/v-ecosystem/v-telemetry/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v-telemetry/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-telemetry/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-validator/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-validator/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v-validator/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-validator/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-validator/.github/workflows/ts-blocker.yml b/v-ecosystem/v-validator/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v-validator/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-validator/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v-zig-ffi/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v-zig-ffi/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v-zig-ffi/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v-zig-ffi/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v-zig-ffi/.github/workflows/ts-blocker.yml b/v-ecosystem/v-zig-ffi/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v-zig-ffi/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v-zig-ffi/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v_api_interfaces/v_graphql/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v_api_interfaces/v_graphql/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v_api_interfaces/v_graphql/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v_api_interfaces/v_graphql/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v_api_interfaces/v_graphql/.github/workflows/ts-blocker.yml b/v-ecosystem/v_api_interfaces/v_graphql/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v_api_interfaces/v_graphql/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v_api_interfaces/v_graphql/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v_api_interfaces/v_grpc/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v_api_interfaces/v_grpc/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v_api_interfaces/v_grpc/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v_api_interfaces/v_grpc/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v_api_interfaces/v_grpc/.github/workflows/ts-blocker.yml b/v-ecosystem/v_api_interfaces/v_grpc/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v_api_interfaces/v_grpc/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v_api_interfaces/v_grpc/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/v-ecosystem/v_api_interfaces/v_rest/.github/workflows/rsr-antipattern.yml b/v-ecosystem/v_api_interfaces/v_rest/.github/workflows/rsr-antipattern.yml index a001dcd2..f80b3e18 100644 --- a/v-ecosystem/v_api_interfaces/v_rest/.github/workflows/rsr-antipattern.yml +++ b/v-ecosystem/v_api_interfaces/v_rest/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/v-ecosystem/v_api_interfaces/v_rest/.github/workflows/ts-blocker.yml b/v-ecosystem/v_api_interfaces/v_rest/.github/workflows/ts-blocker.yml index 5c34a58c..e4b81739 100644 --- a/v-ecosystem/v_api_interfaces/v_rest/.github/workflows/ts-blocker.yml +++ b/v-ecosystem/v_api_interfaces/v_rest/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/well-known-ecosystem/.claude/CLAUDE.md b/well-known-ecosystem/.claude/CLAUDE.md index 1f18a055..c8782595 100644 --- a/well-known-ecosystem/.claude/CLAUDE.md +++ b/well-known-ecosystem/.claude/CLAUDE.md @@ -43,7 +43,7 @@ The following files in `.machine_readable/` contain structured project metadata: | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/well-known-ecosystem/.github/workflows/rsr-antipattern.yml b/well-known-ecosystem/.github/workflows/rsr-antipattern.yml index 86a006a4..4ce88aa8 100644 --- a/well-known-ecosystem/.github/workflows/rsr-antipattern.yml +++ b/well-known-ecosystem/.github/workflows/rsr-antipattern.yml @@ -30,7 +30,7 @@ jobs: # Exclude .d.ts files - those are TypeScript type declarations for ReScript FFI TS_FILES=$(find . \( -name "*.ts" -o -name "*.tsx" \) | grep -v node_modules | grep -v 'bindings/deno' | grep -v '\.d\.ts$' || true) if [ -n "$TS_FILES" ]; then - echo "❌ TypeScript files detected - use ReScript instead" + echo "❌ TypeScript files detected - use AffineScript instead" echo "$TS_FILES" exit 1 fi @@ -66,7 +66,7 @@ jobs: - name: Check for tsconfig run: | if [ -f "tsconfig.json" ]; then - echo "❌ tsconfig.json detected - use ReScript instead" + echo "❌ tsconfig.json detected - use AffineScript instead" exit 1 fi echo "✅ No tsconfig.json" diff --git a/well-known-ecosystem/.github/workflows/ts-blocker.yml b/well-known-ecosystem/.github/workflows/ts-blocker.yml index f2762d95..bb246ac8 100644 --- a/well-known-ecosystem/.github/workflows/ts-blocker.yml +++ b/well-known-ecosystem/.github/workflows/ts-blocker.yml @@ -17,7 +17,7 @@ jobs: 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) if [ -n "$NEW_TS" ] || [ -n "$NEW_JS" ]; then - echo "❌ New TS/JS files detected. Use ReScript instead." + echo "❌ New TS/JS files detected. Use AffineScript instead." [ -n "$NEW_TS" ] && echo "$NEW_TS" [ -n "$NEW_JS" ] && echo "$NEW_JS" exit 1 diff --git a/zig-ecosystem/bridge-nginx-zig/.claude/CLAUDE.md b/zig-ecosystem/bridge-nginx-zig/.claude/CLAUDE.md index db65ffb3..0bca5a31 100644 --- a/zig-ecosystem/bridge-nginx-zig/.claude/CLAUDE.md +++ b/zig-ecosystem/bridge-nginx-zig/.claude/CLAUDE.md @@ -30,7 +30,7 @@ | Bun | Deno | | pnpm/yarn | Deno | | Go | Rust | -| Python | Julia/Rust/ReScript | +| Python | Julia/Rust/AffineScript | | Java/Kotlin | Rust/Tauri/Dioxus | | Swift | Tauri/Dioxus | | React Native | Tauri/Dioxus | diff --git a/zig-ecosystem/bridge-nginx-zig/.github/workflows/rsr-antipattern.yml b/zig-ecosystem/bridge-nginx-zig/.github/workflows/rsr-antipattern.yml index eec6896f..592765fa 100644 --- a/zig-ecosystem/bridge-nginx-zig/.github/workflows/rsr-antipattern.yml +++ b/zig-ecosystem/bridge-nginx-zig/.github/workflows/rsr-antipattern.yml @@ -19,7 +19,7 @@ jobs: - name: Check for TypeScript run: | if find . -name "*.ts" -o -name "*.tsx" | grep -v node_modules | grep -q .; then - echo "::error::TypeScript files found! Use ReScript instead (per RSR policy)" + echo "::error::TypeScript files found! Use AffineScript instead (per RSR policy)" exit 1 fi echo "✓ No TypeScript files found"