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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - 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
fix: reuse plugin metadata in local agent turns · opencla...
shakkernerd · 2026-05-17 · via Recent Commits to openclaw:main

@@ -20,6 +20,8 @@ import {

2020

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

2121

import { buildOutboundSessionContext } from "../infra/outbound/session-context.js";

2222

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

23+

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

24+

import { loadManifestMetadataSnapshot } from "../plugins/manifest-contract-eligibility.js";

2325

import {

2426

isSubagentSessionKey,

2527

normalizeAgentId,

@@ -36,6 +38,7 @@ import { createLazyImportLoader } from "../shared/lazy-promise.js";

3638

import { normalizeOptionalString } from "../shared/string-coerce.js";

3739

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

3840

import { createTrajectoryRuntimeRecorder } from "../trajectory/runtime.js";

41+

import { resolveUserPath } from "../utils.js";

3942

import { resolveMessageChannel } from "../utils/message-channel.js";

4043

import { resolveAgentRuntimeConfig } from "./agent-runtime-config.js";

4144

import {

@@ -339,27 +342,6 @@ async function prepareAgentCommandExecution(

339342

}

340343

}

341344

const agentCfg = cfg.agents?.defaults;

342-

const configuredModel = resolveConfiguredModelRef({

343-

cfg,

344-

defaultProvider: DEFAULT_PROVIDER,

345-

defaultModel: DEFAULT_MODEL,

346-

});

347-

const configuredThinkingCatalog = buildConfiguredModelCatalog({ cfg });

348-

const thinkingLevelsHint = formatThinkingLevels(

349-

configuredModel.provider,

350-

configuredModel.model,

351-

", ",

352-

configuredThinkingCatalog.length > 0 ? configuredThinkingCatalog : undefined,

353-

);

354-355-

const thinkOverride = normalizeThinkLevel(opts.thinking);

356-

const thinkOnce = normalizeThinkLevel(opts.thinkingOnce);

357-

if (opts.thinking && !thinkOverride) {

358-

throw new Error(`Invalid thinking level. Use one of: ${thinkingLevelsHint}.`);

359-

}

360-

if (opts.thinkingOnce && !thinkOnce) {

361-

throw new Error(`Invalid one-shot thinking level. Use one of: ${thinkingLevelsHint}.`);

362-

}

363345364346

const verboseOverride = normalizeVerboseLevel(opts.verbose);

365347

if (opts.verbose && !verboseOverride) {

@@ -414,13 +396,49 @@ async function prepareAgentCommandExecution(

414396

// Internal callers (for example subagent spawns) may pin workspace inheritance.

415397

const workspaceDirRaw =

416398

normalizedSpawned.workspaceDir ?? resolveAgentWorkspaceDir(cfg, sessionAgentId);

399+

const workspaceDir = resolveUserPath(workspaceDirRaw);

417400

const agentDir = resolveAgentDir(cfg, sessionAgentId);

418-

const workspace = await ensureAgentWorkspace({

401+

const manifestMetadataSnapshot = loadManifestMetadataSnapshot({

402+

config: cfg,

403+

workspaceDir,

404+

env: process.env,

405+

});

406+

setCurrentPluginMetadataSnapshot(manifestMetadataSnapshot, {

407+

config: cfg,

408+

env: process.env,

409+

workspaceDir,

410+

});

411+

const manifestPlugins = manifestMetadataSnapshot.plugins;

412+

const configuredModel = resolveConfiguredModelRef({

413+

cfg,

414+

defaultProvider: DEFAULT_PROVIDER,

415+

defaultModel: DEFAULT_MODEL,

416+

manifestPlugins,

417+

});

418+

const configuredThinkingCatalog = buildConfiguredModelCatalog({

419+

cfg,

420+

workspaceDir,

421+

manifestPlugins,

422+

});

423+

const thinkingLevelsHint = formatThinkingLevels(

424+

configuredModel.provider,

425+

configuredModel.model,

426+

", ",

427+

configuredThinkingCatalog.length > 0 ? configuredThinkingCatalog : undefined,

428+

);

429+

const thinkOverride = normalizeThinkLevel(opts.thinking);

430+

const thinkOnce = normalizeThinkLevel(opts.thinkingOnce);

431+

if (opts.thinking && !thinkOverride) {

432+

throw new Error(`Invalid thinking level. Use one of: ${thinkingLevelsHint}.`);

433+

}

434+

if (opts.thinkingOnce && !thinkOnce) {

435+

throw new Error(`Invalid one-shot thinking level. Use one of: ${thinkingLevelsHint}.`);

436+

}

437+

await ensureAgentWorkspace({

419438

dir: workspaceDirRaw,

420439

ensureBootstrapFiles: !agentCfg?.skipBootstrap,

421440

skipOptionalBootstrapFiles: agentCfg?.skipOptionalBootstrapFiles,

422441

});

423-

const workspaceDir = workspace.dir;

424442

const runId = opts.runId?.trim() || sessionId;

425443

const { getAcpSessionManager } = await loadAcpManagerRuntime();

426444

const acpManager = getAcpSessionManager();

@@ -460,6 +478,7 @@ async function prepareAgentCommandExecution(

460478

outboundSession,

461479

workspaceDir,

462480

agentDir,

481+

manifestPlugins,

463482

runId,

464483

acpManager,

465484

acpResolution,

@@ -499,6 +518,7 @@ async function agentCommandInternal(

499518

runId,

500519

acpManager,

501520

acpResolution,

521+

manifestPlugins,

502522

} = prepared;

503523

let sessionEntry = prepared.sessionEntry;

504524

@@ -750,10 +770,12 @@ async function agentCommandInternal(

750770

const configuredDefaultRef = resolveDefaultModelForAgent({

751771

cfg,

752772

agentId: sessionAgentId,

773+

manifestPlugins,

753774

});

754775

const { provider: defaultProvider, model: defaultModel } = normalizeModelRef(

755776

configuredDefaultRef.provider,

756777

configuredDefaultRef.model,

778+

{ manifestPlugins },

757779

);

758780

let provider = defaultProvider;

759781

let model = defaultModel;

@@ -786,6 +808,7 @@ async function agentCommandInternal(

786808

catalog: [],

787809

defaultProvider,

788810

defaultModel,

811+

manifestPlugins,

789812

});

790813791814

if (needsModelCatalog) {

@@ -796,6 +819,7 @@ async function agentCommandInternal(

796819

defaultProvider,

797820

defaultModel,

798821

agentId: sessionAgentId,

822+

manifestPlugins,

799823

});

800824

allowedModelCatalog = visibilityPolicy.allowedCatalog;

801825

}

@@ -818,7 +842,9 @@ async function agentCommandInternal(

818842

const overrideProvider = sessionEntry.providerOverride?.trim() || defaultProvider;

819843

const overrideModel = sessionEntry.modelOverride?.trim();

820844

if (overrideModel) {

821-

const normalizedOverride = normalizeModelRef(overrideProvider, overrideModel);

845+

const normalizedOverride = normalizeModelRef(overrideProvider, overrideModel, {

846+

manifestPlugins,

847+

});

822848

const key = modelKey(normalizedOverride.provider, normalizedOverride.model);

823849

if (!visibilityPolicy.allowsKey(key)) {

824850

const { updated } = applyModelOverrideToSessionEntry({

@@ -841,7 +867,9 @@ async function agentCommandInternal(

841867

let storedModelOverride = sessionEntry?.modelOverride?.trim();

842868

if (storedModelOverride) {

843869

const candidateProvider = storedProviderOverride || defaultProvider;

844-

const normalizedStored = normalizeModelRef(candidateProvider, storedModelOverride);

870+

const normalizedStored = normalizeModelRef(candidateProvider, storedModelOverride, {

871+

manifestPlugins,

872+

});

845873

const key = modelKey(normalizedStored.provider, normalizedStored.model);

846874

if (visibilityPolicy.allowsKey(key)) {

847875

provider = normalizedStored.provider;

@@ -867,10 +895,10 @@ async function agentCommandInternal(

867895

if (hasExplicitRunOverride) {

868896

const explicitRef = explicitModelOverride

869897

? explicitProviderOverride

870-

? normalizeModelRef(explicitProviderOverride, explicitModelOverride)

871-

: parseModelRef(explicitModelOverride, provider)

898+

? normalizeModelRef(explicitProviderOverride, explicitModelOverride, { manifestPlugins })

899+

: parseModelRef(explicitModelOverride, provider, { manifestPlugins })

872900

: explicitProviderOverride

873-

? normalizeModelRef(explicitProviderOverride, model)

901+

? normalizeModelRef(explicitProviderOverride, model, { manifestPlugins })

874902

: null;

875903

if (!explicitRef) {

876904

throw new Error("Invalid model override.");

@@ -1085,6 +1113,7 @@ async function agentCommandInternal(

10851113

cfg,

10861114

provider,

10871115

model,

1116+

manifestPlugins,

10881117

runId,

10891118

agentDir,

10901119

fallbacksOverride: effectiveFallbacksOverride,

@@ -1276,7 +1305,7 @@ async function agentCommandInternal(

12761305

{ cause: err },

12771306

);

12781307

}

1279-

const switchRef = normalizeModelRef(err.provider, err.model);

1308+

const switchRef = normalizeModelRef(err.provider, err.model, { manifestPlugins });

12801309

const switchKey = modelKey(switchRef.provider, switchRef.model);

12811310

if (!visibilityPolicy.allowsKey(switchKey)) {

12821311

log.info(