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

推荐订阅源

C
Check Point Blog
IT之家
IT之家
V
Visual Studio Blog
The Cloudflare Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
S
SegmentFault 最新的问题
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
博客园 - Franky
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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: repair plugin CI on main · openclaw/openclaw@27ea024
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -26,6 +26,9 @@

2626

"defaultChoice": "npm",

2727

"minHostVersion": ">=2026.5.1-beta.1"

2828

},

29+

"bundle": {

30+

"includeInCore": false

31+

},

2932

"compat": {

3033

"pluginApi": ">=2026.5.1-beta.1"

3134

},

Original file line numberDiff line numberDiff line change

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

77

SessionManager,

88

type FileEntry as PiSessionFileEntry,

99

} from "@mariozechner/pi-coding-agent";

10-

import { v7 as uuidv7 } from "uuid";

1110

import { updateSessionStore } from "../config/sessions.js";

1211

import type {

1312

SessionCompactionCheckpoint,

@@ -261,7 +260,7 @@ export async function forkCompactionCheckpointTranscriptAsync(params: {

261260
262261

const targetCwd = params.targetCwd ?? sourceHeader.cwd ?? process.cwd();

263262

const sessionDir = params.sessionDir ?? path.dirname(sourceFile);

264-

const sessionId = uuidv7();

263+

const sessionId = randomUUID();

265264

const timestamp = new Date().toISOString();

266265

const fileTimestamp = timestamp.replace(/[:.]/g, "-");

267266

const sessionFile = path.join(sessionDir, `${fileTimestamp}_${sessionId}.jsonl`);

Original file line numberDiff line numberDiff line change

@@ -24,8 +24,11 @@ function readManifestRecords(): PluginManifest[] {

2424

return false;

2525

}

2626

const packageJson = JSON.parse(fs.readFileSync(packagePath, "utf-8")) as {

27-

openclaw?: { extensions?: unknown };

27+

openclaw?: { bundle?: { includeInCore?: unknown }; extensions?: unknown };

2828

};

29+

if (packageJson.openclaw?.bundle?.includeInCore === false) {

30+

return false;

31+

}

2932

return normalizeBundledPluginStringList(packageJson.openclaw?.extensions).length > 0;

3033

})

3134

.map(

Original file line numberDiff line numberDiff line change

@@ -64,8 +64,25 @@ function readJsonRecord(filePath: string): Record<string, unknown> | undefined {

6464

}

6565

}

6666
67+

function isExplicitlyDownloadablePlugin(packageJson: Record<string, unknown> | undefined): boolean {

68+

const openclaw = packageJson?.openclaw;

69+

if (!openclaw || typeof openclaw !== "object" || Array.isArray(openclaw)) {

70+

return false;

71+

}

72+

const bundle = (openclaw as { bundle?: unknown }).bundle;

73+

return (

74+

bundle !== null &&

75+

typeof bundle === "object" &&

76+

!Array.isArray(bundle) &&

77+

(bundle as { includeInCore?: unknown }).includeInCore === false

78+

);

79+

}

80+
6781

function readBundledCapabilityManifest(pluginDir: string): BundledCapabilityManifest | undefined {

6882

const packageJson = readJsonRecord(path.join(pluginDir, "package.json"));

83+

if (isExplicitlyDownloadablePlugin(packageJson)) {

84+

return undefined;

85+

}

6986

const extensions = normalizeBundledPluginStringList(

7087

packageJson?.openclaw && typeof packageJson.openclaw === "object"

7188

? (packageJson.openclaw as { extensions?: unknown }).extensions

Original file line numberDiff line numberDiff line change

@@ -1176,6 +1176,12 @@ function activatePluginRegistry(

11761176

}

11771177
11781178

export function loadOpenClawPlugins(options: PluginLoadOptions = {}): PluginRegistry {

1179+

const requestedOnlyPluginIds = normalizePluginIdScope(options.onlyPluginIds);

1180+

const requestedOnlyPluginIdSet = createPluginIdScopeSet(requestedOnlyPluginIds);

1181+

if (options.activate === false && requestedOnlyPluginIdSet?.size === 0) {

1182+

return createEmptyPluginRegistry();

1183+

}

1184+
11791185

const {

11801186

env,

11811187

cfg,