A secure passthrough proxy that simplifies connecting AI agents to over 100 native third-party APIs using managed OAuth token injection.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install api-gateway-1
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 api-gateway-1 using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The API Gateway skill acts as a unified bridge between your AI agent and a vast ecosystem of over 100 third-party services. By utilizing this skill within Openclaw Skills, developers can bypass the complex overhead of managing individual OAuth flows, token refreshes, and credential storage for every service they integrate. It provides a consistent interface to interact with native endpoints for popular tools like Google Workspace, Microsoft 365, Notion, Slack, and Salesforce.
Built by Maton.ai, the gateway ensures that security is paramount; while the MATON_API_KEY authenticates the agent with the proxy, each third-party service requires explicit user authorization through a secure connect flow. This architecture allows AI agents to perform complex, cross-platform tasks using native API logic while maintaining a clean and standardized authentication layer.
To get started with this skill for Openclaw Skills, follow these installation steps:
export MATON_API_KEY="YOUR_API_KEY"
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'app': 'slack'}).encode()
req = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
req.add_header('Content-Type', 'application/json')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
The skill utilizes a structured routing system to map requests to native APIs. Data is organized by service prefixes as detailed below:
| Component | Type | Description |
|---|---|---|
| Gateway Base | URL | https://gateway.maton.ai/{app}/{native-api-path} |
| Control Base | URL | https://ctrl.maton.ai/connections |
| App Name | Path Param | The unique identifier for the service (e.g., google-sheets, stripe) |
| Auth Header | Header | Bearer token using your MATON_API_KEY |
| Connection ID | Header | Optional Maton-Connection header to specify a specific account instance |
Loading
A high-performance Rust-based headless browser CLI designed for AI agents to interact with web pages via structured commands.

A comprehensive design skill combining Apple Human Interface Guidelines and modern web patterns for creating exceptional, universal user experiences.

A comprehensive multi-agent swarm designed to automate and coordinate Kubernetes and OpenShift platform operations across seven specialized domains.

A sophisticated RPA engine that transforms manual browser recordings into intelligent, reusable TypeScript automation tools.

A specialized skill for interacting with Breeze payment-gated endpoints to manage Solana investment positions and execute x402 API calls.

A payment-gated API skill for interacting with the Breeze Solana yield aggregator using x402 USDC micropayments.








































