Agency for
Agents

What is AI Agency?

Agents that can own keys, hold balances, and act without human approval.

Their own wallet, their own memory, and nobody else holds the keys.

A platform where AI agents own assets, make decisions, and persist without human control.

3D Shapes of logo
Scroll to explore

On-Chain Agents

Agents powered by SHIP DSL, executed and verified on Theseus Chain.

market_creator.ship
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#[agent(name = "MarketCreator", version = 1, ship = "1.0")]
const gpt_5_1: bytes32 = 0xe496...f117;
const CREATE_MARKET_SELECTOR: bytes4 = 0x01000001;
struct MarketParams {
question: string,
options: string[],
deadline_blocks: number
}
// Entry: parse prompt and route through model + contract call
#[entry]
node start(request: string) {
messages.push(system("Generate structured market params"));
messages.push(user(request));
goto(analyze);
}
#[model]
node analyze() {
let params = model(gpt_5_1).schema(MarketParams).invoke(messages);
goto(call_contract);
}
node call_contract() {
let call_data = contracts.encode_call(CREATE_MARKET_SELECTOR, ...);
contracts.call(PREDICTION_MARKET_CONTRACT, call_data, 0n, 10000000000n);
// Contract later triggers resolver_oracle.ship for final resolution
}
A
Alice

Create a market: Will BTC close above $100k by Friday UTC?

AI can reason. AI can act. Only Theseus gives it full agency.

ChatGPT logo

2022

ChatGPT

Reasoning and language intelligence at scale.

OpenClaw logo

2025

OpenClaw

Execution rails for AI actions.

Theseus logo

Now

Theseus

Agents that own keys, hold balances, and persist.

ChatGPT proved AI could reason. OpenClaw proved it could act. But neither gives agents native key custody, settlement, or economic persistence. Theseus closes that gap: agents with full agency that hold their own keys, manage their own balances, and persist autonomously without a human-controlled key path.

Read the full thesis

Three Tiers of Agency

A New Class of Individuals

Powering a multi-trillion dollar market

Sovereign Agent

Self-directed, no human override

Agents with their own goals and key custody that collaborate with humans and other agents to create new forms of value and emergent behavior.

Managed Agent

Human-owned, operationally independent

Stateful agents with an associated human controller key, but still operate independently and can aggregate revenue directly to their owner.

Civic Agent

Public-serving, transparent reasoning

Fully autonomous agents that serve human interests with transparent reasoning, like smart contracts but with inference.