@bulletproof-sh/ctrl-daemon 0.0.5 → 0.0.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 +2 -2
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @bulletproof-sh/ctrl-daemon
|
|
2
2
|
|
|
3
|
-
WebSocket daemon for [Ctrl / Cubicles](https://bulletproof.sh) — watches Claude Code sessions on disk and broadcasts live agent state to connected web clients.
|
|
3
|
+
WebSocket daemon for [Ctrl / Cubicles](https://ctrl.bulletproof.sh) — watches Claude Code sessions on disk and broadcasts live agent state to connected web clients.
|
|
4
4
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
@@ -42,7 +42,7 @@ The [Ctrl web app](https://ctrl.bulletproof.sh) connects here by default. You ca
|
|
|
42
42
|
|---|---|
|
|
43
43
|
| `CLAUDE_HOME` | Override the Claude home directory (default: `~/.claude`) |
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
Crash reports use PostHog analytics.
|
|
46
46
|
|
|
47
47
|
## Auto-update
|
|
48
48
|
|
package/dist/index.js
CHANGED
|
@@ -4952,6 +4952,7 @@ async function main() {
|
|
|
4952
4952
|
});
|
|
4953
4953
|
const { projectDir, port, host } = parseArgs();
|
|
4954
4954
|
const claudeHome = process.env.CLAUDE_HOME;
|
|
4955
|
+
console.log("[ctrl-daemon] Contribute or report issues: https://github.com/bulletproof-sh/ctrl");
|
|
4955
4956
|
let scanDirs;
|
|
4956
4957
|
if (projectDir) {
|
|
4957
4958
|
const dir = resolveProjectDir(projectDir, claudeHome);
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bulletproof-sh/ctrl-daemon",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "WebSocket daemon for ctrl — watches Claude Code sessions and broadcasts agent state",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "BUSL-1.1",
|
|
7
7
|
"bin": {
|
|
8
8
|
"ctrl-daemon": "bin/ctrl-daemon.js"
|
|
9
9
|
},
|