π Bug Fixes
- CLI setup wizard crash on older Node runtimes β
bunx @cortexkit/aft-opencode@latest setupcrashed withstyleText is not exported from node:utilon Node < 20.12. Thebunxlauncher honored the package's#!/usr/bin/env nodeshebang and delegated to the user's Node instead of running the JS directly with bun. Updated all documented install commands to usebunx --bunwhich routes execution through bun's runtime and bypasses the node shebang entirely. (#10)
β¬οΈ Upgrading
Use the new command format:
```bash
Setup wizard
bunx --bun @cortexkit/aft-opencode@latest setup
Doctor
bunx --bun @cortexkit/aft-opencode@latest doctor
bunx --bun @cortexkit/aft-opencode@latest doctor --force
bunx --bun @cortexkit/aft-opencode@latest doctor --issue
```
Why `--bun`: This flag tells bun to execute the CLI's JavaScript directly instead of honoring the `#!/usr/bin/env node` shebang in the package. It works regardless of your installed Node version.