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

推荐订阅源

H
Help Net Security
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园 - 叶小钗
D
DataBreaches.Net
D
Docker
月光博客
月光博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell

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(qa): reject loose code-mode live task limits · opencl...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

11

#!/usr/bin/env -S node --import tsx

22

// Code Mode Namespace Live script supports OpenClaw repository automation.

33

import { performance } from "node:perf_hooks";

4+

import { pathToFileURL } from "node:url";

45

import { Type } from "typebox";

56

import type { Model } from "../../packages/agent-core/src/llm.js";

67

import type { AgentEvent, AgentTool } from "../../packages/agent-core/src/types.js";

@@ -80,6 +81,7 @@ type RunMetrics = {

8081

};

8182
8283

const PLUGIN_ID = "fictions-live";

84+

const POSITIVE_INTEGER_PATTERN = /^[1-9]\d*$/u;

8385
8486

function cloneState(): FictionServiceState {

8587

return {

@@ -598,19 +600,32 @@ function readArg(name: string): string | undefined {

598600

return match?.slice(prefix.length);

599601

}

600602
601-

async function main() {

602-

const apiKey = process.env.OPENAI_API_KEY?.trim();

603-

if (!apiKey) {

604-

throw new Error("OPENAI_API_KEY is required");

603+

export function parseTaskLimit(raw: string | undefined, label: string): number {

604+

const text = raw?.trim() ?? "3";

605+

if (!POSITIVE_INTEGER_PATTERN.test(text)) {

606+

throw new Error(`${label} must be a positive integer`);

607+

}

608+

const parsed = Number(text);

609+

if (!Number.isSafeInteger(parsed)) {

610+

throw new Error(`${label} must be a safe positive integer`);

605611

}

612+

return parsed;

613+

}

614+
615+

export async function main() {

606616

const model = readArg("model") ?? process.env.OPENCLAW_CODE_MODE_LIVE_MODEL ?? "gpt-5.4-mini";

607617

const modeArg = readArg("modes");

608618

const modes = (modeArg ? modeArg.split(",") : ["regular", "code-namespace"]) as Mode[];

609-

const taskLimit = Number(readArg("tasks") ?? process.env.OPENCLAW_CODE_MODE_LIVE_TASKS ?? "3");

610-

const selectedTasks = tasks.slice(

611-

0,

612-

Number.isFinite(taskLimit) && taskLimit > 0 ? taskLimit : tasks.length,

619+

const taskArg = readArg("tasks");

620+

const taskLimit = parseTaskLimit(

621+

taskArg ?? process.env.OPENCLAW_CODE_MODE_LIVE_TASKS,

622+

taskArg === undefined ? "OPENCLAW_CODE_MODE_LIVE_TASKS" : "--tasks",

613623

);

624+

const apiKey = process.env.OPENAI_API_KEY?.trim();

625+

if (!apiKey) {

626+

throw new Error("OPENAI_API_KEY is required");

627+

}

628+

const selectedTasks = tasks.slice(0, taskLimit);

614629

const results: RunMetrics[] = [];

615630

for (const task of selectedTasks) {

616631

for (const mode of modes) {

@@ -640,6 +655,8 @@ async function main() {

640655

}

641656

}

642657
643-

await main().finally(() => {

644-

clearCodeModeNamespacesForPlugin(PLUGIN_ID);

645-

});

658+

if (import.meta.url === pathToFileURL(process.argv[1] ?? "").href) {

659+

await main().finally(() => {

660+

clearCodeModeNamespacesForPlugin(PLUGIN_ID);

661+

});

662+

}

Original file line numberDiff line numberDiff line change

@@ -589,6 +589,7 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

589589

["scripts/tsdown-build.mjs", ["test/scripts/tsdown-build.test.ts"]],

590590

["scripts/verify.mjs", ["test/scripts/verify.test.ts"]],

591591

["scripts/zai-fallback-repro.ts", ["test/scripts/zai-fallback-repro.test.ts"]],

592+

["scripts/repro/code-mode-namespace-live.ts", ["test/scripts/code-mode-namespace-live.test.ts"]],

592593

["scripts/lib/extension-test-plan.mjs", ["test/scripts/test-extension.test.ts"]],

593594

["scripts/lib/vitest-batch-runner.mjs", ["test/scripts/test-extension.test.ts"]],

594595

["scripts/lib/ci-node-test-plan.mjs", ["test/scripts/ci-node-test-plan.test.ts"]],

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,23 @@

1+

// Code Mode Namespace Live tests cover live repro argument parsing.

2+

import { describe, expect, it } from "vitest";

3+

import { parseTaskLimit } from "../../scripts/repro/code-mode-namespace-live.ts";

4+
5+

describe("code-mode namespace live repro", () => {

6+

it("parses task limits as strict positive integers", () => {

7+

expect(parseTaskLimit(undefined, "--tasks")).toBe(3);

8+

expect(parseTaskLimit(" 2 ", "--tasks")).toBe(2);

9+
10+

expect(() => parseTaskLimit("0", "--tasks")).toThrow("--tasks must be a positive integer");

11+

expect(() => parseTaskLimit("1e3", "--tasks")).toThrow("--tasks must be a positive integer");

12+

expect(() => parseTaskLimit("2.5", "--tasks")).toThrow("--tasks must be a positive integer");

13+

expect(() => parseTaskLimit("3 tasks", "--tasks")).toThrow(

14+

"--tasks must be a positive integer",

15+

);

16+

});

17+
18+

it("reports the environment variable name for inherited task limits", () => {

19+

expect(() => parseTaskLimit("1e3", "OPENCLAW_CODE_MODE_LIVE_TASKS")).toThrow(

20+

"OPENCLAW_CODE_MODE_LIVE_TASKS must be a positive integer",

21+

);

22+

});

23+

});

Original file line numberDiff line numberDiff line change

@@ -335,6 +335,13 @@ describe("scripts/test-projects changed-target routing", () => {

335335

});

336336

});

337337
338+

it("routes code-mode namespace live repro changes through its regression test", () => {

339+

expect(resolveChangedTestTargetPlan(["scripts/repro/code-mode-namespace-live.ts"])).toEqual({

340+

mode: "targets",

341+

targets: ["test/scripts/code-mode-namespace-live.test.ts"],

342+

});

343+

});

344+
338345

it("routes group visible reply config changes through channel delivery regressions", () => {

339346

expect(

340347

resolveChangedTestTargetPlan([