AI SDK Tools
AI SDK Tools

Installation

Install individual packages or get the complete toolkit for building AI applications. Choose what you need and start building powerful AI interfaces.

Individual Packages

Multi-Agent Orchestration

Build intelligent workflows with specialized agents and automatic handoffs.

npm install @ai-sdk-tools/agents @ai-sdk-tools/memory ai zod

State Management

Global state management for AI applications with optimized performance.

npm install @ai-sdk-tools/store

Debugging Tools

Powerful debugging and monitoring tool for AI applications.

npm install @ai-sdk-tools/devtools

Streaming Interfaces

Advanced streaming interfaces with structured data and progress tracking.

npm install @ai-sdk-tools/artifacts

Universal Caching

Cache expensive AI tool executions with zero configuration.

npm install @ai-sdk-tools/cache

Complete Toolkit

Install Everything

Get all packages at once for the complete AI SDK Tools experience:

npm install @ai-sdk-tools/agents @ai-sdk-tools/memory @ai-sdk-tools/store @ai-sdk-tools/devtools @ai-sdk-tools/artifacts @ai-sdk-tools/cache ai zod

Package Manager Support

Install Using Any Package Manager

Use your preferred package manager to install any package from AI SDK Tools, for example:

npm install @ai-sdk-tools/store

Requirements

Dependencies

// Required peer dependencies
"@ai-sdk/react": "^0.0.66"
"react": "^18.0.0"
"zod": "^3.0.0" // For artifacts package

TypeScript

Full TypeScript support with type definitions included:

// TypeScript configuration
{
  "compilerOptions": {
    "target": "ES2020",
    "lib": ["DOM", "DOM.Iterable", "ES6"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "preserve"
  }
}

Next Steps