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

推荐订阅源

Y
Y Combinator Blog
V
V2EX
Jina AI
Jina AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
量子位
L
LangChain Blog
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
腾讯CDC
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss

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(codeql): clean OpenClaw quality findings · openclaw/o...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main

File tree

  • packages/tool-call-repair/src

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,5 @@

11

// Discord plugin module implements realtime behavior.

2-

import { PassThrough } from "node:stream";

2+

import { PassThrough, pipeline } from "node:stream";

33

import type { DiscordAccountConfig, OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";

44

import {

55

asDateTimestampMs,

@@ -814,7 +814,15 @@ export class DiscordRealtimeVoiceSession implements VoiceRealtimeSession {

814814

this.resetOutputStream("opus-encode-error");

815815

});

816816

opusStream.once("close", () => this.handleOutputStreamClosed(stream, "stream-close"));

817-

stream.pipe(opusStream);

817+

pipeline(stream, opusStream, (err) => {

818+

if (!err) {

819+

return;

820+

}

821+

logger.warn(

822+

`discord voice: realtime output pipeline failed guild=${this.params.entry.guildId} channel=${this.params.entry.channelId}: ${formatErrorMessage(err)}`,

823+

);

824+

this.resetOutputStream("output-pipeline-error");

825+

});

818826

if (this.outputPacedBuffer.length > 0) {

819827

stream.write(this.outputPacedBuffer);

820828

this.outputPacedBuffer = Buffer.alloc(0);

Original file line numberDiff line numberDiff line change

@@ -129,7 +129,7 @@ function parseInlineMarkdown(text: string): StoryInline[] {

129129
130130

// Plain text: consume until next special character or URL start

131131

// Exclude : and / to allow URL detection to work (stops before https://)

132-

const plainMatch = remaining.match(/^[^*_`~[#~\n:/]+/);

132+

const plainMatch = remaining.match(/^[^*_`~[#\n:/]+/);

133133

if (plainMatch) {

134134

result.push(plainMatch[0]);

135135

remaining = remaining.slice(plainMatch[0].length);

Original file line numberDiff line numberDiff line change

@@ -434,6 +434,21 @@ function normalizeNotificationSubscription(

434434

throw new Error("notification subscription needs cardId, sessionKey, runId, or target.");

435435

}

436436

const eventKinds = normalizeNotificationKinds(input.eventKinds);

437+

const preservedFields: Partial<WorkboardNotificationSubscription> = {};

438+

if (fallback) {

439+

if (fallback.lastEventAt) {

440+

preservedFields.lastEventAt = fallback.lastEventAt;

441+

}

442+

if (fallback.lastEventId) {

443+

preservedFields.lastEventId = fallback.lastEventId;

444+

}

445+

if (fallback.lastEventSequence) {

446+

preservedFields.lastEventSequence = fallback.lastEventSequence;

447+

}

448+

if (fallback.deliveredEventIds?.length) {

449+

preservedFields.deliveredEventIds = fallback.deliveredEventIds;

450+

}

451+

}

437452

return {

438453

id: fallback?.id ?? randomUUID(),

439454

boardId,

@@ -442,12 +457,7 @@ function normalizeNotificationSubscription(

442457

...(runId ? { runId } : {}),

443458

...(target ? { target } : {}),

444459

...(eventKinds ? { eventKinds } : {}),

445-

...(fallback?.lastEventAt ? { lastEventAt: fallback.lastEventAt } : {}),

446-

...(fallback?.lastEventId ? { lastEventId: fallback.lastEventId } : {}),

447-

...(fallback?.lastEventSequence ? { lastEventSequence: fallback.lastEventSequence } : {}),

448-

...(fallback?.deliveredEventIds?.length

449-

? { deliveredEventIds: fallback.deliveredEventIds }

450-

: {}),

460+

...preservedFields,

451461

createdAt: fallback?.createdAt ?? now,

452462

updatedAt: now,

453463

};

Original file line numberDiff line numberDiff line change

@@ -291,21 +291,11 @@ function consumeOptionalXmlishFunctionClose(text: string, start: number): number

291291

return consumeXmlishFunctionClose(text, start) ?? start;

292292

}

293293
294-

function parseXmlishPlainTextToolCallBlockEndAt(

295-

text: string,

296-

start: number,

297-

options?: PlainTextToolCallParseOptions,

298-

): number | null {

294+

function parseXmlishPlainTextToolCallBlockEndAt(text: string, start: number): number | null {

299295

const opening = parseXmlishOpening(text, start);

300296

if (!opening) {

301297

return null;

302298

}

303-

const allowedToolNames = options?.allowedToolNames

304-

? new Set(options.allowedToolNames)

305-

: undefined;

306-

if (allowedToolNames && !allowedToolNames.has(opening.name)) {

307-

return null;

308-

}

309299
310300

let cursor = opening.end;

311301

let parameterCount = 0;

Original file line numberDiff line numberDiff line change

@@ -1,8 +1,8 @@

11

// Firecrawl Compare script supports OpenClaw repository automation.

22

import { pathToFileURL } from "node:url";

33

import { fetchFirecrawlContent } from "../extensions/firecrawl/api.ts";

4-

import { extractReadableContent } from "../src/agents/tools/web-tools.js";

54

import { formatErrorMessage } from "../src/infra/errors.ts";

5+

import { extractReadableContent } from "../src/web-fetch/content-extractors.runtime.js";

66

import { readBoundedResponseText as readBoundedResponseTextWithLimit } from "./lib/bounded-response.ts";

77
88

const DEFAULT_URLS = [

Original file line numberDiff line numberDiff line change

@@ -21,9 +21,7 @@ function formatSignedMs(value, digits = 1) {

2121

}

2222
2323

function formatSignedBytesAsMb(valueBytes) {

24-

return valueBytes === null || valueBytes === undefined

25-

? "n/a"

26-

: `${valueBytes > 0 ? "+" : ""}${formatBytesAsMb(valueBytes)}`;

24+

return `${valueBytes > 0 ? "+" : ""}${formatBytesAsMb(valueBytes)}`;

2725

}

2826
2927

/**

Original file line numberDiff line numberDiff line change

@@ -6,8 +6,7 @@ const CLI_PREFIX_RE = /^(?:pnpm|npm|bunx|npx)\s+openclaw\b|^openclaw\b/;

66

const CONTAINER_FLAG_RE = /(?:^|\s)--container(?:\s|=|$)/;

77

const PROFILE_FLAG_RE = /(?:^|\s)--profile(?:\s|=|$)/;

88

const DEV_FLAG_RE = /(?:^|\s)--dev(?:\s|$)/;

9-

const UPDATE_COMMAND_RE =

10-

/^(?:pnpm|npm|bunx|npx)\s+openclaw\b.*(?:^|\s)update(?:\s|$)|^openclaw\b.*(?:^|\s)update(?:\s|$)/;

9+

const UPDATE_COMMAND_RE = /^(?:(?:pnpm|npm|bunx|npx)\s+openclaw|openclaw)\b.*\supdate(?:\s|$)/;

1110

const CONTAINER_HINT_RE = /^[a-zA-Z0-9][a-zA-Z0-9_.-]{0,127}$/;

1211
1312

/** Add active root options to a displayed command without duplicating explicit flags. */

Original file line numberDiff line numberDiff line change

@@ -54,18 +54,15 @@ const SECRET_FLAG_NAMES = new Set([

5454

const SECRET_FLAG_SUFFIX_PATTERN =

5555

/^--(?:[a-z0-9]+(?:-[a-z0-9]+)*-)?(?:token|secret|password|passwd|api[-_]?key|api[-_]?secret|webhook|credential|bearer|pat|private[-_]?key|recovery[-_]?key|signing[-_]?key|encryption[-_]?key|master[-_]?key|session[-_]?key|gateway[-_]?key|service[-_]?key|hook[-_]?key)$/;

5656
57-

function isSecretFlagName(flagName: string | null): boolean {

58-

if (flagName === null) {

59-

return false;

60-

}

57+

function isSecretFlagName(flagName: string): boolean {

6158

if (SECRET_FLAG_NAMES.has(flagName)) {

6259

return true;

6360

}

6461

return SECRET_FLAG_SUFFIX_PATTERN.test(flagName);

6562

}

6663
6764

function parseFlagName(arg: string): string | null {

68-

if (typeof arg !== "string" || !arg.startsWith("--")) {

65+

if (!arg.startsWith("--")) {

6966

return null;

7067

}

7168

const eq = arg.indexOf("=");

@@ -88,11 +85,6 @@ export function redactConfigAuditArgv(argv: readonly string[]): string[] {

8885

const result: string[] = [];

8986

let redactNext = false;

9087

for (const current of argv) {

91-

if (typeof current !== "string") {

92-

result.push(current);

93-

redactNext = false;

94-

continue;

95-

}

9688

if (redactNext) {

9789

redactNext = false;

9890

result.push("***");

Original file line numberDiff line numberDiff line change

@@ -42,7 +42,6 @@ function finalizeExecWrapperTrustPlan(

4242

policyArgv: string[],

4343

wrapperChain: string[],

4444

policyBlocked: boolean,

45-

blockedWrapper?: string,

4645

): ExecWrapperTrustPlan {

4746

const rawExecutable = argv[0]?.trim() ?? "";

4847

const shellWrapperExecutable =

@@ -57,9 +56,6 @@ function finalizeExecWrapperTrustPlan(

5756

? extractBindableShellWrapperInlineCommand(argv)

5857

: null,

5958

};

60-

if (blockedWrapper !== undefined) {

61-

plan.blockedWrapper = blockedWrapper;

62-

}

6359

return plan;

6460

}

6561
Original file line numberDiff line numberDiff line change

@@ -37,7 +37,7 @@ export function normalizeMediaSource(src: string): string {

3737

return src.startsWith("file://") ? src.replace("file://", "") : src;

3838

}

3939
40-

const TRAILING_SERIALIZED_JSON_AFTER_EXT_RE = /^(.*\.\w{1,10})\\?"(?=[\]},:,]|$).*/s;

40+

const TRAILING_SERIALIZED_JSON_AFTER_EXT_RE = /^(.*\.\w{1,10})\\?"(?=[\]},:]|$).*/s;

4141
4242

function cleanCandidate(raw: string) {

4343

const stripped = raw.replace(/^[`"'[{(]+/, "").replace(/[`"'\\})\],]+$/, "");