@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 +1 -1
- package/src/agent-manager.js +1 -1
package/package.json
CHANGED
package/src/agent-manager.js
CHANGED
|
@@ -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) ?? [];
|