惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
U
Unit 42
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
腾讯CDC
I
InfoQ
GbyAI
GbyAI
博客园_首页

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
refactor: share file transfer node invoke handling · open...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main

@@ -2,30 +2,18 @@ import { spawn } from "node:child_process";

22

import crypto from "node:crypto";

33

import fs from "node:fs/promises";

44

import path from "node:path";

5-

import {

6-

callGatewayTool,

7-

listNodes,

8-

resolveNodeIdFromList,

9-

type AnyAgentTool,

10-

type NodeListNode,

11-

} from "openclaw/plugin-sdk/agent-harness-runtime";

5+

import { type AnyAgentTool } from "openclaw/plugin-sdk/agent-harness-runtime";

126

import { saveMediaBuffer } from "openclaw/plugin-sdk/media-store";

137

import { appendFileTransferAudit } from "../shared/audit.js";

14-

import { throwFromNodePayload } from "../shared/errors.js";

158

import { IMAGE_MIME_INLINE_SET, mimeFromExtension } from "../shared/mime.js";

16-

import {

17-

humanSize,

18-

readBoolean,

19-

readClampedInt,

20-

readGatewayCallOptions,

21-

readTrimmedString,

22-

} from "../shared/params.js";

9+

import { humanSize, readBoolean, readClampedInt } from "../shared/params.js";

2310

import {

2411

DIR_FETCH_DEFAULT_MAX_BYTES,

2512

DIR_FETCH_HARD_MAX_BYTES,

2613

DIR_FETCH_TOOL_DESCRIPTOR,

2714

FILE_TRANSFER_SUBDIR,

2815

} from "./descriptors.js";

16+

import { invokeNodeToolPayload, readRequiredNodePath } from "./node-tool-invoke.js";

29173018

// Cap how many local file paths we surface in details.media.mediaUrls.

3119

// Larger trees still land on disk but we don't spam the channel adapter

@@ -478,14 +466,7 @@ export function createDirFetchTool(): AnyAgentTool {

478466

...DIR_FETCH_TOOL_DESCRIPTOR,

479467

execute: async (_toolCallId, args) => {

480468

const params = args as Record<string, unknown>;

481-

const node = readTrimmedString(params, "node");

482-

const dirPath = readTrimmedString(params, "path");

483-

if (!node) {

484-

throw new Error("node required");

485-

}

486-

if (!dirPath) {

487-

throw new Error("path required");

488-

}

469+

const { node, requestedPath: dirPath } = readRequiredNodePath(params);

489470490471

const maxBytes = readClampedInt({

491472

input: params,

@@ -496,56 +477,18 @@ export function createDirFetchTool(): AnyAgentTool {

496477

});

497478

const includeDotfiles = readBoolean(params, "includeDotfiles", false);

498479499-

const gatewayOpts = readGatewayCallOptions(params);

500-

const nodes: NodeListNode[] = await listNodes(gatewayOpts);

501-

const nodeId = resolveNodeIdFromList(nodes, node, false);

502-

const nodeMeta = nodes.find((n) => n.nodeId === nodeId);

503-

const nodeDisplayName = nodeMeta?.displayName ?? node;

504-

const startedAt = Date.now();

505-506-

const raw = await callGatewayTool<{ payload: unknown }>("node.invoke", gatewayOpts, {

507-

nodeId,

480+

const { nodeId, nodeDisplayName, payload, startedAt } = await invokeNodeToolPayload({

481+

node,

482+

params,

508483

command: "dir.fetch",

509-

params: {

484+

commandParams: {

510485

path: dirPath,

511486

maxBytes,

512487

includeDotfiles,

513488

},

514-

idempotencyKey: crypto.randomUUID(),

489+

requestedPath: dirPath,

515490

});

516491517-

const payload =

518-

raw?.payload && typeof raw.payload === "object" && !Array.isArray(raw.payload)

519-

? (raw.payload as Record<string, unknown>)

520-

: null;

521-

if (!payload) {

522-

await appendFileTransferAudit({

523-

op: "dir.fetch",

524-

nodeId,

525-

nodeDisplayName,

526-

requestedPath: dirPath,

527-

decision: "error",

528-

errorMessage: "invalid payload",

529-

durationMs: Date.now() - startedAt,

530-

});

531-

throw new Error("invalid dir.fetch payload");

532-

}

533-

if (payload.ok === false) {

534-

await appendFileTransferAudit({

535-

op: "dir.fetch",

536-

nodeId,

537-

nodeDisplayName,

538-

requestedPath: dirPath,

539-

canonicalPath:

540-

typeof payload.canonicalPath === "string" ? payload.canonicalPath : undefined,

541-

decision: "error",

542-

errorCode: typeof payload.code === "string" ? payload.code : undefined,

543-

errorMessage: typeof payload.message === "string" ? payload.message : undefined,

544-

durationMs: Date.now() - startedAt,

545-

});

546-

throwFromNodePayload("dir.fetch", payload);

547-

}

548-549492

const canonicalPath = typeof payload.path === "string" ? payload.path : "";

550493

const tarBase64 = typeof payload.tarBase64 === "string" ? payload.tarBase64 : "";

551494

const tarBytes = typeof payload.tarBytes === "number" ? payload.tarBytes : -1;