@trybullet/cli 1.4.11 → 1.4.13
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 +22 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -28,6 +28,21 @@ everything live. Connect a cloud provider or explicitly download the optional on
|
|
|
28
28
|
- **Tools:** read / write / edit / delete, `search_code`, `find_files`,
|
|
29
29
|
`run_command`, background processes, web search + fetch, and a real browser
|
|
30
30
|
(below). File tools reach any absolute path; commands run from the workspace.
|
|
31
|
+
- **Memory:** durable facts survive the session as one markdown file each, in
|
|
32
|
+
Claude Code's own on-disk format — kebab-case slug, `name`/`description`/
|
|
33
|
+
`metadata.type` frontmatter, `[[wiki links]]`, and a `MEMORY.md` index. That
|
|
34
|
+
is deliberate: Bullet reads the memories Claude Code already wrote for the
|
|
35
|
+
open folder (`~/.claude/projects/<folder>/memory`) plus Codex's consolidated
|
|
36
|
+
`~/.codex/memories` summary and scoped handbook (with its stage-one SQLite
|
|
37
|
+
store available during explicit import). Bullet's own files use the same
|
|
38
|
+
plain-Markdown building blocks and remain easy for either agent to import. The
|
|
39
|
+
index rides in the system prompt where it stays cacheable; memories matching
|
|
40
|
+
the current message are attached to that message instead, so recall never
|
|
41
|
+
invalidates the cached prefix. `remember` / `recall` / `forget` are tools the
|
|
42
|
+
agent calls itself. Bullet writes only in its own store
|
|
43
|
+
(`~/.bullet/memory`, shared by the app and the CLI) — another agent's files
|
|
44
|
+
are read-only until you ask for `/memory import`. Sub-agents may read memory
|
|
45
|
+
but not write it, and the 8K on-device model gets neither.
|
|
31
46
|
- **Remote SSH workspaces.** Open `user@host:/path/to/project` — from the
|
|
32
47
|
sidebar (**Connect over SSH…**) or `bullet -C user@host:/path` — and Bullet
|
|
33
48
|
works on that machine. Transport is your own `ssh` binary, so `~/.ssh/config`,
|
|
@@ -186,6 +201,11 @@ built-ins always win, so an import can't shadow `/undo`. Skills that depend on
|
|
|
186
201
|
external MCP servers still need those tools configured separately; importing a
|
|
187
202
|
skill does not make its MCP dependencies available in Bullet.
|
|
188
203
|
|
|
204
|
+
Memory works the same way. `/memory` lists what Bullet knows and where each
|
|
205
|
+
fact came from, `/memory show <n>` prints one in full, `/memory import` copies
|
|
206
|
+
Claude Code's and Codex's memories into Bullet's own store (originals untouched),
|
|
207
|
+
and `/memory forget <n>` deletes one Bullet owns.
|
|
208
|
+
|
|
189
209
|
MCP connections work in the CLI too. Import one already configured in Codex or
|
|
190
210
|
Claude Code, add any remote HTTP or local stdio server, then test it before use:
|
|
191
211
|
|
|
@@ -592,11 +612,12 @@ Apple Silicon only.
|
|
|
592
612
|
```
|
|
593
613
|
electron/ main.js (window/IPC) · preload.js · router.js (routing+context)
|
|
594
614
|
engine.js (local agent loop) · cloud.js (cloud loops) · tools.js
|
|
615
|
+
memory.js (cross-session facts, Claude Code's on-disk format)
|
|
595
616
|
src/ index.html · styles.css · app.js
|
|
596
617
|
cli/ bin.js · shim.js (fake `electron` for plain node) · main.js (repl)
|
|
597
618
|
session.js (host wiring) · render.js (events → transcript) · ui/
|
|
598
619
|
scripts/ icon/logo generators · ui-test.js / feature-test.js (offline suites)
|
|
599
|
-
cli-test.js (CLI suites) · classifier-eval.js
|
|
620
|
+
cli-test.js (CLI suites) · memory-test.js · classifier-eval.js
|
|
600
621
|
eval.js / swebench.js / polyglot.js (live evals)
|
|
601
622
|
BENCHMARK.md one-shot website benchmark vs Claude Code / Codex
|
|
602
623
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trybullet/cli",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.13",
|
|
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.
|
|
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.13",
|
|
28
|
+
"@trybullet/cli-darwin-x64": "1.4.13",
|
|
29
|
+
"@trybullet/cli-linux-x64": "1.4.13",
|
|
30
|
+
"@trybullet/cli-linux-arm64": "1.4.13",
|
|
31
|
+
"@trybullet/cli-win32-x64": "1.4.13"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=18"
|