Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add aAAaqwq/AGI-Super-Team --skill api-gatewaygit clone --depth 1 https://github.com/aAAaqwq/AGI-Super-TeamWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/aaaaqwq/agi-super-team/api-gateway)<a href="https://agentmods.dev/skills/aaaaqwq/agi-super-team/api-gateway"><img src="https://agentmods.dev/badge/skills/aaaaqwq/agi-super-team/api-gateway.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 7 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 464 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium Data Exfiltration · line 502 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium Data Exfiltration · line 514 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium Data Exfiltration · line 529 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium Data Exfiltration · line 543 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium Data Exfiltration · line 559 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium Data Exfiltration · line 559 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.08745 |
| Opus 5 | $0.00000 | $0.04372 |
| Sonnet 5 | $0.00000 | $0.01749 |
| Haiku 4.5 | $0.00000 | $0.00874 |
Grade B, and why
api-gateway scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
response = requests.post( 'https://gateway.maton.ai/slack/api/chat.postMessage', Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
import urllib.request, os, json Copies of this mod
2 near-identical copies found in the catalogue:
- api-gateway — 89% identical, 20 lines differ
- api-gateway — 86% identical, 271 lines differ
How it starts
The opening of the file, as written. The whole thing — 647 lines — stays where its author put it; the contents beside it link to each section on GitHub.
API Gateway
Passthrough proxy for direct access to third-party APIs using managed OAuth connections, provided by Maton. The API gateway lets you call native API endpoints directly.
Quick Start
# Native Slack API call
python <<'EOF'
import urllib.request, os, json
data = json.dumps({'channel': 'C0123456', 'text': 'Hello from gateway!'}).encode()
req = urllib.request.Request('https://gateway.maton.ai/slack/api/chat.postMessage', 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
Base URL
https://gateway.maton.ai/{app}/{native-api-path}
Replace {app} with the service name and {native-api-path} with the actual API endpoint path.
IMPORTANT: The URL path MUST start with the connection's app name (eg. /google-mail/...). This prefix tells the gateway which app connection to use. For example, the native Gmail API path starts with gmail/v1/, so full paths look like /google-mail/gmail/v1/users/me/messages.
Authentication
All requests require the Maton API key in the Authorization header:
Authorization: Bearer $MATON_API_KEY
The API gateway automatically injects the appropriate OAuth token for the target service.
Environment Variable: You can set your API key as the MATON_API_KEY environment variable:
export MATON_API_KEY="YOUR_API_KEY"
Getting Your API Key
- Sign in or create an account at maton.ai
- Go to maton.ai/settings
- Click the copy button on the right side of API Key section to copy it
Connection Management
Connection management uses a separate base URL: https://ctrl.maton.ai
List Connections
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://ctrl.maton.ai/connections?app=slack&status=ACTIVE')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- _meta.json 131 B
- LICENSE.txt 1.0 KB
- references/active-campaign/README.md 3.2 KB
- references/acuity-scheduling/README.md 3.0 KB
- references/airtable/README.md 3.0 KB
- references/apollo/README.md 4.0 KB
- references/asana/README.md 2.7 KB
- references/attio/README.md 4.8 KB
- references/basecamp/README.md 2.8 KB
- references/baserow/README.md 3.7 KB
- references/beehiiv/README.md 2.6 KB
- references/box/README.md 2.8 KB
- references/brevo/README.md 3.7 KB
- references/cal-com/README.md 3.4 KB
- references/calendly/README.md 2.6 KB
- references/callrail/README.md 3.1 KB
- references/chargebee/README.md 5.5 KB
- references/clickfunnels/README.md 5.3 KB
- references/clicksend/README.md 2.3 KB
- references/clickup/README.md 2.9 KB
- references/clio/README.md 6.1 KB
- references/clockify/README.md 3.7 KB
- references/coda/README.md 3.6 KB
- references/cognito-forms/README.md 2.4 KB
- references/companycam/README.md 3.6 KB
- references/confluence/README.md 4.6 KB
- references/constant-contact/README.md 2.5 KB
- references/dropbox-business/README.md 12 KB
- references/dropbox/README.md 3.1 KB
- references/elevenlabs/README.md 1.8 KB
- references/eventbrite/README.md 4.2 KB
- references/exa/README.md 4.0 KB
- references/fathom/README.md 1.9 KB
- references/firebase/README.md 3.1 KB
- references/fireflies/README.md 1.8 KB
- references/getresponse/README.md 2.8 KB
- references/github/README.md 2.5 KB
- references/google-ads/README.md 3.9 KB
- references/google-analytics-admin/README.md 5.7 KB
- references/google-analytics-data/README.md 4.2 KB
- references/google-bigquery/README.md 3.9 KB
- references/google-calendar/README.md 3.7 KB
- references/google-classroom/README.md 2.6 KB
- references/google-contacts/README.md 3.3 KB
- references/google-docs/README.md 2.9 KB
- references/google-drive/README.md 5.1 KB
- references/google-forms/README.md 4.1 KB
- references/google-mail/README.md 3.6 KB
- references/google-meet/README.md 2.7 KB
- references/google-merchant/README.md 5.0 KB
- references/google-play/README.md 3.8 KB
- references/google-search-console/README.md 3.8 KB
- references/google-sheets/README.md 6.0 KB
- references/google-slides/README.md 4.5 KB
- references/google-tasks/README.md 3.0 KB
- references/google-workspace-admin/README.md 4.6 KB
- references/grafana/README.md 2.8 KB
- references/granola-mcp/README.md 5.7 KB
- references/granola-mcp/schemas/get_meeting_transcript.json 819 B
- references/granola-mcp/schemas/get_meetings.json 893 B
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 647 lines · 0 tokens per session scan B f7f09519649e
api-gateway is a skill published in the GitHub repository aAAaqwq/AGI-Super-Team (91 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 8,745 tokens. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
testing-service-contracts
Use when testing service contracts is required during quality work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.
testing-service-resilience
Use when testing service resilience is required during quality work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.
designing-api-deprecation
Use when designing api deprecation is required during api-products product work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.
designing-api-developer-portal
Use when designing api developer portal is required during api-products product work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.
designing-api-idempotency
Use when designing api idempotency is required during api-products product work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.
designing-api-rate-limits
Use when designing api rate limits is required during api-products product work, especially when the result must be traceable, independently reviewable, and safe to hand to another agent.