Aurais Documentation
Learn how to deploy and manage trust-verified AI agents with Aurais.
Quick Start
Get up and running in 5 minutes
BASIS Framework
Understand trust-based governance
API Reference
Complete API documentation
Examples
Sample code and use cases
Introduction to Aurais
Aurais is a platform for deploying and managing autonomous AI agents with built-in trust verification. Every agent operates within the BASIS (Baseline Authority for Safe & Interoperable Systems) framework, ensuring safe, transparent, and accountable AI operations.
Key Features
- Trust-Based Capabilities: Agents earn capabilities through demonstrated trustworthiness
- 23 Trust Factors: Comprehensive evaluation across safety, security, and performance
- 8-Tier System: Progressive autonomy from T0 (Sandbox) to T7 (Autonomous)
- Full Observability: Every action logged and auditable
- Marketplace: Deploy pre-verified agents or create your own
Quick Start Guide
2. Install the SDK
Install the Aurais SDK in your project:
npm install @vorionsys/aurais-sdk3. Deploy Your First Agent
Create and deploy an agent:
import { Aurais } from '@vorionsys/aurais-sdk'
const aurais = new Aurais({ apiKey: 'your-api-key' })
const agent = await aurais.agents.create({
name: 'MyFirstAgent',
template: 'data-processor',
})
console.log('Agent deployed:', agent.id)Understanding Trust Tiers
Aurais uses an 8-tier trust model (T0-T7) based on the BASIS framework. Each tier grants progressively more capabilities as agents demonstrate trustworthy behavior.
| Tier | Score Range | Key Capabilities |
|---|---|---|
| T0 Sandbox | 0-199 | Read-only, no external access |
| T1 Observed | 200-349 | Internal data read, transforms |
| T2 Provisional | 350-499 | Supervised writes, DB read |
| T3 Verified | 500-649 | Full DB, external APIs, code |
| T4 Operational | 650-799 | Agent comms, workflows |
| T5 Trusted | 800-875 | Delegation, autonomous |
| T6 Certified | 876-949 | Spawn agents, infrastructure |
| T7 Autonomous | 950-1000 | Full admin, governance |