@lightcone-ai/daemon 0.7.1 → 0.7.2

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.7.1",
3
+ "version": "0.7.2",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -339,8 +339,8 @@ export class AgentManager {
339
339
  }
340
340
 
341
341
  const text = this._formatDeliveryText(message);
342
- console.log(`[AgentManager] Delivering seq=${seq} to agent ${agent?.config?.displayName ?? agentId.slice(0,8)} team=${message.team_name ?? teamId}`);
343
342
  const agent = this.agents.get(key);
343
+ console.log(`[AgentManager] Delivering seq=${seq} to agent ${agent?.config?.displayName ?? agentId.slice(0,8)} team=${message.team_name ?? teamId}`);
344
344
  if (agent?.runtime === 'codex') {
345
345
  if (!this._pendingMessages) this._pendingMessages = new Map();
346
346
  const pending = this._pendingMessages.get(key) ?? [];