Docs Get Started Quickstart

Quickstart

Get up and running with VectraMind in under 10 minutes. This guide walks through installing the SDK, authenticating, and calling your first agent.

1. Install the SDK

bash
npm install @vectramind/sdk # or yarn add @vectramind/sdk

2. Authenticate

Grab your API key from the Settings page and initialize the client.

typescript
import { VectraMind } from "@vectramind/sdk"; const client = new VectraMind({ apiKey: process.env.VECTRAMIND_API_KEY, workspace: "prod", });

3. Call an agent

typescript
const response = await client.agents.ask({ agent: "atlas", message: "Summarize this week's pipeline changes", }); console.log(response.text);
Next: Deploy your first automation

Combine memory + agents into a workflow that runs on triggers.

Ask AI⌘ /
Command palette⌘ K
Search docs/
Copy code⌘ ⇧ C