@bulletproof-sh/ctrl-daemon 0.2.0-alpha.1 → 0.2.0-alpha.11
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 +4 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -23,6 +23,9 @@ npx @bulletproof-sh/ctrl-daemon --animation starfield
|
|
|
23
23
|
|
|
24
24
|
# Disable the TUI (plain text output)
|
|
25
25
|
npx @bulletproof-sh/ctrl-daemon --no-tui
|
|
26
|
+
|
|
27
|
+
# Don't auto-open the browser
|
|
28
|
+
npx @bulletproof-sh/ctrl-daemon --no-open
|
|
26
29
|
```
|
|
27
30
|
|
|
28
31
|
### Options
|
|
@@ -35,6 +38,7 @@ npx @bulletproof-sh/ctrl-daemon --no-tui
|
|
|
35
38
|
| `--idle-timeout <minutes>` | `15` | Agent idle timeout in minutes |
|
|
36
39
|
| `--animation, -a <name>` | `random` | Background animation: matrix, starfield, aurora, fireflies, life, pipes, dvd, starwars, none |
|
|
37
40
|
| `--no-tui` | — | Disable TUI (also auto-disabled when not a TTY) |
|
|
41
|
+
| `--no-open` | — | Don't auto-open the browser on startup |
|
|
38
42
|
| `--help`, `-h` | — | Print usage |
|
|
39
43
|
|
|
40
44
|
Without `--project-dir`, the daemon auto-discovers all installed AI coding tools and watches their session directories.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bulletproof-sh/ctrl-daemon",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.11",
|
|
4
4
|
"description": "WebSocket daemon for ctrl — watches Claude Code sessions and broadcasts agent state",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BUSL-1.1",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"vitest": "^4.0.18"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@bulletproof-sh/ctrl-daemon-darwin-arm64": "0.2.0-alpha.
|
|
31
|
-
"@bulletproof-sh/ctrl-daemon-darwin-x64": "0.2.0-alpha.
|
|
32
|
-
"@bulletproof-sh/ctrl-daemon-linux-arm64": "0.2.0-alpha.
|
|
33
|
-
"@bulletproof-sh/ctrl-daemon-linux-x64": "0.2.0-alpha.
|
|
34
|
-
"@bulletproof-sh/ctrl-daemon-windows-x64": "0.2.0-alpha.
|
|
30
|
+
"@bulletproof-sh/ctrl-daemon-darwin-arm64": "0.2.0-alpha.11",
|
|
31
|
+
"@bulletproof-sh/ctrl-daemon-darwin-x64": "0.2.0-alpha.11",
|
|
32
|
+
"@bulletproof-sh/ctrl-daemon-linux-arm64": "0.2.0-alpha.11",
|
|
33
|
+
"@bulletproof-sh/ctrl-daemon-linux-x64": "0.2.0-alpha.11",
|
|
34
|
+
"@bulletproof-sh/ctrl-daemon-windows-x64": "0.2.0-alpha.11"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"posthog-node": "^5.26.0"
|