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

推荐订阅源

U
Unit 42
T
The Blog of Author Tim Ferriss
H
Help Net Security
博客园 - 叶小钗
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
博客园 - 聂微东
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
B
Blog
Engineering at Meta
Engineering at Meta
V
V2EX
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
chore: trace plugin lifecycle phases · openclaw/openclaw@...
shakkernerd · 2026-04-29 · via Recent Commits to openclaw:main

@@ -5,6 +5,10 @@ import { getRuntimeConfig, readConfigFileSnapshot, replaceConfigFile } from "../

55

import { resolveStateDir } from "../config/paths.js";

66

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

77

import type { PluginInstallRecord } from "../config/types.plugins.js";

8+

import {

9+

tracePluginLifecyclePhase,

10+

tracePluginLifecyclePhaseAsync,

11+

} from "../plugins/plugin-lifecycle-trace.js";

812

import { formatPluginSourceForTable, resolvePluginSourceRoots } from "../plugins/source-display.js";

913

import type { PluginLogger } from "../plugins/types.js";

1014

import { defaultRuntime } from "../runtime.js";

@@ -264,18 +268,29 @@ export function registerPluginsCli(program: Command) {

264268

} = await import("../plugins/status.js");

265269

const { loadInstalledPluginIndexInstallRecords } =

266270

await import("../plugins/installed-plugin-index-records.js");

267-

const cfg = getRuntimeConfig();

268-

const installRecords = await loadInstalledPluginIndexInstallRecords();

271+

const cfg = tracePluginLifecyclePhase("config read", () => getRuntimeConfig(), {

272+

command: "inspect",

273+

});

274+

const installRecords = await tracePluginLifecyclePhaseAsync(

275+

"install records load",

276+

() => loadInstalledPluginIndexInstallRecords(),

277+

{ command: "inspect" },

278+

);

269279

const loggerParams = opts.json ? { logger: quietPluginJsonLogger } : {};

270280

if (opts.all) {

271281

if (id) {

272282

defaultRuntime.error("Pass either a plugin id or --all, not both.");

273283

return defaultRuntime.exit(1);

274284

}

275-

const report = buildPluginDiagnosticsReport({

276-

config: cfg,

277-

...loggerParams,

278-

});

285+

const report = tracePluginLifecyclePhase(

286+

"runtime plugin registry load",

287+

() =>

288+

buildPluginDiagnosticsReport({

289+

config: cfg,

290+

...loggerParams,

291+

}),

292+

{ command: "inspect", all: true },

293+

);

279294

const inspectAll = buildAllPluginInspectReports({

280295

config: cfg,

281296

...loggerParams,

@@ -344,22 +359,32 @@ export function registerPluginsCli(program: Command) {

344359

return defaultRuntime.exit(1);

345360

}

346361347-

const snapshotReport = buildPluginSnapshotReport({

348-

config: cfg,

349-

...loggerParams,

350-

});

362+

const snapshotReport = tracePluginLifecyclePhase(

363+

"plugin registry snapshot",

364+

() =>

365+

buildPluginSnapshotReport({

366+

config: cfg,

367+

...loggerParams,

368+

}),

369+

{ command: "inspect" },

370+

);

351371

const targetPlugin = snapshotReport.plugins.find(

352372

(entry) => entry.id === id || entry.name === id,

353373

);

354374

if (!targetPlugin) {

355375

defaultRuntime.error(`Plugin not found: ${id}`);

356376

return defaultRuntime.exit(1);

357377

}

358-

const report = buildPluginDiagnosticsReport({

359-

config: cfg,

360-

...loggerParams,

361-

onlyPluginIds: [targetPlugin.id],

362-

});

378+

const report = tracePluginLifecyclePhase(

379+

"runtime plugin registry load",

380+

() =>

381+

buildPluginDiagnosticsReport({

382+

config: cfg,

383+

...loggerParams,

384+

onlyPluginIds: [targetPlugin.id],

385+

}),

386+

{ command: "inspect", pluginId: targetPlugin.id },

387+

);

363388

const inspect = buildPluginInspectReport({

364389

id: targetPlugin.id,

365390

config: cfg,

@@ -603,11 +628,23 @@ export function registerPluginsCli(program: Command) {

603628

await import("./plugins-registry-refresh.js");

604629

const { resolvePluginUninstallId } = await import("./plugins-uninstall-selection.js");

605630

const { promptYesNo } = await import("./prompt.js");

606-

const snapshot = await readConfigFileSnapshot();

631+

const snapshot = await tracePluginLifecyclePhaseAsync(

632+

"config read",

633+

() => readConfigFileSnapshot(),

634+

{ command: "uninstall" },

635+

);

607636

const sourceConfig = (snapshot.sourceConfig ?? snapshot.config) as OpenClawConfig;

608-

const installRecords = await loadInstalledPluginIndexInstallRecords();

637+

const installRecords = await tracePluginLifecyclePhaseAsync(

638+

"install records load",

639+

() => loadInstalledPluginIndexInstallRecords(),

640+

{ command: "uninstall" },

641+

);

609642

const cfg = withPluginInstallRecords(sourceConfig, installRecords);

610-

const report = buildPluginSnapshotReport({ config: cfg });

643+

const report = tracePluginLifecyclePhase(

644+

"plugin registry snapshot",

645+

() => buildPluginSnapshotReport({ config: cfg }),

646+

{ command: "uninstall" },

647+

);

611648

const extensionsDir = path.join(resolveStateDir(process.env, os.homedir), "extensions");

612649

const keepFiles = Boolean(opts.keepFiles || opts.keepConfig);

613650

@@ -702,12 +739,17 @@ export function registerPluginsCli(program: Command) {

702739703740

const nextInstallRecords = removePluginInstallRecordFromRecords(installRecords, pluginId);

704741

const nextConfig = withoutPluginInstallRecords(plan.config);

705-

await commitPluginInstallRecordsWithConfig({

706-

previousInstallRecords: installRecords,

707-

nextInstallRecords,

708-

nextConfig,

709-

...(snapshot.hash !== undefined ? { baseHash: snapshot.hash } : {}),

710-

});

742+

await tracePluginLifecyclePhaseAsync(

743+

"config mutation",

744+

() =>

745+

commitPluginInstallRecordsWithConfig({

746+

previousInstallRecords: installRecords,

747+

nextInstallRecords,

748+

nextConfig,

749+

...(snapshot.hash !== undefined ? { baseHash: snapshot.hash } : {}),

750+

}),

751+

{ command: "uninstall" },

752+

);

711753

const directoryResult = await applyPluginUninstallDirectoryRemoval(plan.directoryRemoval);

712754

for (const warning of directoryResult.warnings) {

713755

defaultRuntime.log(theme.warn(warning));

@@ -716,6 +758,7 @@ export function registerPluginsCli(program: Command) {

716758

config: nextConfig,

717759

reason: "source-changed",

718760

installRecords: nextInstallRecords,

761+

traceCommand: "uninstall",

719762

logger: {

720763

warn: (message) => defaultRuntime.log(theme.warn(message)),

721764

},

@@ -764,8 +807,14 @@ export function registerPluginsCli(program: Command) {

764807

marketplace?: string;

765808

},

766809

) => {

767-

const { runPluginInstallCommand } = await import("./plugins-install-command.js");

768-

await runPluginInstallCommand({ raw, opts });

810+

await tracePluginLifecyclePhaseAsync(

811+

"install command",

812+

async () => {

813+

const { runPluginInstallCommand } = await import("./plugins-install-command.js");

814+

await runPluginInstallCommand({ raw, opts });

815+

},

816+

{ command: "install" },

817+

);

769818

},

770819

);

771820