用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/different-ai/agent-bank --skill ai-sdk命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Debug production issues on Vercel using logs, database inspection, and proper deployment waiting
Make features testable by design. Testing pyramid from fast (local) to slow (UI). Expose APIs securely for testing.
Manage DNS records for domains hosted on Vercel using the Vercel CLI
基于 SOC 职业分类
正在显示 SKILL.md
| name | ai-sdk |
| description | Use AI SDK 6 with OpenAI models - gpt-5.2 for complex tasks, gpt-5-mini for fast actions |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","workflow":"ai-integration"} |
| Model | Use Case | Examples |
|---|---|---|
gpt-5.2 | Complex reasoning, multi-step tasks | Email agents, document analysis, KYB assistance |
gpt-5-mini | Fast actions, simple extraction | Invoice field extraction, quick classifications |
Default to gpt-5.2 unless speed is critical and the task is simple.
Always create the OpenAI provider inline - no abstraction layer needed:
import { createOpenAI } from '@ai-sdk/openai';
const openai = createOpenAI({ apiKey: process.env.OPENAI_API_KEY || '' });
import { generateText } from 'ai';
import { createOpenAI } from '@ai-sdk/openai';
const openai = createOpenAI({ apiKey: process.env.OPENAI_API_KEY || '' });
const result = await generateText({
model: openai('gpt-5.2'),
system: 'You are a helpful assistant.',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(result.text);
For extracting structured data with type safety:
import { generateObject } from 'ai';
import { createOpenAI } from '@ai-sdk/openai';
import { z } from 'zod';
const openai = createOpenAI({ apiKey: process.env.OPENAI_API_KEY || '' });
const schema = z.object({
name: z.string(),
email: z.string().email(),
amount: z.number(),
});
const result = await generateObject({
model: openai('gpt-5-mini'), // Use mini for simple extraction
schema,
messages: [
{ role: 'user', content: 'Extract: John Doe, john@example.com, $500' },
],
});
console.log(result.object); // Typed as { name: string, email: string, amount: number }
For multi-step AI agents:
import { generateText, tool, stepCountIs } from 'ai';
import { createOpenAI } from '@ai-sdk/openai';
import { z } from 'zod';
const openai = createOpenAI({ apiKey: process.env.OPENAI_API_KEY || '' });
const result = await generateText({
model: openai('gpt-5.2'), // Use full model for complex tool orchestration
system: 'You are an assistant that can look up information.',
messages: [{ role: 'user', content: 'What is the weather in Tokyo?' }],
tools: {
getWeather: tool({
description: 'Get weather for a city',
inputSchema: z.object({
city: z.string().describe('City name'),
}),
execute: async ({ city }) => {
// Your implementation
return { temperature: 22, condition: 'sunny' };
},
}),
},
stopWhen: stepCountIs(),
});
toolCalls = result..(
step.?.( tc.) || [],
);
import { streamText } from 'ai';
import { createOpenAI } from '@ai-sdk/openai';
const openai = createOpenAI({ apiKey: process.env.OPENAI_API_KEY || '' });
const result = await streamText({
model: openai('gpt-5.2'),
messages: [{ role: 'user', content: 'Write a poem' }],
});
for await (const chunk of result.textStream) {
process.stdout.write(chunk);
}
When using generateObject, schemas must be carefully structured:
// GOOD: Use nullable() for optional fields in AI extraction
const schema = z.object({
required: z.string(),
optional: z.string().nullable(), // AI can return null
});
// GOOD: Describe fields for better extraction
const schema = z.object({
amount: z.number().describe('Invoice amount as a positive number'),
currency: z.string().describe('Currency code: USD, EUR, GBP'),
});
// BAD: Don't use optional() - use nullable() instead
const schema = z.object({
field: z.string().optional(), // May cause issues with some models
});
For edge runtimes or to reduce bundle size, use dynamic imports:
// Lazily import to avoid bundling in edge runtimes if unused
const { createOpenAI } = await import('@ai-sdk/openai');
const { generateObject } = await import('ai');
const openai = createOpenAI({ apiKey: process.env.OPENAI_API_KEY || '' });
try {
const result = await generateObject({
model: openai('gpt-5-mini'),
schema,
messages,
});
return result.object;
} catch (error) {
if (error instanceof Error) {
console.error('[AI] Generation failed:', error.message);
}
// Optionally retry with simpler schema or different model
throw error;
}
| File | Model | Purpose |
|---|---|---|
src/app/api/ai-email/route.ts | gpt-5.2 | Email agent with tools |
src/server/routers/invoice-router.ts | gpt-5-mini | Invoice field extraction |
src/app/api/kyb-assistant/route.ts | gpt-5.2 | KYB form assistance |
src/app/api/generate-shareholder-registry/route.ts | gpt-5.2 | Document generation |
src/server/routers/funding-source-router.ts | gpt-5-mini | Quick extraction |