.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/maton-ai/api-gateway-skill
home/skills/maton-ai/api-gateway-skill
maton-ai avatar

api-gateway-skill

bymaton-ai· 2 skills

Stars

28

Forks

4

Category

Backend & APIs

View on GitHub

TL;DR

Connect to external services through Maton-managed API routes. Use this skill only after the user names the target app, account, and task. Start with read/list calls when possible and follow the app-specific reference before any change.

How to install api-gateway-skill?

maton-ai/api-gateway-skill
$npx -y skills add maton-ai/api-gateway-skill --skill api-gateway-skill

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/maton-ai/api-gateway-skill" --skill "maton-ai/api-gateway-skill"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/maton-ai/api-gateway-skill" that are relevant to the current task. Run `npx skills add "https://github.com/maton-ai/api-gateway-skill"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Maton API Gateway
2 
3API gateway for calling third-party APIs with managed auth.
4 
5Call native API endpoints directly with a single API key.
6 
7## Quick Start
8 
9```bash
10# Send a Slack message
11curl -s -X POST 'https://gateway.maton.ai/slack/api/chat.postMessage' \
12 -H 'Content-Type: application/json' \
13 -H 'Authorization: Bearer YOUR_API_KEY' \
14 -d '{"channel": "C0123456", "text": "Hello from gateway!"}'
15```
16 
17## Getting Your API Key
18 
191. Sign in or create an account at [maton.ai](https://maton.ai)
202. Go to [maton.ai/settings](https://maton.ai/settings)
213. Click the copy button to copy your API key
22 
23```bash
24export MATON_API_KEY="YOUR_API_KEY"
25```
26 
27## Installation
28 
29### Skills CLI
30 
31Install the skill directly into any supported agent:
32 
33```bash
34npx skills add maton-ai/api-gateway-skill
35```
36 
37### Plugins
38 
39We ship plugins that bundle the api-gateway skill for popular agent harnesses.
40 
41**Claude Code** — add this repo as a plugin marketplace, then install the plugin:
42 
43```bash
44claude plugin marketplace add maton-ai/api-gateway-skill
45claude plugin install api-gateway@maton-plugins
46```
47 
48**Cursor** — install the plugin directly from this repo:
49 
50```bash
51/add-plugin maton-ai/api-gateway-skill
52```
53 
54**Codex** — add this repo as a plugin marketplace, then install the plugin:
55 
56```bash
57codex plugin marketplace add maton-ai/api-gateway-skill
58codex plugin add api-gateway@maton-plugins
59```
60 
61**Kiro** — shipped as a [Power](https://kiro.dev/docs/powers/). Kiro has no install CLI;
62import it from GitHub inside the IDE:
63 
641. Open the **Powers** panel (the Ghosty icon with the lightning bolt).
652. Choose **Add Custom Power → Import power from GitHub**.
663. Paste the power folder URL:
67 `https://github.com/maton-ai/api-gateway-skill/tree/main/providers/kiro/.kiro/powers/api-gateway`
684. Click **Install**. Kiro reads `POWER.md` (and its local `references/`) and activates the
69 power on demand when your request matches its keywords.
70 
71**ClawHub** — install using the clawhub CLI:
72 
73```bash
74clawhub install @byungkyu/api-gateway
75```
76 
77## Network Access
78 
79The skill requires outbound network access to `maton.ai`.
80 
81### Claude Desktop / Claude Cowork
82 
83**Free / Pro / Max plans**
84 
85Package manager egress is on by default, but allowlisting arbitrary domains is not allowed (as of July 2026). Instead, we recommend using the [Maton MCP server](https://github.com/maton-ai/agent-toolkit), which doesn't require network allowlisting.
86 
87**Team / Enterprise plans**
88 
89Network egress is disabled by default. An organization owner must enable it:
90 
911. Open **Settings → Capabilities → "Code execution and file creation."**
922. Select **"Allow network egress to package managers and specific domains."**
933. Add `maton.ai` to the allowed-domains list.
94 
95Refer to Anthropic's [network access in Claude](https://support.claude.com/en/articles/12111783-create-and-edit-files-with-claude#h_6b7e833898) for more details.
96 
97## Repository Layout
98 
99- `SKILL.md` + `references/` — the canonical skill (single source of truth).
100- `providers/{claude,cursor,codex}/plugin/` — per-harness plugins, each with a copy of the skill under `skills/api-gateway/`.
101- `providers/kiro/.kiro/powers/api-gateway/` — the skill packaged as a Kiro Power (`POWER.md` + local `references/`).

Preview

maton-ai/api-gateway-skillmaton-ai/api-gateway-skill

$ npx -y skills add maton-ai/api-gateway-skill --skill api-gateway-skill

▸ installing to .claude/skills…

✓ api-gateway-skill ready

Repomaton-ai/api-gateway-skill
TypeSkills
CategoryBackend & APIs
ForDeveloper
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. microsoft avatarazure-messagingTroubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus.SkillsJul 2026473k1.3k
  2. larksuite avatarlark-openapi-explorer飞书/Lark 原生 OpenAPI 探索:从官方文档库中挖掘未经 CLI 封装的原生 OpenAPI 接口。当用户的需求无法被现有 lark-* skill 或 lark-cli 已注册命令满足,需要查找并调用原生飞书 OpenAPI 时使用。SkillsJul 2026386k16k
  3. larksuite avatarlark-skill-maker创建 lark-cli 的自定义 Skill。当用户需要把飞书 API 操作封装成可复用的 Skill(包装原子 API 或编排多步流程)时使用。SkillsJul 2026385k16k
  4. mattpocock avatarimplementImplement a piece of work based on a spec or set of tickets.SkillsJul 2026237k189k
  5. supabase avatarsupabaseUse when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client…SkillsJul 2026188k2.4k
  6. firebase avatarfirebase-basicsProvides foundational setup, authentication, and project management workflows for Firebase using the Firebase CLI.SkillsJul 2026117k389