AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

AI SDK Documentation

skill-malob-nix-config-ai-sdk-docs · by malob

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.

No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add skill-malob-nix-config-ai-sdk-docs

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-malob-nix-config-ai-sdk-docs)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of AI SDK Documentation? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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

  1. Start with discovery: Run list-docs.sh to see available pages
  2. Identify relevant pages: Look for pages whose paths match the topic
  3. Fetch content: Use fetch-doc.sh to get full content of relevant pages
  4. 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/

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.