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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
博客园 - 【当耐特】
量子位
有赞技术团队
有赞技术团队
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
C
Check Point Blog
B
Blog RSS Feed
M
MIT News - Artificial intelligence
H
Help Net Security
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
腾讯CDC

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): trim persisted plugin registry state ·...
vincentkoc · 2026-04-25 · via Recent Commits to openclaw:main

@@ -91,7 +91,7 @@ export type InstalledPluginIndexRecord = {

9191

packageJsonHash?: string;

9292

rootDir: string;

9393

origin: PluginManifestRecord["origin"];

94-

enabled: boolean;

94+

enabledByDefault?: boolean;

9595

contributions: InstalledPluginIndexContributions;

9696

compat: readonly PluginCompatCode[];

9797

};

@@ -100,7 +100,8 @@ export type InstalledPluginIndex = {

100100

version: typeof INSTALLED_PLUGIN_INDEX_VERSION;

101101

hostContractVersion: string;

102102

compatRegistryVersion: string;

103-

generatedAt: string;

103+

policyHash: string;

104+

generatedAtMs: number;

104105

refreshReason?: InstalledPluginIndexRefreshReason;

105106

plugins: readonly InstalledPluginIndexRecord[];

106107

diagnostics: readonly PluginDiagnostic[];

@@ -321,6 +322,40 @@ function resolveCompatRegistryVersion(): string {

321322

);

322323

}

323324325+

function resolvePolicyHash(config: OpenClawConfig | undefined): string {

326+

const normalized = normalizePluginsConfigWithResolver(config?.plugins);

327+

const channelPolicy: Record<string, boolean> = {};

328+

const channels = config?.channels;

329+

if (channels && typeof channels === "object" && !Array.isArray(channels)) {

330+

for (const [channelId, value] of Object.entries(channels)) {

331+

if (value && typeof value === "object" && !Array.isArray(value)) {

332+

const enabled = (value as Record<string, unknown>).enabled;

333+

if (typeof enabled === "boolean") {

334+

channelPolicy[channelId] = enabled;

335+

}

336+

}

337+

}

338+

}

339+

return hashJson({

340+

plugins: {

341+

enabled: normalized.enabled,

342+

allow: normalized.allow,

343+

deny: normalized.deny,

344+

slots: normalized.slots,

345+

entries: Object.fromEntries(

346+

Object.entries(normalized.entries)

347+

.flatMap(([pluginId, entry]) =>

348+

typeof entry.enabled === "boolean" ? [[pluginId, entry.enabled] as const] : [],

349+

)

350+

.toSorted(([left], [right]) => left.localeCompare(right)),

351+

),

352+

},

353+

channels: Object.fromEntries(

354+

Object.entries(channelPolicy).toSorted(([left], [right]) => left.localeCompare(right)),

355+

),

356+

});

357+

}

358+324359

function resolveRegistry(params: LoadInstalledPluginIndexParams): {

325360

registry: PluginManifestRegistry;

326361

candidates: readonly PluginCandidate[];

@@ -365,9 +400,8 @@ function buildInstalledPluginIndex(

365400

const env = params.env ?? process.env;

366401

const { candidates, registry } = resolveRegistry(params);

367402

const candidateByRootDir = buildCandidateLookup(candidates);

368-

const normalizedConfig = normalizePluginsConfigWithResolver(params.config?.plugins);

369403

const diagnostics: PluginDiagnostic[] = [...registry.diagnostics];

370-

const generatedAt = (params.now?.() ?? new Date()).toISOString();

404+

const generatedAtMs = (params.now?.() ?? new Date()).getTime();

371405

const plugins = registry.plugins.map((record): InstalledPluginIndexRecord => {

372406

const candidate = candidateByRootDir.get(record.rootDir);

373407

const packageJsonPath = resolvePackageJsonPath(candidate);

@@ -388,24 +422,18 @@ function buildInstalledPluginIndex(

388422

required: false,

389423

})

390424

: undefined;

391-

const enabled = resolveEffectiveEnableState({

392-

id: record.id,

393-

origin: record.origin,

394-

config: normalizedConfig,

395-

rootConfig: params.config,

396-

enabledByDefault: record.enabledByDefault,

397-

}).enabled;

398-399425

const indexRecord: InstalledPluginIndexRecord = {

400426

pluginId: record.id,

401427

manifestPath: record.manifestPath,

402428

manifestHash,

403429

rootDir: record.rootDir,

404430

origin: record.origin,

405-

enabled,

406431

contributions: buildContributions(record),

407432

compat: collectCompatCodes(record),

408433

};

434+

if (record.enabledByDefault === true) {

435+

indexRecord.enabledByDefault = true;

436+

}

409437

if (candidate?.packageName) {

410438

indexRecord.packageName = candidate.packageName;

411439

}

@@ -432,7 +460,8 @@ function buildInstalledPluginIndex(

432460

version: INSTALLED_PLUGIN_INDEX_VERSION,

433461

hostContractVersion: resolveCompatibilityHostVersion(env),

434462

compatRegistryVersion: resolveCompatRegistryVersion(),

435-

generatedAt,

463+

policyHash: resolvePolicyHash(params.config),

464+

generatedAtMs,

436465

...(params.refreshReason ? { refreshReason: params.refreshReason } : {}),

437466

plugins,

438467

diagnostics,

@@ -459,8 +488,19 @@ export function listInstalledPluginRecords(

459488460489

export function listEnabledInstalledPluginRecords(

461490

index: InstalledPluginIndex,

491+

config?: OpenClawConfig,

462492

): readonly InstalledPluginIndexRecord[] {

463-

return index.plugins.filter((plugin) => plugin.enabled);

493+

const normalizedConfig = normalizePluginsConfigWithResolver(config?.plugins);

494+

return index.plugins.filter(

495+

(plugin) =>

496+

resolveEffectiveEnableState({

497+

id: plugin.pluginId,

498+

origin: plugin.origin,

499+

config: normalizedConfig,

500+

rootConfig: config,

501+

enabledByDefault: plugin.enabledByDefault,

502+

}).enabled,

503+

);

464504

}

465505466506

export function getInstalledPluginRecord(

@@ -470,21 +510,38 @@ export function getInstalledPluginRecord(

470510

return index.plugins.find((plugin) => plugin.pluginId === pluginId);

471511

}

472512473-

export function isInstalledPluginEnabled(index: InstalledPluginIndex, pluginId: string): boolean {

474-

return getInstalledPluginRecord(index, pluginId)?.enabled === true;

513+

export function isInstalledPluginEnabled(

514+

index: InstalledPluginIndex,

515+

pluginId: string,

516+

config?: OpenClawConfig,

517+

): boolean {

518+

const record = getInstalledPluginRecord(index, pluginId);

519+

if (!record) {

520+

return false;

521+

}

522+

const normalizedConfig = normalizePluginsConfigWithResolver(config?.plugins);

523+

return resolveEffectiveEnableState({

524+

id: record.pluginId,

525+

origin: record.origin,

526+

config: normalizedConfig,

527+

rootConfig: config,

528+

enabledByDefault: record.enabledByDefault,

529+

}).enabled;

475530

}

476531477532

function resolveContributionRecordSet(

478533

index: InstalledPluginIndex,

479-

options: { includeDisabled?: boolean },

534+

options: { includeDisabled?: boolean; config?: OpenClawConfig },

480535

): readonly InstalledPluginIndexRecord[] {

481-

return options.includeDisabled ? index.plugins : listEnabledInstalledPluginRecords(index);

536+

return options.includeDisabled

537+

? index.plugins

538+

: listEnabledInstalledPluginRecords(index, options.config);

482539

}

483540484541

export function listInstalledPluginContributionIds(

485542

index: InstalledPluginIndex,

486543

contribution: InstalledPluginContributionKey,

487-

options: { includeDisabled?: boolean } = {},

544+

options: { includeDisabled?: boolean; config?: OpenClawConfig } = {},

488545

): readonly string[] {

489546

return sortUnique(

490547

resolveContributionRecordSet(index, options).flatMap(

@@ -497,7 +554,7 @@ export function resolveInstalledPluginContributionOwners(

497554

index: InstalledPluginIndex,

498555

contribution: InstalledPluginContributionKey,

499556

matches: string | ((contributionId: string) => boolean),

500-

options: { includeDisabled?: boolean } = {},

557+

options: { includeDisabled?: boolean; config?: OpenClawConfig } = {},

501558

): readonly string[] {

502559

const matcher =

503560

typeof matches === "string" ? (contributionId: string) => contributionId === matches : matches;

@@ -598,6 +655,9 @@ export function diffInstalledPluginIndexInvalidationReasons(

598655

if (previous.compatRegistryVersion !== current.compatRegistryVersion) {

599656

reasons.add("compat-registry-changed");

600657

}

658+

if (previous.policyHash !== current.policyHash) {

659+

reasons.add("policy-changed");

660+

}

601661602662

const previousByPluginId = new Map(previous.plugins.map((plugin) => [plugin.pluginId, plugin]));

603663

const currentByPluginId = new Map(current.plugins.map((plugin) => [plugin.pluginId, plugin]));

@@ -614,9 +674,6 @@ export function diffInstalledPluginIndexInvalidationReasons(

614674

) {

615675

reasons.add("source-changed");

616676

}

617-

if (previousPlugin.enabled !== currentPlugin.enabled) {

618-

reasons.add("policy-changed");

619-

}

620677

if (previousPlugin.manifestHash !== currentPlugin.manifestHash) {

621678

reasons.add("stale-manifest");

622679

}