gearbox-code 0.1.12 → 0.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/dist/cli.mjs +80053 -79959
- package/install.sh +38 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -60,6 +60,7 @@ macOS, Linux, WSL:
|
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
62
|
rm -f ~/.local/bin/gearbox
|
|
63
|
+
rm -f ~/.bun/bin/gearbox
|
|
63
64
|
rm -rf ~/.local/share/gearbox
|
|
64
65
|
```
|
|
65
66
|
|
|
@@ -75,6 +76,14 @@ If you previously installed with npm global:
|
|
|
75
76
|
npm uninstall -g gearbox-code
|
|
76
77
|
```
|
|
77
78
|
|
|
79
|
+
If `gearbox` fails with `Unknown file extension ".tsx"`, an old Bun-linked
|
|
80
|
+
shim is still first on PATH. Remove it and reinstall:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
rm -f ~/.bun/bin/gearbox
|
|
84
|
+
curl -fsSL https://unpkg.com/gearbox-code@latest/install.sh | bash
|
|
85
|
+
```
|
|
86
|
+
|
|
78
87
|
## What It Is
|
|
79
88
|
|
|
80
89
|
Gearbox is a terminal coding agent that can use the model accounts you already
|