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

推荐订阅源

N
Netflix TechBlog - Medium
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
F
Fortinet All Blogs
D
Docker
博客园 - 司徒正美
腾讯CDC
Recent Announcements
Recent Announcements
The Cloudflare Blog
B
Blog RSS Feed
GbyAI
GbyAI
T
Tailwind CSS Blog
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
阮一峰的网络日志
阮一峰的网络日志

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: memoize plugin descriptor config keys (#76240) · ope...
joshavant · 2026-05-03 · via Recent Commits to openclaw:main

@@ -21,8 +21,10 @@ import { findUndeclaredPluginToolNames } from "./tool-contracts.js";

2121

import {

2222

buildPluginToolDescriptorCacheKey,

2323

capturePluginToolDescriptor,

24+

createPluginToolDescriptorConfigCacheKeyMemo,

2425

readCachedPluginToolDescriptors,

2526

type CachedPluginToolDescriptor,

27+

type PluginToolDescriptorConfigCacheKeyMemo,

2628

writeCachedPluginToolDescriptors,

2729

} from "./tool-descriptor-cache.js";

2830

import type { OpenClawPluginToolContext } from "./types.js";

@@ -395,6 +397,7 @@ function buildPluginDescriptorCacheKey(params: {

395397

plugin: PluginManifestRecord;

396398

ctx: OpenClawPluginToolContext;

397399

currentRuntimeConfig?: PluginLoadOptions["config"] | null;

400+

configCacheKeyMemo?: PluginToolDescriptorConfigCacheKeyMemo;

398401

}): string {

399402

return buildPluginToolDescriptorCacheKey({

400403

pluginId: params.plugin.id,

@@ -403,6 +406,7 @@ function buildPluginDescriptorCacheKey(params: {

403406

contractToolNames: params.plugin.contracts?.tools ?? [],

404407

ctx: params.ctx,

405408

currentRuntimeConfig: params.currentRuntimeConfig,

409+

configCacheKeyMemo: params.configCacheKeyMemo,

406410

});

407411

}

408412

@@ -493,6 +497,7 @@ function resolveCachedPluginTools(params: {

493497

loadContext: ReturnType<typeof resolvePluginRuntimeLoadContext>;

494498

runtimeOptions: PluginLoadOptions["runtimeOptions"];

495499

currentRuntimeConfig?: PluginLoadOptions["config"] | null;

500+

configCacheKeyMemo: PluginToolDescriptorConfigCacheKeyMemo;

496501

}): { tools: AnyAgentTool[]; handledPluginIds: Set<string> } {

497502

const tools: AnyAgentTool[] = [];

498503

const handledPluginIds = new Set<string>();

@@ -535,6 +540,7 @@ function resolveCachedPluginTools(params: {

535540

plugin,

536541

ctx: params.ctx,

537542

currentRuntimeConfig: params.currentRuntimeConfig,

543+

configCacheKeyMemo: params.configCacheKeyMemo,

538544

}),

539545

);

540546

if (

@@ -714,6 +720,7 @@ export function resolvePluginTools(params: {

714720

const existing = params.existingToolNames ?? new Set<string>();

715721

const existingNormalized = new Set(Array.from(existing, (tool) => normalizeToolName(tool)));

716722

const allowlist = normalizeAllowlist(params.toolAllowlist);

723+

const configCacheKeyMemo = createPluginToolDescriptorConfigCacheKeyMemo();

717724

let currentRuntimeConfigForDescriptorCache: PluginLoadOptions["config"] | null | undefined =

718725

params.context.runtimeConfig;

719726

if (currentRuntimeConfigForDescriptorCache === undefined && params.context.getRuntimeConfig) {

@@ -737,6 +744,7 @@ export function resolvePluginTools(params: {

737744

loadContext: context,

738745

runtimeOptions,

739746

currentRuntimeConfig: currentRuntimeConfigForDescriptorCache,

747+

configCacheKeyMemo,

740748

});

741749

tools.push(...cached.tools);

742750

const runtimePluginIds = onlyPluginIds.filter(

@@ -922,6 +930,7 @@ export function resolvePluginTools(params: {

922930

plugin: manifestPlugin,

923931

ctx: params.context,

924932

currentRuntimeConfig: currentRuntimeConfigForDescriptorCache,

933+

configCacheKeyMemo,

925934

}),

926935

descriptors,

927936

});