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

推荐订阅源

WordPress大学
WordPress大学
Vercel News
Vercel News
博客园_首页
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
博客园 - Franky
Engineering at Meta
Engineering at Meta
量子位
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
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
refactor: route plugin metadata consumers through snapsho...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -2,18 +2,24 @@ import path from "node:path";

22

import { fileURLToPath, pathToFileURL } from "node:url";

33

import { resolveAgentWorkspaceDir, resolveDefaultAgentId } from "../../agents/agent-scope.js";

44

import type { OpenClawConfig } from "../../config/types.openclaw.js";

5+

import { formatErrorMessage } from "../../infra/errors.js";

56

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

7+

import { createSubsystemLogger } from "../../logging/subsystem.js";

68

import {

79

hasExplicitChannelConfig,

810

listConfiguredChannelIdsForReadOnlyScope,

911

resolveDiscoverableScopedChannelPluginIds,

1012

} from "../../plugins/channel-plugin-ids.js";

13+

import {

14+

channelPluginIdBelongsToManifest,

15+

resolveSetupChannelRegistration,

16+

} from "../../plugins/loader-channel-setup.js";

1117

import type { PluginManifestRecord } from "../../plugins/manifest-registry.js";

18+

import { loadPluginMetadataSnapshot } from "../../plugins/plugin-metadata-snapshot.js";

1219

import {

1320

getCachedPluginModuleLoader,

1421

type PluginModuleLoaderCache,

1522

} from "../../plugins/plugin-module-loader-cache.js";

16-

import { loadPluginManifestRegistryForPluginRegistry } from "../../plugins/plugin-registry.js";

1723

import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../../routing/session-key.js";

1824

import { sanitizeForLog } from "../../terminal/ansi.js";

1925

import { getBundledChannelSetupPlugin } from "./bundled.js";

@@ -35,6 +41,7 @@ const BUILT_PLUGIN_LOADER_MODULE_CANDIDATES = [

3541

"plugins/build-smoke-entry.js",

3642

] as const;

3743

const moduleLoaders: PluginModuleLoaderCache = new Map();

44+

const log = createSubsystemLogger("channels");

38453946

type PluginLoaderModule = {

4047

loadOpenClawPlugins: (params: {

@@ -366,6 +373,44 @@ function canUseManifestChannelPlugin(record: PluginManifestRecord, channelId: st

366373367374

export { resolveReadOnlyChannelCommandDefaults };

368375376+

function loadSetupChannelPluginFromManifestRecord(params: {

377+

record: PluginManifestRecord;

378+

channelId: string;

379+

}): ChannelPlugin | undefined {

380+

if (!params.record.setupSource || !params.record.channels.includes(params.channelId)) {

381+

return undefined;

382+

}

383+

try {

384+

const moduleLoader = getCachedPluginModuleLoader({

385+

cache: moduleLoaders,

386+

modulePath: params.record.setupSource,

387+

importerUrl: import.meta.url,

388+

preferBuiltDist: true,

389+

loaderFilename: import.meta.url,

390+

tryNative: true,

391+

cacheScopeKey: "read-only-setup-entry",

392+

});

393+

const registration = resolveSetupChannelRegistration(moduleLoader(params.record.setupSource));

394+

if (!registration.plugin) {

395+

return undefined;

396+

}

397+

if (

398+

!channelPluginIdBelongsToManifest({

399+

channelId: registration.plugin.id,

400+

pluginId: params.record.id,

401+

manifestChannels: params.record.channels,

402+

})

403+

) {

404+

return undefined;

405+

}

406+

return cloneChannelPluginForChannelId(registration.plugin, params.channelId);

407+

} catch (error) {

408+

const detail = formatErrorMessage(error);

409+

log.warn(`[channels] failed to load channel setup ${params.record.id}: ${detail}`);

410+

return undefined;

411+

}

412+

}

413+369414

function rebindChannelPluginConfig(

370415

config: ChannelPlugin["config"],

371416

sourceChannelId: string,

@@ -652,12 +697,11 @@ export function resolveReadOnlyChannelPluginsForConfig(

652697

): ReadOnlyChannelPluginResolution {

653698

const env = options.env ?? process.env;

654699

const workspaceDir = resolveReadOnlyWorkspaceDir(cfg, options);

655-

const manifestRecords = loadPluginManifestRegistryForPluginRegistry({

700+

const manifestRecords = loadPluginMetadataSnapshot({

656701

config: cfg,

657702

stateDir: options.stateDir,

658703

workspaceDir,

659704

env,

660-

includeDisabled: true,

661705

}).plugins;

662706

const bundledManifestRecords = listBundledChannelManifestRecords(manifestRecords);

663707

const externalManifestRecords = listExternalChannelManifestRecords(manifestRecords);

@@ -682,7 +726,17 @@ export function resolveReadOnlyChannelPluginsForConfig(

682726

if (byId.has(channelId)) {

683727

continue;

684728

}

685-

addChannelPlugins(byId, [getBundledChannelSetupPlugin(channelId)]);

729+

const bundledSetupPlugin =

730+

bundledManifestRecords

731+

.filter((record) => record.channels.includes(channelId))

732+

.map((record) =>

733+

loadSetupChannelPluginFromManifestRecord({

734+

record,

735+

channelId,

736+

}),

737+

)

738+

.find((plugin) => plugin) ?? getBundledChannelSetupPlugin(channelId, env);

739+

addChannelPlugins(byId, [bundledSetupPlugin]);

686740

}

687741

}

688742