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

推荐订阅源

Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Vercel News
Vercel News
Y
Y Combinator Blog
D
DataBreaches.Net
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
H
Help Net Security
GbyAI
GbyAI
C
Check Point Blog
L
LangChain Blog
小众软件
小众软件
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
G
Google Developers Blog
月光博客
月光博客
V
V2EX
M
MIT News - Artificial intelligence
博客园 - 叶小钗

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(context-engine): expose fallback metadata after quara...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main

@@ -11,6 +11,7 @@ import type {

1111

IngestBatchResult,

1212

IngestResult,

1313

SubagentSpawnPreparation,

14+

ContextEngineInfo,

1415

} from "./types.js";

15161617

/**

@@ -43,7 +44,20 @@ type RegisterContextEngineForOwnerOptions = {

4344

};

44454546

const LEGACY_SESSION_KEY_COMPAT = Symbol.for("openclaw.contextEngine.sessionKeyCompat");

46-

const RESOLVED_CONTEXT_ENGINE_METADATA = new WeakMap<ContextEngine, { owner: string }>();

47+

type ResolvedContextEngineMetadata = {

48+

owner: string;

49+

};

50+51+

type RuntimeQuarantineProxyState = {

52+

engineId: string;

53+

getResolvedFallbackEngine: () => ContextEngine | undefined;

54+

};

55+56+

const RESOLVED_CONTEXT_ENGINE_METADATA = new WeakMap<

57+

ContextEngine,

58+

ResolvedContextEngineMetadata

59+

>();

60+

const RUNTIME_QUARANTINE_PROXY_STATE = new WeakMap<ContextEngine, RuntimeQuarantineProxyState>();

4761

const SESSION_KEY_COMPAT_METHODS = [

4862

"bootstrap",

4963

"maintain",

@@ -545,14 +559,29 @@ export function resolveContextEngineOwnerPluginId(

545559

if (!engine) {

546560

return undefined;

547561

}

548-

const owner = RESOLVED_CONTEXT_ENGINE_METADATA.get(engine)?.owner;

562+

const owner = resolveEffectiveContextEngineMetadata(engine)?.owner;

549563

if (!owner?.startsWith("plugin:")) {

550564

return undefined;

551565

}

552566

const pluginId = owner.slice("plugin:".length).trim();

553567

return pluginId || undefined;

554568

}

555569570+

function resolveEffectiveContextEngineMetadata(

571+

engine: ContextEngine,

572+

): ResolvedContextEngineMetadata | undefined {

573+

const quarantineState = RUNTIME_QUARANTINE_PROXY_STATE.get(engine);

574+

if (quarantineState && getContextEngineQuarantine(quarantineState.engineId)) {

575+

const fallbackEngine = quarantineState.getResolvedFallbackEngine();

576+

return (

577+

(fallbackEngine ? RESOLVED_CONTEXT_ENGINE_METADATA.get(fallbackEngine) : undefined) ?? {

578+

owner: CORE_CONTEXT_ENGINE_OWNER,

579+

}

580+

);

581+

}

582+

return RESOLVED_CONTEXT_ENGINE_METADATA.get(engine);

583+

}

584+556585

function describeResolvedContextEngineContractError(

557586

engineId: string,

558587

engine: unknown,

@@ -738,16 +767,35 @@ function wrapContextEngineWithRuntimeQuarantine(params: {

738767

factoryCtx: ContextEngineFactoryContext;

739768

}): ContextEngine {

740769

let fallbackEnginePromise: Promise<ContextEngine> | undefined;

770+

let resolvedFallbackEngine: ContextEngine | undefined;

741771

const getFallbackEngine = () => {

742772

fallbackEnginePromise ??= resolveDefaultContextEngine(

743773

params.defaultEngineId,

744774

params.factoryCtx,

745-

);

775+

).then((engine) => {

776+

resolvedFallbackEngine = engine;

777+

return engine;

778+

});

746779

return fallbackEnginePromise;

747780

};

781+

const fallbackInfo = (): ContextEngineInfo => {

782+

return (

783+

resolvedFallbackEngine?.info ?? {

784+

id: params.defaultEngineId,

785+

name:

786+

params.defaultEngineId === "legacy"

787+

? "Legacy Context Engine"

788+

: `${params.defaultEngineId} Context Engine`,

789+

}

790+

);

791+

};

792+

const isQuarantined = () => Boolean(getContextEngineQuarantine(params.engineId));

748793749-

return new Proxy(params.engine, {

794+

const proxy = new Proxy(params.engine, {

750795

get(target, property, receiver) {

796+

if (property === "info" && isQuarantined()) {

797+

return fallbackInfo();

798+

}

751799

const value = Reflect.get(target, property, receiver);

752800

if (typeof value !== "function" || !GUARDED_CONTEXT_ENGINE_METHODS.has(property)) {

753801

return typeof value === "function" ? value.bind(target) : value;

@@ -759,7 +807,7 @@ function wrapContextEngineWithRuntimeQuarantine(params: {

759807

if (aborted) {

760808

throw aborted;

761809

}

762-

if (getContextEngineQuarantine(params.engineId)) {

810+

if (isQuarantined()) {

763811

return await invokeFallbackContextEngineMethod({

764812

getFallbackEngine,

765813

methodName,

@@ -780,7 +828,7 @@ function wrapContextEngineWithRuntimeQuarantine(params: {

780828

error,

781829

defaultEngineId: params.defaultEngineId,

782830

});

783-

if (methodName === "prepareSubagentSpawn") {

831+

if (methodName === "compact" || methodName === "prepareSubagentSpawn") {

784832

throw error;

785833

}

786834

try {

@@ -796,8 +844,12 @@ function wrapContextEngineWithRuntimeQuarantine(params: {

796844

};

797845

},

798846

});

847+

RUNTIME_QUARANTINE_PROXY_STATE.set(proxy, {

848+

engineId: params.engineId,

849+

getResolvedFallbackEngine: () => resolvedFallbackEngine,

850+

});

851+

return proxy;

799852

}

800-801853

// ---------------------------------------------------------------------------

802854

// Resolution

803855

// ---------------------------------------------------------------------------