http-retry
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: http-retry Version: 1.0.0 The skill bundle provides a standard HTTP retry mechanism with exponential backoff and timeout control, implemented in JavaScript. The `SKILL.md` clearly describes the purpose and functionality, and the embedded code is a straightforward implementation of this logic using standard `fetch` API. There is no evidence of malicious intent, data exfiltration, unauthorized command execution, persistence mechanisms, or prompt injection attempts against the AI agent in any of the files.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If copied into workflows that perform state-changing HTTP calls, automatic retries could accidentally repeat an action such as creating an order or submitting a transaction.
The example retries any HTTP request represented by the supplied options, without documenting method restrictions, idempotency keys, or special handling for mutating operations.
const response = await fetch(url, { ...options, signal: controller.signal }); ... if (response.status === 429 || response.status >= 500) { ... continue; }Use this pattern mainly for idempotent requests, add idempotency keys or explicit safeguards for mutating calls, cap retries, and consider honoring service-specific Retry-After guidance.
