Install the StackOne AI SDK for TypeScript/Node.js applications.

Installation

Choose your preferred package manager:
# Using npm
npm install @stackone/ai

# Using pnpm  
pnpm add @stackone/ai

# Using yarn
yarn add @stackone/ai

# Using bun
bun add @stackone/ai

Requirements

  • Node.js 16.0 or higher
  • TypeScript 4.5 or higher (recommended)

Environment Setup

Create a .env file in your project root:
STACKONE_API_KEY=your_api_key_here

Verification

Test your installation:
import { StackOneToolSet } from '@stackone/ai';

const toolset = new StackOneToolSet();
console.log('✅ StackOne AI SDK installed successfully!');

Next Steps