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

推荐订阅源

博客园_首页
H
Help Net Security
腾讯CDC
宝玉的分享
宝玉的分享
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
LangChain Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
D
Docker
V
V2EX
Last Week in AI
Last Week in AI
G
Google Developers Blog
IT之家
IT之家
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东

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
lint(oc-path): satisfy curly + unused-import rules · open...
giodl73-repo · 2026-05-09 · via Recent Commits to openclaw:main

@@ -63,13 +63,13 @@ const defaultRuntime: OutputRuntimeEnv = {

6363

// Defense-in-depth: replace the redaction sentinel with `[REDACTED]`

6464

// before writing, even if upstream emits it.

6565

export function scrubSentinel(s: string): string {

66-

if (!s.includes(REDACTED_SENTINEL)) return s;

66+

if (!s.includes(REDACTED_SENTINEL)) {return s;}

6767

return s.split(REDACTED_SENTINEL).join(SCRUB_PLACEHOLDER);

6868

}

69697070

function detectMode(options: PathCommandOptions): OutputMode {

71-

if (options.json === true) return "json";

72-

if (options.human === true) return "human";

71+

if (options.json === true) {return "json";}

72+

if (options.human === true) {return "human";}

7373

return process.stdout.isTTY ? "human" : "json";

7474

}

7575

@@ -157,8 +157,8 @@ function catchSentinel<T>(

157157

async function loadAst(absPath: string, fileName: string): Promise<OcAst> {

158158

const raw = await fs.readFile(absPath, "utf-8");

159159

const kind = inferKind(fileName);

160-

if (kind === "jsonc") return parseJsonc(raw).ast;

161-

if (kind === "jsonl") return parseJsonl(raw).ast;

160+

if (kind === "jsonc") {return parseJsonc(raw).ast;}

161+

if (kind === "jsonl") {return parseJsonl(raw).ast;}

162162

return parseMd(raw).ast;

163163

}

164164

@@ -176,15 +176,15 @@ function emitForKind(ast: OcAst, fileName?: string): string {

176176

}

177177178178

function resolveFsPath(path: OcPath, options: PathCommandOptions): string {

179-

if (options.file !== undefined) return resolvePath(options.file);

179+

if (options.file !== undefined) {return resolvePath(options.file);}

180180

return resolvePath(options.cwd ?? process.cwd(), path.file);

181181

}

182182183183

function formatMatchHuman(match: OcMatch): string {

184184

if (match.kind === "leaf") {

185185

return `leaf @ L${match.line}: ${JSON.stringify(match.valueText)} (${match.leafType})`;

186186

}

187-

if (match.kind === "node") return `node @ L${match.line} [${match.descriptor}]`;

187+

if (match.kind === "node") {return `node @ L${match.line} [${match.descriptor}]`;}

188188

if (match.kind === "insertion-point") {

189189

return `insertion-point @ L${match.line} [${match.container}]`;

190190

}

@@ -199,9 +199,9 @@ export async function pathResolveCommand(

199199

runtime: OutputRuntimeEnv,

200200

): Promise<void> {

201201

const mode = detectMode(options);

202-

if (!requireArg(pathStr, "resolve: missing <oc-path> argument", runtime, mode)) return;

202+

if (!requireArg(pathStr, "resolve: missing <oc-path> argument", runtime, mode)) {return;}

203203

const ocPath = tryParse(pathStr, runtime, mode);

204-

if (ocPath === null) return;

204+

if (ocPath === null) {return;}

205205

const ast = await loadAst(resolveFsPath(ocPath, options), ocPath.file);

206206

let match: OcMatch | null;

207207

try {

@@ -230,15 +230,15 @@ export async function pathSetCommand(

230230

runtime: OutputRuntimeEnv,

231231

): Promise<void> {

232232

const mode = detectMode(options);

233-

if (!requireArg(pathStr, "set: requires <oc-path> <value>", runtime, mode)) return;

234-

if (!requireArg(value, "set: requires <oc-path> <value>", runtime, mode)) return;

233+

if (!requireArg(pathStr, "set: requires <oc-path> <value>", runtime, mode)) {return;}

234+

if (!requireArg(value, "set: requires <oc-path> <value>", runtime, mode)) {return;}

235235

const ocPath = tryParse(pathStr, runtime, mode);

236-

if (ocPath === null) return;

236+

if (ocPath === null) {return;}

237237

const fsPath = resolveFsPath(ocPath, options);

238238

const ast = await loadAst(fsPath, ocPath.file);

239239240240

const result = catchSentinel("set", runtime, mode, () => setOcPath(ast, ocPath, value));

241-

if (result === null) return;

241+

if (result === null) {return;}

242242

if (!result.ok) {

243243

const detail = "detail" in result ? result.detail : undefined;

244244

emit(

@@ -254,7 +254,7 @@ export async function pathSetCommand(

254254

const newBytes = catchSentinel("emit", runtime, mode, () =>

255255

emitForKind(result.ast, ocPath.file),

256256

);

257-

if (newBytes === null) return;

257+

if (newBytes === null) {return;}

258258259259

if (options.dryRun === true) {

260260

emit(

@@ -280,9 +280,9 @@ export async function pathFindCommand(

280280

runtime: OutputRuntimeEnv,

281281

): Promise<void> {

282282

const mode = detectMode(options);

283-

if (!requireArg(patternStr, "find: missing <pattern> argument", runtime, mode)) return;

283+

if (!requireArg(patternStr, "find: missing <pattern> argument", runtime, mode)) {return;}

284284

const pattern = tryParse(patternStr, runtime, mode);

285-

if (pattern === null) return;

285+

if (pattern === null) {return;}

286286

// File-slot wildcards would silently ENOENT during readFile; reject.

287287

if (/[*?]/.test(pattern.file)) {

288288

emitError(

@@ -306,7 +306,7 @@ export async function pathFindCommand(

306306

matches: matches.map((m) => ({ path: formatOcPath(m.path), match: m.match })),

307307

},

308308

() => {

309-

if (matches.length === 0) return `0 matches for ${patternStr}`;

309+

if (matches.length === 0) {return `0 matches for ${patternStr}`;}

310310

const plural = matches.length === 1 ? "" : "es";

311311

const lines = [`${matches.length} match${plural} for ${patternStr}:`];

312312

for (const m of matches) {

@@ -315,7 +315,7 @@ export async function pathFindCommand(

315315

return lines.join("\n");

316316

},

317317

);

318-

if (matches.length === 0) runtime.exit(1);

318+

if (matches.length === 0) {runtime.exit(1);}

319319

}

320320321321

export function pathValidateCommand(

@@ -324,7 +324,7 @@ export function pathValidateCommand(

324324

runtime: OutputRuntimeEnv,

325325

): void {

326326

const mode = detectMode(options);

327-

if (!requireArg(pathStr, "validate: missing <oc-path> argument", runtime, mode)) return;

327+

if (!requireArg(pathStr, "validate: missing <oc-path> argument", runtime, mode)) {return;}

328328

try {

329329

const ocPath = parseOcPath(pathStr);

330330

emit(

@@ -344,10 +344,10 @@ export function pathValidateCommand(

344344

},

345345

() => {

346346

const lines = [`valid: ${pathStr}`, ` file: ${ocPath.file}`];

347-

if (ocPath.section !== undefined) lines.push(` section: ${ocPath.section}`);

348-

if (ocPath.item !== undefined) lines.push(` item: ${ocPath.item}`);

349-

if (ocPath.field !== undefined) lines.push(` field: ${ocPath.field}`);

350-

if (ocPath.session !== undefined) lines.push(` session: ${ocPath.session}`);

347+

if (ocPath.section !== undefined) {lines.push(` section: ${ocPath.section}`);}

348+

if (ocPath.item !== undefined) {lines.push(` item: ${ocPath.item}`);}

349+

if (ocPath.field !== undefined) {lines.push(` field: ${ocPath.field}`);}

350+

if (ocPath.session !== undefined) {lines.push(` session: ${ocPath.session}`);}

351351

return lines.join("\n");

352352

},

353353

);

@@ -372,15 +372,15 @@ export async function pathEmitCommand(

372372

runtime: OutputRuntimeEnv,

373373

): Promise<void> {

374374

const mode = detectMode(options);

375-

if (!requireArg(fileArg, "emit: missing <file> argument", runtime, mode)) return;

375+

if (!requireArg(fileArg, "emit: missing <file> argument", runtime, mode)) {return;}

376376

const fsPath =

377377

options.file !== undefined

378378

? resolvePath(options.file)

379379

: resolvePath(options.cwd ?? process.cwd(), fileArg);

380380

const fileName = fsPath.split(/[\\/]/).pop() ?? fileArg;

381381

const ast = await loadAst(fsPath, fileName);

382382

const bytes = catchSentinel("emit", runtime, mode, () => emitForKind(ast, fileName));

383-

if (bytes === null) return;

383+

if (bytes === null) {return;}

384384

if (mode === "json") {

385385

runtime.writeStdout(scrubSentinel(JSON.stringify({ ok: true, kind: ast.kind, bytes })));

386386

return;