Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
← Back to list

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★ 463⑂ 37AI score 9/10Last updated: Sep 20, 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 ai and @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

  1. "Show me structured output with generateObject" → lists relevant doc pages, fetches them, then writes code with the current API signature.
  2. "Which vision models are cheapest?" → query-models.sh --tag vision then --details openai/gpt-4o to compare pricing and context window.
  3. "How do I configure the Anthropic provider?" → fetches /providers/ai-sdk-providers/anthropic and 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
↓ Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/malob/nix-config.git /tmp/nix-config
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r /tmp/nix-config/configs/claude/plugins/ai-sdk/skills/ai-sdk-docs ~/.claude/skills/ai-sdk-docs
  5. Make the scripts executable: chmod +x ~/.claude/skills/ai-sdk-docs/scripts/*.sh
  6. 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).
  7. Restart Claude Code and ask something like "write a streamText example with the AI SDK" to trigger the skill.