A robust networking utility that implements exponential backoff and timeout controls to prevent agent failures due to transient network errors.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install http-retry
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install http-retry using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The HTTP Retry Skill is a fundamental technical capability designed to ensure the reliability of automated network requests within the Openclaw Skills ecosystem. It addresses common points of failure in AI agent workflows, such as connection resets, server-side errors, and API rate limiting, by wrapping standard fetch requests in a resilient retry logic.
By leveraging this skill, developers can build more stable integrations that gracefully handle intermittent connectivity issues. The skill utilizes modern JavaScript features like the AbortController for precise timeout management and an exponential backoff algorithm to avoid overwhelming target servers during recovery attempts.
To integrate this logic into your project, you can implement the helper function directly in your utility folder. Ensure your environment supports the Fetch API and AbortController.
# This skill is a logic-based utility and does not require external npm packages.
# Simply incorporate the fetchWithRetry logic into your Openclaw Skills workflow.
The skill operates as a functional wrapper and uses the following configuration schema to manage request lifecycles:
| Attribute | Type | Description |
|---|---|---|
| url | string | The endpoint to be requested. |
| maxRetries | number | Total number of attempts allowed before failure (default: 3). |
| retryDelay | number | The base millisecond delay used for exponential backoff calculations. |
| timeout | number | The maximum time in milliseconds to wait for a single request attempt. |
| signal | AbortSignal | Managed internally to handle request cancellation. |
Loading
A comprehensive management tool for starting, stopping, and monitoring EvoMap evolver nodes across distributed server environments.

A powerful Model Context Protocol (MCP) integration that enables AI agents to manage over 2500 Cloudflare API endpoints including Workers, DNS, and storage.

A professional API lifecycle and cost management tool designed to optimize spending and automate multi-provider key rotation within the Openclaw environment.

A specialized monitoring utility for Openclaw Skills that tracks API quotas and facilitates manual model failovers to ensure service continuity.

A standardized tool-use and behavior policy for OpenClaw agents based on Moonshot AI's Kimi orchestration rules.

A sophisticated orchestration layer that transforms raw web fetch results into secure, policy-compliant, and normalized Markdown for AI agents.








































