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

推荐订阅源

云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
博客园 - 【当耐特】
H
Help Net Security
腾讯CDC
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
P
Proofpoint News Feed
Y
Y Combinator Blog
C
Check Point 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: speed up boundary and provider tests · openclaw/ope...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -13,10 +13,8 @@ import {

1313

diffInventoryEntries,

1414

normalizeRepoPath,

1515

resolveRepoSpecifier,

16-

visitModuleSpecifiers,

1716

writeLine,

1817

} from "./lib/guard-inventory-utils.mjs";

19-

import { toLine } from "./lib/ts-guard-utils.mjs";

20182119

const repoRoot = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");

2220

const extensionsRoot = path.join(repoRoot, BUNDLED_PLUGIN_ROOT_DIR);

@@ -49,7 +47,7 @@ const baselinePathByMode = {

4947

};

50485149

let allInventoryByModePromise;

52-

let parsedExtensionSourceFilesPromise;

50+

let extensionModuleReferencesPromise;

53515452

const ruleTextByMode = {

5553

"src-outside-plugin-sdk":

@@ -97,36 +95,26 @@ async function collectExtensionSourceFiles(rootDir) {

9795

);

9896

}

9997100-

async function collectParsedExtensionSourceFiles() {

101-

if (!parsedExtensionSourceFilesPromise) {

102-

parsedExtensionSourceFilesPromise = (async () => {

98+

async function collectExtensionModuleReferences() {

99+

if (!extensionModuleReferencesPromise) {

100+

extensionModuleReferencesPromise = (async () => {

103101

const files = await collectExtensionSourceFiles(extensionsRoot);

104-

const parsed = await Promise.all(

102+

const referenced = await Promise.all(

105103

files.map(async (filePath) => {

106104

const source = await fs.readFile(filePath, "utf8");

107105

if (!mayContainModuleSpecifier(source)) {

108106

return null;

109107

}

110-

const scriptKind =

111-

filePath.endsWith(".tsx") || filePath.endsWith(".jsx")

112-

? ts.ScriptKind.TSX

113-

: ts.ScriptKind.TS;

114108

return {

115109

filePath,

116-

sourceFile: ts.createSourceFile(

117-

filePath,

118-

source,

119-

ts.ScriptTarget.Latest,

120-

true,

121-

scriptKind,

122-

),

110+

references: collectModuleReferences(source),

123111

};

124112

}),

125113

);

126-

return parsed.filter(Boolean);

114+

return referenced.filter((entry) => entry && entry.references.length > 0);

127115

})();

128116

}

129-

return await parsedExtensionSourceFilesPromise;

117+

return await extensionModuleReferencesPromise;

130118

}

131119132120

function mayContainModuleSpecifier(source) {

@@ -137,6 +125,49 @@ function mayContainModuleSpecifier(source) {

137125

);

138126

}

139127128+

function collectModuleReferences(source) {

129+

const lineStarts = computeLineStarts(source);

130+

return ts.preProcessFile(source, true, true).importedFiles.map((reference) => ({

131+

kind: inferModuleReferenceKind(source, reference.pos),

132+

line: lineFromPosition(lineStarts, reference.pos),

133+

specifier: reference.fileName,

134+

}));

135+

}

136+137+

function computeLineStarts(source) {

138+

const lineStarts = [0];

139+

for (let index = 0; index < source.length; index += 1) {

140+

if (source.charCodeAt(index) === 10) {

141+

lineStarts.push(index + 1);

142+

}

143+

}

144+

return lineStarts;

145+

}

146+147+

function lineFromPosition(lineStarts, position) {

148+

let low = 0;

149+

let high = lineStarts.length - 1;

150+

while (low <= high) {

151+

const middle = Math.floor((low + high) / 2);

152+

if (lineStarts[middle] <= position) {

153+

low = middle + 1;

154+

} else {

155+

high = middle - 1;

156+

}

157+

}

158+

return high + 1;

159+

}

160+161+

function inferModuleReferenceKind(source, specifierStart) {

162+

const importIndex = source.lastIndexOf("import", specifierStart);

163+

const exportIndex = source.lastIndexOf("export", specifierStart);

164+

if (exportIndex > importIndex) {

165+

return "export";

166+

}

167+

const importPrefix = source.slice(importIndex, specifierStart);

168+

return /\bimport\s*\(\s*["']?$/.test(importPrefix) ? "dynamic-import" : "import";

169+

}

170+140171

function resolveExtensionRoot(filePath) {

141172

const relativePath = normalizeRepoPath(repoRoot, filePath);

142173

const segments = relativePath.split("/");

@@ -198,7 +229,7 @@ function shouldReport(mode, resolvedPath) {

198229

return !resolvedPath.startsWith("src/plugin-sdk/");

199230

}

200231201-

function collectEntriesByModeFromSourceFile(sourceFile, filePath) {

232+

function collectEntriesByModeFromModuleReferences(filePath, references) {

202233

const entriesByMode = {

203234

"src-outside-plugin-sdk": [],

204235

"plugin-sdk-internal": [],

@@ -207,11 +238,11 @@ function collectEntriesByModeFromSourceFile(sourceFile, filePath) {

207238

const extensionRoot = resolveExtensionRoot(filePath);

208239

const relativeFile = normalizeRepoPath(repoRoot, filePath);

209240210-

function push(kind, specifierNode, specifier) {

241+

function push(kind, line, specifier) {

211242

const resolvedPath = resolveRepoSpecifier(repoRoot, specifier, filePath);

212243

const baseEntry = {

213244

file: relativeFile,

214-

line: toLine(sourceFile, specifierNode),

245+

line,

215246

kind,

216247

specifier,

217248

resolvedPath,

@@ -237,9 +268,9 @@ function collectEntriesByModeFromSourceFile(sourceFile, filePath) {

237268

}

238269

}

239270240-

visitModuleSpecifiers(ts, sourceFile, ({ kind, specifier, specifierNode }) => {

241-

push(kind, specifierNode, specifier);

242-

});

271+

for (const { kind, line, specifier } of references) {

272+

push(kind, line, specifier);

273+

}

243274

return entriesByMode;

244275

}

245276

@@ -249,14 +280,14 @@ export async function collectExtensionPluginSdkBoundaryInventory(mode) {

249280

}

250281

if (!allInventoryByModePromise) {

251282

allInventoryByModePromise = (async () => {

252-

const files = await collectParsedExtensionSourceFiles();

283+

const files = await collectExtensionModuleReferences();

253284

const inventoryByMode = {

254285

"src-outside-plugin-sdk": [],

255286

"plugin-sdk-internal": [],

256287

"relative-outside-package": [],

257288

};

258-

for (const { filePath, sourceFile } of files) {

259-

const entriesByMode = collectEntriesByModeFromSourceFile(sourceFile, filePath);

289+

for (const { filePath, references } of files) {

290+

const entriesByMode = collectEntriesByModeFromModuleReferences(filePath, references);

260291

for (const inventoryMode of MODES) {

261292

inventoryByMode[inventoryMode].push(...entriesByMode[inventoryMode]);

262293

}