@agentconnect.md/daemon 1.0.0-rc.30 → 1.0.0-rc.32
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/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -81515,7 +81515,10 @@ var Daemon = class {
|
|
|
81515
81515
|
knownRuntimes: Object.keys(this.runtimes),
|
|
81516
81516
|
warn: (m) => this.log.warn(m)
|
|
81517
81517
|
}, () => void this.reconcile().catch((err) => this.log.error(`cp: agent reconcile failed: ${err.stack ?? err}`)));
|
|
81518
|
-
for (const a of this.effectiveAgents())
|
|
81518
|
+
for (const a of this.effectiveAgents()) {
|
|
81519
|
+
this.agents.set(a.id, a);
|
|
81520
|
+
this.prefetchClone(a);
|
|
81521
|
+
}
|
|
81519
81522
|
this.mcp = new McpControlServer({
|
|
81520
81523
|
socketPath: mcpSocketPath(root),
|
|
81521
81524
|
log: this.log,
|