@agent-relay/dashboard-server 2.0.48 → 2.0.49

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 (56) hide show
  1. package/dist/server.js +3 -19
  2. package/dist/server.js.map +1 -1
  3. package/dist/start.js +33 -2
  4. package/dist/start.js.map +1 -1
  5. package/out/404.html +1 -1
  6. package/out/about.html +1 -1
  7. package/out/about.txt +1 -1
  8. package/out/app/onboarding.html +1 -1
  9. package/out/app/onboarding.txt +1 -1
  10. package/out/app.html +1 -1
  11. package/out/app.txt +1 -1
  12. package/out/blog.html +1 -1
  13. package/out/blog.txt +1 -1
  14. package/out/careers.html +1 -1
  15. package/out/careers.txt +1 -1
  16. package/out/changelog.html +1 -1
  17. package/out/changelog.txt +1 -1
  18. package/out/cloud/link.html +1 -1
  19. package/out/cloud/link.txt +1 -1
  20. package/out/complete-profile.html +1 -1
  21. package/out/complete-profile.txt +1 -1
  22. package/out/connect-repos.html +1 -1
  23. package/out/connect-repos.txt +1 -1
  24. package/out/contact.html +1 -1
  25. package/out/contact.txt +1 -1
  26. package/out/docs.html +1 -1
  27. package/out/docs.txt +1 -1
  28. package/out/history.html +1 -1
  29. package/out/history.txt +1 -1
  30. package/out/index.html +1 -1
  31. package/out/index.txt +1 -1
  32. package/out/login.html +1 -1
  33. package/out/login.txt +1 -1
  34. package/out/metrics.html +1 -1
  35. package/out/metrics.txt +1 -1
  36. package/out/pricing.html +1 -1
  37. package/out/pricing.txt +1 -1
  38. package/out/privacy.html +1 -1
  39. package/out/privacy.txt +1 -1
  40. package/out/providers/setup/claude.html +1 -1
  41. package/out/providers/setup/claude.txt +1 -1
  42. package/out/providers/setup/codex.html +1 -1
  43. package/out/providers/setup/codex.txt +1 -1
  44. package/out/providers/setup/cursor.html +1 -1
  45. package/out/providers/setup/cursor.txt +1 -1
  46. package/out/providers.html +1 -1
  47. package/out/providers.txt +1 -1
  48. package/out/security.html +1 -1
  49. package/out/security.txt +1 -1
  50. package/out/signup.html +1 -1
  51. package/out/signup.txt +1 -1
  52. package/out/terms.html +1 -1
  53. package/out/terms.txt +1 -1
  54. package/package.json +10 -10
  55. /package/out/_next/static/{HwEoE2BFhgZdESAQLY9dG → SfyoLSw2xdXgcKQ_dT07o}/_buildManifest.js +0 -0
  56. /package/out/_next/static/{HwEoE2BFhgZdESAQLY9dG → SfyoLSw2xdXgcKQ_dT07o}/_ssgManifest.js +0 -0
package/dist/server.js CHANGED
@@ -1194,6 +1194,9 @@ export async function startDashboard(portOrOptions, dataDirArg, teamDirArg, dbPa
1194
1194
  }
1195
1195
  const hasMessageData = Object.keys(messageData).length > 0;
1196
1196
  // Send to all targets (single agent, team members, or broadcast)
1197
+ // Note: We do NOT persist outgoing messages here because the relay daemon
1198
+ // already persists them when delivered (in router.persistDeliverEnvelope).
1199
+ // Persisting here would cause duplicate messages in storage.
1197
1200
  let allSent = true;
1198
1201
  for (const target of targets) {
1199
1202
  const sent = relayClient.sendMessage(target, message, 'message', hasMessageData ? messageData : undefined, thread);
@@ -1201,25 +1204,6 @@ export async function startDashboard(portOrOptions, dataDirArg, teamDirArg, dbPa
1201
1204
  allSent = false;
1202
1205
  console.error(`[dashboard] Failed to send message to ${target}`);
1203
1206
  }
1204
- else if (storage) {
1205
- // Persist outgoing message to storage so it survives page refresh
1206
- const messageId = `out-${crypto.randomUUID()}`;
1207
- storage.saveMessage({
1208
- id: messageId,
1209
- ts: Date.now(),
1210
- from: senderName || 'Dashboard',
1211
- to: target,
1212
- topic: thread,
1213
- kind: 'message',
1214
- body: message,
1215
- data: hasMessageData ? messageData : undefined,
1216
- status: 'read', // Outgoing messages are already "read" by sender
1217
- is_urgent: false,
1218
- is_broadcast: isBroadcast,
1219
- }).catch((err) => {
1220
- console.error('[dashboard] Failed to persist outgoing message', err);
1221
- });
1222
- }
1223
1207
  }
1224
1208
  if (allSent) {
1225
1209
  // Broadcast updated data to all connected clients so they see the sent message