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

推荐订阅源

J
Java Code Geeks
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
量子位
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net
B
Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
H
Help Net Security
The Cloudflare Blog
U
Unit 42

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: trim file transfer helper exports · openclaw/op...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

File tree

  • extensions/file-transfer/src

    • node-host

    • shared

Original file line numberDiff line numberDiff line change

@@ -3,18 +3,18 @@ import crypto from "node:crypto";

33

import fs from "node:fs/promises";

44

import path from "node:path";

55
6-

export const DIR_FETCH_HARD_MAX_BYTES = 16 * 1024 * 1024;

7-

export const DIR_FETCH_DEFAULT_MAX_BYTES = 8 * 1024 * 1024;

6+

const DIR_FETCH_HARD_MAX_BYTES = 16 * 1024 * 1024;

7+

const DIR_FETCH_DEFAULT_MAX_BYTES = 8 * 1024 * 1024;

88
9-

export type DirFetchParams = {

9+

type DirFetchParams = {

1010

path?: unknown;

1111

maxBytes?: unknown;

1212

includeDotfiles?: unknown;

1313

followSymlinks?: unknown;

1414

preflightOnly?: unknown;

1515

};

1616
17-

export type DirFetchOk = {

17+

type DirFetchOk = {

1818

ok: true;

1919

path: string;

2020

tarBase64: string;

@@ -25,22 +25,22 @@ export type DirFetchOk = {

2525

preflightOnly?: boolean;

2626

};

2727
28-

export type DirFetchErrCode =

28+

type DirFetchErrCode =

2929

| "INVALID_PATH"

3030

| "NOT_FOUND"

3131

| "IS_FILE"

3232

| "TREE_TOO_LARGE"

3333

| "SYMLINK_REDIRECT"

3434

| "READ_ERROR";

3535
36-

export type DirFetchErr = {

36+

type DirFetchErr = {

3737

ok: false;

3838

code: DirFetchErrCode;

3939

message: string;

4040

canonicalPath?: string;

4141

};

4242
43-

export type DirFetchResult = DirFetchOk | DirFetchErr;

43+

type DirFetchResult = DirFetchOk | DirFetchErr;

4444
4545

function clampMaxBytes(input: unknown): number {

4646

if (typeof input !== "number" || !Number.isFinite(input) || input <= 0) {

Original file line numberDiff line numberDiff line change

@@ -5,14 +5,14 @@ import { mimeFromExtension } from "../shared/mime.js";

55

export const DIR_LIST_DEFAULT_MAX_ENTRIES = 200;

66

export const DIR_LIST_HARD_MAX_ENTRIES = 5000;

77
8-

export type DirListParams = {

8+

type DirListParams = {

99

path?: unknown;

1010

pageToken?: unknown;

1111

maxEntries?: unknown;

1212

followSymlinks?: unknown;

1313

};

1414
15-

export type DirListEntry = {

15+

type DirListEntry = {

1616

name: string;

1717

path: string;

1818

size: number;

@@ -21,30 +21,30 @@ export type DirListEntry = {

2121

mtime: number;

2222

};

2323
24-

export type DirListOk = {

24+

type DirListOk = {

2525

ok: true;

2626

path: string;

2727

entries: DirListEntry[];

2828

nextPageToken?: string;

2929

truncated: boolean;

3030

};

3131
32-

export type DirListErrCode =

32+

type DirListErrCode =

3333

| "INVALID_PATH"

3434

| "NOT_FOUND"

3535

| "PERMISSION_DENIED"

3636

| "IS_FILE"

3737

| "SYMLINK_REDIRECT"

3838

| "READ_ERROR";

3939
40-

export type DirListErr = {

40+

type DirListErr = {

4141

ok: false;

4242

code: DirListErrCode;

4343

message: string;

4444

canonicalPath?: string;

4545

};

4646
47-

export type DirListResult = DirListOk | DirListErr;

47+

type DirListResult = DirListOk | DirListErr;

4848
4949

function clampMaxEntries(input: unknown): number {

5050

if (typeof input !== "number" || !Number.isFinite(input) || input <= 0) {

Original file line numberDiff line numberDiff line change

@@ -7,14 +7,14 @@ import { EXTENSION_MIME } from "../shared/mime.js";

77

export const FILE_FETCH_HARD_MAX_BYTES = 16 * 1024 * 1024;

88

export const FILE_FETCH_DEFAULT_MAX_BYTES = 8 * 1024 * 1024;

99
10-

export type FileFetchParams = {

10+

type FileFetchParams = {

1111

path?: unknown;

1212

maxBytes?: unknown;

1313

followSymlinks?: unknown;

1414

preflightOnly?: unknown;

1515

};

1616
17-

export type FileFetchOk = {

17+

type FileFetchOk = {

1818

ok: true;

1919

path: string;

2020

size: number;

@@ -24,7 +24,7 @@ export type FileFetchOk = {

2424

preflightOnly?: boolean;

2525

};

2626
27-

export type FileFetchErrCode =

27+

type FileFetchErrCode =

2828

| "INVALID_PATH"

2929

| "NOT_FOUND"

3030

| "PERMISSION_DENIED"

@@ -34,14 +34,14 @@ export type FileFetchErrCode =

3434

| "SYMLINK_REDIRECT"

3535

| "READ_ERROR";

3636
37-

export type FileFetchErr = {

37+

type FileFetchErr = {

3838

ok: false;

3939

code: FileFetchErrCode;

4040

message: string;

4141

canonicalPath?: string;

4242

};

4343
44-

export type FileFetchResult = FileFetchOk | FileFetchErr;

44+

type FileFetchResult = FileFetchOk | FileFetchErr;

4545
4646

function detectMimeType(filePath: string): string {

4747

if (process.platform !== "win32") {

Original file line numberDiff line numberDiff line change

@@ -14,7 +14,7 @@ import path from "node:path";

1414
1515

export type FileTransferAuditOp = "file.fetch" | "dir.list" | "dir.fetch" | "file.write";

1616
17-

export type FileTransferAuditDecision =

17+

type FileTransferAuditDecision =

1818

| "allowed"

1919

| "allowed:once"

2020

| "allowed:always"

@@ -25,7 +25,7 @@ export type FileTransferAuditDecision =

2525

| "denied:symlink_escape"

2626

| "error";

2727
28-

export type FileTransferAuditRecord = {

28+

type FileTransferAuditRecord = {

2929

timestamp: string;

3030

op: FileTransferAuditOp;

3131

nodeId: string;

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@

22

// Every tool returns the same { ok: false, code, message, canonicalPath? }

33

// shape so the model can reason about errors uniformly.

44
5-

export type FileTransferErrCode =

5+

type FileTransferErrCode =

66

// Path-shape errors (caller's fault)

77

| "INVALID_PATH"

88

| "INVALID_BASE64"

@@ -27,7 +27,7 @@ export type FileTransferErrCode =

2727

| "POLICY_DENIED"

2828

| "NO_POLICY";

2929
30-

export type FileTransferErr = {

30+

type FileTransferErr = {

3131

ok: false;

3232

code: FileTransferErrCode;

3333

message: string;

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

// Shared param-validation helpers used by all four agent tools.

22

// Goal: identical validation behavior + identical error shapes everywhere.

33
4-

export type GatewayCallOptions = {

4+

type GatewayCallOptions = {

55

gatewayUrl?: string;

66

gatewayToken?: string;

77

timeoutMs?: number;