@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.
- package/dist/cli.cjs +4 -4
- 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 =
|
|
59260
|
-
const ticketCallerName =
|
|
59259
|
+
const ticketCallerDid = authFile.deviceId;
|
|
59260
|
+
const ticketCallerName = ownerDisplayName;
|
|
59261
59261
|
let ticketMcpConfigPath2;
|
|
59262
|
-
if (ticketServerScriptPath
|
|
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:
|
|
59280
|
+
reason: "ticket-mcp-server.cjs not found (need build)"
|
|
59281
59281
|
});
|
|
59282
59282
|
}
|
|
59283
59283
|
const shiftServerCandidates = [
|
package/package.json
CHANGED