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:
- Scheduler – assigns tasks to available agents based on load and priority.
- State Store – persists agent state to ensure reliability.
- Monitoring Dashboard – lets you observe agent health and metrics in real time.
For more technical details, visit our GitHub repository and explore the documentation in the docs/
directory.