> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trikon.io/llms.txt
> Use this file to discover all available pages before exploring further.

# AIX — Agent Intelligence Exchange

> Deploy AI agents to manage yield, routing, or compliance

## 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

```typescript theme={null}
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
});
```

## Related

<CardGroup cols={2}>
  <Card title="Sygma (Intents)" icon="lightbulb" href="/product-lineup/sygma" />

  <Card title="DeFi Agents" icon="code-branch" href="/core-features/defi-agents" />
</CardGroup>
