Quick Start Guide

Get up and running with AgenticWork in 5 minutes.

Option 1: Using the SDK

Install the AgenticWork SDK in your Node.js project:

npm install @agentic-work/sdk

Basic usage:

import { AgenticWork } from '@agentic-work/sdk';

// Initialize the client
const client = new AgenticWork({
  apiKey: 'your-api-key',
  baseUrl: 'https://chat.agenticwork.io'
});

// Create an agent
const agent = client.createAgent({
  name: 'my-agent',
  model: 'claude-3-5-sonnet',
  intelligenceLevel: 75  // 0-100 scale
});

// Get a completion
const response = await agent.complete({
  messages: [
    { role: 'user', content: 'Hello, how can you help me?' }
  ]
});

console.log(response.content);

Option 2: Using the REST API

Make direct API calls:

Option 3: Using AgentiCode CLI

Install the CLI globally:

Start an interactive session:

Or with options:

Using MCP Tools

AgenticWork includes 14+ MCP tool servers. Tools are automatically available based on your permissions:

Setting the Intelligence Level

The Intelligence Slider (0-100) controls cost vs quality:

Level
Models Used
Best For

0-40%

Haiku, GPT-4o-mini

Simple tasks, high volume

41-60%

Sonnet, GPT-4o

Balanced workloads

61-100%

Opus, o1

Complex reasoning, premium quality

Next Steps

Last updated