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

推荐订阅源

The GitHub Blog
The GitHub Blog
Martin Fowler
Martin Fowler
Vercel News
Vercel News
U
Unit 42
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
MyScale Blog
MyScale Blog
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
N
Netflix TechBlog - Medium
GbyAI
GbyAI
F
Fortinet All Blogs
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
M
MIT News - Artificial intelligence
D
Docker
IT之家
IT之家
Stack Overflow Blog
Stack Overflow Blog

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
fix(telegram): bound proof command output · openclaw/open...
vincentkoc · 2026-05-28 · via Recent Commits to openclaw:main

@@ -134,6 +134,9 @@ const DEFAULT_SKILL_DIR = "~/.codex/skills/custom/telegram-e2e-bot-to-bot";

134134

const DEFAULT_CONVEX_ENV_FILE = `${DEFAULT_SKILL_DIR}/convex.local.env`;

135135

const DEFAULT_USER_DRIVER = "scripts/e2e/telegram-user-driver.py";

136136

const DEFAULT_OUTPUT_ROOT = ".artifacts/qa-e2e/telegram-user-crabbox";

137+

export const COMMAND_STDOUT_MAX_CHARS = 1024 * 1024;

138+

export const COMMAND_STDERR_TAIL_CHARS = 256 * 1024;

139+

export const COMMAND_FAILURE_STDOUT_TAIL_CHARS = 64 * 1024;

137140

const REMOTE_ROOT = "/tmp/openclaw-telegram-user-crabbox";

138141

const CREDENTIAL_SCRIPT = fileURLToPath(new URL("./telegram-user-credential.ts", import.meta.url));

139142

const LOG_READY_TAIL_BYTES = readPositiveInt(

@@ -482,46 +485,115 @@ function shellQuote(value: string) {

482485

return `'${value.replaceAll("'", "'\\''")}'`;

483486

}

484487488+

type AppendCommandStdoutResult = { ok: true; value: string } | { ok: false; message: string };

489+490+

function appendCommandText(current: string, chunk: Buffer): string {

491+

return current + chunk.toString("utf8");

492+

}

493+494+

export function appendCommandTextTail(current: string, chunk: Buffer, maxChars: number): string {

495+

const next = appendCommandText(current, chunk);

496+

return next.length > maxChars ? next.slice(-maxChars) : next;

497+

}

498+499+

export function appendCommandStdout(

500+

current: string,

501+

chunk: Buffer,

502+

maxChars = COMMAND_STDOUT_MAX_CHARS,

503+

): AppendCommandStdoutResult {

504+

const next = appendCommandText(current, chunk);

505+

if (next.length > maxChars) {

506+

return { ok: false, message: `command stdout exceeded ${maxChars} characters` };

507+

}

508+

return { ok: true, value: next };

509+

}

510+511+

export function appendCommandStderrTail(

512+

current: string,

513+

chunk: Buffer,

514+

maxChars = COMMAND_STDERR_TAIL_CHARS,

515+

): string {

516+

return appendCommandTextTail(current, chunk, maxChars);

517+

}

518+519+

function commandFailureOutput(stdout: string, stderr: string): string {

520+

const stdoutTail =

521+

stdout.length > COMMAND_FAILURE_STDOUT_TAIL_CHARS

522+

? `\n[stdout truncated to last ${COMMAND_FAILURE_STDOUT_TAIL_CHARS} characters]\n${stdout.slice(

523+

-COMMAND_FAILURE_STDOUT_TAIL_CHARS,

524+

)}`

525+

: stdout;

526+

return `${stdoutTail}${stderr}`;

527+

}

528+485529

function runCommand(params: {

486530

args: string[];

487531

command: string;

488532

cwd: string;

489533

env?: NodeJS.ProcessEnv;

534+

outputFile?: string;

490535

stdio?: "inherit" | "pipe";

491536

stdin?: string;

492537

}) {

493538

return new Promise<CommandResult>((resolve, reject) => {

539+

if (params.outputFile) {

540+

fs.writeFileSync(params.outputFile, "");

541+

}

494542

const child = spawn(params.command, params.args, {

495543

cwd: params.cwd,

496544

env: params.env ?? process.env,

497545

stdio: ["pipe", "pipe", "pipe"],

498546

});

499547

let stdout = "";

500548

let stderr = "";

549+

let stdoutLimitError: string | null = null;

501550

child.stdout.on("data", (chunk: Buffer) => {

502551

const text = chunk.toString();

503-

stdout += text;

552+

if (params.outputFile) {

553+

fs.appendFileSync(params.outputFile, text);

554+

stdout = appendCommandTextTail(stdout, chunk, COMMAND_FAILURE_STDOUT_TAIL_CHARS);

555+

} else if (params.stdio === "inherit") {

556+

stdout = appendCommandTextTail(stdout, chunk, COMMAND_FAILURE_STDOUT_TAIL_CHARS);

557+

} else {

558+

const appended = appendCommandStdout(stdout, chunk);

559+

if (!appended.ok) {

560+

stdoutLimitError = appended.message;

561+

child.kill("SIGKILL");

562+

} else {

563+

stdout = appended.value;

564+

}

565+

}

504566

if (params.stdio === "inherit") {

505567

process.stdout.write(text);

506568

}

507569

});

508570

child.stderr.on("data", (chunk: Buffer) => {

509571

const text = chunk.toString();

510-

stderr += text;

572+

if (params.outputFile) {

573+

fs.appendFileSync(params.outputFile, text);

574+

}

575+

stderr = appendCommandStderrTail(stderr, chunk);

511576

if (params.stdio === "inherit") {

512577

process.stderr.write(text);

513578

}

514579

});

515580

child.on("error", reject);

516581

child.on("close", (code, signal) => {

582+

if (stdoutLimitError) {

583+

reject(new Error(`${params.command} ${params.args.join(" ")} failed: ${stdoutLimitError}`));

584+

return;

585+

}

517586

if (code === 0) {

518587

resolve({ stdout, stderr });

519588

return;

520589

}

521590

const detail = signal ? `signal ${signal}` : `exit code ${code ?? "unknown"}`;

522591

reject(

523592

new Error(

524-

`${params.command} ${params.args.join(" ")} failed with ${detail}\n${stdout}${stderr}`,

593+

`${params.command} ${params.args.join(" ")} failed with ${detail}\n${commandFailureOutput(

594+

stdout,

595+

stderr,

596+

)}`,

525597

),

526598

);

527599

});

@@ -1093,6 +1165,7 @@ async function runRemoteCommand(params: {

10931165

args: string[];

10941166

command: string;

10951167

cwd: string;

1168+

outputFile?: string;

10961169

stdio?: "inherit" | "pipe";

10971170

}) {

10981171

let lastError: unknown;

@@ -1130,12 +1203,18 @@ async function scpFromRemote(root: string, inspect: CrabboxInspect, remote: stri

11301203

});

11311204

}

113212051133-

async function sshRun(root: string, inspect: CrabboxInspect, remoteCommand: string) {

1206+

async function sshRun(

1207+

root: string,

1208+

inspect: CrabboxInspect,

1209+

remoteCommand: string,

1210+

options: { outputFile?: string } = {},

1211+

) {

11341212

const ssh = sshArgs(inspect);

11351213

return await runRemoteCommand({

11361214

command: "ssh",

11371215

args: [...ssh.base, ssh.target, remoteCommand],

11381216

cwd: root,

1217+

outputFile: options.outputFile,

11391218

stdio: "inherit",

11401219

});

11411220

}

@@ -1810,12 +1889,11 @@ async function sendSessionProbe(root: string, opts: Options, outputDir: string)

18101889

async function runSessionCommand(root: string, opts: Options, outputDir: string) {

18111890

const { session } = readSession(root, opts, outputDir);

18121891

const command = opts.remoteCommand.map(shellQuote).join(" ");

1813-

const result = await sshRun(root, session.crabbox.inspect, command);

18141892

const logPath = path.join(

18151893

session.outputDir,

18161894

`remote-command-${new Date().toISOString().replace(/[:.]/gu, "-")}.log`,

18171895

);

1818-

fs.writeFileSync(logPath, `${result.stdout}${result.stderr}`);

1896+

await sshRun(root, session.crabbox.inspect, command, { outputFile: logPath });

18191897

return { command: opts.remoteCommand, log: path.relative(root, logPath), status: "pass" };

18201898

}

18211899

@@ -1897,12 +1975,13 @@ async function viewSession(root: string, opts: Options, outputDir: string) {

18971975

throw new Error("view requires --message-id.");

18981976

}

18991977

const link = telegramPrivatePostLink(session.credential.groupId, messageId);

1900-

const result = await sshRun(root, session.crabbox.inspect, renderProofViewCommand(link));

19011978

const logPath = path.join(

19021979

session.outputDir,

19031980

`proof-view-${new Date().toISOString().replace(/[:.]/gu, "-")}.log`,

19041981

);

1905-

fs.writeFileSync(logPath, `${result.stdout}${result.stderr}`);

1982+

await sshRun(root, session.crabbox.inspect, renderProofViewCommand(link), {

1983+

outputFile: logPath,

1984+

});

19061985

return {

19071986

crop: TELEGRAM_PROOF_CROP,

19081987

geometry: TELEGRAM_PROOF_WINDOW,