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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
腾讯CDC
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
美团技术团队
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 司徒正美
博客园_首页
Recent Announcements
Recent Announcements
云风的 BLOG
云风的 BLOG
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
博客园 - Franky
Jina AI
Jina 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
test: speed up import-heavy tests · openclaw/openclaw@598...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -1,21 +1,19 @@

11

#!/usr/bin/env node

223+

import { promises as fs } from "node:fs";

34

import path from "node:path";

45

import { fileURLToPath } from "node:url";

5-

import ts from "typescript";

66

import { BUNDLED_PLUGIN_PATH_PREFIX } from "./lib/bundled-plugin-paths.mjs";

77

import {

8-

collectTypeScriptInventory,

8+

collectModuleReferencesFromSource,

99

normalizeRepoPath,

1010

resolveRepoSpecifier,

11-

visitModuleSpecifiers,

1211

writeLine,

1312

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

1413

import {

1514

collectTypeScriptFilesFromRoots,

1615

resolveSourceRoots,

1716

runAsScript,

18-

toLine,

1917

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

20182119

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

@@ -37,76 +35,69 @@ function pushEntry(entries, entry) {

3735

entries.push(entry);

3836

}

393740-

function scanPluginSdkExtensionFacadeSmells(sourceFile, filePath) {

38+

function scanPluginSdkExtensionFacadeSmells(source, filePath) {

4139

const relativeFile = normalizeRepoPath(repoRoot, filePath);

4240

if (!relativeFile.startsWith("src/plugin-sdk/")) {

4341

return [];

4442

}

45434644

const entries = [];

474548-

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

46+

for (const { kind, line, specifier } of collectModuleReferencesFromSource(source)) {

4947

if (kind !== "export") {

50-

return;

48+

continue;

5149

}

5250

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

5351

if (!resolvedPath?.startsWith(BUNDLED_PLUGIN_PATH_PREFIX)) {

54-

return;

52+

continue;

5553

}

5654

pushEntry(entries, {

5755

category: "plugin-sdk-extension-facade",

5856

file: relativeFile,

59-

line: toLine(sourceFile, specifierNode),

57+

line,

6058

kind,

6159

specifier,

6260

resolvedPath,

6361

reason: "plugin-sdk public surface re-exports extension-owned implementation",

6462

});

65-

});

63+

}

6664

return entries;

6765

}

686669-

function scanRuntimeTypeImplementationSmells(sourceFile, filePath) {

67+

function scanRuntimeTypeImplementationSmells(source, filePath) {

7068

const relativeFile = normalizeRepoPath(repoRoot, filePath);

7169

if (!/^src\/plugins\/runtime\/types(?:-[^/]+)?\.ts$/.test(relativeFile)) {

7270

return [];

7371

}

74727573

const entries = [];

767477-

function visit(node) {

75+

for (const { kind, line, specifier } of collectModuleReferencesFromSource(source)) {

76+

if (kind !== "dynamic-import") {

77+

continue;

78+

}

79+

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

7880

if (

79-

ts.isImportTypeNode(node) &&

80-

ts.isLiteralTypeNode(node.argument) &&

81-

ts.isStringLiteral(node.argument.literal)

81+

resolvedPath &&

82+

(/^src\/plugins\/runtime\/runtime-[^/]+\.ts$/.test(resolvedPath) ||

83+

/^extensions\/[^/]+\/runtime-api\.[^/]+$/.test(resolvedPath))

8284

) {

83-

const specifier = node.argument.literal.text;

84-

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

85-

if (

86-

resolvedPath &&

87-

(/^src\/plugins\/runtime\/runtime-[^/]+\.ts$/.test(resolvedPath) ||

88-

/^extensions\/[^/]+\/runtime-api\.[^/]+$/.test(resolvedPath))

89-

) {

90-

pushEntry(entries, {

91-

category: "runtime-type-implementation-edge",

92-

file: relativeFile,

93-

line: toLine(sourceFile, node.argument.literal),

94-

kind: "import-type",

95-

specifier,

96-

resolvedPath,

97-

reason: "runtime type file references implementation shim directly",

98-

});

99-

}

85+

pushEntry(entries, {

86+

category: "runtime-type-implementation-edge",

87+

file: relativeFile,

88+

line,

89+

kind: "import-type",

90+

specifier,

91+

resolvedPath,

92+

reason: "runtime type file references implementation shim directly",

93+

});

10094

}

101-102-

ts.forEachChild(node, visit);

10395

}

10496105-

visit(sourceFile);

10697

return entries;

10798

}

10899109-

function scanRuntimeServiceLocatorSmells(sourceFile, filePath) {

100+

function scanRuntimeServiceLocatorSmells(source, filePath) {

110101

const relativeFile = normalizeRepoPath(repoRoot, filePath);

111102

if (

112103

!relativeFile.startsWith("src/plugin-sdk/") &&

@@ -120,47 +111,25 @@ function scanRuntimeServiceLocatorSmells(sourceFile, filePath) {

120111

const runtimeStoreCalls = [];

121112

const mutableStateNodes = [];

122113123-

for (const statement of sourceFile.statements) {

124-

if (ts.isFunctionDeclaration(statement) && statement.name) {

125-

const isExported = statement.modifiers?.some(

126-

(modifier) => modifier.kind === ts.SyntaxKind.ExportKeyword,

127-

);

128-

if (isExported) {

129-

exportedNames.add(statement.name.text);

130-

}

131-

} else if (ts.isVariableStatement(statement)) {

132-

const isExported = statement.modifiers?.some(

133-

(modifier) => modifier.kind === ts.SyntaxKind.ExportKeyword,

134-

);

135-

for (const declaration of statement.declarationList.declarations) {

136-

if (ts.isIdentifier(declaration.name) && isExported) {

137-

exportedNames.add(declaration.name.text);

138-

}

139-

if (

140-

!isExported &&

141-

(statement.declarationList.flags & ts.NodeFlags.Let) !== 0 &&

142-

ts.isIdentifier(declaration.name)

143-

) {

144-

mutableStateNodes.push(declaration.name);

145-

}

146-

}

114+

const lines = source.split(/\r?\n/);

115+

for (const [index, line] of lines.entries()) {

116+

const lineNumber = index + 1;

117+

const exportedFunction = line.match(/^\s*export\s+function\s+([A-Za-z_$][\w$]*)/);

118+

if (exportedFunction) {

119+

exportedNames.add(exportedFunction[1]);

147120

}

148-

}

149-150-

function visit(node) {

151-

if (

152-

ts.isCallExpression(node) &&

153-

ts.isIdentifier(node.expression) &&

154-

node.expression.text === "createPluginRuntimeStore"

155-

) {

156-

runtimeStoreCalls.push(node.expression);

121+

const exportedVariable = line.match(/^\s*export\s+(?:const|let|var)\s+([A-Za-z_$][\w$]*)/);

122+

if (exportedVariable) {

123+

exportedNames.add(exportedVariable[1]);

124+

}

125+

for (const mutableMatch of line.matchAll(/^\s*let\s+([A-Za-z_$][\w$]*)/g)) {

126+

mutableStateNodes.push({ line: lineNumber, text: mutableMatch[1] });

127+

}

128+

if (line.includes("createPluginRuntimeStore")) {

129+

runtimeStoreCalls.push({ line: lineNumber });

157130

}

158-159-

ts.forEachChild(node, visit);

160131

}

161132162-

visit(sourceFile);

163-164133

const getterNames = [...exportedNames].filter((name) => /^get[A-Z]/.test(name));

165134

const setterNames = [...exportedNames].filter((name) => /^set[A-Z]/.test(name));

166135

@@ -169,7 +138,7 @@ function scanRuntimeServiceLocatorSmells(sourceFile, filePath) {

169138

pushEntry(entries, {

170139

category: "runtime-service-locator",

171140

file: relativeFile,

172-

line: toLine(sourceFile, callNode),

141+

line: callNode.line,

173142

kind: "runtime-store",

174143

specifier: "createPluginRuntimeStore",

175144

resolvedPath: relativeFile,

@@ -183,7 +152,7 @@ function scanRuntimeServiceLocatorSmells(sourceFile, filePath) {

183152

pushEntry(entries, {

184153

category: "runtime-service-locator",

185154

file: relativeFile,

186-

line: toLine(sourceFile, identifier),

155+

line: identifier.line,

187156

kind: "mutable-state",

188157

specifier: identifier.text,

189158

resolvedPath: relativeFile,

@@ -201,18 +170,16 @@ export async function collectArchitectureSmells() {

201170

const files = (await collectTypeScriptFilesFromRoots(scanRoots)).toSorted((left, right) =>

202171

normalizeRepoPath(repoRoot, left).localeCompare(normalizeRepoPath(repoRoot, right)),

203172

);

204-

return await collectTypeScriptInventory({

205-

ts,

206-

files,

207-

compareEntries,

208-

collectEntries(sourceFile, filePath) {

209-

return [

210-

...scanPluginSdkExtensionFacadeSmells(sourceFile, filePath),

211-

...scanRuntimeTypeImplementationSmells(sourceFile, filePath),

212-

...scanRuntimeServiceLocatorSmells(sourceFile, filePath),

213-

];

214-

},

215-

});

173+

const entriesByFile = await Promise.all(

174+

files.map(async (filePath) => {

175+

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

176+

const entries = scanPluginSdkExtensionFacadeSmells(source, filePath);

177+

entries.push(...scanRuntimeTypeImplementationSmells(source, filePath));

178+

entries.push(...scanRuntimeServiceLocatorSmells(source, filePath));

179+

return entries;

180+

}),

181+

);

182+

return entriesByFile.flat().toSorted(compareEntries);

216183

})();

217184

try {

218185

return await architectureSmellsPromise;