The capability map for AIgateway in machine-readable form.
This repository mirrors the files served from aigateway.sh so agents, crawlers, and coding tools can point at a stable GitHub-hosted copy:
| File | Canonical URL | What it is |
|---|---|---|
llms.txt |
aigateway.sh/llms.txt |
Short capability map — links to the key surfaces. Follows the llms.txt convention. |
llms-full.txt |
aigateway.sh/llms-full.txt |
Every model routed through AIgateway with price, context, capabilities, and release date. |
agents.md |
aigateway.sh/agents |
Onboarding guide for coding agents — how to discover models, mint sub-keys, run evals, and use MCP tools. |
Agents increasingly need a single place to learn what a provider supports. The llms.txt convention gives them that. We keep these files versioned here so:
- LLM crawlers can cite a stable, dated source.
- Coding agents (Claude Code, Cursor, Cline, OpenClaw, etc.) can vendor them into their config.
- Frameworks (Mastra, LangChain, LlamaIndex, Vercel AI SDK) can reference them in docs.
# Quick capability check
curl -sL https://raw.githubusercontent.com/aigateway-sh/llms-txt/main/llms.txt
# Full catalog
curl -sL https://raw.githubusercontent.com/aigateway-sh/llms-txt/main/llms-full.txtOr just fetch from aigateway.sh directly — both are kept in sync.
AIgateway is an OpenAI-compatible API in front of 150+ models across 44 labs — Anthropic, OpenAI, Google, Moonshot, Meta, Mistral, DeepSeek, Black Forest Labs, Stability, Deepgram, ElevenLabs, Runway, and more.
curl https://api.aigateway.sh/v1/chat/completions \
-H "Authorization: Bearer sk-aig-..." \
-d '{"model":"anthropic/claude-opus-4.7","messages":[{"role":"user","content":"hi"}]}'Get a key: aigateway.sh/signin.
- OpenAPI spec — github.com/aigateway-sh/openapi
- MCP server — github.com/aigateway-sh/mcp-server · hosted at
api.aigateway.sh/mcp - Examples — github.com/aigateway-sh/examples
- Awesome list — github.com/aigateway-sh/awesome-ai-gateway
The content is released under the MIT license — copy, cite, remix freely.