@lightcone-ai/daemon 0.15.4 → 0.15.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightcone-ai/daemon",
3
- "version": "0.15.4",
3
+ "version": "0.15.5",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -392,7 +392,7 @@ export class AgentManager {
392
392
  if (!text || !message) return false;
393
393
  const target = this._formatDeliveryTarget(message);
394
394
  if (!target || target.includes('unknown')) return false;
395
- const url = `${this.serverUrl}/internal/${encodeURIComponent(agentId)}/send`;
395
+ const url = `${this.serverUrl}/internal/agent/${encodeURIComponent(agentId)}/send`;
396
396
  try {
397
397
  const res = await fetch(url, {
398
398
  method: 'POST',