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

推荐订阅源

罗磊的独立博客
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
有赞技术团队
有赞技术团队
Vercel News
Vercel News
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
The Cloudflare Blog
B
Blog
C
Check Point Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
U
Unit 42
D
Docker
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
A
About on SuperTechFans

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(gateway): guard fast-path startup migrations (#93118)...
openperf · 2026-06-16 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

11

// Shared command preflight: config readiness plus optional plugin registry activation.

2+

import type { ConfigFileSnapshot } from "../config/types.js";

23

import type { RuntimeEnv } from "../runtime.js";

34

import { createLazyImportLoader } from "../shared/lazy-promise.js";

45

import type { CliPluginRegistryPolicy } from "./command-catalog.js";

@@ -18,6 +19,7 @@ export async function ensureCliCommandBootstrap(params: {

1819

suppressDoctorStdout?: boolean;

1920

skipConfigGuard?: boolean;

2021

allowInvalid?: boolean;

22+

beforeStateMigrations?: (snapshot?: ConfigFileSnapshot) => Promise<boolean>;

2123

loadPlugins?: boolean;

2224

pluginRegistry?: CliPluginRegistryPolicy;

2325

}) {

@@ -27,6 +29,9 @@ export async function ensureCliCommandBootstrap(params: {

2729

runtime: params.runtime,

2830

commandPath: params.commandPath,

2931

...(params.allowInvalid ? { allowInvalid: true } : {}),

32+

...(params.beforeStateMigrations

33+

? { beforeStateMigrations: params.beforeStateMigrations }

34+

: {}),

3035

...(params.suppressDoctorStdout ? { suppressDoctorStdout: true } : {}),

3136

});

3237

}

Original file line numberDiff line numberDiff line change

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

11

// CLI startup context, banner/log presentation, and bootstrap orchestration.

2+

import type { ConfigFileSnapshot } from "../config/types.js";

23

import { routeLogsToStderr } from "../logging/console.js";

34

import type { RuntimeEnv } from "../runtime.js";

45

import { resolveCliArgvInvocation } from "./argv-invocation.js";

@@ -65,6 +66,7 @@ export async function ensureCliExecutionBootstrap(params: {

6566

commandPath: string[];

6667

startupPolicy: CliStartupPolicy;

6768

allowInvalid?: boolean;

69+

beforeStateMigrations?: (snapshot?: ConfigFileSnapshot) => Promise<boolean>;

6870

loadPlugins?: boolean;

6971

skipConfigGuard?: boolean;

7072

}) {

@@ -73,6 +75,9 @@ export async function ensureCliExecutionBootstrap(params: {

7375

commandPath: params.commandPath,

7476

suppressDoctorStdout: params.startupPolicy.suppressDoctorStdout,

7577

allowInvalid: params.allowInvalid,

78+

...(params.beforeStateMigrations

79+

? { beforeStateMigrations: params.beforeStateMigrations }

80+

: {}),

7681

loadPlugins: params.loadPlugins ?? params.startupPolicy.loadPlugins,

7782

pluginRegistry: params.startupPolicy.pluginRegistry,

7883

skipConfigGuard: params.skipConfigGuard ?? params.startupPolicy.skipConfigGuard,

Original file line numberDiff line numberDiff line change

@@ -339,6 +339,13 @@ describe("command-path-policy", () => {

339339

expect(resolveCliNetworkProxyPolicy(argv)).toBe("default");

340340

});

341341
342+

it("resolves gateway runs after root options with values", () => {

343+

const argv = ["node", "openclaw", "--log-level", "debug", "gateway", "run"];

344+
345+

expect(resolveCliCatalogCommandPath(argv)).toEqual(["gateway"]);

346+

expect(resolveCliNetworkProxyPolicy(argv)).toBe("default");

347+

});

348+
342349

it("does not let gateway run option values spoof bypass subcommands", () => {

343350

for (const argv of [

344351

["node", "openclaw", "gateway", "--token", "status"],

Original file line numberDiff line numberDiff line change

@@ -4,11 +4,14 @@ import { resolveStateDir } from "../config/paths.js";

44

import { loadGlobalRuntimeDotEnvFiles, loadWorkspaceDotEnvFile } from "../infra/dotenv.js";

55
66

/** Load `.env` files for normal CLI commands without overriding existing process env. */

7-

export function loadCliDotEnv(opts?: { quiet?: boolean }) {

7+

export function loadCliDotEnv(opts?: { loadGlobalEnv?: boolean; quiet?: boolean }) {

88

const quiet = opts?.quiet ?? true;

99

const cwdEnvPath = path.join(process.cwd(), ".env");

1010

loadWorkspaceDotEnvFile(cwdEnvPath, { quiet });

1111
12+

if (opts?.loadGlobalEnv === false) {

13+

return;

14+

}

1215

// Then load the global fallback set without overriding any env vars that

1316

// were already set or loaded from CWD. This includes the Ubuntu fresh-install

1417

// gateway.env compatibility path.

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,76 @@

1+

import {

2+

cloneEnvWithPlatformSemantics,

3+

createConfigRuntimeEnv,

4+

} from "../../config/config-env-vars.js";

5+

import {

6+

ALLOW_OLDER_BINARY_DESTRUCTIVE_ACTIONS_ENV,

7+

formatFutureConfigActionBlock,

8+

resolveFutureConfigActionBlock,

9+

} from "../../config/future-version-guard.js";

10+

// Gateway-specific future-config actions shared by pre-bootstrap and runtime startup.

11+

import type { ConfigFileSnapshot, OpenClawConfig } from "../../config/types.js";

12+

import type { RuntimeEnv } from "../../runtime.js";

13+

import type { GatewayRunOpts } from "./run-options.js";

14+
15+

export type GatewayRunPreBootstrapOptions = Pick<GatewayRunOpts, "force" | "reset">;

16+
17+

type GatewayRunFutureConfigGuardParams = {

18+

opts: GatewayRunPreBootstrapOptions;

19+

snapshot?: ConfigFileSnapshot | null;

20+

config?: Pick<OpenClawConfig, "env" | "meta"> | null;

21+

};

22+
23+

function resolveGatewayRunFutureConfigBlock(params: GatewayRunFutureConfigGuardParams) {

24+

const processServiceMode = Boolean(process.env.OPENCLAW_SERVICE_MARKER?.trim());

25+

const candidateConfig =

26+

params.config ??

27+

(params.snapshot?.valid ? (params.snapshot.sourceConfig ?? params.snapshot.config) : undefined);

28+

const candidateServiceMode =

29+

!params.opts.reset &&

30+

Boolean(

31+

candidateConfig

32+

? createConfigRuntimeEnv(candidateConfig, process.env).OPENCLAW_SERVICE_MARKER?.trim()

33+

: undefined,

34+

);

35+

const serviceMode = processServiceMode || candidateServiceMode;

36+

// Reset runs before service/force startup, while ordinary startup now runs state migrations.

37+

const futureAction = params.opts.reset

38+

? { action: "reset the dev gateway state", exitCode: 1 }

39+

: serviceMode

40+

? { action: "start the gateway service", exitCode: 78 }

41+

: params.opts.force

42+

? { action: "force-kill gateway port listeners", exitCode: 1 }

43+

: { action: "run automatic gateway startup migrations", exitCode: 1 };

44+

const guardEnv = serviceMode ? cloneEnvWithPlatformSemantics(process.env) : process.env;

45+

if (serviceMode) {

46+

delete guardEnv[ALLOW_OLDER_BINARY_DESTRUCTIVE_ACTIONS_ENV];

47+

}

48+

const block = resolveFutureConfigActionBlock({

49+

action: futureAction.action,

50+

snapshot: params.snapshot,

51+

config: params.config,

52+

env: guardEnv,

53+

});

54+

return block ? { block, exitCode: futureAction.exitCode, serviceMode } : null;

55+

}

56+
57+

export function isGatewayRunFutureConfigAllowed(

58+

params: GatewayRunFutureConfigGuardParams,

59+

): boolean {

60+

return resolveGatewayRunFutureConfigBlock(params) === null;

61+

}

62+
63+

export function enforceGatewayRunFutureConfigGuard(

64+

params: GatewayRunFutureConfigGuardParams & { runtime: RuntimeEnv },

65+

): boolean {

66+

const resolved = resolveGatewayRunFutureConfigBlock(params);

67+

if (!resolved) {

68+

return true;

69+

}

70+

if (resolved.serviceMode) {

71+

delete process.env[ALLOW_OLDER_BINARY_DESTRUCTIVE_ACTIONS_ENV];

72+

}

73+

params.runtime.error(formatFutureConfigActionBlock(resolved.block));

74+

params.runtime.exit(resolved.exitCode);

75+

return false;

76+

}