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

推荐订阅源

Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
V
V2EX
量子位
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 【当耐特】
爱范儿
爱范儿
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
小众软件
小众软件
IT之家
IT之家
博客园_首页
博客园 - 聂微东
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗

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
perf: reduce gateway startup overhead · openclaw/openclaw...
steipete · 2026-05-03 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -64,6 +64,7 @@ Docs: https://docs.openclaw.ai

6464

- Plugins/install: require OpenClaw-owned install provenance before granting official npm plugin scanner trust, so direct npm package names no longer bypass launch-code scanning while catalog, onboarding, and doctor installs stay trusted. Thanks @fede-kamel and @vincentkoc.

6565

- Network proxy: preserve target TLS hostname validation for Node HTTPS requests routed through the managed HTTP proxy, so Discord-style CONNECT traffic no longer validates certificates against the local proxy host. Fixes #74809. (#76442) Thanks @jesse-merhi and @abnershang.

6666

- Gateway/sessions: keep async `sessions.list` title and preview hydration bounded to transcript head/tail reads so Control UI polling cannot full-scan large session transcripts every refresh. Thanks @vincentkoc.

67+

- Gateway/performance: cache per-run verbose-level session reads, skip a redundant `lsof` scan in `gateway --force` when no listener was killed, and make the Gateway startup benchmark print usage for `--help`.

6768

- Gateway/sessions: keep agent runtime metadata on lightweight `sessions.list` rows so model-only session patches do not make Control UI lose runtime identity. Thanks @vincentkoc.

6869

- Gateway/sessions: keep bulk `sessions.list` rows lightweight by skipping per-row transcript usage fallback, display model inference, and plugin projection, avoiding event-loop stalls in large session stores. Thanks @Marvinthebored and @vincentkoc.

6970

- Gateway/models: keep read-only `models.list` fallbacks on persisted/current metadata and configured rows while using static auth checks, so missing `models.json` files no longer runtime-load provider discovery or stall gateway after restart. Fixes #76382; refs #76360 and #75707. Thanks @trojy13, @RayWoo, @AnathemaOfficial, and @vincentkoc.

Original file line numberDiff line numberDiff line change

@@ -159,6 +159,10 @@ function hasFlag(flag: string): boolean {

159159

return process.argv.includes(flag);

160160

}

161161
162+

function hasHelpFlag(): boolean {

163+

return hasFlag("--help") || hasFlag("-h");

164+

}

165+
162166

function parseRepeatableFlag(flag: string): string[] {

163167

const values: string[] = [];

164168

for (let index = 0; index < process.argv.length; index += 1) {

@@ -206,6 +210,28 @@ function parseOptions(): CliOptions {

206210

};

207211

}

208212
213+

function printUsage(): void {

214+

console.log(`OpenClaw Gateway startup benchmark

215+
216+

Usage:

217+

pnpm test:startup:gateway -- [options]

218+

node --import tsx scripts/bench-gateway-startup.ts [options]

219+
220+

Options:

221+

--case <id> Specific case id to run; repeatable

222+

--entry <path> Gateway CLI entry file (default: ${DEFAULT_ENTRY})

223+

--runs <n> Measured runs per case (default: ${DEFAULT_RUNS})

224+

--warmup <n> Warmup runs per case (default: ${DEFAULT_WARMUP})

225+

--timeout-ms <ms> Per-run timeout (default: ${DEFAULT_TIMEOUT_MS})

226+

--output <path> Write machine-readable JSON to a file

227+

--json Emit machine-readable JSON

228+

--help, -h Show this text

229+
230+

Case ids:

231+

${GATEWAY_CASES.map((benchCase) => `${benchCase.id} (${benchCase.name})`).join("\n ")}

232+

`);

233+

}

234+
209235

function median(values: number[]): number {

210236

const sorted = [...values].toSorted((a, b) => a - b);

211237

const middle = Math.floor(sorted.length / 2);

@@ -796,6 +822,11 @@ function printResult(result: CaseResult): void {

796822

}

797823
798824

async function main() {

825+

if (hasHelpFlag()) {

826+

printUsage();

827+

return;

828+

}

829+
799830

const options = parseOptions();

800831

const results: CaseResult[] = [];

801832

for (const benchCase of options.cases) {

Original file line numberDiff line numberDiff line change

@@ -36,8 +36,9 @@ const {

3636
3737

describe("agent runner helpers", () => {

3838

beforeEach(() => {

39-

hoisted.loadSessionStoreMock.mockClear();

40-

hoisted.scheduleFollowupDrainMock.mockClear();

39+

vi.useRealTimers();

40+

hoisted.loadSessionStoreMock.mockReset();

41+

hoisted.scheduleFollowupDrainMock.mockReset();

4142

});

4243
4344

it("detects audio payloads from mediaUrl/mediaUrls", () => {

@@ -71,6 +72,30 @@ describe("agent runner helpers", () => {

7172

expect(shouldEmitOutput()).toBe(true);

7273

});

7374
75+

it("caches session verbose reads briefly while still refreshing live changes", () => {

76+

vi.useFakeTimers();

77+

vi.setSystemTime(1_000);

78+

hoisted.loadSessionStoreMock.mockReturnValue({

79+

"agent:main:main": { verboseLevel: "full" },

80+

});

81+

const shouldEmitOutput = createShouldEmitToolOutput({

82+

sessionKey: "agent:main:main",

83+

storePath: "/tmp/store.json",

84+

resolvedVerboseLevel: "off",

85+

});

86+
87+

expect(shouldEmitOutput()).toBe(true);

88+

hoisted.loadSessionStoreMock.mockReturnValue({

89+

"agent:main:main": { verboseLevel: "off" },

90+

});

91+

expect(shouldEmitOutput()).toBe(true);

92+

expect(hoisted.loadSessionStoreMock).toHaveBeenCalledOnce();

93+
94+

vi.setSystemTime(1_251);

95+

expect(shouldEmitOutput()).toBe(false);

96+

expect(hoisted.loadSessionStoreMock).toHaveBeenCalledTimes(2);

97+

});

98+
7499

it("falls back when store read fails or session value is invalid", () => {

75100

hoisted.loadSessionStoreMock.mockImplementation(() => {

76101

throw new Error("boom");

Original file line numberDiff line numberDiff line change

@@ -21,7 +21,9 @@ type VerboseGateParams = {

2121

resolvedVerboseLevel: VerboseLevel;

2222

};

2323
24-

function resolveCurrentVerboseLevel(params: VerboseGateParams): VerboseLevel | undefined {

24+

const VERBOSE_GATE_SESSION_REFRESH_MS = 250;

25+
26+

function readCurrentVerboseLevel(params: VerboseGateParams): VerboseLevel | undefined {

2527

if (!params.sessionKey || !params.storePath) {

2628

return undefined;

2729

}

@@ -37,14 +39,34 @@ function resolveCurrentVerboseLevel(params: VerboseGateParams): VerboseLevel | u

3739

}

3840

}

3941
42+

function createCurrentVerboseLevelResolver(

43+

params: VerboseGateParams,

44+

): () => VerboseLevel | undefined {

45+

let cachedLevel: VerboseLevel | undefined;

46+

let cachedAtMs = Number.NEGATIVE_INFINITY;

47+

return () => {

48+

if (!params.sessionKey || !params.storePath) {

49+

return undefined;

50+

}

51+

const now = Date.now();

52+

if (now - cachedAtMs < VERBOSE_GATE_SESSION_REFRESH_MS) {

53+

return cachedLevel;

54+

}

55+

cachedLevel = readCurrentVerboseLevel(params);

56+

cachedAtMs = now;

57+

return cachedLevel;

58+

};

59+

}

60+
4061

function createVerboseGate(

4162

params: VerboseGateParams,

4263

shouldEmit: (level: VerboseLevel) => boolean,

4364

): () => boolean {

4465

// Normalize verbose values from session store/config so false/"false" still means off.

4566

const fallbackVerbose = params.resolvedVerboseLevel;

67+

const resolveCurrentVerboseLevel = createCurrentVerboseLevelResolver(params);

4668

return () => {

47-

return shouldEmit(resolveCurrentVerboseLevel(params) ?? fallbackVerbose);

69+

return shouldEmit(resolveCurrentVerboseLevel() ?? fallbackVerbose);

4870

};

4971

}

5072
Original file line numberDiff line numberDiff line change

@@ -276,6 +276,10 @@ export async function forceFreePortAndWait(

276276

killed = killPortWithFuser(port, "SIGTERM");

277277

}

278278
279+

if (killed.length === 0) {

280+

return { killed, waitedMs: 0, escalatedToSigkill: false };

281+

}

282+
279283

const checkBusy = async (): Promise<boolean> =>

280284

useFuserFallback ? isPortBusy(port) : listPortListeners(port).length > 0;

281285
Original file line numberDiff line numberDiff line change

@@ -59,6 +59,23 @@ describe("gateway --force helpers", () => {

5959

expect(listPortListeners(18789)).toEqual([]);

6060

});

6161
62+

it("does not re-scan lsof when no listeners were killed", async () => {

63+

(execFileSync as unknown as Mock).mockImplementation(() => {

64+

const err = new Error("no matches") as NodeJS.ErrnoException & { status?: number };

65+

err.status = 1; // lsof uses exit 1 for no matches

66+

throw err;

67+

});

68+
69+

const result = await forceFreePortAndWait(18789, { timeoutMs: 500, intervalMs: 100 });

70+
71+

expect(result).toEqual({

72+

killed: [],

73+

waitedMs: 0,

74+

escalatedToSigkill: false,

75+

});

76+

expect(execFileSync).toHaveBeenCalledOnce();

77+

});

78+
6279

it("throws when lsof missing", () => {

6380

(execFileSync as unknown as Mock).mockImplementation(() => {

6481

const err = new Error("not found") as NodeJS.ErrnoException;

Original file line numberDiff line numberDiff line change

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

1+

import { spawnSync } from "node:child_process";

2+

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

3+
4+

describe("gateway startup benchmark script", () => {

5+

it("prints help without running benchmark cases", () => {

6+

const result = spawnSync(

7+

process.execPath,

8+

["--import", "tsx", "scripts/bench-gateway-startup.ts", "--help"],

9+

{

10+

cwd: process.cwd(),

11+

encoding: "utf8",

12+

env: process.env,

13+

},

14+

);

15+
16+

expect(result.status).toBe(0);

17+

expect(result.stdout).toContain("OpenClaw Gateway startup benchmark");

18+

expect(result.stdout).toContain("--case <id>");

19+

expect(result.stdout).toContain("default (gateway default)");

20+

expect(result.stdout).not.toContain("[gateway-startup-bench]");

21+

expect(result.stderr).toBe("");

22+

});

23+

});