@trybullet/cli 1.4.16 → 1.4.17

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 +26 -10
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -6,18 +6,20 @@ everything live. Connect a cloud provider or explicitly download the optional on
6
6
 
7
7
  ## How it works
8
8
 
9
- - **Agent loop** (custom, ~200 lines — no framework): plan → tool calls
10
- (read / edit / write / delete / run) → observations → verify → done. Hardened
11
- with failure-retry directives, stuck detection, duplicate suppression, a 45s
12
- wall-clock cap, and a definition-of-done verification gate.
9
+ - **Agent loop** (no framework): plan → tool calls
10
+ (read / edit / write / delete / run) → observations → verify → done. Tool
11
+ evidence, bounded correction, and duplicate suppression keep completion
12
+ claims grounded without imposing a fixed duration on interactive tasks.
13
13
  - **Router:** a nano-model semantic classifier (hard 4s cap — routing is never
14
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
- each level buys a deeper model *and* more thinking effort: quick asks run
17
- on fast models (Haiku / Codex-low), harder work escalates (Sonnet 5 / Codex
18
- at rising effort), and *extreme* tasks go to Fable 5 / Sol at full effort
19
- (say "use fable", "use sol", or "think hard" to force the level). The debug
20
- badge shows the exact model, tier, and effort used.
15
+ runs Ministral 3 8B via Metal after an explicit Settings download. With a cloud
16
+ connection, each level matches the model and thinking effort to the task:
17
+ quick asks use Sonnet 5 / Terra, complex work uses Opus 5 / Terra at rising
18
+ effort, *hard* tasks use Fable 5 / Sol, and *extreme* tasks use
19
+ Fable 5.1 / GPT-6 Astra. If a frontier model is unavailable, routing falls
20
+ back to the earlier tiers. Select either new model directly in the model
21
+ picker, or say "use Fable 5.1" or "use Astra". The debug badge shows the
22
+ exact model, tier, and effort used.
21
23
  - **Plan gate:** asking to plan ("help me plan X", "let's figure out the
22
24
  approach first") is its own classifier answer — those turns draft a plan and
23
25
  stop instead of working. Difficulty alone never triggers it: a big task you
@@ -153,6 +155,18 @@ OpenRouter API keys; Ollama and LM Studio local servers; and a custom
153
155
  OpenAI-compatible endpoint. Each connection keeps its own encrypted key,
154
156
  endpoint, and selected model, so adding one never replaces another.
155
157
 
158
+ Claude Fable 5.1 (`claude-fable-5-1`) and GPT-6 Astra (`gpt-6-astra`)
159
+ are available as explicit model choices with the matching provider connection.
160
+ The cost estimate includes Fable 5.1's reduced cache-read rate and Astra's
161
+ long-context rates above 272K input tokens.
162
+
163
+ Opening the model picker refreshes additional subscription model options:
164
+ Claude checks its model catalog, while ChatGPT connections imported from Codex
165
+ read Codex's local model catalog. Bundled and saved choices stay usable if
166
+ discovery fails, including after a restart; the provider verifies access when
167
+ you send a message. This refresh updates Bullet's choices; model access still
168
+ depends on the connected subscription, and its billing plan is unchanged.
169
+
156
170
  Provider presets are used when you press Enter at the base-URL prompt:
157
171
 
158
172
  ```bash
@@ -172,6 +186,8 @@ thinking level per run or per session:
172
186
  ```bash
173
187
  bullet --provider openrouter --model openai/gpt-5.2 --thinking high "review this"
174
188
  bullet --provider ollama --model qwen3-coder "fix the tests"
189
+ bullet --provider openai --model gpt-6-astra --thinking high "review this migration"
190
+ bullet --provider anthropic --model claude-fable-5-1 --thinking high "trace this regression"
175
191
  # in a session — unconfigured providers connect before becoming active
176
192
  /providers gemini
177
193
  /model gemini-2.5-pro
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trybullet/cli",
3
- "version": "1.4.16",
3
+ "version": "1.4.17",
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://codewithbullet.com",
@@ -24,11 +24,11 @@
24
24
  "bin/bullet.js"
25
25
  ],
26
26
  "optionalDependencies": {
27
- "@trybullet/cli-darwin-arm64": "1.4.16",
28
- "@trybullet/cli-darwin-x64": "1.4.16",
29
- "@trybullet/cli-linux-x64": "1.4.16",
30
- "@trybullet/cli-linux-arm64": "1.4.16",
31
- "@trybullet/cli-win32-x64": "1.4.16"
27
+ "@trybullet/cli-darwin-arm64": "1.4.17",
28
+ "@trybullet/cli-darwin-x64": "1.4.17",
29
+ "@trybullet/cli-linux-x64": "1.4.17",
30
+ "@trybullet/cli-linux-arm64": "1.4.17",
31
+ "@trybullet/cli-win32-x64": "1.4.17"
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=18"