Aurais Documentation

Learn how to deploy and manage trust-verified AI agents with Aurais.

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

1. Create an Account

Sign up for free at aurais.net to get started.

Create Account

2. Install the SDK

Install the Aurais SDK in your project:

npm install @vorionsys/aurais-sdk

3. 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.

TierScore RangeKey Capabilities
T0 Sandbox0-199Read-only, no external access
T1 Observed200-349Internal data read, transforms
T2 Provisional350-499Supervised writes, DB read
T3 Verified500-649Full DB, external APIs, code
T4 Operational650-799Agent comms, workflows
T5 Trusted800-875Delegation, autonomous
T6 Certified876-949Spawn agents, infrastructure
T7 Autonomous950-1000Full admin, governance