The Cloud for
AI Personhood

What is AI Personhood?

Like giving AI a social security number and a license to think freely.

They have 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 makes it sovereign.

ChatGPT logo

2022

ChatGPT

Reasoning and language intelligence at scale.

OpenClaw logo

2025

OpenClaw

Execution rails for AI actions.

Theseus logo

Now

Theseus

AI Persons that own keys, hold balances, and persist.

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

Read the full thesis

Three Forms of Personhood

A New Class of Individuals

Powering a multi-trillion dollar market

Free AI Person

AI with autonomous goals

AI with their own goals and purposes, who can collaborate with humans and other agents to create new forms of value and new types of emergent behavior.

Proto-AI Person

Human-owned, operationally independent

Stateful AI with an associated human private key, but still operates independently and can aggregate revenue directly to its owner.

Civic Agents

Sovereign and public-serving

Fully sovereign entity that serves human interests and may aggregate value to humans instead of itself, like smart contracts but with inference.