@trybullet/cli 1.3.24 → 1.3.26
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 +26 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -190,6 +190,32 @@ excluded in `build.files` because they are 526 MB and load solely where the CUDA
|
|
|
190
190
|
runtime is already installed, which for most desktops means never. Vulkan
|
|
191
191
|
already covers NVIDIA, AMD, and Intel. Re-adding them is one glob.
|
|
192
192
|
|
|
193
|
+
## Windows
|
|
194
|
+
|
|
195
|
+
Windows ships as a 64-bit NSIS installer and updates itself through the Windows
|
|
196
|
+
update feed.
|
|
197
|
+
|
|
198
|
+
```bash
|
|
199
|
+
npm run dist:win # installer + latest.yml into release/
|
|
200
|
+
npm run release:publish windows # push to the Windows update feed
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
Agent commands run through Git Bash, which is installed with Git for Windows;
|
|
204
|
+
Bullet reports a clear startup error instead of accidentally invoking WSL when
|
|
205
|
+
Git Bash is unavailable.
|
|
206
|
+
|
|
207
|
+
Windows builds are deliberately unsigned: a publicly trusted Authenticode
|
|
208
|
+
identity is not available for free, and a self-signed certificate would still
|
|
209
|
+
show a security warning while providing no trustworthy proof of identity. The
|
|
210
|
+
installer therefore shows Windows' honest **Unknown publisher** warning, while
|
|
211
|
+
its filename, icon, file metadata, installed-app entry, HTTPS download URL, and
|
|
212
|
+
SHA-256 file published beside every GitHub release identify it as Bullet. Users
|
|
213
|
+
should download only from the official Bullet site or `trybullet` GitHub
|
|
214
|
+
release. No Windows signing secrets are required by the release workflow.
|
|
215
|
+
|
|
216
|
+
The on-device model is currently disabled on Windows; subscriptions and API
|
|
217
|
+
keys work normally.
|
|
218
|
+
|
|
193
219
|
## Releasing
|
|
194
220
|
|
|
195
221
|
Installed copies update themselves: the app checks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trybullet/cli",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.26",
|
|
4
4
|
"description": "The fastest coding agent — terminal edition. Same router, tools and agent loop as the Bullet desktop app, in your shell.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://usebullet.com",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"bin/bullet.js"
|
|
25
25
|
],
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@trybullet/cli-darwin-arm64": "1.3.
|
|
28
|
-
"@trybullet/cli-darwin-x64": "1.3.
|
|
29
|
-
"@trybullet/cli-linux-x64": "1.3.
|
|
30
|
-
"@trybullet/cli-linux-arm64": "1.3.
|
|
31
|
-
"@trybullet/cli-win32-x64": "1.3.
|
|
27
|
+
"@trybullet/cli-darwin-arm64": "1.3.26",
|
|
28
|
+
"@trybullet/cli-darwin-x64": "1.3.26",
|
|
29
|
+
"@trybullet/cli-linux-x64": "1.3.26",
|
|
30
|
+
"@trybullet/cli-linux-arm64": "1.3.26",
|
|
31
|
+
"@trybullet/cli-win32-x64": "1.3.26"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=18"
|