@trybullet/cli 1.3.21 → 1.3.24

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 +8 -7
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  **The fastest coding agent.** A minimalist macOS desktop app: open a folder and
4
4
  Bullet plans, edits files, runs commands, verifies its work, and shows you
5
- everything live. Zero setup runs on-device with no key.
5
+ everything live. Connect a cloud provider or explicitly download the optional on-device model in Settings.
6
6
 
7
7
  ## How it works
8
8
 
@@ -11,8 +11,8 @@ everything live. Zero setup — runs on-device with no key.
11
11
  with failure-retry directives, stuck detection, duplicate suppression, a 45s
12
12
  wall-clock cap, and a definition-of-done verification gate.
13
13
  - **Router:** a nano-model semantic classifier (hard 4s cap — routing is never
14
- the wait) rates each prompt on five difficulty levels. No key everything
15
- runs on-device (Qwen2.5-Coder via Metal, warm KV-cache sessions). With a key
14
+ the wait) rates each prompt on five difficulty levels. The optional local route
15
+ runs Ministral 3 8B via Metal after an explicit Settings download. With a key
16
16
  → each level buys a deeper model *and* more thinking effort: quick asks run
17
17
  on fast models (Haiku / Codex-low), harder work escalates (Sonnet 5 / Codex
18
18
  at rising effort), and *extreme* tasks go to Fable 5 / Sol at full effort
@@ -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.21",
3
+ "version": "1.3.24",
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.21",
28
- "@trybullet/cli-darwin-x64": "1.3.21",
29
- "@trybullet/cli-linux-x64": "1.3.21",
30
- "@trybullet/cli-linux-arm64": "1.3.21",
31
- "@trybullet/cli-win32-x64": "1.3.21"
27
+ "@trybullet/cli-darwin-arm64": "1.3.24",
28
+ "@trybullet/cli-darwin-x64": "1.3.24",
29
+ "@trybullet/cli-linux-x64": "1.3.24",
30
+ "@trybullet/cli-linux-arm64": "1.3.24",
31
+ "@trybullet/cli-win32-x64": "1.3.24"
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=18"