@trybullet/cli 1.4.2 → 1.4.3
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 +14 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -51,6 +51,15 @@ everything live. Connect a cloud provider or explicitly download the optional on
|
|
|
51
51
|
|
|
52
52
|
## UI
|
|
53
53
|
|
|
54
|
+
- **Ask (⌘/ or `/ask …`)** — a side question in a floating popup, answered
|
|
55
|
+
*next to* the run instead of interrupting it. Nothing it does can break the
|
|
56
|
+
work in flight: the popup has its own thread and its own chat id, the answer
|
|
57
|
+
never enters the transcript, and the main process strips every mutating tool
|
|
58
|
+
(write/edit/delete, commands, processes, browser, sub-agents) from the turn —
|
|
59
|
+
so Ask can read the project and the web and nothing else. It sees the recent
|
|
60
|
+
turns of the chat it was opened over, so "why did it do that?" has an
|
|
61
|
+
antecedent. Drag it by the header, Esc (from inside) closes it, and closing
|
|
62
|
+
keeps the answer streaming for when you reopen.
|
|
54
63
|
- **Sidebar grouped by folder** — chats are bound to their folder; agents in
|
|
55
64
|
different folders run concurrently (busy dot), and agents in the *same*
|
|
56
65
|
folder are told about each other's recent edits.
|
|
@@ -89,6 +98,7 @@ the provider auth are byte-for-byte the same code the app runs.
|
|
|
89
98
|
```bash
|
|
90
99
|
npm link # puts `bullet` on your PATH
|
|
91
100
|
bullet account signup # create a Bullet account (first run also offers this)
|
|
101
|
+
bullet account guest # start without an email; upgrade later without losing history
|
|
92
102
|
bullet auth # Claude / ChatGPT subscription, or an API key
|
|
93
103
|
bullet # interactive session in this folder
|
|
94
104
|
bullet "fix the failing tests" # run one task, then keep talking
|
|
@@ -122,6 +132,10 @@ Codex login is imported directly, no browser round-trip. Credentials are
|
|
|
122
132
|
encrypted with the OS keychain (macOS Keychain, `secret-tool` on Linux) and kept
|
|
123
133
|
in `~/.bullet`, separate from the app's own store.
|
|
124
134
|
|
|
135
|
+
Guest mode is a real, device-local account: its chats and usage are attributed
|
|
136
|
+
on the dashboard, but it has no email recovery. Use `bullet account upgrade` or
|
|
137
|
+
Settings → Account to add an email and password without losing that history.
|
|
138
|
+
|
|
125
139
|
In scripts, `-p` exits `0` when it answered, `1` when the turn errored, `130`
|
|
126
140
|
when you interrupted it, and `2` on bad arguments — so `bullet -p … || handle-it`
|
|
127
141
|
does what it looks like. stdout carries only the answer; routing notes and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trybullet/cli",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
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.4.
|
|
28
|
-
"@trybullet/cli-darwin-x64": "1.4.
|
|
29
|
-
"@trybullet/cli-linux-x64": "1.4.
|
|
30
|
-
"@trybullet/cli-linux-arm64": "1.4.
|
|
31
|
-
"@trybullet/cli-win32-x64": "1.4.
|
|
27
|
+
"@trybullet/cli-darwin-arm64": "1.4.3",
|
|
28
|
+
"@trybullet/cli-darwin-x64": "1.4.3",
|
|
29
|
+
"@trybullet/cli-linux-x64": "1.4.3",
|
|
30
|
+
"@trybullet/cli-linux-arm64": "1.4.3",
|
|
31
|
+
"@trybullet/cli-win32-x64": "1.4.3"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=18"
|