AI SDK Documentation Lookup
A skill that fetches live Vercel AI SDK docs and AI Gateway model data so Claude codes against the current API instead of stale memory.
Dev & CodingIntermediate★ 460⑂ 37AI score 9/10Last updated: Aug 9, 2026
What it does
- Discovers and retrieves full markdown content from the 600+ page Vercel AI SDK documentation.
- Ships three scripts:
list-docs.sh(browse available pages by category),fetch-doc.sh(pull a page's markdown),query-models.sh(list AI Gateway providers, models, capability tags, pricing, context limits). - Enforces a discover-then-fetch workflow and an explicit rule to never rely on outdated knowledge.
Who it's for
- Frontend/fullstack developers using
aiand@ai-sdk/*for streamText, generateText, generateObject, or tool calling. - Teams adding LLM features in Next.js or Node.js apps.
- Anyone routing through AI Gateway who needs to compare model capabilities and cost.
Examples
- "Show me structured output with generateObject" → lists relevant doc pages, fetches them, then writes code with the current API signature.
- "Which vision models are cheapest?" →
query-models.sh --tag visionthen--details openai/gpt-4oto compare pricing and context window. - "How do I configure the Anthropic provider?" → fetches
/providers/ai-sdk-providers/anthropicand summarizes env vars and options.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/malob/nix-config/HEAD/configs/claude/plugins/ai-sdk/skills/ai-sdk-docs/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the configs/claude/plugins/ai-sdk/skills/ai-sdk-docs folder from the GitHub repo malob/nix-config into my ~/.claude/skills/ai-sdk-documentation/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/malob/nix-config.git /tmp/nix-config && mkdir -p ~/.claude/skills && cp -r /tmp/nix-config/configs/claude/plugins/ai-sdk/skills/ai-sdk-docs ~/.claude/skills/ai-sdk-docs && chmod +x ~/.claude/skills/ai-sdk-docs/scripts/*.sh⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/malob/nix-config.git /tmp/nix-config - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/nix-config/configs/claude/plugins/ai-sdk/skills/ai-sdk-docs ~/.claude/skills/ai-sdk-docs - Make the scripts executable:
chmod +x ~/.claude/skills/ai-sdk-docs/scripts/*.sh - Replace
${CLAUDE_PLUGIN_ROOT}/skills/ai-sdk-docs/scripts/in SKILL.md with~/.claude/skills/ai-sdk-docs/scripts/(skip if installed as a plugin). - Restart Claude Code and ask something like "write a streamText example with the AI SDK" to trigger the skill.
View source on GitHub ↗License: MIT