@kendoo.agentdesk/agentdesk 0.7.3 → 0.7.4

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/cli/daemon.mjs +2 -1
  2. package/package.json +1 -1
package/cli/daemon.mjs CHANGED
@@ -236,7 +236,8 @@ export async function runDaemon() {
236
236
  ws = new WebSocket(DAEMON_URL);
237
237
 
238
238
  ws.on("open", () => {
239
- send({ type: "auth", apiKey });
239
+ // Send auth directly — send() requires connected=true which isn't set yet
240
+ ws.send(JSON.stringify({ type: "auth", apiKey }));
240
241
  });
241
242
 
242
243
  ws.on("message", (raw) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {