♻️ refactor(model-runtime): unify error codes into spec + pattern registry#15262
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: b9b547d156
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| ContentModeration: 'ContentModeration', | ||
| /** Model lacks the requested capability (VLM / tool calling / prefill). */ | ||
| CapabilityNotSupported: 'CapabilityNotSupported', | ||
| /** Provider rejected the request as malformed (bad JSON, schema validation, etc.). */ | ||
| InvalidRequestFormat: 'InvalidRequestFormat', |
There was a problem hiding this comment.
Add non-retryable codes to the LLM retry classifier
These new error codes are marked non-retryable in the spec, but the agent runtime retry loop calls classifyLLMError and stops only for hard-coded entries in STOP_ERROR_TYPES (src/server/modules/AgentRuntime/llmErrorClassification.ts:23-36). Since codes such as ContentModeration, InvalidRequestFormat, UserConfigError, NoAvailableChannel, and OperationInactivityTimeout are absent there, an error carrying one of these new errorType values without an HTTP status (for example a gateway moderation message like Content Exists Risk) falls through to the default retry, causing repeated LLM attempts for requests the spec says should stop.
Useful? React with 👍 / 👎.
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## canary #15262 +/- ##
==========================================
+ Coverage 70.83% 70.94% +0.11%
==========================================
Files 3158 3160 +2
Lines 315616 316919 +1303
Branches 28703 28719 +16
==========================================
+ Hits 223552 224840 +1288
- Misses 91895 91910 +15
Partials 169 169
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
The runtime retry loop's STOP_ERROR_TYPES was a hardcoded set that didn't move with the unified error scheme. New codes added in #15262 (ContentModeration, InvalidRequestFormat, UserConfigError, NoAvailableChannel, OperationInactivityTimeout, CapabilityNotSupported, LocationNotSupportError, ExceededToolLimit, …) all carry `retryable: false` in the spec, but an error arriving with one of these `errorType` values **and no HTTP status** (e.g. a gateway-classified moderation message like "Content Exists Risk") fell through to the classifier's default `retry` branch, producing pointless retry storms for requests the spec says should stop. Fix: - Derive `STOP_ERROR_TYPES` / `RETRY_ERROR_TYPES` from `ERROR_CODE_SPECS` at module load. Future codes added to the spec table now classify automatically — no second source of truth. - Keep a tight `RETRY_OVERRIDES` set for the 4 legacy codes (`AgentRuntimeError` / `OllamaServiceUnavailable` / `ProviderBizError` / `StreamChunkError`) that the runtime intentionally retries even though the spec marks them non-retryable; these are catch-all / harness-level failures often transient in practice. - Resolve through `getErrorCodeSpec` before set lookup so the deprecated `QuotaLimitReached` alias classifies the same as its canonical `RateLimitExceeded`. - Export the `errors/` module from `@lobechat/model-runtime` root barrel. Tests: 31 cases (+12) including `it.each` coverage of all 8 newly-stop codes and 3 newly-retry codes, plus explicit guards for the legacy retry overrides and the QuotaLimitReached → RateLimitExceeded alias. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Add a single source of truth for runtime error classification under `packages/model-runtime/src/errors/`: - `taxonomy.ts` — category / severity / attribution dimensions - `specs.ts` — ERROR_CODE_SPECS: per-code httpStatus / retryable / countAsFailure / attribution (user | provider | harness | system) - `patterns.ts` — ERROR_PATTERNS: substring/regex registry consolidating the 5 separate isXxxError lists and the upstream provider message patterns previously kept only in agent-gateway - `match.ts` — matchErrorPattern() + isUserSideError() Wire-up: - Add 8 codes to AgentRuntimeErrorType (ProviderServiceUnavailable, ProviderNetworkError, NoAvailableChannel, ContentModeration, CapabilityNotSupported, InvalidRequestFormat, UserConfigError, OperationInactivityTimeout) plus their en-US locale keys - Rewrite isExceededContextWindow / isQuotaLimit / isInsufficientQuota / isAccountDeactivated as one-line wrappers around matchErrorPattern - errorResponse.ts getStatus() now reads ERROR_CODE_SPECS, removing the hardcoded switch Tests: 167 model-runtime test files (3916 pass / 1 skip) including 13 new match.test.ts cases and all 42 isXxxError snapshots unchanged. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Numeric reference codes for external surfaces (open-source consumers, docs
anchors, support tickets):
- `ErrorCodeSpec.numericId` (required, 4-digit). Append-only contract: once
assigned, a (code, numericId) pair never changes even if the string `code`
is renamed.
- Format: `E<numericId>` (e.g. `E1001` InvalidProviderAPIKey, `E3001`
QuotaLimitReached, `E7002` OperationInactivityTimeout).
- First digit encodes category via `CATEGORY_NUMERIC_PREFIX`:
1=auth, 2=quota, 3=capacity, 4=request, 5=safety, 6=network, 7=stream,
8=provider, 9=config.
- Helpers: `formatErrorRef(code) → 'E1001'`, `parseErrorRef('E1001') → code`.
- Test guards: numericId is unique across specs; leading digit matches the
declared category for every entry.
Consolidate classification predicates:
- New `ErrorClassifier` namespace bundles `isExceededContextWindow` /
`isInsufficientQuota` / `isQuotaLimitReached` / `isAccountDeactivated`
behind a single discoverable import.
- The 4 scattered `is*Error.ts` utilities are now `@deprecated`; kept as
shims for callers that aren't migrated yet.
- Parity test asserts ErrorClassifier and the legacy utils return the same
boolean on a curated sample set.
Tests: 168 files / 3928 pass / 1 skip. +12 new tests for numericId contract,
ref formatting, and classifier parity.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
The legacy name conflated two distinct semantics: short-window rate limit (429-class, transient, retryable, provider-attributed) vs. long-term account-level quota exhaustion (`InsufficientQuota`, user-attributed). Surface code readers hit this confusion the moment they look at the spec table — the name reads like a 2xxx quota code but the spec sits in 3xxx capacity. - Add `AgentRuntimeErrorType.RateLimitExceeded` as the canonical name. - Keep `AgentRuntimeErrorType.QuotaLimitReached` as a `@deprecated` alias (same string value preserved for legacy stored data on the dashboard side) — `CODE_ALIASES` map in `specs.ts` ensures `getErrorCodeSpec` / `isUserSideError` resolve both old and new strings to the canonical E3001 spec. - `ErrorClassifier`: new `isRateLimitExceeded` is canonical; `isQuotaLimitReached` kept as deprecated alias. - Refresh patterns.ts (~24 entries) + isQuotaLimitError util. - Locale: add `response.RateLimitExceeded` next to the kept legacy `response.QuotaLimitReached`. - Match.ts now reads via `getErrorCodeSpec` so alias resolution flows through one place. Tests: 3930 model-runtime tests pass (+2 explicit alias-resolution cases). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
The runtime retry loop's STOP_ERROR_TYPES was a hardcoded set that didn't move with the unified error scheme. New codes added in #15262 (ContentModeration, InvalidRequestFormat, UserConfigError, NoAvailableChannel, OperationInactivityTimeout, CapabilityNotSupported, LocationNotSupportError, ExceededToolLimit, …) all carry `retryable: false` in the spec, but an error arriving with one of these `errorType` values **and no HTTP status** (e.g. a gateway-classified moderation message like "Content Exists Risk") fell through to the classifier's default `retry` branch, producing pointless retry storms for requests the spec says should stop. Fix: - Derive `STOP_ERROR_TYPES` / `RETRY_ERROR_TYPES` from `ERROR_CODE_SPECS` at module load. Future codes added to the spec table now classify automatically — no second source of truth. - Keep a tight `RETRY_OVERRIDES` set for the 4 legacy codes (`AgentRuntimeError` / `OllamaServiceUnavailable` / `ProviderBizError` / `StreamChunkError`) that the runtime intentionally retries even though the spec marks them non-retryable; these are catch-all / harness-level failures often transient in practice. - Resolve through `getErrorCodeSpec` before set lookup so the deprecated `QuotaLimitReached` alias classifies the same as its canonical `RateLimitExceeded`. - Export the `errors/` module from `@lobechat/model-runtime` root barrel. Tests: 31 cases (+12) including `it.each` coverage of all 8 newly-stop codes and 3 newly-retry codes, plus explicit guards for the legacy retry overrides and the QuotaLimitReached → RateLimitExceeded alias. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
…assifier
Three structural cleanups on top of the unified error scheme:
1. **Reorder `ERROR_CODE_SPECS` strictly by `numericId`.** Previously the
spec table followed the original loose category groupings, which left
stragglers like `InvalidOllamaArgs` (E9001, config) wedged into the
1xxx auth section. Now entries appear in 1001 → 9005 order with
numeric-prefix section dividers. Added `it('spec entries appear in
source order sorted by numericId')` as a lint guard so future
additions stay sorted (JS preserves object-literal insertion order).
2. **Migrate all production callers from `isXxxError` utils to
`ErrorClassifier` namespace.** Touched 4 files, 13 call sites:
- `core/anthropicCompatibleFactory/index.ts` (6)
- `core/openaiCompatibleFactory/index.ts` (4)
- `providers/bedrock/index.ts` (1)
- `utils/googleErrorParser.ts` (2)
3. **Delete the 4 deprecated util files + their tests.** With no
production callers left, the shim layer is dead code. Classifier
tests now stand on their own (no parity comparison against the
deleted utils).
Also mirror the spec ordering to `agent-gateway/src/errors/specs.ts`
(separate commit on that repo).
Tests: 164 files / 3908 pass / 1 skip (was 168 / 3930 — the delta is the
4 removed `isXxxError.test.ts` files, ~42 tests, net of new classifier
coverage).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
bf71dc4 to
77fc962
Compare
…mespace
Until now, every runtime error code (InvalidProviderAPIKey, ProviderBizError,
ExceededContextWindow, …) lived under `error.response.<X>` — mixed in the
same file with HTTP statuses, Plugin*, Cloud business errors, and
GoogleAIBlockReason subkeys. The `response.` prefix is a lobehub-specific
convention that has nothing to do with the underlying ErrorCode, which
made it awkward for external consumers and noisy for maintainers.
This change carves out a dedicated `modelRuntime` i18next namespace:
- `src/locales/default/modelRuntime.ts` — 34 keys, one per
`AgentRuntimeErrorType` (or deprecated alias `QuotaLimitReached`).
Key = the bare ErrorCode (no `response.` prefix).
- `src/locales/default/error.ts` — runtime keys removed. The file keeps
HTTP statuses (response.400 - response.524), Plugin*, Cloud-only
business errors (FreePlanLimit, SubscriptionPlanLimit, etc.),
GoogleAIBlockReason.*, and the various UI-flow strings.
- Registered `modelRuntime` in `src/locales/default/index.ts` so the
namespace appears in the typed resources map.
- Generated `locales/en-US/modelRuntime.json` + updated
`locales/en-US/error.json` — other languages need `pnpm i18n`.
New helper `src/utils/locale/runtimeErrorMessage.ts`:
```ts
getRuntimeErrorMessage(t, code, vars)
```
Routes via `getErrorCodeSpec(code)`: returns `t('modelRuntime:<code>')`
when the code is in `ERROR_CODE_SPECS`, otherwise falls back to
`t('response.<code>')`. Callers add `'modelRuntime'` to their
`useTranslation()` namespace list.
UI consumer migrations (5 dynamic lookup sites):
- `features/Conversation/Messages/AssistantGroup/Tool/Detail/ErrorResponse.tsx`
- `features/Conversation/Error/index.tsx`
- `routes/(main)/settings/provider/features/ProviderConfig/Checker.tsx`
(incl. the static `t('response.ConnectionCheckFailed')` call)
- `routes/(main)/(create)/video/features/GenerationFeed/VideoErrorItem.tsx`
- `routes/(main)/(create)/image/features/GenerationFeed/GenerationItem/ErrorState.tsx`
`Description.tsx` (HTTP status renderer) stays on `response.<X>` since
its inputs are always HTTP status numbers, never runtime ErrorCodes.
Stacks on top of #15262 (the unified errors PR introduces
`getErrorCodeSpec` / `ERROR_CODE_SPECS`); base this PR there until
#15262 merges, then it auto-rebases onto canary.
Tests: lobehub type-check clean; model-runtime 3908 pass / 1 skip / 164 files.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
…/model-runtime `classifyLLMError` now reads `ERROR_CODE_SPECS` + `getErrorCodeSpec` at module-load time to derive the STOP / RETRY sets. Two test suites mock `@lobechat/model-runtime` sparsely (only `consumeStreamUntilDone` or `getModelPropertyWithFallback`), so those new exports were undefined and the module-eval crashed with `No "ERROR_CODE_SPECS" export is defined on the "@lobechat/model-runtime" mock`. Fix: add the two symbols to the mocks. Used empty stubs rather than `importOriginal` so the mocks stay small and don't transitively pull the entire model-runtime package (which would then expect every other mocked package — e.g. `model-bank.AiModelTypeSchema` — to be complete). Neither suite exercises the runtime retry classifier, so empty `ERROR_CODE_SPECS` and `getErrorCodeSpec` returning `undefined` are behaviorally equivalent to the pre-PR baseline. Verified locally: - `bunx vitest run src/server/modules/AgentRuntime/__tests__/RuntimeExecutors.test.ts` — 102 tests pass - `bunx vitest run src/server/services/agentRuntime/AgentRuntimeService.test.ts` — 60 tests pass Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
…mespace
Until now, every runtime error code (InvalidProviderAPIKey, ProviderBizError,
ExceededContextWindow, …) lived under `error.response.<X>` — mixed in the
same file with HTTP statuses, Plugin*, Cloud business errors, and
GoogleAIBlockReason subkeys. The `response.` prefix is a lobehub-specific
convention that has nothing to do with the underlying ErrorCode, which
made it awkward for external consumers and noisy for maintainers.
This change carves out a dedicated `modelRuntime` i18next namespace:
- `src/locales/default/modelRuntime.ts` — 34 keys, one per
`AgentRuntimeErrorType` (or deprecated alias `QuotaLimitReached`).
Key = the bare ErrorCode (no `response.` prefix).
- `src/locales/default/error.ts` — runtime keys removed. The file keeps
HTTP statuses (response.400 - response.524), Plugin*, Cloud-only
business errors (FreePlanLimit, SubscriptionPlanLimit, etc.),
GoogleAIBlockReason.*, and the various UI-flow strings.
- Registered `modelRuntime` in `src/locales/default/index.ts` so the
namespace appears in the typed resources map.
- Generated `locales/en-US/modelRuntime.json` + updated
`locales/en-US/error.json` — other languages need `pnpm i18n`.
New helper `src/utils/locale/runtimeErrorMessage.ts`:
```ts
getRuntimeErrorMessage(t, code, vars)
```
Routes via `getErrorCodeSpec(code)`: returns `t('modelRuntime:<code>')`
when the code is in `ERROR_CODE_SPECS`, otherwise falls back to
`t('response.<code>')`. Callers add `'modelRuntime'` to their
`useTranslation()` namespace list.
UI consumer migrations (5 dynamic lookup sites):
- `features/Conversation/Messages/AssistantGroup/Tool/Detail/ErrorResponse.tsx`
- `features/Conversation/Error/index.tsx`
- `routes/(main)/settings/provider/features/ProviderConfig/Checker.tsx`
(incl. the static `t('response.ConnectionCheckFailed')` call)
- `routes/(main)/(create)/video/features/GenerationFeed/VideoErrorItem.tsx`
- `routes/(main)/(create)/image/features/GenerationFeed/GenerationItem/ErrorState.tsx`
`Description.tsx` (HTTP status renderer) stays on `response.<X>` since
its inputs are always HTTP status numbers, never runtime ErrorCodes.
Stacks on top of #15262 (the unified errors PR introduces
`getErrorCodeSpec` / `ERROR_CODE_SPECS`); base this PR there until
#15262 merges, then it auto-rebases onto canary.
Tests: lobehub type-check clean; model-runtime 3908 pass / 1 skip / 164 files.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
…mespace
Until now, every runtime error code (InvalidProviderAPIKey, ProviderBizError,
ExceededContextWindow, …) lived under `error.response.<X>` — mixed in the
same file with HTTP statuses, Plugin*, Cloud business errors, and
GoogleAIBlockReason subkeys. The `response.` prefix is a lobehub-specific
convention that has nothing to do with the underlying ErrorCode, which
made it awkward for external consumers and noisy for maintainers.
This change carves out a dedicated `modelRuntime` i18next namespace:
- `src/locales/default/modelRuntime.ts` — 34 keys, one per
`AgentRuntimeErrorType` (or deprecated alias `QuotaLimitReached`).
Key = the bare ErrorCode (no `response.` prefix).
- `src/locales/default/error.ts` — runtime keys removed. The file keeps
HTTP statuses (response.400 - response.524), Plugin*, Cloud-only
business errors (FreePlanLimit, SubscriptionPlanLimit, etc.),
GoogleAIBlockReason.*, and the various UI-flow strings.
- Registered `modelRuntime` in `src/locales/default/index.ts` so the
namespace appears in the typed resources map.
- Generated `locales/en-US/modelRuntime.json` + updated
`locales/en-US/error.json` — other languages need `pnpm i18n`.
New helper `src/utils/locale/runtimeErrorMessage.ts`:
```ts
getRuntimeErrorMessage(t, code, vars)
```
Routes via `getErrorCodeSpec(code)`: returns `t('modelRuntime:<code>')`
when the code is in `ERROR_CODE_SPECS`, otherwise falls back to
`t('response.<code>')`. Callers add `'modelRuntime'` to their
`useTranslation()` namespace list.
UI consumer migrations (5 dynamic lookup sites):
- `features/Conversation/Messages/AssistantGroup/Tool/Detail/ErrorResponse.tsx`
- `features/Conversation/Error/index.tsx`
- `routes/(main)/settings/provider/features/ProviderConfig/Checker.tsx`
(incl. the static `t('response.ConnectionCheckFailed')` call)
- `routes/(main)/(create)/video/features/GenerationFeed/VideoErrorItem.tsx`
- `routes/(main)/(create)/image/features/GenerationFeed/GenerationItem/ErrorState.tsx`
`Description.tsx` (HTTP status renderer) stays on `response.<X>` since
its inputs are always HTTP status numbers, never runtime ErrorCodes.
Stacks on top of #15262 (the unified errors PR introduces
`getErrorCodeSpec` / `ERROR_CODE_SPECS`); base this PR there until
#15262 merges, then it auto-rebases onto canary.
Tests: lobehub type-check clean; model-runtime 3908 pass / 1 skip / 164 files.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
…mespace (#15269) Until now, every runtime error code (InvalidProviderAPIKey, ProviderBizError, ExceededContextWindow, …) lived under `error.response.<X>` — mixed in the same file with HTTP statuses, Plugin*, Cloud business errors, and GoogleAIBlockReason subkeys. The `response.` prefix is a lobehub-specific convention that has nothing to do with the underlying ErrorCode, which made it awkward for external consumers and noisy for maintainers. This change carves out a dedicated `modelRuntime` i18next namespace: - `src/locales/default/modelRuntime.ts` — 34 keys, one per `AgentRuntimeErrorType` (or deprecated alias `QuotaLimitReached`). Key = the bare ErrorCode (no `response.` prefix). - `src/locales/default/error.ts` — runtime keys removed. The file keeps HTTP statuses (response.400 - response.524), Plugin*, Cloud-only business errors (FreePlanLimit, SubscriptionPlanLimit, etc.), GoogleAIBlockReason.*, and the various UI-flow strings. - Registered `modelRuntime` in `src/locales/default/index.ts` so the namespace appears in the typed resources map. - Generated `locales/en-US/modelRuntime.json` + updated `locales/en-US/error.json` — other languages need `pnpm i18n`. New helper `src/utils/locale/runtimeErrorMessage.ts`: ```ts getRuntimeErrorMessage(t, code, vars) ``` Routes via `getErrorCodeSpec(code)`: returns `t('modelRuntime:<code>')` when the code is in `ERROR_CODE_SPECS`, otherwise falls back to `t('response.<code>')`. Callers add `'modelRuntime'` to their `useTranslation()` namespace list. UI consumer migrations (5 dynamic lookup sites): - `features/Conversation/Messages/AssistantGroup/Tool/Detail/ErrorResponse.tsx` - `features/Conversation/Error/index.tsx` - `routes/(main)/settings/provider/features/ProviderConfig/Checker.tsx` (incl. the static `t('response.ConnectionCheckFailed')` call) - `routes/(main)/(create)/video/features/GenerationFeed/VideoErrorItem.tsx` - `routes/(main)/(create)/image/features/GenerationFeed/GenerationItem/ErrorState.tsx` `Description.tsx` (HTTP status renderer) stays on `response.<X>` since its inputs are always HTTP status numbers, never runtime ErrorCodes. Stacks on top of #15262 (the unified errors PR introduces `getErrorCodeSpec` / `ERROR_CODE_SPECS`); base this PR there until #15262 merges, then it auto-rebases onto canary. Tests: lobehub type-check clean; model-runtime 3908 pass / 1 skip / 164 files. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
# 🚀 LobeHub Release (20260528) **Release Date:** May 28, 2026 **Since v2.2.0:** 220 merged PRs · 15 contributors > This cycle brings heterogeneous "platform agents" you can dispatch to local or remote devices, a rebuilt onboarding flow, document-centric chat, and a unified model-runtime error model — with new DeepSeek V4 and Gemini 3.5 Flash support along the way. --- ## ✨ Highlights - **More Hetero Agents (OpenClaw / Hermes)** — Create heterogeneous agents and dispatch them to local or remote devices through the device gateway, with an execution-target switcher in the composer and persistent CLI sessions. (#15065, #15179, #15022) - **iMessage on Desktop** — New iMessage setup and bridge on desktop, plus bot attachments across every platform. (#15228, #15227, #15029) - **Skills in the Composer** — Drag skill chips into chat, trigger installed skills from the slash menu mid-line, and surface project-level skills in the homogeneous agent runtime. (#15095, #15061, #15110) - **New Models** — DeepSeek V4 Flash/Pro and Gemini 3.5 Flash across providers, with thinking params for structured output and chat cost estimates. (#15031, #15001, #15051, #14876) - **Agent Runtime Observability** — OpenTelemetry GenAI semantic conventions plus per-call generation tracing. (#15123, #15124) --- ## 🤖 Agents & Heterogeneous Runtime - **Platform agent creation** — OpenClaw/Hermes creation UI, device guard, and remote dispatch backend. (#15065) - **Execution-target switcher** — Pick local vs remote execution directly in the composer; device-selection UX with actionable guidance. (#15179, #15111) - **CLI hetero dispatch** — OpenClaw/Hermes dispatch with persistent sessions and a notify protocol. (#15022) - **Gateway snapshot as source of truth** — Consume the gateway `uiMessages` snapshot at step boundaries to keep chat state consistent. (#15153, #15152) - **Client sub-agent as a normal tool call** — Simplifies the sub-agent execution path. (#15281) - **Hermes agent chain** — Implements the Hermes agent chain logic. (#15189) - **Device registry** — TRPC endpoints to register, list, update, and remove devices. (#15299) - **Desktop device routing** — Route gateway agent runs through `lh hetero exec`; restore `userId` in gateway dispatch and gate local-system by execution target. (#15132, #15232) - **Agent signals** — Anchor agent-signal receipts to messages and isolate memory-agent messages into a child thread. (#14969, #14921) --- ## 🚀 Onboarding - **Simplified first screen** — Defer topic creation to first send. (#15090) - **Market Agent Picker** — Added as a classic onboarding step, with template prefetch. (#14980, #15041) - **Welcome guidance** — Show agent welcome guidance on first run. (#15098) - **Mobile** — Adapt agent onboarding UI and restore Classic-step padding on mobile. (#15019, #15032) - **Discovery** — Streamline discovery to a single profession question. (#14987) - **Analytics** — Track onboarding step events and create-agent modal source. (#15133, #15028) --- ## 📄 Documents, Pages & Knowledge - **Thread chat in preview** — Embed thread chat in the document preview portal. (#15216) - **Non-markdown rendering** — Render non-markdown docs as a read-only highlight. (#15272) - **Multi-select** — Multi-select delete in the document tree. (#15125) - **Page-agent streaming** — Preview `initPage` streaming arguments. (#15039) - **Per-agent topics** — Per-agent topic management page. (#15207) - **Server-side category** — Derive document category server-side and drop frontend predicates. (#15076) --- ## 🧩 Skills & Tools - **Drag skill chips** — Drag skills into chat input and register agent-document skills. (#15095) - **Slash menu** — Installed skills appear in the slash menu with a mid-line trigger. (#15061) - **Project skills** — Recognize project-level skills in the homogeneous agent runtime and surface them regardless of active device. (#15110, #15177) - **VFS archiving** — Archive oversized tool results to VFS instead of truncating. (#15074) - **@localfile mentions** — Drag folders into chat input as `@localFile` mentions on desktop. (#15071) --- ## 🧠 Model Runtime & Providers - **Error spec registry** — Unify error codes into a spec + pattern registry, split `ProviderBizError` into finer codes, classify Cloud-only codes via a tier digit, and add `DatabasePersistError`. (#15262, #15286, #15278, #15279) - **New models** — DeepSeek V4 Flash/Pro (opencode-go) and Gemini 3.5 Flash; DeepSeek V4 Pro on SiliconCloud. (#15031, #15001, #15017, #15267) - **Structured output** — Thinking params for structured output, Bedrock structured generation, and DeepSeek `generateObject` tool choice. (#15051, #15174, #15054) - **Cost** — Chat cost estimate support; preserve usage cost in custom streams. (#14876, #15218) --- ## 💬 Chat & User Experience - **Follow-up chips** — Extend follow-up chip suggestions to general chat with scene-specific model config. (#15101, #14797) - **Input drafts** — Persist unsent input drafts across tab switches and prevent repeated draft restore. (#14992, #15024) - **Command menu** — Order topic/message search by recency and promote inline type filters. (#15094, #14986) - **Zoom HUD** — Show a zoom-level HUD on Cmd +/− and Cmd 0. (#15294) - **Copy** — Unescape markdown escapes when copying user messages. (#15253) --- ## 🖥️ Desktop - **App Nap fix** — Prevent App Nap from dropping the gateway WebSocket during display sleep. (#14994) - **File preview** — Preview `.cjs`/`.mjs`/no-extension files instead of binary fallback and expand `~` when opening local files. (#15168, #15284) - **Cross-platform settings** — Open settings via main-window navigation on Windows/Linux and restore the route after an update restart. (#15036, #14922) - **Token refresh** — Prevent frequent logout from token-refresh retries. (#14928) --- ## 📊 Observability - **OTel GenAI** — Instrument Agent Runtime with OpenTelemetry GenAI semantic conventions. (#15123) - **Generation tracing** — Per-call `llm_generation_tracing` with a pre-allocated tracingId and recordFeedback router. (#15124, #15146) - **Error classification** — Persist `ERROR_CODE_SPECS` classification on operation errors. (#15273) --- ## 🗃️ Database Migrations - **Batch migrations** — Topic usage stats, push tokens, `tasks.editor_data`, and document shares. (#15280) - **Tracing & eval tables** — Add `llm_generation_tracing` and agent eval experiment tables. (#15126) > Self-hosted operators should run the database migration (`pnpm db:migrate`, or restart with auto-migrate enabled) after upgrading. The changes are additive and backwards-compatible. --- ## 🔒 Security & Reliability - **Security:** Remove the `getPlaintextCred` tool to prevent plaintext credential exposure. (#14998) - **Security:** Prompt account selection for Google OAuth and add `prompt=consent` to the OIDC authorization URL to fix missing refresh tokens. (#15234, #15010) - **Reliability:** Preserve streamed content across a mid-stream cancel. (#15173) - **Reliability:** Bound the Redis command timeout and configure the Anthropic client timeout. (#15091, #15042) - **Reliability:** Prevent infinite recursion in the assistant chain. (#15288) --- ## 👥 Contributors Huge thanks to **15 contributors** who shipped **220 merged PRs** this cycle. @AnotiaWang · @sxjeru · @algojogacor · @hardy-one · @arvinxx · @Innei · @tjx666 · @lijian · @AmAzing129 · @rdmclin2 · @neko · @cy948 · @CanisMinor · @sudongyuer · @rivertwilight Plus @lobehubbot and renovate[bot] for maintenance. --- **Full Changelog**: v2.2.0...release/weekly-20260528
💻 Change Type
🔗 Related Issue
N/A
🔀 Description of Change
Introduce a single source of truth for runtime error classification at
packages/model-runtime/src/errors/. Previously the project had three parallel lists of upstream-error substrings (5isXxxError.tsutilities inmodel-runtime/utils/, the agent-gateway productionUSER_ERROR_MESSAGE_PATTERNSlist, and a hand-maintained switch inerrorResponse.ts), none of which shared types or stayed in sync. This PR consolidates them.New module —
packages/model-runtime/src/errors/:taxonomy.ts— orthogonal classification dimensions:category(auth / quota / capacity / request / safety / network / stream / provider / config),severity(info / warning / error / critical),attribution(user/provider/harness/system).specs.ts—ERROR_CODE_SPECS: per-code metadata table (httpStatus,retryable,countAsFailure,attribution,description). The single fact table that drives HTTP responses, retry decisions, and failure-metric accounting.patterns.ts—ERROR_PATTERNS: ~250 substring/regex entries harvested from the existingisXxxError.tsutilities plus the production patterns previously kept only in agent-gateway. Each entry binds a substring to oneErrorCode.match.ts—matchErrorPattern()returns the first matching code;isUserSideError()resolves a(errorType, message)pair through the spec table to decide whether the error counts as a failure.Additive enum changes (no breaking): 8 new codes on
AgentRuntimeErrorTypefor categories the upstream classifier needed but couldn't cleanly express before —ProviderServiceUnavailable,ProviderNetworkError,NoAvailableChannel,ContentModeration,CapabilityNotSupported,InvalidRequestFormat,UserConfigError,OperationInactivityTimeout. Each gets anresponse.<Code>en-US locale key.Migration of existing utilities (public API unchanged):
isExceededContextWindowError,isQuotaLimitError,isInsufficientQuotaError,isAccountDeactivatedError— rewritten as one-line wrappers aroundmatchErrorPattern({ message })?.code === <Code>. Their substring lists moved intopatterns.ts.errorResponse.tsgetStatus()— now consultsERROR_CODE_SPECSfirst, falls back to the existingInvalid*shorthand and bare numericChatErrorTypevalues. The hand-maintained switch is gone.🧪 How to Test
Verified with:
```bash
bun run type-check # passes
cd packages/model-runtime && bunx vitest run src/ # 167 files / 3916 pass / 1 skip
cd packages/model-runtime && bunx vitest run src/errors/ # 13 new match.test.ts cases
cd packages/model-runtime && bunx vitest run src/utils/is*.test.ts # all 42 existing snapshots unchanged
```
match.test.tscovers the spec/pattern handoff explicitly, including the harness-misclassification rescue case (errorTypesaysExceededContextWindowbut message saystokens per minute (TPM)→ user-side).📸 Screenshots / Videos
N/A (no UI changes)
📝 Additional Information
Mirror in agent-gateway: The Cloudflare Worker (
agent-gatewayrepo) maintains a hand-mirrored copy underagent-gateway/src/errors/so it has no cross-repo dependency. The lobehub copy is the source of truth; the gateway is the consumer. The gateway mirror adds twoChatErrorTypecodes that only show up in Cloud traffic (FreePlanLimit,InsufficientBudgetForModel). Mirror commit lands onagent-gateway/masterseparately.Provider error mapper (suggested in the original design discussion as step 4) is intentionally not in this PR — leaving the per-provider parsers (
handleOpenAIError,handleAnthropicError,googleErrorParser,comfyuiErrorParser) untouched so this change stays additive. Once the unified registry has settled in production, those can be migrated incrementally.Locales: Only en-US is updated in this PR; other languages will get auto-translated by the next
pnpm i18nrun.🤖 Generated with Claude Code