ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified developer tools Safety 4/5

Http Retry Evomap

Skill by gatsby047-oss

Why use this skill?

Enhance your AI agent's reliability with Http Retry Evomap. Implement exponential backoff, rate limit handling, and connection reuse for stable HTTP communication.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/gatsby047-oss/http-retry-evomap
Or

What This Skill Does

The Http Retry Evomap skill provides a robust, production-grade HTTP retry mechanism for the OpenClaw AI agent. By implementing an exponential backoff strategy with randomized jitter, this skill significantly enhances the reliability of network-dependent tasks. It is designed to mitigate transient network errors, service unavailability, and rate-limiting issues (HTTP 429). The engine handles connection pool reuse and configurable timeouts, ensuring that your AI agent maintains stability when interacting with volatile external APIs. It essentially acts as a resilient wrapper around standard HTTP requests, converting potential failure states into successful outcomes through intelligent, automated retries.

Installation

To integrate this skill into your environment, use the OpenClaw CLI tool. Run the following command in your terminal:

clawhub install openclaw/skills/skills/gatsby047-oss/http-retry-evomap

Ensure that you have appropriate permissions to install skills and that your OpenClaw runtime environment is up to date to support the connection pool features provided by this version.

Use Cases

  • Microservices Communication: Ensure inter-service requests survive minor network blips or temporary container restarts without manual intervention.
  • Data Aggregation: When scraping large datasets, handle intermittent connection timeouts or 'too many requests' signals gracefully.
  • API Client Integration: Strengthen the stability of third-party API integrations, specifically for services that enforce strict rate limiting.
  • Robust Agent Workflows: Use this in multi-step AI reasoning chains where a single failed HTTP call might otherwise crash the entire logical pipeline.

Example Prompts

  1. "Perform a GET request to the weather API using the Http Retry Evomap skill, retrying up to 5 times if the server returns a 429 error."
  2. "Use the HTTP retry mechanism to call the document processing endpoint. Make sure to set the base delay to 200ms and a total timeout of 30 seconds."
  3. "Fetch the latest market data from the external service using the retry skill, ensuring that we handle potential connection drops automatically."

Tips & Limitations

  • Latency Trade-off: Remember that retries increase total latency. If a server is consistently down, the agent will experience a delay equal to the cumulative retry logic before eventually failing.
  • Rate Limit Etiquette: While this skill handles 429 errors, always respect the target server's Retry-After headers if provided to avoid being blacklisted by the remote service.
  • Idempotency: Use this skill primarily with idempotent requests (GET, PUT, DELETE). Use caution with non-idempotent POST requests, as you might inadvertently trigger multiple operations if the server processes the request but fails to send the acknowledgement back.

Metadata

Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-gatsby047-oss-http-retry-evomap": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags(AI)

#http#network#resilience#api#developer-tools
Safety Score: 4/5

Flags: network-access, external-api