@trybullet/cli 1.3.22 → 1.3.25

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.
Files changed (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -88,6 +88,7 @@ the provider auth are byte-for-byte the same code the app runs.
88
88
 
89
89
  ```bash
90
90
  npm link # puts `bullet` on your PATH
91
+ bullet account signup # create a Bullet account (first run also offers this)
91
92
  bullet auth # Claude / ChatGPT subscription, or an API key
92
93
  bullet # interactive session in this folder
93
94
  bullet "fix the failing tests" # run one task, then keep talking
@@ -113,9 +114,9 @@ Two capabilities do not cross over. The agent's browser — `open_page`,
113
114
  `screenshot`, `read_page` — needs the offscreen Chromium only Electron can host,
114
115
  so those tools are removed from the kit and the system prompt is told, rather
115
116
  than left to fail mid-turn. And with no provider connected the CLI falls back to
116
- the same on-device model the app uses; that is a one-time ~2 GB download, so it
117
- asks first, and `-p` refuses rather than pulling 2 GB in a script nobody is
118
- watching.
117
+ the same Ministral 3 8B model and download path the app uses; that is a one-time
118
+ ~5 GB download, so it asks first, and `-p` refuses rather than pulling it in a
119
+ script nobody is watching.
119
120
 
120
121
  How it stays one codebase: `cli/shim.js` registers itself as the `electron`
121
122
  module before anything under `electron/` is required, and supplies the four
@@ -400,7 +401,7 @@ asserts those fields out of the data the agent sees. `SWE_NETWORK=1` is the swit
400
401
  behind the two regimes in the table; without it the web tools are removed and every
401
402
  container runs `--network none`.
402
403
 
403
- First prompt downloads the on-device model once (~2 GB), then it's local.
404
+ First prompt downloads the on-device model once (~5 GB), then it's local.
404
405
  Apple Silicon only.
405
406
 
406
407
  ## Layout
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trybullet/cli",
3
- "version": "1.3.22",
3
+ "version": "1.3.25",
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.22",
28
- "@trybullet/cli-darwin-x64": "1.3.22",
29
- "@trybullet/cli-linux-x64": "1.3.22",
30
- "@trybullet/cli-linux-arm64": "1.3.22",
31
- "@trybullet/cli-win32-x64": "1.3.22"
27
+ "@trybullet/cli-darwin-arm64": "1.3.25",
28
+ "@trybullet/cli-darwin-x64": "1.3.25",
29
+ "@trybullet/cli-linux-x64": "1.3.25",
30
+ "@trybullet/cli-linux-arm64": "1.3.25",
31
+ "@trybullet/cli-win32-x64": "1.3.25"
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=18"