clay-server 2.20.1-beta.5 → 2.20.1-beta.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.
Files changed (2) hide show
  1. package/lib/daemon.js +3 -0
  2. package/package.json +1 -1
package/lib/daemon.js CHANGED
@@ -33,6 +33,7 @@ var usersModule = require("./users");
33
33
  var { scanWorktrees, createWorktree, removeWorktree, isWorktree } = require("./worktree");
34
34
  var mates = require("./mates");
35
35
 
36
+ var daemonVersion = require("../package.json").version;
36
37
  var configFile = process.env.CLAY_CONFIG || process.env.CLAUDE_RELAY_CONFIG || require("./config").configPath();
37
38
  var config;
38
39
 
@@ -42,6 +43,7 @@ try {
42
43
  console.error("[daemon] Failed to read config:", e.message);
43
44
  process.exit(1);
44
45
  }
46
+ console.log("[daemon] v" + daemonVersion + " PID " + process.pid + " config " + configFile);
45
47
 
46
48
  console.log("[daemon] Config: " + configFile);
47
49
  console.log("[daemon] Users: " + usersModule.USERS_FILE);
@@ -1025,6 +1027,7 @@ if (existingConfig && existingConfig.pid && existingConfig.pid !== process.pid)
1025
1027
  }
1026
1028
  }
1027
1029
  var ipc = createIPCServer(socketPath(), function (msg) {
1030
+ console.log("[daemon] IPC:", msg.cmd);
1028
1031
  switch (msg.cmd) {
1029
1032
  case "add_project": {
1030
1033
  if (!msg.path) return { ok: false, error: "missing path" };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clay-server",
3
- "version": "2.20.1-beta.5",
3
+ "version": "2.20.1-beta.6",
4
4
  "description": "Web UI for Claude Code. Any device. Push notifications.",
5
5
  "bin": {
6
6
  "clay-server": "./bin/cli.js",