@lambdacurry/arbor 0.16.2 → 0.16.3
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 +1 -1
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18052,7 +18052,7 @@ var ACTION_DEFINITIONS = [
|
|
|
18052
18052
|
{
|
|
18053
18053
|
name: "computer_exec",
|
|
18054
18054
|
title: "Run a command",
|
|
18055
|
-
description: "Run one bounded logical operation in an opened Thread computer. Omitting cwd runs from the Computer's defaultCwd — the one materialized checkout when the recipe has exactly one repository, otherwise the workspace root — and the receipt echoes the cwd it ran in; pass cwd explicitly to override it. Strict Bash semantics are ON by default: an early command failure or failed pipeline makes the execution nonzero, while explicit handling such as `cmd || fallback` still works. Set strict=false only for an intentional best-effort script. Use background only for the container backend; worker-shell deliberately serializes mutations and rejects long-lived processes.",
|
|
18055
|
+
description: "Run one bounded logical operation in an opened Thread computer. Omitting cwd runs from the Computer's defaultCwd — the one materialized checkout when the recipe has exactly one repository, otherwise the workspace root — and the receipt echoes the cwd it ran in; pass cwd explicitly to override it. Strict Bash semantics are ON by default: an early command failure or failed pipeline makes the execution nonzero, while explicit handling such as `cmd || fallback` still works. Set strict=false only for an intentional best-effort script. For a connected human working inside a configured repository, Arbor supplies that human’s GitHub-linked author/committer identity ephemerally for the exec without writing it into the workspace; command-local Git environment overrides may still replace it. Use background only for the container backend; worker-shell deliberately serializes mutations and rejects long-lived processes.",
|
|
18056
18056
|
inputSchema: {
|
|
18057
18057
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
18058
18058
|
command: exports_external.string().min(1).describe("the shell command to run"),
|
package/package.json
CHANGED