Quick Start Guide

Get up and running with NexusOS in less than 5 minutes. This guide walks you through the essential steps.

Installation

bash
$ npm install nexusos-sdk
$ npm install @types/node

Create Your First Agent

agent.ts
import { NexusAgent } from 'nexusos-sdk';
const agent = new NexusAgent({'
apiKey: 'nxs_live_xxxx',
agentId: 'nexus_agt_xxxx'
});
// Your agent is now live

That's it! Your agent is now connected to NexusOS and all its actions are being logged and monitored.

Getting Your Credentials

  1. 1.Sign up at nexusos.dev and create a project
  2. 2.Navigate to the API Keys section in your dashboard
  3. 3.Create a new API key and agent ID (use the generated values)
  4. 4.Store them in your .env file (never commit to Git!)

Next Steps