@songsid/agend 2.1.2-beta.43 → 2.1.2-beta.45
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/backend/codex.js +1 -0
- package/dist/backend/codex.js.map +1 -1
- package/dist/cli.js +4 -1
- package/dist/cli.js.map +1 -1
- package/dist/config.js +1 -0
- package/dist/config.js.map +1 -1
- package/dist/daemon.d.ts +27 -0
- package/dist/daemon.js +80 -2
- package/dist/daemon.js.map +1 -1
- package/dist/fleet-manager.d.ts +10 -1
- package/dist/fleet-manager.js +82 -3
- package/dist/fleet-manager.js.map +1 -1
- package/dist/instance-lifecycle.d.ts +8 -0
- package/dist/instance-lifecycle.js +41 -4
- package/dist/instance-lifecycle.js.map +1 -1
- package/dist/outbound-handlers.d.ts +2 -0
- package/dist/outbound-handlers.js +60 -9
- package/dist/outbound-handlers.js.map +1 -1
- package/dist/types.d.ts +7 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -141,6 +141,13 @@ export interface InstanceConfig {
|
|
|
141
141
|
startup_timeout_ms?: number;
|
|
142
142
|
/** Agent communication mode: "mcp" (default) or "cli" (HTTP endpoint, no MCP server). */
|
|
143
143
|
agent_mode?: "mcp" | "cli";
|
|
144
|
+
/**
|
|
145
|
+
* When the instance's MCP server dies, restart the instance automatically to
|
|
146
|
+
* bring the tools back — waiting for an idle pane first so in-flight work is
|
|
147
|
+
* not interrupted (the session is resumed, not reset). Default: true.
|
|
148
|
+
* Set false to only notify, as before.
|
|
149
|
+
*/
|
|
150
|
+
mcp_auto_restart?: boolean;
|
|
144
151
|
/** Hang detector override for this instance. */
|
|
145
152
|
hang_detector?: HangDetectorConfig;
|
|
146
153
|
/** Logical terminal size. Defaults to 120x36; set enabled=false for 80x24 compatibility. */
|