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

推荐订阅源

B
Blog RSS Feed
B
Blog
N
Netflix TechBlog - Medium
量子位
月光博客
月光博客
博客园_首页
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
M
MIT News - Artificial intelligence
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
腾讯CDC
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG
L
LangChain Blog
GbyAI
GbyAI
IT之家
IT之家
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理

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
refactor: share codex e2e install helpers · openclaw/open...
vincentkoc · 2026-05-30 · via Recent Commits to openclaw:main
11

import fs from "node:fs";

22

import path from "node:path";

3+

import {

4+

assertPathInside,

5+

configPath,

6+

findPackageJson,

7+

managedNpmRoot,

8+

npmProjectRootForInstalledPackage,

9+

readInstallRecords,

10+

readJson,

11+

realPathMaybe,

12+

stateDir,

13+

} from "../codex-install-utils.mjs";

314415

const command = process.argv[2];

5-

const readJson = (file) => JSON.parse(fs.readFileSync(file, "utf8"));

616

const allowBetaCompatDiagnostics =

717

process.env.OPENCLAW_CODEX_NPM_PLUGIN_ALLOW_BETA_COMPAT_DIAGNOSTICS === "1";

8189-

function stateDir() {

10-

return process.env.OPENCLAW_STATE_DIR || path.join(process.env.HOME, ".openclaw");

11-

}

12-13-

function configPath() {

14-

return process.env.OPENCLAW_CONFIG_PATH || path.join(stateDir(), "openclaw.json");

15-

}

16-17-

function realPathMaybe(filePath) {

18-

try {

19-

return fs.realpathSync(filePath);

20-

} catch {

21-

return path.resolve(filePath);

22-

}

23-

}

24-25-

function assertPathInside(parentPath, childPath, label) {

26-

const parent = realPathMaybe(parentPath);

27-

const child = realPathMaybe(childPath);

28-

const relative = path.relative(parent, child);

29-

if (relative.startsWith("..") || path.isAbsolute(relative)) {

30-

throw new Error(`${label} resolved outside ${parentPath}: ${child}`);

31-

}

32-

}

33-3419

function configure() {

3520

const modelRef = process.argv[3] || "codex/gpt-5.4";

3621

const state = stateDir();

@@ -80,24 +65,13 @@ function configure() {

8065

}

81668267

function readInstallRecord() {

83-

const indexPath = path.join(stateDir(), "plugins", "installs.json");

84-

const index = readJson(indexPath);

85-

const record = (index.installRecords || index.records || {}).codex;

68+

const record = readInstallRecords().codex;

8669

if (!record) {

8770

throw new Error("missing codex install record");

8871

}

8972

return record;

9073

}

917492-

function readInstallRecords() {

93-

const indexPath = path.join(stateDir(), "plugins", "installs.json");

94-

if (!fs.existsSync(indexPath)) {

95-

return {};

96-

}

97-

const index = readJson(indexPath);

98-

return index.installRecords || index.records || {};

99-

}

100-10175

function normalizePluginSpec(spec) {

10276

if (spec.startsWith("npm:")) {

10377

return {

@@ -198,10 +172,6 @@ function assertPlugin() {

198172

}

199173

}

200174201-

function managedNpmRoot() {

202-

return path.join(stateDir(), "npm");

203-

}

204-205175

function codexInstallPath() {

206176

const record = readInstallRecord();

207177

if (typeof record.installPath !== "string" || record.installPath.length === 0) {

@@ -211,31 +181,12 @@ function codexInstallPath() {

211181

}

212182213183

function codexNpmProjectRoot() {

214-

const installPath = codexInstallPath();

215-

const packageRoot = "@openclaw/codex"

216-

.split("/")

217-

.reduce((current) => path.dirname(current), installPath);

218-

return path.basename(packageRoot) === "node_modules"

219-

? path.dirname(packageRoot)

220-

: managedNpmRoot();

184+

return npmProjectRootForInstalledPackage(codexInstallPath(), "@openclaw/codex");

221185

}

222186223-

function findPackageJson(packageName) {

224-

const parts = packageName.split("/");

187+

function findCodexPackageJson(packageName) {

225188

const projectRoot = codexNpmProjectRoot();

226-

const candidates =

227-

packageName.startsWith("@") && parts.length === 2

228-

? [

229-

path.join(projectRoot, "node_modules", parts[0], parts[1], "package.json"),

230-

path.join(codexInstallPath(), "node_modules", parts[0], parts[1], "package.json"),

231-

path.join(managedNpmRoot(), "node_modules", parts[0], parts[1], "package.json"),

232-

]

233-

: [

234-

path.join(projectRoot, "node_modules", packageName, "package.json"),

235-

path.join(codexInstallPath(), "node_modules", packageName, "package.json"),

236-

path.join(managedNpmRoot(), "node_modules", packageName, "package.json"),

237-

];

238-

return candidates.find((candidate) => fs.existsSync(candidate));

189+

return findPackageJson(packageName, [projectRoot, codexInstallPath(), managedNpmRoot()]);

239190

}

240191241192

function assertNpmDeps() {

@@ -253,7 +204,7 @@ function assertNpmDeps() {

253204

throw new Error(`unexpected codex package name: ${pluginPackage.name}`);

254205

}

255206256-

const openAiCodexPackageJson = findPackageJson("@openai/codex");

207+

const openAiCodexPackageJson = findCodexPackageJson("@openai/codex");

257208

if (!openAiCodexPackageJson) {

258209

throw new Error("missing @openai/codex dependency under .openclaw/npm");

259210

}

@@ -277,7 +228,7 @@ function resolveCodexBin() {

277228

if (candidate) {

278229

return candidate;

279230

}

280-

const packageJson = findPackageJson("@openai/codex");

231+

const packageJson = findCodexPackageJson("@openai/codex");

281232

if (!packageJson) {

282233

throw new Error("cannot resolve Codex binary without @openai/codex package");

283234

}