Environment
- macOS Apple Silicon (
arm64)
- Node.js:
v20.20.2
- Dart SDK:
3.11.4
- npm install method:
npm install -g flutter-skill
Problem
Running:
crashes immediately with:
Error: spawn Unknown system error -8
at ChildProcess.spawn (node:internal/child_process:420:11)
at spawn (node:child_process:762:9)
at runNativeBinary (.../flutter-skill/bin/cli.js:125:18)
Investigation
Architecture checks:
uname -m
# arm64
node -p process.arch
# arm64
dart --version
# Dart SDK version: 3.11.4 on "macos_arm64"
The package contains only Dart source files and no valid native executable:
The launcher in bin/cli.js attempts to call:
inside runNativeBinary() before fallback logic executes.
On Apple Silicon this throws immediately with:
which prevents fallback to runWithDart().
Additional Issue
Trying to run the Dart server manually also fails:
Error:
Error: Couldn't resolve the package 'flutter_skill'
Environment
arm64)v20.20.23.11.4Problem
Running:
crashes immediately with:
Error: spawn Unknown system error -8 at ChildProcess.spawn (node:internal/child_process:420:11) at spawn (node:child_process:762:9) at runNativeBinary (.../flutter-skill/bin/cli.js:125:18)Investigation
Architecture checks:
The package contains only Dart source files and no valid native executable:
The launcher in
bin/cli.jsattempts to call:inside
runNativeBinary()before fallback logic executes.On Apple Silicon this throws immediately with:
which prevents fallback to
runWithDart().Additional Issue
Trying to run the Dart server manually also fails:
Error: