@clawos-dev/clawd 0.2.216 → 0.2.217-beta.428.894efa9

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/dist/cli.cjs +4 -4
  2. package/package.json +1 -1
package/dist/cli.cjs CHANGED
@@ -59256,10 +59256,10 @@ async function startDaemon(config) {
59256
59256
  import_node_path64.default.join(here, "..", "dist", "ticket", "mcp-server.cjs")
59257
59257
  ];
59258
59258
  const ticketServerScriptPath = ticketServerCandidates.find((p2) => import_node_fs51.default.existsSync(p2));
59259
- const ticketCallerDid = feishuIdentity?.identity.unionId ?? "";
59260
- const ticketCallerName = feishuIdentity?.identity.displayName ?? "";
59259
+ const ticketCallerDid = authFile.deviceId;
59260
+ const ticketCallerName = ownerDisplayName;
59261
59261
  let ticketMcpConfigPath2;
59262
- if (ticketServerScriptPath && ticketCallerDid) {
59262
+ if (ticketServerScriptPath) {
59263
59263
  const ticketLogPath = import_node_path64.default.join(config.dataDir, "ticket-mcp-server.log");
59264
59264
  ticketMcpConfigPath2 = writeTicketMcpConfig({
59265
59265
  dataDir: config.dataDir,
@@ -59277,7 +59277,7 @@ async function startDaemon(config) {
59277
59277
  });
59278
59278
  } else {
59279
59279
  logger.warn("ticket-mcp skipped", {
59280
- reason: !ticketCallerDid ? "caller did missing (login required)" : "ticket-mcp-server.cjs not found (need build)"
59280
+ reason: "ticket-mcp-server.cjs not found (need build)"
59281
59281
  });
59282
59282
  }
59283
59283
  const shiftServerCandidates = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawos-dev/clawd",
3
- "version": "0.2.216",
3
+ "version": "0.2.217-beta.428.894efa9",
4
4
  "description": "Standalone clawd daemon — Claude Code (and future Codex) session server over WebSocket",
5
5
  "type": "module",
6
6
  "license": "MIT",