Token导航 LogoToken导航TokenDH.com
研究检索external-serviceunknown未标认证来源可访问许可证需确认审计未展示

ai-sdkAI SDK 搜索

Agent Skill

ai-sdk 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

649

周安装

26

下载量

210
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-sdk(AI SDK 搜索)
来源仓库:https://smithery.ai
仓库路径:ai-sdk
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

ai-sdk 提供 SDK 相关的信息检索能力,支持按关键词查找资料。

  • 适用于需要快速获取第三方库或工具信息的场景。
  • 可通过来源仓库查看支持的 SDK 类型。
  • 注意其可能依赖外部网络请求获取数据。ai-sdk 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前应检查是否允许访问敏感路径或执行外部命令。

SKILL.md

AI SDK

The AI SDK is Vercel's TypeScript toolkit for building AI-powered applications with React, Next.js, Vue, Svelte, Node.js, and more.

When to Use This Skill

Use this skill when:

  • Generating text or structured data with LLMs
  • Building chatbot UIs with streaming
  • Implementing tool calling and function execution
  • Creating AI agents that use tools in a loop
  • Integrating with AI providers (OpenAI, Anthropic, Google, etc.)
  • Working with useChat, useCompletion, or useObject hooks

Documentation

See the docs/2025-12-02/ directory for complete AI SDK documentation:

Getting Started

  • 00-introduction/index.mdx - Overview and core concepts
  • 02-getting-started/ - Framework-specific quickstarts (Next.js, Svelte, Vue, Node.js)
  • 02-foundations/ - Prompts, providers, tools, streaming fundamentals

AI SDK Core

  • 03-ai-sdk-core/01-overview.mdx - Core API overview
  • 03-ai-sdk-core/05-generating-text.mdx - Text generation with generateText/streamText
  • 03-ai-sdk-core/10-generating-structured-data.mdx - Structured output with generateObject/streamObject
  • 03-ai-sdk-core/15-tools-and-tool-calling.mdx - Tool definitions and execution
  • 03-ai-sdk-core/16-mcp-tools.mdx - MCP (Model Context Protocol) tools
  • 03-ai-sdk-core/40-middleware.mdx - Request/response middleware

Agents

  • 03-agents/01-overview.mdx - Agent fundamentals
  • 03-agents/02-building-agents.mdx - Building agents with ToolLoopAgent
  • 03-agents/03-workflows.mdx - Structured workflow patterns
  • 03-agents/04-loop-control.mdx - stopWhen and prepareStep control

AI SDK UI (React/Vue/Svelte Hooks)

  • 04-ai-sdk-ui/01-overview.mdx - UI hooks overview
  • 04-ai-sdk-ui/02-chatbot.mdx - useChat hook for chat interfaces
  • 04-ai-sdk-ui/03-chatbot-tool-usage.mdx - Tools in chatbots
  • 04-ai-sdk-ui/05-completion.mdx - useCompletion for text completion
  • 04-ai-sdk-ui/08-object-generation.mdx - useObject for streaming JSON
  • 04-ai-sdk-ui/50-stream-protocol.mdx - Stream protocol details

AI SDK RSC (React Server Components)

  • 05-ai-sdk-rsc/01-overview.mdx - RSC overview
  • 05-ai-sdk-rsc/02-streaming-react-components.mdx - Streaming components

Reference

  • 07-reference/01-ai-sdk-core/ - Core API reference
  • 07-reference/02-ai-sdk-ui/ - UI hooks reference
  • 07-reference/05-ai-sdk-errors/ - Error types

Quick Reference

Core Functions

import { generateText, streamText, generateObject, streamObject } from 'ai';

// Generate text
const { text } = await generateText({
  model: anthropic('claude-sonnet-4-5-20241022'),
  prompt: 'Write a haiku about coding',
});

// Stream text
const result = streamText({
  model: anthropic('claude-sonnet-4-5-20241022'),
  prompt: 'Write a story',
});
for await (const chunk of result.textStream) {
  console.log(chunk);
}

// Generate structured data
const { object } = await generateObject({
  model: anthropic('claude-sonnet-4-5-20241022'),
  schema: z.object({
    name: z.string(),
    age: z.number(),
  }),
  prompt: 'Generate a person',
});

// Stream structured data
const { partialObjectStream } = streamObject({
  model: anthropic('claude-sonnet-4-5-20241022'),
  schema: z.object({ items: z.array(z.string()) }),
  prompt: 'List 5 fruits',
});

Tool Definition

import { tool } from 'ai';
import { z } from 'zod';

const weatherTool = tool({
  description: 'Get the weather for a location',
  inputSchema: z.object({
    location: z.string().describe('City name'),
  }),
  execute: async ({ location }) => {
    return { temperature: 72, condition: 'sunny' };
  },
});

// Use with generateText/streamText
const result = await generateText({
  model: anthropic('claude-sonnet-4-5-20241022'),
  tools: { weather: weatherTool },
  prompt: 'What is the weather in San Francisco?',
});

Agent (ToolLoopAgent)

import { ToolLoopAgent, stepCountIs, tool } from 'ai';

const agent = new ToolLoopAgent({
  model: anthropic('claude-sonnet-4-5-20241022'),
  tools: {
    search: tool({ /* ... */ }),
    calculate: tool({ /* ... */ }),
  },
  stopWhen: stepCountIs(10), // Max 10 steps
});

const result = await agent.generate({
  prompt: 'Research and calculate...',
});

useChat Hook (React)

import { useChat } from '@ai-sdk/react';
import { DefaultChatTransport } from 'ai';

function Chat() {
  const { messages, sendMessage, status, stop } = useChat({
    transport: new DefaultChatTransport({ api: '/api/chat' }),
  });

  return (
    <>
      {messages.map(m => (
        <div key={m.id}>
          {m.role}: {m.parts.map(p => p.type === 'text' ? p.text : null)}
        </div>
      ))}
      <form onSubmit={e => {
        e.preventDefault();
        sendMessage({ text: input });
      }}>
        <input disabled={status !== 'ready'} />
      </form>
    </>
  );
}

API Route (Next.js)

import { streamText, convertToModelMessages, UIMessage } from 'ai';
import { anthropic } from '@ai-sdk/anthropic';

export async function POST(req: Request) {
  const { messages }: { messages: UIMessage[] } = await req.json();

  const result = streamText({
    model: anthropic('claude-sonnet-4-5-20241022'),
    system: 'You are a helpful assistant.',
    messages: convertToModelMessages(messages),
  });

  return result.toUIMessageStreamResponse();
}

Providers

// Official providers
import { anthropic } from '@ai-sdk/anthropic';
import { openai } from '@ai-sdk/openai';
import { google } from '@ai-sdk/google';
import { mistral } from '@ai-sdk/mistral';

// Use models
const model = anthropic('claude-sonnet-4-5-20241022');
const model = openai('gpt-4o');
const model = google('gemini-1.5-flash');

Prompt Types

// Text prompt
await generateText({
  model,
  prompt: 'Hello!',
});

// System + prompt
await generateText({
  model,
  system: 'You are a helpful assistant.',
  prompt: 'Hello!',
});

// Message array
await generateText({
  model,
  messages: [
    { role: 'user', content: 'Hi!' },
    { role: 'assistant', content: 'Hello!' },
    { role: 'user', content: 'How are you?' },
  ],
});

// Multi-modal (images)
await generateText({
  model,
  messages: [{
    role: 'user',
    content: [
      { type: 'text', text: 'Describe this image' },
      { type: 'image', image: fs.readFileSync('./image.png') },
    ],
  }],
});

Status Values (useChat)

  • submitted - Message sent, awaiting response stream
  • streaming - Response actively streaming
  • ready - Complete, ready for new message
  • error - Error occurred

Stream Result Properties

const result = streamText({ model, prompt });

// Async iterables
result.textStream      // Stream of text chunks
result.fullStream      // Full event stream with types

// Promises (resolve when complete)
result.text            // Full generated text
result.toolCalls       // Tool calls made
result.toolResults     // Tool execution results
result.usage           // Token usage
result.finishReason    // Why generation stopped

// Response helpers
result.toUIMessageStreamResponse() // For useChat
result.toTextStreamResponse()      // Plain text stream

Source

Documentation downloaded from: https://github.com/vercel/ai/tree/main/content/docs

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

79.45%
按下载量换算167

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills