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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
GbyAI
GbyAI
M
MIT News - Artificial intelligence
美团技术团队
罗磊的独立博客
雷峰网
雷峰网
量子位
博客园 - 【当耐特】
Last Week in AI
Last Week in AI
D
Docker
小众软件
小众软件
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
WordPress大学
WordPress大学
V
V2EX
博客园_首页
腾讯CDC
The Cloudflare Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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
feat: pass structured provider error signals to hooks · o...
fuller-stack · 2026-05-31 · via Recent Commits to openclaw:main

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

3434

matchesFormatErrorPattern,

3535

} from "./failover-matches.js";

3636

import {

37+

classifyProviderPluginError,

3738

classifyProviderSpecificError,

3839

matchesProviderContextOverflow,

3940

} from "./provider-error-patterns.js";

@@ -264,6 +265,7 @@ type PaymentRequiredFailoverReason = Extract<FailoverReason, "billing" | "rate_l

264265

export type FailoverSignal = {

265266

status?: number;

266267

code?: string;

268+

errorType?: string;

267269

message?: string;

268270

provider?: string;

269271

};

@@ -633,16 +635,30 @@ export function classifyFailoverReasonFromHttpStatus(

633635

message?: string,

634636

opts?: { provider?: string },

635637

): FailoverReason | null {

638+

const hasProviderStatusSignal = Boolean(opts?.provider && typeof status === "number");

636639

const messageClassification = message

637-

? classifyFailoverClassificationFromMessage(message, opts?.provider)

640+

? classifyFailoverClassificationFromMessage(message, opts?.provider, {

641+

includeProviderPluginHooks: !hasProviderStatusSignal,

642+

})

638643

: null;

644+

const providerPluginReason = hasProviderStatusSignal

645+

? classifyProviderPluginError({

646+

errorMessage: message ?? "",

647+

provider: opts?.provider,

648+

status,

649+

})

650+

: null;

651+

const effectiveMessageClassification = providerPluginReason

652+

? toReasonClassification(providerPluginReason)

653+

: messageClassification;

639654

return failoverReasonFromClassification(

640655

classifyFailoverClassificationFromHttpStatus(

641656

status,

642657

message,

643-

messageClassification,

658+

effectiveMessageClassification,

644659

status,

645660

opts?.provider,

661+

{ preserveProviderSignalClassification: providerPluginReason !== null },

646662

),

647663

);

648664

}

@@ -653,6 +669,7 @@ function classifyFailoverClassificationFromHttpStatus(

653669

messageClassification: FailoverClassification | null,

654670

explicitStatus: number | undefined,

655671

provider?: string,

672+

opts?: { preserveProviderSignalClassification?: boolean },

656673

): FailoverClassification | null {

657674

const messageReason = failoverReasonFromClassification(messageClassification);

658675

if (typeof status !== "number" || !Number.isFinite(status)) {

@@ -685,6 +702,9 @@ function classifyFailoverClassificationFromHttpStatus(

685702

return toReasonClassification("rate_limit");

686703

}

687704

if (status === 401 || status === 403) {

705+

if (opts?.preserveProviderSignalClassification && messageClassification) {

706+

return messageClassification;

707+

}

688708

if (message && isAuthPermanentErrorMessage(message)) {

689709

return toReasonClassification("auth_permanent");

690710

}

@@ -868,6 +888,7 @@ function isExactUnknownNoDetailsError(raw: string): boolean {

868888

function classifyFailoverClassificationFromMessage(

869889

raw: string,

870890

provider?: string,

891+

opts?: { includeProviderPluginHooks?: boolean },

871892

): FailoverClassification | null {

872893

if (isImageDimensionErrorMessage(raw)) {

873894

return null;

@@ -960,7 +981,10 @@ function classifyFailoverClassificationFromMessage(

960981

return toReasonClassification("timeout");

961982

}

962983

// Provider-specific patterns as a final catch (Bedrock, Groq, Together AI, etc.)

963-

const providerSpecific = classifyProviderSpecificError(raw);

984+

const providerSpecific = classifyProviderSpecificError(

985+

{ errorMessage: raw, provider },

986+

{ includePluginHooks: opts?.includeProviderPluginHooks },

987+

);

964988

if (providerSpecific) {

965989

return toReasonClassification(providerSpecific);

966990

}

@@ -969,34 +993,58 @@ function classifyFailoverClassificationFromMessage(

969993970994

export function classifyFailoverSignal(signal: FailoverSignal): FailoverClassification | null {

971995

const inferredStatus = inferSignalStatus(signal);

996+

const explicitStatus =

997+

typeof signal.status === "number" && Number.isFinite(signal.status) ? signal.status : undefined;

972998

if (

973999

signal.message &&

9741000

isTransportHtmlErrorStatus(inferredStatus) &&

9751001

isHtmlErrorResponse(signal.message, inferredStatus)

9761002

) {

9771003

return toReasonClassification("timeout");

9781004

}

1005+

const hasStructuredProviderSignal = Boolean(

1006+

signal.provider &&

1007+

(explicitStatus !== undefined || signal.code !== undefined || signal.errorType !== undefined),

1008+

);

9791009

const messageClassification = signal.message

980-

? classifyFailoverClassificationFromMessage(signal.message, signal.provider)

1010+

? classifyFailoverClassificationFromMessage(signal.message, signal.provider, {

1011+

includeProviderPluginHooks: !hasStructuredProviderSignal,

1012+

})

9811013

: null;

1014+

const providerPluginReason =

1015+

hasStructuredProviderSignal &&

1016+

signal.provider &&

1017+

(signal.message || signal.code || signal.errorType || typeof inferredStatus === "number")

1018+

? classifyProviderPluginError({

1019+

errorMessage: signal.message ?? "",

1020+

provider: signal.provider,

1021+

status: explicitStatus,

1022+

code: signal.code,

1023+

errorType: signal.errorType,

1024+

})

1025+

: null;

1026+

const effectiveMessageClassification = providerPluginReason

1027+

? toReasonClassification(providerPluginReason)

1028+

: messageClassification;

9821029

const codeReason = classifyFailoverReasonFromCode(signal.code);

9831030

if (codeReason === "auth_permanent") {

9841031

return toReasonClassification(codeReason);

9851032

}

9861033

const statusClassification = classifyFailoverClassificationFromHttpStatus(

9871034

inferredStatus,

9881035

signal.message,

989-

messageClassification,

1036+

effectiveMessageClassification,

9901037

signal.status,

9911038

signal.provider,

1039+

{ preserveProviderSignalClassification: providerPluginReason !== null },

9921040

);

9931041

if (statusClassification) {

9941042

return statusClassification;

9951043

}

9961044

if (codeReason) {

9971045

return toReasonClassification(codeReason);

9981046

}

999-

return messageClassification;

1047+

return effectiveMessageClassification;

10001048

}

1001104910021050

export function classifyProviderRuntimeFailureKind(