Install
openclaw skills install api-integration-redhatIntegrate third-party APIs with auth, retries, timeouts, and logging.
openclaw skills install api-integration-redhatIntegrate external APIs safely (auth, retries, timeouts, error handling, logging) and expose them via a clean internal interface.
api_spec (required, object|string): base URL, endpoints, schemas, rate limits.auth_method (optional, enum: none|api_key|oauth|jwt|hmac).secrets_source (optional, string): where tokens/keys come from (env/secret manager).error_policy (optional, string): retry/backoff rules and non-retryable errors.curl | sh or ad-hoc install scripts as part of integration.Integrate “VendorAPIâ€:
api_spec: { base_url: "...", endpoints: ["/v1/items"] }src/integrations/vendor/client.ts with retries and mocked tests.