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

推荐订阅源

P
Proofpoint News Feed
博客园_首页
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
G
Google Developers Blog
Last Week in AI
Last Week in 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
refactor(core): share error normalization helper · opencl...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,4 +1,6 @@

11

/** Channel-level policy for which inbound messages should receive an ack reaction. */

2+

import { toErrorObject } from "../infra/errors.js";

3+
24

export type AckReactionScope = "all" | "direct" | "group-all" | "group-mentions" | "off" | "none";

35
46

/** WhatsApp group-mode policy; direct-message ack reactions are configured separately. */

@@ -118,7 +120,7 @@ export function createAckReactionHandle(params: {

118120

sendPromise = params.send();

119121

} catch (err) {

120122

// Convert sync throws into the same Promise<boolean> flow used for async send failures.

121-

sendPromise = Promise.reject(toLintErrorObject(err, "Non-Error rejection"));

123+

sendPromise = Promise.reject(toErrorObject(err, "Non-Error rejection"));

122124

}

123125
124126

return {

@@ -174,17 +176,3 @@ export function removeAckReactionHandleAfterReply(params: {

174176

onError: params.onError,

175177

});

176178

}

177-
178-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

179-

if (value instanceof Error) {

180-

return value;

181-

}

182-

if (typeof value === "string") {

183-

return new Error(value);

184-

}

185-

const error = new Error(fallbackMessage, { cause: value });

186-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

187-

Object.assign(error, value);

188-

}

189-

return error;

190-

}

Original file line numberDiff line numberDiff line change

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

11

// Camera payload validation and artifact writers for node media commands.

22

import * as fs from "node:fs/promises";

33

import * as path from "node:path";

4+

import { toErrorObject } from "../infra/errors.js";

45

import { fetchWithSsrFGuard } from "../infra/net/fetch-guard.js";

56

import { normalizeHostname } from "../infra/net/hostname.js";

67

import { parseStrictNonNegativeInteger } from "../infra/parse-finite-number.js";

@@ -192,7 +193,7 @@ export async function writeUrlToFile(

192193
193194

if (thrown) {

194195

await fs.unlink(filePath).catch(() => {});

195-

throw toLintErrorObject(thrown, "Non-Error thrown");

196+

throw toErrorObject(thrown, "Non-Error thrown");

196197

}

197198

} finally {

198199

await release();

@@ -277,17 +278,3 @@ export async function writeCameraClipPayloadToFile(params: {

277278

});

278279

return filePath;

279280

}

280-
281-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

282-

if (value instanceof Error) {

283-

return value;

284-

}

285-

if (typeof value === "string") {

286-

return new Error(value);

287-

}

288-

const error = new Error(fallbackMessage, { cause: value });

289-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

290-

Object.assign(error, value);

291-

}

292-

return error;

293-

}

Original file line numberDiff line numberDiff line change

@@ -3,6 +3,7 @@ import { stdin as input, stdout as output } from "node:process";

33

import readline from "node:readline/promises";

44

import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce";

55

import { isVerbose, isYes } from "../globals.js";

6+

import { toErrorObject } from "../infra/errors.js";

67
78

/** Signals that an interactive prompt lost stdin before a complete answer arrived. */

89

export class PromptInputClosedError extends Error {

@@ -31,7 +32,7 @@ function questionUntilClose(rl: ReadlineInterface, question: string): Promise<st

3132

rl.once("close", onClose);

3233

void rl.question(question).then(

3334

(answer) => finish(() => resolve(answer)),

34-

(error: unknown) => finish(() => reject(toLintErrorObject(error, "Non-Error rejection"))),

35+

(error: unknown) => finish(() => reject(toErrorObject(error, "Non-Error rejection"))),

3536

);

3637

});

3738

}

@@ -56,17 +57,3 @@ export async function promptYesNo(question: string, defaultYes = false): Promise

5657

}

5758

return answer.startsWith("y");

5859

}

59-
60-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

61-

if (value instanceof Error) {

62-

return value;

63-

}

64-

if (typeof value === "string") {

65-

return new Error(value);

66-

}

67-

const error = new Error(fallbackMessage, { cause: value });

68-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

69-

Object.assign(error, value);

70-

}

71-

return error;

72-

}

Original file line numberDiff line numberDiff line change

@@ -10,6 +10,7 @@ import {

1010

parseOAuthCallbackInput,

1111

} from "../agents/chutes-oauth.js";

1212

import { isLoopbackHost } from "../gateway/net.js";

13+

import { toErrorObject } from "../infra/errors.js";

1314

import type { OAuthCredentials } from "../llm/oauth.js";

1415
1516

type OAuthPrompt = {

@@ -131,7 +132,7 @@ async function waitForLocalCallback(params: {

131132

clearTimeout(timeout);

132133

}

133134

server.close();

134-

reject(toLintErrorObject(err, "Non-Error rejection"));

135+

reject(toErrorObject(err, "Non-Error rejection"));

135136

}

136137

});

137138

@@ -218,17 +219,3 @@ export async function loginChutes(params: {

218219

fetchFn: params.fetchFn,

219220

});

220221

}

221-
222-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

223-

if (value instanceof Error) {

224-

return value;

225-

}

226-

if (typeof value === "string") {

227-

return new Error(value);

228-

}

229-

const error = new Error(fallbackMessage, { cause: value });

230-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

231-

Object.assign(error, value);

232-

}

233-

return error;

234-

}

Original file line numberDiff line numberDiff line change

@@ -12,7 +12,7 @@ import { dispatchAssembledChannelTurn } from "../channels/turn/kernel.js";

1212

import type { CliDeps } from "../cli/deps.types.js";

1313

import { resolveMainSessionKeyFromConfig } from "../config/sessions.js";

1414

import { parseSessionThreadInfo } from "../config/sessions/thread-info.js";

15-

import { formatErrorMessage } from "../infra/errors.js";

15+

import { formatErrorMessage, toErrorObject } from "../infra/errors.js";

1616

import { requestHeartbeat } from "../infra/heartbeat-wake.js";

1717

import { ackDelivery, enqueueDelivery, failDelivery } from "../infra/outbound/delivery-queue.js";

1818

import { buildOutboundSessionContext } from "../infra/outbound/session-context.js";

@@ -352,7 +352,7 @@ async function deliverQueuedSessionDelivery(params: {

352352

},

353353

});

354354

if (dispatchError) {

355-

throw toLintErrorObject(dispatchError, "Non-Error thrown");

355+

throw toErrorObject(dispatchError, "Non-Error thrown");

356356

}

357357

}

358358

@@ -668,17 +668,3 @@ export function getLatestUpdateRestartSentinel(): RestartSentinelPayload | null

668668

export function recordLatestUpdateRestartSentinel(payload: RestartSentinelPayload): void {

669669

latestUpdateRestartSentinel = cloneRestartSentinelPayload(payload);

670670

}

671-
672-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

673-

if (value instanceof Error) {

674-

return value;

675-

}

676-

if (typeof value === "string") {

677-

return new Error(value);

678-

}

679-

const error = new Error(fallbackMessage, { cause: value });

680-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

681-

Object.assign(error, value);

682-

}

683-

return error;

684-

}

Original file line numberDiff line numberDiff line change

@@ -9,7 +9,7 @@ import {

99

} from "@openclaw/normalization-core/string-coerce";

1010

import { resolveStateDir } from "../config/paths.js";

1111

import type { DeviceIdentity } from "./device-identity.js";

12-

import { formatErrorMessage } from "./errors.js";

12+

import { formatErrorMessage, toErrorObject } from "./errors.js";

1313

import { createAsyncLock, tryReadJson, writeJson } from "./json-files.js";

1414

import {

1515

APNS_HTTP2_CANCEL_CODE,

@@ -700,7 +700,7 @@ async function sendApnsRequest(params: {

700700

}

701701

settled = true;

702702

client.destroy();

703-

reject(toLintErrorObject(err, "Non-Error rejection"));

703+

reject(toErrorObject(err, "Non-Error rejection"));

704704

};

705705

const finish = (result: { status: number; apnsId?: string; body: string }) => {

706706

if (settled) {

@@ -1188,17 +1188,3 @@ export async function sendApnsExecApprovalResolvedWake(

11881188

}

11891189
11901190

export { type ApnsRelayConfig, resolveApnsRelayConfigFromEnv };

1191-
1192-

function toLintErrorObject(value: unknown, fallbackMessage: string): Error {

1193-

if (value instanceof Error) {

1194-

return value;

1195-

}

1196-

if (typeof value === "string") {

1197-

return new Error(value);

1198-

}

1199-

const error = new Error(fallbackMessage, { cause: value });

1200-

if ((typeof value === "object" && value !== null) || typeof value === "function") {

1201-

Object.assign(error, value);

1202-

}

1203-

return error;

1204-

}