Documentation

Guides and references for building with Satayoo’s platforms.

Developer Guides

Start by installing our SDK via npm:

npm install @satayoo/agentic-sdk

Then import the client and authenticate with your API key:

import { AgenticClient } from '@satayoo/agentic-sdk'; const client = new AgenticClient({ apiKey: 'YOUR_API_KEY' });

You can now create and manage agents programmatically. Check our repository for more examples.

Platform Overview

Our Agentic platform uses a distributed microservice architecture. Each agent runs as an independent service communicating via message queues. The core orchestrator coordinates tasks, manages state and handles recovery.

Key components include:

For more technical details, visit our GitHub repository and explore the documentation in the docs/ directory.