npx skills add ...
npx skills add vercel/vercel-plugin --skill ai-gateway
Vercel AI Gateway guidance for setup, model discovery, authentication, routing, fallbacks, BYOK, budgets, spend reporting, observability, compatible APIs, and coding-agent configuration. Use when adding AI Gateway to an app, migrating provider calls, choosing models or providers, debugging gateway requests, or running `vercel ai-gateway` commands.
npx skills add vercel/vercel-plugin --skill ai-gateway
AI Gateway exposes models from multiple providers through shared authentication, model IDs, routing, billing, and observability. Model availability, SDK APIs, CLI commands, prices, and product capabilities change frequently. Verify them from current sources before changing code.
Before implementing:
Inspect the project's language, package manager, installed AI SDK version, and existing provider integration.
Read the relevant Vercel page under https://vercel.com/docs/ai-gateway. Use the page's .md form when a tool needs Markdown.
Fetch the complete live model list. Do not construct model variants by analogy:
If the code uses the ai package, load the ai-sdk skill when available. Read version-matched docs under node_modules/ai/docs/ and source under node_modules/ai/src/. If the skill is not installed, use those bundled files directly.
Run vercel ai-gateway <command> --help before documenting or scripting CLI flags.
The live model endpoint and installed package take precedence over model names or SDK syntax remembered from training data.
The vercel ai-gateway command manages gateway resources for the current team. Agents often discover only coding-agents setup; the rest of the CLI covers the jobs that previously required dashboard work:
| Command | What it does |
|---|---|
api-keys create/list/inspect/remove | Create and manage AI Gateway API keys, with budgets, spend alerts, expiry, and restriction exemptions |
budgets set/list/inspect/remove | Set metered spend limits for the team, a project, a user, or an API key |
budgets defaults set/list/remove | Set per-scope default limits covering projects, keys, or members without a custom budget |
models list / models endpoints <model> | List the model catalog and one model's provider endpoints from the CLI |
rules add/list/edit/remove | Manage routing rules; the CLI marks rules beta, so check --help before relying on them. REST CRUD exists under /v1/ai-gateway/rules |
coding-agents setup | Configure supported coding agents; see references/coding-agents.md |
leaderboard | Explore public, anonymized usage leaderboards; rarely needed for implementation work |
Use the CLI for credential and spend management when the user is working from a terminal or in CI. Check vercel ai-gateway <command> --help for current flags before scripting; do not copy a flag list from this skill into generated code.
| User's job | Read |
|---|---|
| First request, credentials, compatible SDKs, or migration | references/setup.md |
| Provider selection, model fallbacks, caching, BYOK, or timeouts | references/routing.md |
| Credits, budgets, reporting, Logs, or request debugging | references/spend-observability.md |
| Claude Code, Codex, OpenCode, Pi, or another coding agent | references/coding-agents.md |
Read each relevant reference before editing. A task can require more than one.
| Existing project | Default path |
|---|---|
| JavaScript or TypeScript using AI SDK | Use a plain provider/model string with generateText, streamText, ToolLoopAgent, or the relevant modality API |
| Python using AI SDK for Python | Use ai.get_model('provider/model') and the current Python SDK docs |
| Existing OpenAI SDK | Keep the SDK and point baseURL or base_url to https://ai-gateway.vercel.sh/v1 |
| Existing Anthropic SDK | Keep the SDK and point baseURL or base_url to https://ai-gateway.vercel.sh |
| Provider-neutral HTTP | Use an AI Gateway compatible endpoint, such as Chat Completions or OpenResponses |
| Existing direct-provider AI SDK integration | Replace the provider instance with a live AI Gateway provider/model string, then remove provider credentials only after verifying the gateway path |
| Coding agent | Use vercel ai-gateway coding-agents setup; inspect its help before claiming agent support |
AI Gateway also supports OpenAI Responses, Anthropic Messages, OpenResponses, Cohere Rerank, embeddings, image and video generation, speech, transcription, and realtime sessions. Modality pages under https://vercel.com/docs/ai-gateway/modalities cover each request shape, including background jobs for long-running video generation. Read the relevant modality or API page instead of translating one request shape from memory.
The current AI SDK requires Node.js 22 or later. Confirm the installed package's engines field before enforcing a version in an existing project.
The model is a current example, not a permanent default. Fetch /v1/models and choose a model that fits the requested modality, capabilities, price, context window, data-retention policy, and team access.
Plain model strings route through AI Gateway. Add @ai-sdk/gateway only when the task needs its exported provider, types, model discovery, generation lookup, or spend-report helpers.
AI_GATEWAY_API_KEY and never print or commit it.VERCEL_OIDC_TOKEN; local development uses vercel link and vercel env pull..env.local. Export variables in the shell or load that file explicitly. Framework behavior may differ.Do not ask the user to paste a secret into chat, source code, a committed config file, or a command that will enter shell history unless the repository has an established secure mechanism.
Only spend credits, create keys, change budgets, change routing rules, or write coding-agent config when the user requested or approved that outward-facing action. Prefer dry runs and interactive previews when available.
provider/model strings returned by /v1/models.order controls provider preference, only restricts providers, and sort ranks providers by a supported metric.models lists fallback models after the primary model.caching: 'auto' manages provider prompt-cache markers. It is not an HTTP response cache.providerTimeouts applies to BYOK provider attempts and measures time until the provider starts responding.providerOptions overrides the AI SDK top-level reasoning value entirely; the two never merge.user and tags attach reporting dimensions. They do not create per-user rate limits.providerOptions.gateway.byok and must remain secret.Read references/routing.md before adding any of these fields.
.env.local loading where relevant.