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

推荐订阅源

The Cloudflare Blog
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
博客园 - 司徒正美
V
Visual Studio Blog
G
Google Developers Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
D
Docker
Vercel News
Vercel News
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
爱范儿
爱范儿
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏

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(test): speed up boundary report checks · openclaw/op...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

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

11

#!/usr/bin/env node

22

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

33

import { join, relative, resolve } from "node:path";

4+

import { fileURLToPath } from "node:url";

45

import {

56

pluginSdkEntrypoints,

67

publicPluginOwnedSdkEntrypoints,

@@ -48,6 +49,12 @@ type CompatDebtRecord = {

4849

eligibleForRemoval: boolean;

4950

};

505152+

type WorkspaceTextFile = {

53+

file: string;

54+

relativeFile: string;

55+

source: string;

56+

};

57+5158

type ReservedSdkImport = {

5259

file: string;

5360

specifier: string;

@@ -114,6 +121,12 @@ type BoundaryReportSummary = {

114121

};

115122

};

116123124+

export type PluginBoundaryReportResult = {

125+

stdout: string;

126+

stderr: string;

127+

exitCode: number;

128+

};

129+117130

function collectTextFiles(dir: string): string[] {

118131

const files: string[] = [];

119132

if (!existsSync(dir)) {

@@ -145,6 +158,14 @@ function repoRelative(file: string): string {

145158

return relative(REPO_ROOT, file).replaceAll("\\", "/");

146159

}

147160161+

function collectWorkspaceTextFileSources(): WorkspaceTextFile[] {

162+

return collectWorkspaceTextFiles().map((file) => ({

163+

file,

164+

relativeFile: repoRelative(file),

165+

source: readFileSync(file, "utf8"),

166+

}));

167+

}

168+148169

function isDocsFile(file: string): boolean {

149170

return file.startsWith("docs/") || file === "README.md";

150171

}

@@ -243,15 +264,13 @@ function extractCompatTokens(record: PluginCompatRecord): string[] {

243264

return [...tokens].toSorted();

244265

}

245266246-

function collectReferenceFiles(files: readonly string[], tokens: readonly string[]) {

267+

function collectReferenceFiles(files: readonly WorkspaceTextFile[], tokens: readonly string[]) {

247268

const codeReferenceFiles = new Set<string>();

248269

const docReferenceFiles = new Set<string>();

249-

for (const file of files) {

250-

const relativeFile = repoRelative(file);

270+

for (const { relativeFile, source } of files) {

251271

if (relativeFile === "src/plugins/compat/registry.ts") {

252272

continue;

253273

}

254-

const source = readFileSync(file, "utf8");

255274

if (!tokens.some((token) => source.includes(token))) {

256275

continue;

257276

}

@@ -267,11 +286,18 @@ function collectReferenceFiles(files: readonly string[], tokens: readonly string

267286

};

268287

}

269288270-

function collectCompatDebt(files: readonly string[], today = new Date()): CompatDebtRecord[] {

289+

function collectCompatDebt(

290+

files: readonly WorkspaceTextFile[],

291+

today = new Date(),

292+

options: { includeReferenceFiles?: boolean } = {},

293+

): CompatDebtRecord[] {

271294

return PLUGIN_COMPAT_RECORDS.filter((record) => record.status === "deprecated")

272295

.map((record) => {

273296

const tokens = extractCompatTokens(record);

274-

const references = collectReferenceFiles(files, tokens);

297+

const references =

298+

options.includeReferenceFiles === false

299+

? { codeReferenceFiles: [], docReferenceFiles: [] }

300+

: collectReferenceFiles(files, tokens);

275301

const eligibleForRemoval = record.removeAfter

276302

? new Date(`${record.removeAfter}T00:00:00Z`) <= today

277303

: false;

@@ -297,13 +323,11 @@ function collectCompatDebt(files: readonly string[], today = new Date()): Compat

297323

);

298324

}

299325300-

function collectReservedSdkImports(files: readonly string[]): ReservedSdkImport[] {

326+

function collectReservedSdkImports(files: readonly WorkspaceTextFile[]): ReservedSdkImport[] {

301327

const reserved = new Set<string>(reservedBundledPluginSdkEntrypoints);

302328

const pluginIds = collectBundledPluginIds();

303329

const imports: ReservedSdkImport[] = [];

304-

for (const file of files) {

305-

const relativeFile = repoRelative(file);

306-

const source = readFileSync(file, "utf8");

330+

for (const { relativeFile, source } of files) {

307331

for (const match of source.matchAll(PLUGIN_SDK_SPECIFIER_PATTERN)) {

308332

const specifier = match[1];

309333

const subpath = match[2];

@@ -325,18 +349,18 @@ function collectReservedSdkImports(files: readonly string[]): ReservedSdkImport[

325349

);

326350

}

327351328-

function collectMemoryHostBoundary(files: readonly string[]): BoundaryReport["memoryHostSdk"] {

352+

function collectMemoryHostBoundary(

353+

files: readonly WorkspaceTextFile[],

354+

): BoundaryReport["memoryHostSdk"] {

329355

const packageJson = JSON.parse(

330356

readFileSync(resolve(REPO_ROOT, "packages/memory-host-sdk/package.json"), "utf8"),

331357

) as { private?: boolean; exports?: Record<string, string> };

332358

const sourceBridgeFiles: string[] = [];

333359

const packageCoreReferenceFiles = new Set<string>();

334-

for (const file of files) {

335-

const relativeFile = repoRelative(file);

360+

for (const { relativeFile, source } of files) {

336361

if (!relativeFile.startsWith("packages/memory-host-sdk/src/")) {

337362

continue;

338363

}

339-

const source = readFileSync(file, "utf8");

340364

if (source.includes("src/memory-host-sdk/")) {

341365

sourceBridgeFiles.push(relativeFile);

342366

}

@@ -419,12 +443,12 @@ function buildSummary(report: BoundaryReport, owner?: string): BoundaryReportSum

419443

};

420444

}

421445422-

function buildReport(options: Pick<CliOptions, "owner"> = {}): BoundaryReport {

423-

const files = collectWorkspaceTextFiles();

446+

function buildReport(options: Pick<CliOptions, "owner" | "summary"> = {}): BoundaryReport {

447+

const files = collectWorkspaceTextFileSources();

424448

const pluginIds = collectBundledPluginIds();

425-

const compatRecords = collectCompatDebt(files).filter((record) =>

426-

matchesOwner(options.owner, record.owner),

427-

);

449+

const compatRecords = collectCompatDebt(files, new Date(), {

450+

includeReferenceFiles: !options.summary,

451+

}).filter((record) => matchesOwner(options.owner, record.owner));

428452

const reservedImports = collectReservedSdkImports(files).filter(

429453

(entry) =>

430454

matchesOwner(options.owner, entry.owner) || matchesOwner(options.owner, entry.consumerOwner),

@@ -539,35 +563,51 @@ function collectFailures(report: BoundaryReport, options: CliOptions): string[]

539563

return failures;

540564

}

541565542-

let options: CliOptions;

543-

try {

544-

options = parseArgs(process.argv.slice(2));

545-

} catch (error) {

546-

const message = error instanceof Error ? error.message : String(error);

547-

process.stderr.write(`${message}\n\n${renderHelp()}\n`);

548-

process.exitCode = 2;

549-

process.exit();

550-

}

566+

export function createPluginBoundaryReport(args: readonly string[]): PluginBoundaryReportResult {

567+

const options = parseArgs(args);

568+

if (options.help) {

569+

return {

570+

stdout: `${renderHelp()}\n`,

571+

stderr: "",

572+

exitCode: 0,

573+

};

574+

}

551575552-

if (options.help) {

553-

process.stdout.write(`${renderHelp()}\n`);

554-

process.exit();

576+

const report = buildReport(options);

577+

const summary = buildSummary(report, options.owner);

578+

const body = options.json

579+

? JSON.stringify(options.summary ? summary : report, null, 2)

580+

: options.summary

581+

? renderSummaryText(summary)

582+

: renderText(report, options.owner);

583+

const failures = collectFailures(report, options);

584+

return {

585+

stdout: `${body}\n`,

586+

stderr:

587+

failures.length > 0

588+

? `${failures.map((failure) => `plugin-boundary-report: ${failure}`).join("\n")}\n`

589+

: "",

590+

exitCode: failures.length > 0 ? 1 : 0,

591+

};

555592

}

556593557-

const report = buildReport(options);

558-

const summary = buildSummary(report, options.owner);

559-

if (options.json) {

560-

process.stdout.write(`${JSON.stringify(options.summary ? summary : report, null, 2)}\n`);

561-

} else if (options.summary) {

562-

process.stdout.write(`${renderSummaryText(summary)}\n`);

563-

} else {

564-

process.stdout.write(`${renderText(report, options.owner)}\n`);

594+

function runPluginBoundaryReportCli(args: readonly string[]): void {

595+

let result: PluginBoundaryReportResult;

596+

try {

597+

result = createPluginBoundaryReport(args);

598+

} catch (error) {

599+

const message = error instanceof Error ? error.message : String(error);

600+

process.stderr.write(`${message}\n\n${renderHelp()}\n`);

601+

process.exitCode = 2;

602+

return;

603+

}

604+

process.stdout.write(result.stdout);

605+

if (result.stderr) {

606+

process.stderr.write(result.stderr);

607+

}

608+

process.exitCode = result.exitCode;

565609

}

566610567-

const failures = collectFailures(report, options);

568-

if (failures.length > 0) {

569-

process.stderr.write(

570-

`${failures.map((failure) => `plugin-boundary-report: ${failure}`).join("\n")}\n`,

571-

);

572-

process.exitCode = 1;

611+

if (process.argv[1] && resolve(process.argv[1]) === fileURLToPath(import.meta.url)) {

612+

runPluginBoundaryReportCli(process.argv.slice(2));

573613

}