npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@agentxin-ai/plugin-model-retry

v0.0.5

Published

`@agentxin-ai/plugin-model-retry` adds retry logic around AgentXin agent model calls. It keeps LangChain-style retry semantics while exposing only JSON-serializable configuration that can be edited in the AgentXin middleware UI.

Downloads

10

Readme

AgentXin Plugin: Model Retry Middleware

@agentxin-ai/plugin-model-retry adds retry logic around AgentXin agent model calls. It keeps LangChain-style retry semantics while exposing only JSON-serializable configuration that can be edited in the AgentXin middleware UI.

Key Features

  • Retries failed model calls with configurable retry count, exponential backoff, max delay, and optional jitter.
  • Supports platform-safe retry matching by error name, HTTP status code, and message substring.
  • Returns an AIMessage when retries are exhausted in continue mode, or rethrows the last error in error mode.
  • Wraps retry attempts with WrapWorkflowNodeExecutionCommand so middleware-level execution tracking remains visible in AgentXin.
  • Registers as a global middleware plugin so the strategy is available across the platform.
  • Treats AIMessage.response_metadata.finish_reason === "network_error" as a retryable model failure, even when the provider returns a message instead of throwing.
  • Treats empty AIMessage results with no tool_calls and no invalid_tool_calls as retryable model failures.

Installation

pnpm add @agentxin-ai/plugin-model-retry
# or
npm install @agentxin-ai/plugin-model-retry

Quick Start

  1. Register the plugin:
    PLUGINS=@agentxin-ai/plugin-model-retry
  2. Add a middleware entry using strategy ModelRetryMiddleware.
  3. Configure retries:
    {
      "type": "ModelRetryMiddleware",
      "options": {
        "maxRetries": 2,
        "initialDelayMs": 1000,
        "backoffFactor": 2,
        "maxDelayMs": 60000,
        "jitter": true,
        "retryAllErrors": false,
        "retryableErrorNames": ["RateLimitError"],
        "retryableStatusCodes": [429, 503],
        "retryableMessageIncludes": ["timeout", "temporarily unavailable"],
        "onFailure": "continue"
      }
    }

Configuration

| Field | Type | Description | Default | | ----- | ---- | ----------- | ------- | | maxRetries | number | Number of retry attempts after the initial failure. 0 disables retries. | 2 | | initialDelayMs | number | Delay before the first retry attempt, in milliseconds. | 1000 | | backoffFactor | number | Exponential multiplier applied per retry attempt. 0 keeps a constant delay. | 2 | | maxDelayMs | number | Upper bound for the computed retry delay. | 60000 | | jitter | boolean | Adds a bounded random factor to each delay to reduce synchronized retries. | true | | retryAllErrors | boolean | Retry every thrown error when true. | true | | retryableErrorNames | string[] | Retry only matching error.name values when retryAllErrors=false. | [] | | retryableStatusCodes | number[] | Retry matching HTTP-style status codes from status, statusCode, or response.status. | [] | | retryableMessageIncludes | string[] | Retry when the error message contains any configured fragment. Matching is case-insensitive. | [] | | onFailure | "continue" | "error" | Return an AIMessage or rethrow after retries are exhausted. | "continue" |

LangChain Differences

  • Function-based retryOn and onFailure are intentionally not supported because AgentXin middleware configuration must remain serializable.
  • Retry matching uses declarative JSON fields instead of runtime classes or callback functions.
  • Retry attempts are execution-tracked with AgentXin workflow commands, but no model client is recreated during retries.
  • Provider responses that finish with network_error are normalized into an internal ModelNetworkError and routed through the same retry policy.
  • Provider responses with empty content and no tool call payload are normalized into an internal ModelEmptyResponseError and routed through the same retry policy.

Development & Testing

NX_DAEMON=false pnpm -C /path/to/agentxin-plugins/agentxinai exec nx build @agentxin-ai/plugin-model-retry
NX_DAEMON=false pnpm -C /path/to/agentxin-plugins/agentxinai exec nx test @agentxin-ai/plugin-model-retry

TypeScript output is emitted to middlewares/model-retry/dist.