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

推荐订阅源

S
SegmentFault 最新的问题
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
月光博客
月光博客
IT之家
IT之家
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
小众软件
小众软件
C
Check Point Blog
B
Blog RSS Feed
H
Help Net Security
博客园 - 司徒正美
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
B
Blog
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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: drop stale service PATH entries · openclaw/openclaw@...
leonaIee · 2026-05-02 · via Recent Commits to openclaw:main

@@ -1,10 +1,7 @@

11

import fs from "node:fs/promises";

22

import path from "node:path";

33

import { normalizeEnvVarKey } from "../infra/host-env-security.js";

4-

import {

5-

normalizeLowercaseStringOrEmpty,

6-

normalizeOptionalString,

7-

} from "../shared/string-coerce.js";

4+

import { normalizeOptionalString } from "../shared/string-coerce.js";

85

import { resolveLaunchAgentPlistPath } from "./launchd.js";

96

import { isBunRuntime, isNodeRuntime } from "./runtime-binary.js";

107

import {

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

1916

hasInlineEnvironmentSource,

2017

isEnvironmentFileOnlySource,

2118

} from "./service-managed-env.js";

19+

import { isNonMinimalServicePathEntry, normalizeServicePathEntry } from "./service-path-policy.js";

2220

import type { GatewayServiceEnvironmentValueSource } from "./service-types.js";

2321

import { resolveSystemdUserUnitPath } from "./systemd.js";

2422

@@ -385,15 +383,6 @@ function getPathModule(platform: NodeJS.Platform) {

385383

return platform === "win32" ? path.win32 : path.posix;

386384

}

387385388-

function normalizePathEntry(entry: string, platform: NodeJS.Platform): string {

389-

const pathModule = getPathModule(platform);

390-

const normalized = pathModule.normalize(entry).replaceAll("\\", "/");

391-

if (platform === "win32") {

392-

return normalizeLowercaseStringOrEmpty(normalized);

393-

}

394-

return normalized;

395-

}

396-397386

function getEquivalentMinimalPathEntries(

398387

entry: string,

399388

platform: NodeJS.Platform,

@@ -410,7 +399,7 @@ function getEquivalentMinimalPathEntries(

410399

if (!equivalent) {

411400

return [];

412401

}

413-

const normalizedEquivalent = normalizePathEntry(equivalent, platform);

402+

const normalizedEquivalent = normalizeServicePathEntry(equivalent, platform);

414403

return normalizedExpected.has(normalizedEquivalent) ? [equivalent] : [];

415404

}

416405

@@ -442,15 +431,17 @@ function auditGatewayServicePath(

442431

.split(getPathModule(platform).delimiter)

443432

.map((entry) => entry.trim())

444433

.filter(Boolean);

445-

const normalizedParts = new Set(parts.map((entry) => normalizePathEntry(entry, platform)));

446-

const normalizedExpected = new Set(expected.map((entry) => normalizePathEntry(entry, platform)));

434+

const normalizedParts = new Set(parts.map((entry) => normalizeServicePathEntry(entry, platform)));

435+

const normalizedExpected = new Set(

436+

expected.map((entry) => normalizeServicePathEntry(entry, platform)),

437+

);

447438

const missing = expected.filter((entry) => {

448-

const normalized = normalizePathEntry(entry, platform);

439+

const normalized = normalizeServicePathEntry(entry, platform);

449440

if (normalizedParts.has(normalized)) {

450441

return false;

451442

}

452443

return !getEquivalentMinimalPathEntries(entry, platform, normalizedExpected).some(

453-

(equivalent) => normalizedParts.has(normalizePathEntry(equivalent, platform)),

444+

(equivalent) => normalizedParts.has(normalizeServicePathEntry(equivalent, platform)),

454445

);

455446

});

456447

if (missing.length > 0) {

@@ -462,23 +453,11 @@ function auditGatewayServicePath(

462453

}

463454464455

const nonMinimal = parts.filter((entry) => {

465-

const normalized = normalizePathEntry(entry, platform);

456+

const normalized = normalizeServicePathEntry(entry, platform);

466457

if (normalizedExpected.has(normalized)) {

467458

return false;

468459

}

469-

return (

470-

normalized.includes("/.nvm/") ||

471-

normalized.includes("/.fnm/") ||

472-

normalized.includes("/.volta/") ||

473-

normalized.includes("/.asdf/") ||

474-

normalized.includes("/.n/") ||

475-

normalized.includes("/.nodenv/") ||

476-

normalized.includes("/.nodebrew/") ||

477-

normalized.includes("/nvs/") ||

478-

normalized.includes("/.local/share/pnpm/") ||

479-

normalized.includes("/pnpm/") ||

480-

normalized.endsWith("/pnpm")

481-

);

460+

return isNonMinimalServicePathEntry(normalized, platform);

482461

});

483462

if (nonMinimal.length > 0) {

484463

issues.push({