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

推荐订阅源

罗磊的独立博客
The GitHub Blog
The GitHub Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
小众软件
小众软件
博客园_首页
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
Docker
B
Blog
雷峰网
雷峰网
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow 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
perf(tui): skip plugin metadata + provider catalog on rem...
RomneyDa · 2026-05-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -219,7 +219,7 @@ function primeConfiguredContextWindows(): OpenClawConfig | undefined {

219219

}

220220

}

221221
222-

function ensureContextWindowCacheLoaded(): Promise<void> {

222+

export function ensureContextWindowCacheLoaded(): Promise<void> {

223223

if (CONTEXT_WINDOW_RUNTIME_STATE.loadPromise) {

224224

return CONTEXT_WINDOW_RUNTIME_STATE.loadPromise;

225225

}

@@ -287,12 +287,6 @@ export function lookupContextTokens(

287287

return lookupCachedContextTokens(modelId);

288288

}

289289
290-

if (shouldEagerWarmContextWindowCache()) {

291-

// Keep startup warmth for the real CLI, but avoid import-time side effects

292-

// when this module is pulled in through library/plugin-sdk surfaces.

293-

void ensureContextWindowCacheLoaded();

294-

}

295-
296290

function resolveProviderModelRef(params: {

297291

provider?: string;

298292

model?: string;

Original file line numberDiff line numberDiff line change

@@ -2387,15 +2387,17 @@ export function projectConfigOntoRuntimeSourceSnapshot(config: OpenClawConfig):

23872387

return coerceConfig(applyMergePatch(projectedSource, runtimePatch));

23882388

}

23892389
2390-

export function loadConfig(): OpenClawConfig {

2390+

export function loadConfig(options?: { skipPluginValidation?: boolean }): OpenClawConfig {

23912391

// First successful load becomes the process snapshot. Long-lived runtimes

23922392

// should swap this snapshot via explicit reload/watcher paths instead of

23932393

// reparsing openclaw.json on hot code paths.

2394-

return loadPinnedRuntimeConfig(() => createConfigIO().loadConfig());

2394+

return loadPinnedRuntimeConfig(() =>

2395+

createConfigIO(options?.skipPluginValidation ? { pluginValidation: "skip" } : {}).loadConfig(),

2396+

);

23952397

}

23962398
2397-

export function getRuntimeConfig(): OpenClawConfig {

2398-

return loadConfig();

2399+

export function getRuntimeConfig(options?: { skipPluginValidation?: boolean }): OpenClawConfig {

2400+

return loadConfig(options);

23992401

}

24002402
24012403

export async function readBestEffortConfig(): Promise<OpenClawConfig> {

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,7 @@

11

import { randomUUID } from "node:crypto";

22

import { agentCommandFromIngress } from "../agents/agent-command.js";

33

import { resolveSessionAgentId } from "../agents/agent-scope.js";

4+

import { ensureContextWindowCacheLoaded } from "../agents/context.js";

45

import { DEFAULT_PROVIDER } from "../agents/defaults.js";

56

import { buildAllowedModelSet, resolveThinkingDefault } from "../agents/model-selection.js";

67

import { createDefaultDeps } from "../cli/deps.js";

@@ -138,6 +139,7 @@ export class EmbeddedTuiBackend implements TuiBackend {

138139

return;

139140

}

140141

setEmbeddedMode(true);

142+

void ensureContextWindowCacheLoaded();

141143

// Suppress console output from logError/logInfo that would pollute the TUI.

142144

// File logger (getLogger()) still captures everything via logger.ts:35.

143145

this.previousRuntimeLog = defaultRuntime.log;

Original file line numberDiff line numberDiff line change

@@ -443,7 +443,7 @@ export function resolveTuiCtrlCAction(params: {

443443
444444

export async function runTui(opts: RunTuiOptions): Promise<TuiResult> {

445445

const isLocalMode = opts.local === true || opts.backend !== undefined;

446-

const config = opts.config ?? getRuntimeConfig();

446+

const config = opts.config ?? getRuntimeConfig({ skipPluginValidation: !isLocalMode });

447447

const initialSessionInput = (opts.session ?? "").trim();

448448

let sessionScope: SessionScope = (config.session?.scope ?? "per-sender") as SessionScope;

449449

let sessionMainKey = normalizeMainKey(config.session?.mainKey);