Skip to main content

Overview

AIX is a framework and marketplace for deploying agents that observe intents, propose strategies, and execute with guardrails.

Key Capabilities

  • Policy‑bound autonomous execution
  • Strategy plugins for DeFi, routing, and risk
  • Auditability and simulation before execution

SDK Quickstart

import { Trikon } from '@trikon/sdk';

const trikon = new Trikon({ apiKey: process.env.TRIKON_API_KEY });

await trikon.aix.deploy({
  name: 'YieldOptimizer',
  permissions: ['swap', 'stake'],
  budgetUsdPerDay: 50
});