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

推荐订阅源

P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
B
Blog
月光博客
月光博客
博客园 - 【当耐特】
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
博客园 - Franky
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
B
Blog RSS Feed
H
Help Net Security

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(daemon): reconcile macOS LaunchAgent supervision stat...
vincentkoc · 2026-04-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1212
1313

### Fixes

1414
15+

- macOS Gateway: detect installed-but-unloaded LaunchAgent split-brain states during status, doctor, and restart, and re-bootstrap launchd supervision before falling back to unmanaged listener restarts. Fixes #67335, #53475, and #71060; refs #58890, #60885, and #70801. Thanks @ze1tgeist88, @dafacto, and @vishutdhar.

1516

- Plugins/install: stage bundled plugin runtime dependencies before Gateway startup and drain update restarts while preserving per-plugin isolation when pre-stage scan or install fails. Thanks @codex.

1617

- CLI/startup: read generated startup metadata from the bundled `dist` layout before falling back to live help rendering, so root/browser help and channel-option bootstrap stay on the fast path. Thanks @vincentkoc.

1718

- CLI/help: treat positional `help` invocations like `openclaw channels help` as help paths for startup gating, avoiding model/auth warmup while preserving positional arguments such as `openclaw docs help`. Thanks @gumadeiras.

Original file line numberDiff line numberDiff line change

@@ -370,17 +370,22 @@ describe("runDaemonRestart health checks", () => {

370370

expect(service.restart).not.toHaveBeenCalled();

371371

});

372372
373-

it("prefers unmanaged restart over launchd repair when a gateway listener is present", async () => {

373+

it("prefers launchd repair over unmanaged restart when an installed LaunchAgent is unloaded", async () => {

374374

vi.spyOn(process, "platform", "get").mockReturnValue("darwin");

375+

recoverInstalledLaunchAgent.mockResolvedValue({

376+

result: "restarted",

377+

loaded: true,

378+

message: "Gateway LaunchAgent was installed but not loaded; re-bootstrapped launchd service.",

379+

});

375380

findVerifiedGatewayListenerPidsOnPortSync.mockReturnValue([4200]);

376381

mockUnmanagedRestart({ runPostRestartCheck: true });

377382
378383

await runDaemonRestart({ json: true });

379384
380-

expect(signalVerifiedGatewayPidSync).toHaveBeenCalledWith(4200, "SIGUSR1");

381-

expect(recoverInstalledLaunchAgent).not.toHaveBeenCalled();

382-

expect(waitForGatewayHealthyListener).toHaveBeenCalledTimes(1);

383-

expect(waitForGatewayHealthyRestart).not.toHaveBeenCalled();

385+

expect(recoverInstalledLaunchAgent).toHaveBeenCalledWith({ result: "restarted" });

386+

expect(signalVerifiedGatewayPidSync).not.toHaveBeenCalled();

387+

expect(waitForGatewayHealthyListener).not.toHaveBeenCalled();

388+

expect(waitForGatewayHealthyRestart).toHaveBeenCalledTimes(1);

384389

});

385390
386391

it("re-bootstraps an installed LaunchAgent on restart when no unmanaged listener exists", async () => {

Original file line numberDiff line numberDiff line change

@@ -201,12 +201,18 @@ export async function runDaemonRestart(opts: DaemonLifecycleOptions = {}): Promi

201201

opts,

202202

checkTokenDrift: true,

203203

onNotLoaded: async () => {

204+

if (process.platform === "darwin") {

205+

const recovered = await recoverInstalledLaunchAgent({ result: "restarted" });

206+

if (recovered) {

207+

return recovered;

208+

}

209+

}

204210

const handled = await restartGatewayWithoutServiceManager(restartPort);

205211

if (handled) {

206212

restartedWithoutServiceManager = true;

207213

return handled;

208214

}

209-

return await recoverInstalledLaunchAgent({ result: "restarted" });

215+

return null;

210216

},

211217

postRestartCheck: async ({ warnings, fail, stdout }) => {

212218

if (restartedWithoutServiceManager) {

Original file line numberDiff line numberDiff line change

@@ -144,7 +144,7 @@ export function normalizeListenerAddress(raw: string): string {

144144

}

145145
146146

export function renderRuntimeHints(

147-

runtime: { missingUnit?: boolean; status?: string } | undefined,

147+

runtime: { missingUnit?: boolean; missingSupervision?: boolean; status?: string } | undefined,

148148

env: NodeJS.ProcessEnv = process.env,

149149

logFile?: string | null,

150150

): string[] {

@@ -160,6 +160,15 @@ export function renderRuntimeHints(

160160

}

161161

return hints;

162162

}

163+

if (runtime.missingSupervision) {

164+

hints.push(

165+

`LaunchAgent installed but not loaded. Run: ${formatCliCommand("openclaw gateway restart", env)}`,

166+

);

167+

if (fileLog) {

168+

hints.push(`File logs: ${fileLog}`);

169+

}

170+

return hints;

171+

}

163172

if (runtime.status === "stopped") {

164173

if (fileLog) {

165174

hints.push(`File logs: ${fileLog}`);

Original file line numberDiff line numberDiff line change

@@ -251,6 +251,15 @@ export function printDaemonStatus(status: DaemonStatus, opts: { json: boolean })

251251

for (const hint of renderRuntimeHints(service.runtime, process.env, status.logFile)) {

252252

defaultRuntime.error(errorText(hint));

253253

}

254+

} else if (service.runtime?.missingSupervision) {

255+

defaultRuntime.error(errorText("LaunchAgent plist exists but launchd has no loaded job."));

256+

for (const hint of renderRuntimeHints(

257+

service.runtime,

258+

service.command?.environment ?? process.env,

259+

status.logFile,

260+

)) {

261+

defaultRuntime.error(errorText(hint));

262+

}

254263

} else if (service.loaded && service.runtime?.status === "stopped") {

255264

defaultRuntime.error(

256265

errorText("Service is loaded but not running (likely exited immediately)."),

Original file line numberDiff line numberDiff line change

@@ -72,6 +72,15 @@ export function buildGatewayRuntimeHints(

7272

}

7373

return hints;

7474

}

75+

if (runtime.missingSupervision && platform === "darwin") {

76+

hints.push(

77+

`LaunchAgent installed but not loaded. Run: ${formatCliCommand("openclaw gateway restart", env)}`,

78+

);

79+

if (fileLog) {

80+

hints.push(`File logs: ${fileLog}`);

81+

}

82+

return hints;

83+

}

7584

if (runtime.status === "stopped") {

7685

hints.push("Service is loaded but not running (likely exited immediately).");

7786

if (fileLog) {

Original file line numberDiff line numberDiff line change

@@ -294,7 +294,6 @@ describe("maybeRepairGatewayDaemon", () => {

294294

it("skips LaunchAgent bootstrap repair when service repair policy is external", async () => {

295295

setPlatform("darwin");

296296

service.isLoaded.mockResolvedValue(false);

297-

vi.mocked(launchd.isLaunchAgentListed).mockResolvedValue(true);

298297

vi.mocked(launchd.isLaunchAgentLoaded).mockResolvedValue(false);

299298

vi.mocked(launchd.launchAgentPlistExists).mockResolvedValue(true);

300299
Original file line numberDiff line numberDiff line change

@@ -7,7 +7,6 @@ import {

77

} from "../daemon/constants.js";

88

import { readLastGatewayErrorLine } from "../daemon/diagnostics.js";

99

import {

10-

isLaunchAgentListed,

1110

isLaunchAgentLoaded,

1211

launchAgentPlistExists,

1312

repairLaunchAgentBootstrap,

@@ -49,8 +48,8 @@ async function maybeRepairLaunchAgentBootstrap(params: {

4948

return false;

5049

}

5150
52-

const listed = await isLaunchAgentListed({ env: params.env });

53-

if (!listed) {

51+

const plistExists = await launchAgentPlistExists(params.env);

52+

if (!plistExists) {

5453

return false;

5554

}

5655

@@ -59,12 +58,7 @@ async function maybeRepairLaunchAgentBootstrap(params: {

5958

return false;

6059

}

6160
62-

const plistExists = await launchAgentPlistExists(params.env);

63-

if (!plistExists) {

64-

return false;

65-

}

66-
67-

note("LaunchAgent is listed but not loaded in launchd.", `${params.title} LaunchAgent`);

61+

note("LaunchAgent is installed but not loaded in launchd.", `${params.title} LaunchAgent`);

6862

if (params.serviceRepairExternal) {

6963

note(EXTERNAL_SERVICE_REPAIR_NOTE, `${params.title} LaunchAgent`);

7064

return false;

Original file line numberDiff line numberDiff line change

@@ -187,6 +187,19 @@ describeLaunchdIntegration("launchd integration", () => {

187187

await expectRuntimePidReplaced({ env: launchEnv, previousPid: before.pid });

188188

}, 60_000);

189189
190+

it("keeps LaunchAgent supervision after a raw SIGTERM", async () => {

191+

const launchEnv = launchEnvOrThrow(env);

192+

try {

193+

await initializeLaunchdRuntime(launchEnv, stdout);

194+

} catch {

195+

return;

196+

}

197+
198+

const before = await waitForRunningRuntime({ env: launchEnv });

199+

process.kill(before.pid, "SIGTERM");

200+

await expectRuntimePidReplaced({ env: launchEnv, previousPid: before.pid });

201+

}, 60_000);

202+
190203

it("stops persistently without reinstall and starts later", async () => {

191204

const launchEnv = launchEnvOrThrow(env);

192205

try {

Original file line numberDiff line numberDiff line change

@@ -8,6 +8,7 @@ import {

88

installLaunchAgent,

99

isLaunchAgentListed,

1010

parseLaunchctlPrint,

11+

readLaunchAgentRuntime,

1112

repairLaunchAgentBootstrap,

1213

restartLaunchAgent,

1314

resolveLaunchAgentPlistPath,

@@ -349,6 +350,30 @@ describe("launchd runtime parsing", () => {

349350

});

350351

});

351352
353+

describe("launchd runtime state", () => {

354+

it("marks installed plist split-brain when launchd no longer has the job", async () => {

355+

const env = createDefaultLaunchdEnv();

356+

state.files.set(resolveLaunchAgentPlistPath(env), "<plist/>");

357+

state.serviceLoaded = false;

358+
359+

await expect(readLaunchAgentRuntime(env)).resolves.toMatchObject({

360+

status: "unknown",

361+

missingSupervision: true,

362+

detail: "Could not find service",

363+

});

364+

});

365+
366+

it("marks a missing unit when launchd has no job and no plist exists", async () => {

367+

const env = createDefaultLaunchdEnv();

368+

state.serviceLoaded = false;

369+
370+

await expect(readLaunchAgentRuntime(env)).resolves.toMatchObject({

371+

status: "unknown",

372+

missingUnit: true,

373+

});

374+

});

375+

});

376+
352377

describe("launchctl list detection", () => {

353378

it("detects the resolved label in launchctl list", async () => {

354379

state.listOutput = "123 0 ai.openclaw.gateway\n";