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

推荐订阅源

N
Netflix TechBlog - Medium
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
博客园_首页
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
The Cloudflare Blog
罗磊的独立博客
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
博客园 - 叶小钗
The GitHub Blog
The GitHub Blog
Last Week in AI
Last Week in AI
J
Java Code Geeks
MyScale Blog
MyScale Blog
G
Google Developers Blog
U
Unit 42
Y
Y Combinator Blog
P
Proofpoint News Feed
Vercel News
Vercel News

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
chore(lint): tighten lint exception coverage · openclaw/o...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

File tree

      • embedded-agent-runner/run

    Original file line numberDiff line numberDiff line change

    @@ -218,13 +218,6 @@

    218218

    "**/node_modules/**"

    219219

    ],

    220220

    "overrides": [

    221-

    {

    222-

    "files": ["src/security/**"],

    223-

    "rules": {

    224-

    "eslint/no-warning-comments": "off",

    225-

    "oxc/no-map-spread": "off"

    226-

    }

    227-

    },

    228221

    {

    229222

    "files": [

    230223

    "**/*.test.ts",

    Original file line numberDiff line numberDiff line change

    @@ -14,7 +14,17 @@ export function resolveWhatsAppDocumentFileName(params: {

    1414

    mimetype?: string;

    1515

    }): string {

    1616

    const fallbackName = resolveWhatsAppDefaultDocumentFileName(params.mimetype);

    17-

    // eslint-disable-next-line no-control-regex

    18-

    const stripped = params.fileName?.replace(/[\x00-\x1f\x7f]/g, "").trim();

    17+

    const stripped = stripAsciiControlCharacters(params.fileName ?? "").trim();

    1918

    return stripped || fallbackName;

    2019

    }

    20+
    21+

    function stripAsciiControlCharacters(value: string): string {

    22+

    let stripped = "";

    23+

    for (const char of value) {

    24+

    const code = char.charCodeAt(0);

    25+

    if (code > 0x1f && code !== 0x7f) {

    26+

    stripped += char;

    27+

    }

    28+

    }

    29+

    return stripped;

    30+

    }

    Original file line numberDiff line numberDiff line change

    @@ -340,12 +340,9 @@ export async function connectMcpClient(params: {

    340340

    process.stderr.write(`[openclaw mcp] ${String(chunk)}`);

    341341

    });

    342342

    const rawMessages: unknown[] = [];

    343-

    // The MCP stdio transport here exposes a writable onmessage callback at

    344-

    // runtime, not an EventTarget-style addEventListener API.

    345-

    // oxlint-disable-next-line unicorn/prefer-add-event-listener

    346-

    transport.onmessage = (message) => {

    343+

    Reflect.set(transport, "onmessage", (message: unknown) => {

    347344

    pushBounded(rawMessages, message, MCP_RAW_MESSAGE_RETAIN_LIMIT);

    348-

    };

    345+

    });

    349346
    350347

    const client = new Client({ name: "docker-mcp-channels", version: "1.0.0" });

    351348

    await connectMcpWithTimeout(client, transport, MCP_CONNECT_TIMEOUT_MS);

    Original file line numberDiff line numberDiff line change

    @@ -43,8 +43,7 @@ export {

    4343
    4444

    /** Strip null bytes from paths to prevent ENOTDIR errors. */

    4545

    function stripNullBytes(s: string): string {

    46-

    // eslint-disable-next-line no-control-regex

    47-

    return s.replace(/\0/g, "");

    46+

    return s.split("\0").join("");

    4847

    }

    4948
    5049

    const AUTO_FALLBACK_PRIMARY_PROBE_INTERVAL_MS = 5 * 60 * 1000;

    Original file line numberDiff line numberDiff line change

    @@ -75,8 +75,7 @@ const PATH_PATTERN = new RegExp(PATH_REGEX_SOURCE, "gi");

    7575

    * "photo---1c77ce17-20b9-4546-be64-6e36a9adcb2c.png"

    7676

    * "图片---1c77ce17-20b9-4546-be64-6e36a9adcb2c.png"

    7777

    */

    78-

    // eslint-disable-next-line no-control-regex

    79-

    const MEDIA_URI_REGEX = /\bmedia:\/\/inbound\/([^\]\s/\\\x00]+)/;

    78+

    const MEDIA_URI_REGEX = /\bmedia:\/\/inbound\/([^\]\s/\\]+)/;

    8079
    8180

    /**

    8281

    * Result of detecting an image reference in text.

    @@ -361,7 +360,7 @@ export function detectImageReferences(prompt: string): DetectedImageRef[] {

    361360

    // This must be tested before the extension-based path regex because the

    362361

    // URI has no file extension suffix in its base form.

    363362

    const mediaUriMatch = content.match(MEDIA_URI_REGEX);

    364-

    if (mediaUriMatch) {

    363+

    if (mediaUriMatch && !mediaUriMatch[1].includes("\0")) {

    365364

    const uri = `media://inbound/${mediaUriMatch[1]}`;

    366365

    const dedupeKey = normalizeRefForDedupe(uri);

    367366

    if (!seen.has(dedupeKey)) {

    Original file line numberDiff line numberDiff line change

    @@ -548,9 +548,7 @@ function sanitizeMountPathHint(value?: string): string | undefined {

    548548

    if (!trimmed) {

    549549

    return undefined;

    550550

    }

    551-

    // Prevent prompt injection via control/newline characters in system prompt hints.

    552-

    // eslint-disable-next-line no-control-regex

    553-

    if (/[\r\n\u0000-\u001F\u007F\u0085\u2028\u2029]/.test(trimmed)) {

    551+

    if (hasPromptUnsafeControlCharacter(trimmed)) {

    554552

    return undefined;

    555553

    }

    556554

    if (!/^[A-Za-z0-9._\-/:]+$/.test(trimmed)) {

    @@ -559,6 +557,16 @@ function sanitizeMountPathHint(value?: string): string | undefined {

    559557

    return trimmed;

    560558

    }

    561559
    560+

    function hasPromptUnsafeControlCharacter(value: string): boolean {

    561+

    for (const char of value) {

    562+

    const code = char.charCodeAt(0);

    563+

    if (code <= 0x1f || code === 0x7f || code === 0x85 || code === 0x2028 || code === 0x2029) {

    564+

    return true;

    565+

    }

    566+

    }

    567+

    return false;

    568+

    }

    569+
    562570

    async function cleanupProvisionalSession(

    563571

    childSessionKey: string,

    564572

    options?: {

    Original file line numberDiff line numberDiff line change

    @@ -55,8 +55,8 @@ export type ChannelGatewayMethodDescriptor = {

    5555

    description?: string;

    5656

    };

    5757
    58-

    // Omitted generic means "plugin with some account shape", not "plugin whose

    59-

    // account is literally Record<string, unknown>".

    58+

    // Omitted generic means "plugin with some account shape"; using unknown makes

    59+

    // callback parameters contravariant and rejects concrete plugin implementations.

    6060

    // oxlint-disable-next-line typescript/no-explicit-any

    6161

    export type ChannelPlugin<ResolvedAccount = any, Probe = unknown, Audit = unknown> = {

    6262

    id: ChannelId;

    Original file line numberDiff line numberDiff line change

    @@ -95,6 +95,8 @@ export interface ChannelsConfig {

    9595

    * Channel sections are plugin-owned and keyed by arbitrary channel ids.

    9696

    * Keep the lookup permissive so augmented channel configs remain ergonomic at call sites.

    9797

    */

    98-

    // eslint-disable-next-line @typescript-eslint/no-explicit-any

    98+

    // Plugin-owned channel sections are open-world config; narrowing this breaks

    99+

    // SDK config-write helpers that accept account-shaped channel records.

    100+

    // oxlint-disable-next-line typescript/no-explicit-any

    99101

    [key: string]: any;

    100102

    }

    Original file line numberDiff line numberDiff line change

    @@ -25,11 +25,10 @@ function rawWsDataToString(data: RawData): string {

    2525

    function activeClientSocketsToPort(port: number): Socket[] {

    2626

    // Node has no public active-handle API; this regression must prove the probe

    2727

    // promise does not resolve while the client-side socket handle is still live.

    28-

    // oxlint-disable no-underscore-dangle

    29-

    const handles =

    30-

    (process as typeof process & { _getActiveHandles?: () => unknown[] })._getActiveHandles?.() ??

    31-

    [];

    32-

    // oxlint-enable no-underscore-dangle

    28+

    const getActiveHandles = Reflect.get(process, "_getActiveHandles") as

    29+

    | (() => unknown[])

    30+

    | undefined;

    31+

    const handles = getActiveHandles?.() ?? [];

    3332

    return handles.filter(

    3433

    (handle): handle is Socket => handle instanceof Socket && handle.remotePort === port,

    3534

    );

    Original file line numberDiff line numberDiff line change

    @@ -180,15 +180,13 @@ export function collectSmallModelRiskFindings(params: {

    180180

    return findings;

    181181

    }

    182182
    183-

    const smallModels = models

    184-

    .map((entry) => {

    185-

    const paramB = inferParamBFromIdOrName(entry.id);

    186-

    if (!paramB || paramB > SMALL_MODEL_PARAM_B_MAX) {

    187-

    return null;

    188-

    }

    189-

    return { ...entry, paramB };

    190-

    })

    191-

    .filter((entry): entry is { id: string; source: string; paramB: number } => Boolean(entry));

    183+

    const smallModels: Array<{ id: string; source: string; paramB: number }> = [];

    184+

    for (const entry of models) {

    185+

    const paramB = inferParamBFromIdOrName(entry.id);

    186+

    if (paramB && paramB <= SMALL_MODEL_PARAM_B_MAX) {

    187+

    smallModels.push({ id: entry.id, source: entry.source, paramB });

    188+

    }

    189+

    }

    192190
    193191

    if (smallModels.length === 0) {

    194192

    return findings;