AI SDK Documentation

Fetch Vercel AI SDK documentation and AI Gateway model data via bundled scripts.

459|37|Updated Mar 29, 2019
One-click install
npx skills add https://github.com/malob/nix-config --skill ai-sdk-documentation
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: AI SDK Documentation
Source: https://github.com/malob/nix-config/tree/main/configs/claude/plugins/ai-sdk/skills/ai-sdk-docs
Command: npx skills add https://github.com/malob/nix-config --skill ai-sdk-documentation

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires curl, jq, and includes scripts (resource) components.

What problem does it solve?

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.

Core Features & Use Cases

  • Discovery: List docs pages across categories (docs, cookbook, providers, elements, tools-registry) with list-docs.sh.
  • Fetch: Retrieve full markdown content of a selected page via fetch-doc.sh.
  • Model insights: Inspect available AI Gateway models with query-models.sh to compare providers and capabilities.
  • Use Case: A developer wants to quickly fetch the OpenAI provider docs and the AI Gateway model details to compare capabilities before integration.

Quick Start

Run the scripts to locate and fetch documentation content:

  • ${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/list-docs.sh
  • ${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/fetch-doc.sh /docs/ai-sdk-core/generating-text
  • ${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/query-models.sh list

Frequently Asked Questions about AI SDK Documentation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch Vercel AI SDK documentation into my context?

Fetch Vercel AI SDK documentation by running bundled shell scripts to discover available pages across categories like docs and cookbook, then retrieve full markdown content for a selected page.

What is the best way to compare AI Gateway models and capabilities?

Query AI Gateway models by running the query-models script to list available models, allowing you to compare providers and capabilities before integration.

Do I need curl and jq to use the Vercel AI SDK documentation scripts?

Yes, curl and jq are required dependencies for executing the documentation scripts to fetch content from official sources and parse the returned JSON responses.

How does discovering Vercel AI SDK documentation pages work?

Discovering Vercel AI SDK documentation works by executing the list-docs script, which retrieves and lists available pages across categories like providers, elements, and tools-registry.

Can I retrieve full markdown content for a specific Vercel AI SDK provider?

Yes, you can retrieve full markdown content for a specific provider by passing the page path to the fetch-doc script, such as fetching the OpenAI provider docs for integration reference.