@bulletproof-sh/ctrl-daemon 0.0.4 → 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 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
 
@@ -40,11 +40,9 @@ The [Ctrl web app](https://ctrl.bulletproof.sh) connects here by default. You ca
40
40
 
41
41
  | Variable | Description |
42
42
  |---|---|
43
- | `VITE_PUBLIC_POSTHOG_KEY` | PostHog API key for analytics (optional) |
44
- | `VITE_PUBLIC_POSTHOG_HOST` | PostHog host (default: `https://us.i.posthog.com`) |
45
43
  | `CLAUDE_HOME` | Override the Claude home directory (default: `~/.claude`) |
46
44
 
47
- Analytics are disabled when `VITE_PUBLIC_POSTHOG_KEY` is not set. Crash reports use PostHog Error Tracking (free feature).
45
+ Crash reports use PostHog analytics.
48
46
 
49
47
  ## Auto-update
50
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.4",
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": "MIT",
6
+ "license": "BUSL-1.1",
7
7
  "bin": {
8
8
  "ctrl-daemon": "bin/ctrl-daemon.js"
9
9
  },