AOMI PLUGIN SDK
Bring your API. Ship an agent that can transact.
Package your proprietary product context and API operations as typed tools. Aomi hosts the application, manages its releases, and connects every selected tool call to the transaction pipeline shared across Aomi surfaces.
Developers build the polymarket-trader plugin, which reads their market API and hands the selected order to Aomi for construction, simulation, policy checks, and signer-controlled submission.
PLUGIN SDK APP
polymarket-trader
user-owned market API + Aomi transaction namespace- USER INTENT
Buy $500 of YES at 62¢ or better. Do not exceed my $500 market limit.
ONE RUNTIME · TWO CAPABILITY LAYERS
Your API supplies the product. Aomi supplies the transaction path.
Each Aomi App is a Rust program composed of a role, typed tools, and a workflow. Aomi loads it in the hosted runtime, invokes the appropriate tool, and routes the resulting action into the transaction pipeline.
Register the plugin role, tools, and Aomi transaction namespace.
1// The product-specific role and workflow.2const PREAMBLE: &str = r#"3Read the market, quote the requested outcome,4then pass the selected action to Aomi. Never sign.5"#;67dyn_aomi_app!(8app = client::PolymarketTrader,9name = "polymarket-trader",10preamble = PREAMBLE,11tools = [tool::ReadMarket, tool::QuoteOrder],12namespaces = [transactions]13);
OPERATE · BUILD.AOMI.DEV
Institution-grade monitoring for transactions, tool calls, and fees.
Aomi Build keeps every release tied to its repository, compatibility status, runtime lifecycle, tool health, transaction outcomes, and operating cost.
Usage
Revenue, platform fees, and charges for your apps in this statement period. End-user spend is reported separately under Account → Billing.
Partner payments are liabilities owed to tool beneficiaries, not builder revenue. Settlements are reconciled at recipient-bucket scope because one receipt can clear fees from more than one app. Accrued and settled cover this statement; current outstanding is the live balance across all periods.
| Tool | Price | Beneficiary | Observed |
|---|---|---|---|
| rebalance_liquidity · sommelier-liquidity-manager | 125.00 credits · $1.25 / success | 0x5D90…4c9B · Base Sepolia | 14 calls |
| Time | Event | Amount | Receipt |
|---|---|---|---|
| 7/27/2026, 10:37 AM | Settlement confirmed · sommelier-liquidity-manager | $15.00 · 1,500 credits | 0x55e5…df74 ↗ |
| 7/27/2026, 9:59 AM | Fee accrued · sommelier-liquidity-manager | $2.50 · 250 credits | — |
| Subject | App | Events | Gross | Platform fee | Net |
|---|---|---|---|---|---|
| Tool invocations | hyperliquid-arb-bot | 482 | $482.00 | $48.20 | $433.80 |
| Outcome fees | polymarket-trader | 31 | $155.00 | $46.50 | $108.50 |
| Tool invocations | world-market-telegram | 301 | $150.50 | $15.05 | $135.45 |
| Tool invocations | sommelier-liquidity-manager | 96 | $96.00 | $9.60 | $86.40 |
| Item | App | Events | Amount |
|---|---|---|---|
| Model usage | hyperliquid-arb-bot | 482 | $18.42 |
| App hosting | hyperliquid-arb-bot | 1 | $10.00 |
| Model usage | polymarket-trader | 214 | $8.61 |
| App hosting | world-market-telegram | 1 | $10.00 |
| App hosting | sommelier-liquidity-manager | 1 | $10.00 |
anthropic/claude-sonnet-4-631.8240
openai/gpt-5.2-mini12.4060
BUILD → TEST → DEPLOY → OPERATE
Integration tooling and deployment pipeline.
The same toolchain carries a plugin from a platform-compatible build through local model testing, hosted activation, and the operational evidence that follows.
aomi-buildBuild
Check the platform SDK, then scaffold or compile the plugin as a loadable cdylib.
aomi-runTest
Load the compiled plugin locally, talk to it through a real model, and inspect which typed tools it selects before shipping.
aomi-run plugins/libapp.dylibreleaseDeploy
Publish the connected source, let CI cut the release, and activate the verified artifact in Aomi's hosted runtime.
aomi-build deploybuild.aomi.devOperate
Track deployment and compatibility status, activation, tool health, usage, logs, metrics, and channel integrations.
status · logs · metricsTHE MANAGED DESTINATION · BUILD.AOMI.DEV
Developer console just like Vercel
Build and deploy end at Aomi Build: the managed control plane that keeps the repository, release, hosted runtime, and operating evidence together for every App. It is where teams manage what is live, what ships next, and how each App performs.
Manage your Apps- 01Connect the repository
- 02Manage every release
- 03Operate the live App

