@trybullet/cli 1.3.28 → 1.3.30

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 +61 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -100,6 +100,23 @@ Inside a session: `enter` sends, `ctrl+j` newlines, `esc` stops a running turn,
100
100
  `tab` completes `/commands` and `@files`, `↑` walks history. `/help` lists the
101
101
  rest — `/model`, `/cost`, `/diff`, `/undo`, `/resume`, `/agents`.
102
102
 
103
+ Skills come across from Claude Code and Codex without the desktop app:
104
+
105
+ ```bash
106
+ bullet skills import # review what's in ~/.claude and ~/.codex, tick what you want
107
+ bullet skills import ./team-kit # scan another folder too
108
+ bullet skills import --all # no review — for scripted setups
109
+ bullet skills export kit.json # move your reviewed skills to another machine
110
+ ```
111
+
112
+ `SKILL.md` files, `commands/*.md` (including nested `/review:pr`), `agents/*.md`
113
+ and `CLAUDE.md` are all recognised, and nothing is stored until you select it.
114
+ `/skills` does the same thing inside a session, plus `enable`, `disable` and
115
+ `remove`. Imported commands then run as slash commands and complete on `tab`;
116
+ built-ins always win, so an import can't shadow `/undo`. Skills that depend on
117
+ external MCP servers still need those tools configured separately; importing a
118
+ skill does not make its MCP dependencies available in Bullet.
119
+
103
120
  Sign-in reuses whatever is already on the machine: an existing Claude Code or
104
121
  Codex login is imported directly, no browser round-trip. Credentials are
105
122
  encrypted with the OS keychain (macOS Keychain, `secret-tool` on Linux) and kept
@@ -216,10 +233,53 @@ release. No Windows signing secrets are required by the release workflow.
216
233
  The on-device model is currently disabled on Windows; subscriptions and API
217
234
  keys work normally.
218
235
 
236
+ ### Disposable test installers and cloud desktops
237
+
238
+ The **Test installers** workflow builds an unsigned Apple Silicon DMG, Windows
239
+ NSIS installer, Linux AppImage, and Ubuntu/Debian `.deb` without publishing any
240
+ of them:
241
+
242
+ ```bash
243
+ npm run test:installers
244
+ ```
245
+
246
+ Download the three seven-day artifacts from the workflow run in GitHub Actions.
247
+ They are suitable for Google Drive and manual testing. macOS requires
248
+ right-clicking the app and choosing **Open** because the test DMG is unsigned;
249
+ Windows shows **Unknown publisher** by design. On Ubuntu, use the `.deb`; use the
250
+ AppImage for other compatible x64 distributions.
251
+
252
+ Disposable Windows 11 Pro x64 and Ubuntu 24.04 x64 Azure desktops can be
253
+ created and removed from a machine where Azure CLI is logged in:
254
+
255
+ ```bash
256
+ npm run test:vm:up # create Windows; print RDP credentials
257
+ npm run test:vm:down # delete the Windows resource group
258
+ npm run test:linux-vm:up # create Ubuntu Desktop; print RDP credentials
259
+ npm run test:linux-vm:down # delete the Linux resource group
260
+ ```
261
+
262
+ Linux is based on Canonical's official Ubuntu 24.04 server image, with the
263
+ minimal GNOME desktop and xrdp installed automatically. Use Microsoft Windows
264
+ App for either desktop. On Ubuntu, download and install the `.deb` artifact;
265
+ that is the recommended package and exercises Chromium sandbox setup too.
266
+
267
+ Creation permits RDP only from the caller's current public IP and enables a UTC
268
+ auto-shutdown (`0100` by default). Override settings when needed, for example:
269
+
270
+ ```bash
271
+ BULLET_TEST_VM_SHUTDOWN=2330 BULLET_TEST_VM_LOCATION=eastus npm run test:vm:up
272
+ BULLET_LINUX_TEST_VM_SHUTDOWN=2330 npm run test:linux-vm:up
273
+ ```
274
+
275
+ Auto-shutdown deallocates compute but does not delete storage; always run the
276
+ matching `down` command after testing. The Windows and Linux desktops use
277
+ separate resource groups and can exist at the same time.
278
+
219
279
  ## Releasing
220
280
 
221
281
  Installed copies update themselves: the app checks
222
- `https://api.davidhf.com/bullet/v1/updates/mac/latest-mac.yml` on launch and
282
+ `https://api.codewithbullet.com/bullet/v1/updates/mac/latest-mac.yml` on launch and
223
283
  every six hours, downloads in the background, and installs on quit (Settings ›
224
284
  Updates has a manual check and a *Restart to update* button). Nobody has to
225
285
  delete and reinstall.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trybullet/cli",
3
- "version": "1.3.28",
3
+ "version": "1.3.30",
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.28",
28
- "@trybullet/cli-darwin-x64": "1.3.28",
29
- "@trybullet/cli-linux-x64": "1.3.28",
30
- "@trybullet/cli-linux-arm64": "1.3.28",
31
- "@trybullet/cli-win32-x64": "1.3.28"
27
+ "@trybullet/cli-darwin-arm64": "1.3.30",
28
+ "@trybullet/cli-darwin-x64": "1.3.30",
29
+ "@trybullet/cli-linux-x64": "1.3.30",
30
+ "@trybullet/cli-linux-arm64": "1.3.30",
31
+ "@trybullet/cli-win32-x64": "1.3.30"
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=18"