@trybullet/cli 1.4.4 → 1.4.6
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 +28 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -127,10 +127,34 @@ built-ins always win, so an import can't shadow `/undo`. Skills that depend on
|
|
|
127
127
|
external MCP servers still need those tools configured separately; importing a
|
|
128
128
|
skill does not make its MCP dependencies available in Bullet.
|
|
129
129
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
130
|
+
MCP connections work in the CLI too. Import one already configured in Codex or
|
|
131
|
+
Claude Code, add any remote HTTP or local stdio server, then test it before use:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
bullet mcp list # connections and current status
|
|
135
|
+
bullet mcp import linear # import a discovered Codex/Claude connection
|
|
136
|
+
bullet mcp add my-api https://example.com/mcp
|
|
137
|
+
bullet mcp add local-tool -- npx -y @example/mcp-server
|
|
138
|
+
bullet mcp search datadog # includes registry IDs
|
|
139
|
+
bullet mcp install com.mcparmory/datadog # guided encrypted setup
|
|
140
|
+
bullet mcp configure datadog # update an existing connection
|
|
141
|
+
bullet mcp enable linear
|
|
142
|
+
bullet mcp login linear # browser OAuth when status is needs-auth
|
|
143
|
+
bullet mcp test linear # connect and list the tool count
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
Use `bullet mcp search <query>` to search the MCP Registry, `bullet mcp help`
|
|
147
|
+
for the complete command list, or `/mcp` for the same workflow inside an
|
|
148
|
+
interactive session. OAuth tokens and any values supplied with `--header` or
|
|
149
|
+
`--env` are encrypted in Bullet's credential store. `mcp install` and
|
|
150
|
+
`mcp configure` prompt for setup fields in an interactive terminal; scripts can
|
|
151
|
+
pass them explicitly, for example `bullet mcp configure datadog --env
|
|
152
|
+
API_KEY_AUTH=… --env APP_KEY_AUTH_API_KEY=…`.
|
|
153
|
+
|
|
154
|
+
Model-provider sign-in reuses whatever is already on the machine: an existing
|
|
155
|
+
Claude Code or Codex login is imported directly, no browser round-trip.
|
|
156
|
+
Credentials are encrypted with the OS keychain (macOS Keychain, `secret-tool`
|
|
157
|
+
on Linux) and kept in `~/.bullet`, separate from the app's own store.
|
|
134
158
|
|
|
135
159
|
Guest mode is a real, device-local account: its chats and usage are attributed
|
|
136
160
|
on the dashboard, but it has no email recovery. Use `bullet account upgrade` or
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trybullet/cli",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.6",
|
|
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
|
-
"homepage": "https://
|
|
6
|
+
"homepage": "https://codewithbullet.com",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/trybullet/bullet.git"
|
|
@@ -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.6",
|
|
28
|
+
"@trybullet/cli-darwin-x64": "1.4.6",
|
|
29
|
+
"@trybullet/cli-linux-x64": "1.4.6",
|
|
30
|
+
"@trybullet/cli-linux-arm64": "1.4.6",
|
|
31
|
+
"@trybullet/cli-win32-x64": "1.4.6"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=18"
|