@lambdacurry/arbor 0.12.2 → 0.12.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 +3 -2
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -16567,11 +16567,12 @@ var ACTIONS = [
|
|
|
16567
16567
|
{
|
|
16568
16568
|
name: "computer_write",
|
|
16569
16569
|
title: "Write a project file",
|
|
16570
|
-
description: "Write one file under /workspace. Prefer normal editing tools for code changes; reach for this when the MCP/CLI computer surface is the only filesystem path.",
|
|
16570
|
+
description: "Write one file under /workspace. Content is UTF-8 by default; pass encoding=base64 only for binary bytes. Prefer normal editing tools for code changes; reach for this when the MCP/CLI computer surface is the only filesystem path.",
|
|
16571
16571
|
inputSchema: {
|
|
16572
16572
|
computerSessionId: exports_external.string().describe("the computerSessionId returned by computer_open, cms_…"),
|
|
16573
16573
|
path: exports_external.string().describe("absolute path under /workspace"),
|
|
16574
|
-
content: exports_external.string().describe("complete UTF-8
|
|
16574
|
+
content: exports_external.string().describe("complete UTF-8 content, or base64 bytes when encoding=base64"),
|
|
16575
|
+
encoding: exports_external.enum(["utf8", "base64"]).optional().describe("content encoding; defaults to utf8, use base64 for binary files")
|
|
16575
16576
|
},
|
|
16576
16577
|
surfaces: ["computer-mcp", "computer-cli"],
|
|
16577
16578
|
toolset: "loop",
|
package/package.json
CHANGED