chatroom-cli 1.53.4 → 1.53.6
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 -3
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -84200,7 +84200,8 @@ class AgentProcessManager {
|
|
|
84200
84200
|
agentHarness: harness,
|
|
84201
84201
|
model,
|
|
84202
84202
|
workingDir,
|
|
84203
|
-
reason: "platform.crash_recovery"
|
|
84203
|
+
reason: "platform.crash_recovery",
|
|
84204
|
+
wantResume: true
|
|
84204
84205
|
}).catch((err) => {
|
|
84205
84206
|
console.log(` ⚠️ Failed to restart agent: ${err.message}`);
|
|
84206
84207
|
this.deps.backend.mutation(api.machines.emitAgentStartFailed, {
|
|
@@ -84471,7 +84472,7 @@ class AgentProcessManager {
|
|
|
84471
84472
|
}
|
|
84472
84473
|
async doEnsureRunning(key, slot, opts) {
|
|
84473
84474
|
slot.state = "spawning";
|
|
84474
|
-
const wantResume = opts.wantResume
|
|
84475
|
+
const wantResume = opts.wantResume;
|
|
84475
84476
|
console.log(`[AgentProcessManager] harness start: role=${opts.role} harness=${opts.agentHarness} wantResume=${wantResume} reason=${opts.reason}`);
|
|
84476
84477
|
try {
|
|
84477
84478
|
const spawnCheck = this.deps.spawning.shouldAllowSpawn(opts.chatroomId, opts.reason, {
|
|
@@ -87447,4 +87448,4 @@ program2.hook("preAction", async (_thisCommand, actionCommand) => {
|
|
|
87447
87448
|
});
|
|
87448
87449
|
program2.parse();
|
|
87449
87450
|
|
|
87450
|
-
//# debugId=
|
|
87451
|
+
//# debugId=7A26252325ED086E64756E2164756E21
|