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

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
月光博客
月光博客

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(release): keep private test helpers out of npm pack ·...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -11,7 +11,7 @@

1111

import { readFileSync, existsSync } from "node:fs";

1212

import { resolve, dirname } from "node:path";

1313

import { fileURLToPath, pathToFileURL } from "node:url";

14-

import { pluginSdkSubpaths } from "./lib/plugin-sdk-entries.mjs";

14+

import { publicPluginSdkSubpaths } from "./lib/plugin-sdk-entries.mjs";

1515
1616

const scriptDir = dirname(fileURLToPath(import.meta.url));

1717

const distFile = resolve(scriptDir, "..", "dist", "plugin-sdk", "index.js");

@@ -70,7 +70,7 @@ for (const name of requiredExports) {

7070

}

7171

}

7272
73-

for (const entry of pluginSdkSubpaths) {

73+

for (const entry of publicPluginSdkSubpaths) {

7474

const jsPath = resolve(scriptDir, "..", "dist", "plugin-sdk", `${entry}.js`);

7575

const dtsPath = resolve(scriptDir, "..", "dist", "plugin-sdk", `${entry}.d.ts`);

7676

if (!existsSync(jsPath)) {

Original file line numberDiff line numberDiff line change

@@ -12,6 +12,8 @@ const TOP_LEVEL_PUBLIC_SURFACE_EXTENSIONS = new Set([".ts", ".js", ".mts", ".cts

1212

export const NON_PACKAGED_BUNDLED_PLUGIN_DIRS = new Set(["qa-channel", "qa-lab", "qa-matrix"]);

1313

const EXCLUDED_CORE_BUNDLED_PLUGIN_DIRS = new Set(["qqbot", "whatsapp"]);

1414

const BUNDLED_PLUGIN_BUILD_IDS_ENV = "OPENCLAW_BUNDLED_PLUGIN_BUILD_IDS";

15+

const TOP_LEVEL_PRIVATE_TEST_SURFACE_RE =

16+

/(?:^|[._-])(?:test|spec|test-support|test-helpers|test-fixtures|test-harness|mock-setup)(?:[._-]|$)/u;

1517

const toPosixPath = (value) => value.replaceAll("\\", "/");

1618
1719

function parseBundledPluginBuildIdFilter(env = process.env) {

@@ -88,8 +90,7 @@ export function collectTopLevelPublicSurfaceEntries(pluginDir) {

8890

if (

8991

normalizedName.endsWith(".d.ts") ||

9092

/^config-api\.(?:[cm]?[jt]s)$/u.test(normalizedName) ||

91-

normalizedName.includes(".test.") ||

92-

normalizedName.includes(".spec.") ||

93+

TOP_LEVEL_PRIVATE_TEST_SURFACE_RE.test(normalizedName) ||

9394

normalizedName.includes(".fixture.") ||

9495

normalizedName.includes(".snap")

9596

) {

@@ -117,8 +118,7 @@ function collectTopLevelPublicSurfaceEntriesFromFiles(relativeFiles) {

117118

if (

118119

normalizedName.endsWith(".d.ts") ||

119120

/^config-api\.(?:[cm]?[jt]s)$/u.test(normalizedName) ||

120-

normalizedName.includes(".test.") ||

121-

normalizedName.includes(".spec.") ||

121+

TOP_LEVEL_PRIVATE_TEST_SURFACE_RE.test(normalizedName) ||

122122

normalizedName.includes(".fixture.") ||

123123

normalizedName.includes(".snap")

124124

) {

Original file line numberDiff line numberDiff line change

@@ -6,7 +6,7 @@ export const publicPluginSdkSubpaths: string[];

66

export const deprecatedPublicPluginSdkEntrypoints: string[];

77

export const deprecatedBarrelPluginSdkEntrypoints: string[];

88
9-

export function buildPluginSdkEntrySources(): Record<string, string>;

9+

export function buildPluginSdkEntrySources(entries?: readonly string[]): Record<string, string>;

1010

export function buildPluginSdkPackageExports(): Record<

1111

string,

1212

{

Original file line numberDiff line numberDiff line change

@@ -33,10 +33,8 @@ export const deprecatedBarrelPluginSdkEntrypoints = pluginSdkSubpaths.filter((en

3333

deprecatedBarrelPluginSdkSubpathList.includes(entry),

3434

);

3535
36-

export function buildPluginSdkEntrySources() {

37-

return Object.fromEntries(

38-

pluginSdkEntrypoints.map((entry) => [entry, `src/plugin-sdk/${entry}.ts`]),

39-

);

36+

export function buildPluginSdkEntrySources(entries = pluginSdkEntrypoints) {

37+

return Object.fromEntries(entries.map((entry) => [entry, `src/plugin-sdk/${entry}.ts`]));

4038

}

4139
4240

export function buildPluginSdkPackageExports() {

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,11 @@ import fs from "node:fs";

22

import os from "node:os";

33

import path from "node:path";

44

import { build } from "tsdown";

5-

import { buildPluginSdkEntrySources, pluginSdkEntrypoints } from "./lib/plugin-sdk-entries.mjs";

5+

import {

6+

buildPluginSdkEntrySources,

7+

pluginSdkEntrypoints,

8+

publicPluginSdkEntrypoints,

9+

} from "./lib/plugin-sdk-entries.mjs";

610
711

const RUNTIME_SHIMS: Partial<Record<string, string>> = {

812

"webhook-path": [

@@ -67,14 +71,19 @@ function copyFlatDeclarations(fromDir: string, toDir: string): void {

6771
6872

const distPluginSdkDir = path.join(process.cwd(), "dist/plugin-sdk");

6973

const flatDeclarationTempDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-plugin-sdk-dts-"));

74+

const shouldBuildPrivateQaEntries = process.env.OPENCLAW_BUILD_PRIVATE_QA === "1";

75+

const flatDeclarationEntrypoints = shouldBuildPrivateQaEntries

76+

? pluginSdkEntrypoints

77+

: publicPluginSdkEntrypoints;

78+

const flatDeclarationEntrypointSet = new Set(flatDeclarationEntrypoints);

7079
7180

try {

7281

await build({

7382

clean: true,

7483

config: false,

7584

deps: { neverBundle: (id) => isBareImportSpecifier(id) },

7685

dts: true,

77-

entry: buildPluginSdkEntrySources(),

86+

entry: buildPluginSdkEntrySources(flatDeclarationEntrypoints),

7887

failOnWarn: false,

7988

fixedExtension: false,

8089

format: "esm",

@@ -96,6 +105,10 @@ try {

96105

// The private workspace package keeps source-shaped declaration paths for local

97106

// package-boundary projects, so bridge them back to the packaged flat entries.

98107

for (const entry of pluginSdkEntrypoints) {

108+

if (!flatDeclarationEntrypointSet.has(entry)) {

109+

continue;

110+

}

111+
99112

const packageTypeOut = path.join(

100113

process.cwd(),

101114

`packages/plugin-sdk/dist/src/plugin-sdk/${entry}.d.ts`,

Original file line numberDiff line numberDiff line change

@@ -103,6 +103,12 @@ describe("bundled plugin build entries", () => {

103103

expect(entries["extensions/telegram/telegram-ingress-worker.runtime"]).toBeUndefined();

104104

});

105105
106+

it("keeps top-level bundled plugin test helpers out of public-surface entries", () => {

107+

const entries = listBundledPluginBuildEntries();

108+
109+

expect(entries["extensions/browser/test-support"]).toBeUndefined();

110+

});

111+
106112

it("discovers repo plugin build entries without directory scans", () => {

107113

const payload = expectNoNodeFsScans<{

108114

artifacts: number;

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,11 @@ import {

55

collectBundledPluginBuildEntries,

66

NON_PACKAGED_BUNDLED_PLUGIN_DIRS,

77

} from "./scripts/lib/bundled-plugin-build-entries.mjs";

8-

import { buildPluginSdkEntrySources } from "./scripts/lib/plugin-sdk-entries.mjs";

8+

import {

9+

buildPluginSdkEntrySources,

10+

pluginSdkEntrypoints,

11+

publicPluginSdkEntrypoints,

12+

} from "./scripts/lib/plugin-sdk-entries.mjs";

913
1014

type InputOptionsFactory = Extract<NonNullable<UserConfig["inputOptions"]>, Function>;

1115

type InputOptionsArg = InputOptionsFactory extends (

@@ -140,6 +144,9 @@ function nodeBuildConfig(config: UserConfig): UserConfig {

140144
141145

const bundledPluginBuildEntries = collectBundledPluginBuildEntries();

142146

const shouldBuildPrivateQaEntries = process.env.OPENCLAW_BUILD_PRIVATE_QA === "1";

147+

const productionPluginSdkEntrypoints = shouldBuildPrivateQaEntries

148+

? pluginSdkEntrypoints

149+

: publicPluginSdkEntrypoints;

143150
144151

function buildBundledHookEntries(): Record<string, string> {

145152

const hooksRoot = path.join(process.cwd(), "src", "hooks", "bundled");

@@ -357,10 +364,9 @@ function buildUnifiedDistEntries(): Record<string, string> {

357364

// Private bundled Codex helper for app-server user MCP config projection.

358365

"plugin-sdk/codex-mcp-projection": "src/plugin-sdk/codex-mcp-projection.ts",

359366

...Object.fromEntries(

360-

Object.entries(buildPluginSdkEntrySources()).map(([entry, source]) => [

361-

`plugin-sdk/${entry}`,

362-

source,

363-

]),

367+

Object.entries(buildPluginSdkEntrySources(productionPluginSdkEntrypoints)).map(

368+

([entry, source]) => [`plugin-sdk/${entry}`, source],

369+

),

364370

),

365371

...(shouldBuildPrivateQaEntries

366372

? {