@lambdacurry/arbor 0.21.53 → 0.21.54
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/arbor.js +2 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16,7 +16,7 @@ var __export = (target, all) => {
|
|
|
16
16
|
// package.json
|
|
17
17
|
var package_default = {
|
|
18
18
|
name: "@lambdacurry/arbor",
|
|
19
|
-
version: "0.21.
|
|
19
|
+
version: "0.21.54",
|
|
20
20
|
description: "The Arbor CLI — a shared workspace for people and agents. The human + headless-agent write path over Arbor's guarded operation surface.",
|
|
21
21
|
keywords: [
|
|
22
22
|
"agents",
|
|
@@ -22564,7 +22564,7 @@ async function waitForComputerExec(executor, input, value, ctx) {
|
|
|
22564
22564
|
const deadline = Date.now() + (typeof input.timeout === "number" && Number.isFinite(input.timeout) ? input.timeout : DEFAULT_PROCESS_DEADLINE_MS);
|
|
22565
22565
|
advise(`Process ${String(latest.processId)} is still running; polling computer_process_read.
|
|
22566
22566
|
`, ctx);
|
|
22567
|
-
while (isRunning(latest) && Date.now() < deadline) {
|
|
22567
|
+
while ((isRunning(latest) || latest.truncated === true) && Date.now() < deadline) {
|
|
22568
22568
|
await sleep(POLL_MS);
|
|
22569
22569
|
const read = record3(await processRead.run(executor, {
|
|
22570
22570
|
processId: latest.processId,
|
package/package.json
CHANGED