mcpbeat Sign in

AI SDK Documentation Skill for Claude

This skill should be used when working with Vercel AI SDK, AI Gateway, streamText, generateText, generateObject, streamObject, tool calling, or AI SDK providers. Also relevant for "ai-sdk", "@ai-sdk/*" packages, or questions about AI SDK patterns, configuration, and best practices.

3k tokens
context cost
the whole folder, loaded on every use
4
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
458
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/malob/nix-config --skill AI SDK Documentation

The instruction itself

10 sections, as written by the author

AI SDK Documentation Skill

This skill provides tools for accessing Vercel AI SDK documentation and AI Gateway model information. Use the bundled scripts to discover available documentation pages and fetch their full content.

Overview

The Vercel AI SDK documentation lives at ai-sdk.dev and covers:

  • Core SDK (ai package) - generating text, streaming, tool calling, embeddings
  • UI integrations - React hooks, streaming UI components
  • RSC - React Server Components integration
  • Providers - Configuration for OpenAI, Anthropic, Google, and 30+ other providers
  • AI Gateway - Vercel's multi-provider routing service

The documentation is large (600+ pages) and frequently updated. Rather than relying on stale knowledge, always use the scripts to fetch current documentation.

Scripts

All scripts are located in ${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/.

list-docs.sh

Discover available documentation pages.

Usage:

# List all pages grouped by category
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/list-docs.sh

# List pages in a specific category
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/list-docs.sh docs
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/list-docs.sh cookbook
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/list-docs.sh providers

Categories:

  • docs - Core documentation (concepts, guides, API reference)
  • cookbook - Code examples by framework (Next.js, Node.js, etc.)
  • providers - Provider-specific setup and configuration
  • elements - UI component library documentation
  • tools-registry - Third-party tool integrations

When to use: Run this first to discover what pages exist. Do not assume documentation structure.

fetch-doc.sh

Fetch the full markdown content of a specific documentation page.

Usage:

# Fetch a documentation page
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/fetch-doc.sh /docs/ai-sdk-core/generating-text

# Fetch a cookbook example
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/fetch-doc.sh /cookbook/next/generating-structured-data

# Fetch provider documentation
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/fetch-doc.sh /providers/ai-sdk-providers/openai

Input: A documentation path (e.g., /docs/ai-sdk-core/tools-and-tool-calling)

Output: Full markdown content of the page

When to use: After identifying relevant pages with list-docs.sh, fetch the ones that look most relevant to the task.

query-models.sh

Query the AI Gateway models API for available models and their capabilities.

Usage:

# List all models with their provider
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/query-models.sh list

# List all providers
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/query-models.sh providers

# List all capability tags
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/query-models.sh tags

# List models from a specific provider
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/query-models.sh --provider anthropic

# List models with a specific capability
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/query-models.sh --tag vision
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/query-models.sh --tag tool-use

# Get full details for a specific model
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/query-models.sh --details openai/gpt-4o

Model details include: context window, max tokens, pricing, capability tags (vision, tool-use, reasoning, etc.)

When to use: When needing to know what models are available, compare model capabilities, or check pricing/context limits.

Workflow Guidelines

Finding Documentation

  • Start with discovery: Run list-docs.sh to see available pages
  • Identify relevant pages: Look for pages whose paths match the topic
  • Fetch content: Use fetch-doc.sh to get full content of relevant pages
  • Read multiple pages if needed: Topics often span multiple pages (e.g., a concept page + API reference page)

Important Notes

  • Always fetch current docs: Do not rely on potentially outdated knowledge. Use the scripts to get current documentation.
  • If a page doesn't appear in list-docs.sh output, it doesn't exist.
  • Some pages may not have .md versions: The script will indicate when this happens.
  • Documentation is comprehensive: The AI SDK docs include guides, API references, examples, and troubleshooting. Check multiple sections for complete information.

AI Gateway

The AI Gateway is Vercel's unified API for accessing multiple AI providers. Key points:

  • Single API endpoint, multiple providers
  • Use query-models.sh to see all available models
  • Models are identified as provider/model-name (e.g., anthropic/claude-sonnet-4)
  • Provider-specific documentation is under /providers/

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take malob/ai sdk documentation from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.