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

推荐订阅源

博客园 - 叶小钗
爱范儿
爱范儿
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
博客园 - 聂微东
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
罗磊的独立博客
Jina AI
Jina AI

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(plugins): dedupe index database options · opencl...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -4,7 +4,6 @@ import path from "node:path";

44

import { isRecord } from "@openclaw/normalization-core/record-coerce";

55

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

66

import { tryReadJsonSync } from "../infra/json-files.js";

7-

import type { OpenClawStateDatabaseOptions } from "../state/openclaw-state-db.js";

87

import { openOpenClawStateDatabase } from "../state/openclaw-state-db.js";

98

import { resolveDefaultPluginNpmDir, validatePluginId } from "./install-paths.js";

109

import {

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

1312

setInstalledPluginIndexInstallRecordsCache,

1413

} from "./installed-plugin-index-record-cache.js";

1514

import {

15+

resolveInstalledPluginIndexStateDatabaseOptions,

1616

resolveInstalledPluginIndexStorePath,

1717

type InstalledPluginIndexStoreOptions,

1818

} from "./installed-plugin-index-store-path.js";

@@ -246,26 +246,6 @@ type InstalledPluginIndexRecordRow = {

246246

plugins_json: string;

247247

};

248248
249-

function resolveStateDatabaseOptions(

250-

options: InstalledPluginIndexStoreOptions = {},

251-

): OpenClawStateDatabaseOptions {

252-

if (options.filePath) {

253-

return {

254-

...(options.env ? { env: options.env } : {}),

255-

path: options.filePath,

256-

};

257-

}

258-

if (options.stateDir) {

259-

return {

260-

env: {

261-

...(options.env ?? process.env),

262-

OPENCLAW_STATE_DIR: options.stateDir,

263-

},

264-

};

265-

}

266-

return options.env ? { env: options.env } : {};

267-

}

268-
269249

function parseJsonColumn(value: string): unknown {

270250

try {

271251

return JSON.parse(value) as unknown;

@@ -285,7 +265,9 @@ function readPersistedInstalledPluginIndexForRecords(

285265

return tryReadJsonSync(options.filePath);

286266

}

287267

try {

288-

const database = openOpenClawStateDatabase(resolveStateDatabaseOptions(options));

268+

const database = openOpenClawStateDatabase(

269+

resolveInstalledPluginIndexStateDatabaseOptions(options),

270+

);

289271

const row = database.db

290272

.prepare(

291273

`

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,7 @@

11

// Resolves filesystem paths for installed plugin index storage.

22

import path from "node:path";

33

import { resolveStateDir } from "../config/paths.js";

4+

import type { OpenClawStateDatabaseOptions } from "../state/openclaw-state-db.js";

45

import { resolveOpenClawStateSqlitePath } from "../state/openclaw-state-db.paths.js";

56
67

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

@@ -28,6 +29,24 @@ export function resolveInstalledPluginIndexStorePath(

2829

return resolveOpenClawStateSqlitePath(resolveStoreEnv(options));

2930

}

3031
32+

/** Resolves state database options for the installed plugin index store. */

33+

export function resolveInstalledPluginIndexStateDatabaseOptions(

34+

options: InstalledPluginIndexStoreOptions = {},

35+

): OpenClawStateDatabaseOptions {

36+

if (options.filePath) {

37+

return {

38+

...(options.env ? { env: options.env } : {}),

39+

path: options.filePath,

40+

};

41+

}

42+

if (options.stateDir) {

43+

return {

44+

env: resolveStoreEnv(options),

45+

};

46+

}

47+

return options.env ? { env: options.env } : {};

48+

}

49+
3150

/** Resolves the legacy JSON installed plugin index path for migration/doctor use. */

3251

export function resolveLegacyInstalledPluginIndexStorePath(

3352

options: InstalledPluginIndexStoreOptions = {},

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,6 @@

22

import { existsSync, readFileSync } from "node:fs";

33

import { z } from "zod";

44

import { isBlockedObjectKey } from "../infra/prototype-keys.js";

5-

import type { OpenClawStateDatabaseOptions } from "../state/openclaw-state-db.js";

65

import {

76

openOpenClawStateDatabase,

87

runOpenClawStateWriteTransaction,

@@ -15,6 +14,7 @@ import { hashJson } from "./installed-plugin-index-hash.js";

1514

import { resolveCompatRegistryVersion } from "./installed-plugin-index-policy.js";

1615

import { clearLoadInstalledPluginIndexInstallRecordsCache } from "./installed-plugin-index-record-cache.js";

1716

import {

17+

resolveInstalledPluginIndexStateDatabaseOptions,

1818

resolveInstalledPluginIndexStorePath,

1919

type InstalledPluginIndexStoreOptions,

2020

} from "./installed-plugin-index-store-path.js";

@@ -196,26 +196,6 @@ type InstalledPluginIndexSqliteRow = {

196196

diagnostics_json: string;

197197

};

198198
199-

function resolveStateDatabaseOptions(

200-

options: InstalledPluginIndexStoreOptions = {},

201-

): OpenClawStateDatabaseOptions {

202-

if (options.filePath) {

203-

return {

204-

...(options.env ? { env: options.env } : {}),

205-

path: options.filePath,

206-

};

207-

}

208-

if (options.stateDir) {

209-

return {

210-

env: {

211-

...(options.env ?? process.env),

212-

OPENCLAW_STATE_DIR: options.stateDir,

213-

},

214-

};

215-

}

216-

return options.env ? { env: options.env } : {};

217-

}

218-
219199

function isExplicitLegacyJsonStorePath(options: InstalledPluginIndexStoreOptions): boolean {

220200

return Boolean(options.filePath && options.filePath.endsWith(".json"));

221201

}

@@ -309,7 +289,9 @@ function readPersistedInstalledPluginIndexFromSqlite(

309289

return null;

310290

}

311291

try {

312-

const database = openOpenClawStateDatabase(resolveStateDatabaseOptions(options));

292+

const database = openOpenClawStateDatabase(

293+

resolveInstalledPluginIndexStateDatabaseOptions(options),

294+

);

313295

const row = database.db

314296

.prepare(

315297

`

@@ -379,7 +361,7 @@ function writePersistedInstalledPluginIndexToSqlite(

379361

warning: persisted.warning,

380362

updated_at_ms: now,

381363

});

382-

}, resolveStateDatabaseOptions(options));

364+

}, resolveInstalledPluginIndexStateDatabaseOptions(options));

383365

}

384366
385367

export async function readPersistedInstalledPluginIndex(