← All skills
Tencent SkillHub · Developer Tools

Api Gateway

Gateway universal para APIs. Conecta cualquier API REST/GraphQL con configuración simple. Gestiona autenticación, rate limiting y caching.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Gateway universal para APIs. Conecta cualquier API REST/GraphQL con configuración simple. Gestiona autenticación, rate limiting y caching.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

API Gateway Universal

Conecta el bot a cualquier API externa con configuración mínima. Un solo lugar para gestionar todas tus integraciones.

Concepto

┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │ Bot │ ──► │ API │ ──► │ APIs │ │ (Comando) │ │ Gateway │ │ Externas │ └─────────────┘ └─────────────┘ └─────────────┘ │ ┌──────┴──────┐ │ • Auth │ │ • Cache │ │ • Rate Limit│ │ • Retry │ └─────────────┘

Configurar APIs

# Agregar nueva API api add weather --base:https://api.openweathermap.org/data/2.5 --auth:query:appid:$WEATHER_API_KEY # Agregar endpoint api endpoint weather current --path:/weather --params:q,units # Listar APIs configuradas api list

Llamar APIs

# Llamar endpoint api call weather current --q:"Mexico City" --units:metric # Llamada directa con URL api get https://api.example.com/data # POST con body api post https://api.example.com/create --body:'{"name":"test"}'

Gestión

# Ver estadísticas api stats weather # Ver logs api logs --last:10 # Probar conexión api test weather

Ejemplo: Configurar API del Clima

# apis/weather.yaml name: weather base_url: https://api.openweathermap.org/data/2.5 auth: type: query param: appid value: ${WEATHER_API_KEY} endpoints: current: path: /weather method: GET params: - q: string # ciudad - units: metric|imperial cache: 10m forecast: path: /forecast method: GET params: - q: string - cnt: number # días

Uso después de configurar

Usuario: clima en "Ciudad de México" Bot: 🌤️ Clima actual en Ciudad de México: 🌡️ Temperatura: 22°C 💧 Humedad: 45% 💨 Viento: 12 km/h 🌅 Sensación térmica: 24°C

Tipos de Autenticación

TipoEjemploAPI Key (Header)Authorization: Bearer xxxAPI Key (Query)?api_key=xxxBasic Authusername:passwordOAuth 2.0Token refresh automáticoCustomHeaders personalizados

Caching

endpoints: data: cache: 15m # Cache de 15 minutos

Rate Limiting

rate_limit: requests: 100 period: 1h

Retry Automático

retry: attempts: 3 backoff: exponential

APIs Pre-configuradas

APIConfiguraciónOpenWeatherWEATHER_API_KEYGitHubGITHUB_TOKENSlackSLACK_TOKENNotionNOTION_API_KEYDiscordDISCORD_TOKEN

Integración

proactive-triggers: Llamar APIs en automatizaciones daily-digest: Obtener datos de múltiples APIs multi-agent: Los agentes pueden usar APIs configuradas

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc