@lambdacurry/arbor 0.21.27 → 0.21.28
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 +9 -3
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -17281,6 +17281,11 @@ var appInvocationResponse = exports_external.object({
|
|
|
17281
17281
|
unsupportedReason: exports_external.enum(["binary_content_type", "invalid_utf8"]).optional(),
|
|
17282
17282
|
json: exports_external.json().optional()
|
|
17283
17283
|
});
|
|
17284
|
+
var appFetchResponse = appInvocationResponse.extend({
|
|
17285
|
+
offset: exports_external.number().int().min(0).max(25 * 1024 * 1024),
|
|
17286
|
+
nextOffset: exports_external.number().int().min(1).max(25 * 1024 * 1024).nullable(),
|
|
17287
|
+
continuationLimitReached: exports_external.boolean()
|
|
17288
|
+
});
|
|
17284
17289
|
var spaceRef = exports_external.looseObject({ id, title: nullableString });
|
|
17285
17290
|
var recallHit = exports_external.looseObject({
|
|
17286
17291
|
id,
|
|
@@ -18301,7 +18306,7 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18301
18306
|
bundle: jsonObject,
|
|
18302
18307
|
configurationReadiness: jsonObject
|
|
18303
18308
|
}),
|
|
18304
|
-
app_fetch:
|
|
18309
|
+
app_fetch: appFetchResponse,
|
|
18305
18310
|
app_request: appInvocationResponse,
|
|
18306
18311
|
app_create: app2,
|
|
18307
18312
|
app_config_apply: exports_external.object({ appId: id, dryRun: exports_external.boolean(), changes: exports_external.array(jsonObject) }),
|
|
@@ -21386,11 +21391,12 @@ var ACTION_DEFINITIONS = [
|
|
|
21386
21391
|
{
|
|
21387
21392
|
name: "app_fetch",
|
|
21388
21393
|
title: "Fetch from an App",
|
|
21389
|
-
description: "Invoke GET or HEAD on one relative path of an App using your current Arbor identity;
|
|
21394
|
+
description: "Invoke GET or HEAD on one relative path of an App using your current Arbor identity; a GET may continue text with nextOffset until continuationLimitReached marks the 25 MiB terminal ceiling. Each response remains capped at 64 KiB; current Space membership is rechecked on every call, and browser grants, credentials, and reserved /__arbor paths never reach App code.",
|
|
21390
21395
|
inputSchema: {
|
|
21391
21396
|
appId: exports_external.string().describe("target App, app_…"),
|
|
21392
21397
|
path: exports_external.string().min(1).max(2048).describe("relative App path beginning with /; may include a query string"),
|
|
21393
|
-
method: exports_external.enum(["GET", "HEAD"]).optional().describe("safe read method; default GET")
|
|
21398
|
+
method: exports_external.enum(["GET", "HEAD"]).optional().describe("safe read method; default GET"),
|
|
21399
|
+
offset: exports_external.number().int().min(0).max(25 * 1024 * 1024).optional().describe("GET response byte offset; use the prior result's nextOffset to continue")
|
|
21394
21400
|
},
|
|
21395
21401
|
surfaces: ["computer-mcp", "cli"],
|
|
21396
21402
|
toolset: "apps",
|
package/package.json
CHANGED