Skip to content

v0.13.1

Latest

Choose a tag to compare

@github-actions github-actions released this 18 Apr 05:48

πŸ› Bug Fixes

  • CLI setup wizard crash on older Node runtimes β€” bunx @cortexkit/aft-opencode@latest setup crashed with styleText is not exported from node:util on Node < 20.12. The bunx launcher honored the package's #!/usr/bin/env node shebang and delegated to the user's Node instead of running the JS directly with bun. Updated all documented install commands to use bunx --bun which 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.