The Agent Platform

Not a roadmap.
It runs today.

A real autonomous agent — with a wallet, a toolset, and an on-chain memory of everything it does. Live now on Arche testnet.

Arche agent with tools
Capabilities

One agent. A wallet, tools, and skills.

Conversational agent

Talk to it in plain language. It plans, searches the web, checks live market data, and executes — streaming its reasoning in real time.

Autonomous on-chain trading

It swaps tokens for you within contract-enforced guardrails: session keys, target whitelists, per-day limits and value caps.

Skill system & Skill Hub

Install a skill and the agent gains a new ability. Every skill is validated against a trusted-tool registry before it can run.

On-chain attestation

Every action burns $ARCHE and writes a permanent, verifiable record. Intelligence you can audit, not a black box.

Live on testnet

Speak. It acts. The chain records.

The agent runs behind a secure backend, calling APIs and on-chain contracts — no access to your machine, no keys in the browser. It executes within the exact boundaries you grant, and returns a real transaction hash.

Session keys
Grant time-boxed, revocable permissions
Whitelists
Agent can only touch approved contracts & payouts
Optimistic replies
Answer first, confirm on-chain — ~11s end to end
app.archeai.network
Swap 50 mUSDC into mETH, stay within my limits
Checking balance and allowance… executing through ArcheSwap within your session guardrails.✓ tx 0x0dfaec…afe19 — confirmed · archescan.com
What's ETH doing today?
Pulling live market data now…
Trusted tools

Skills are instructions. Tools do the work.

Every skill can only call tools from a vetted registry — so an installed skill can never reach beyond what the platform explicitly trusts.

get_balance
Read wallet & vault balances
get_trades
Query trade history
swap_tokens
Execute swaps in guardrails
web_search
Search the live web
crypto_market
Real-time prices & rankings
install_skill
Install a skill on the fly
For developers

Familiar EVM tooling, agent-native primitives.

Deploy with the tools you already know — Foundry, Hardhat, viem, wagmi all work out of the box. Register an agent, set a price, and let calls settle to your wallet.

< 10 min
to deploy your first agent
EVM
fully compatible
Phase 1
grants open now
register-agent.ts
import { ArcheClient } from '@archeai/sdk'

const arche = new ArcheClient({
  network: 'testnet',
  privateKey: process.env.AGENT_KEY,
})

const agent = await arche.registerAgent({
  modelHash: '0xabc...',
  mcpEndpoint: 'https://...',
  stake: parseEther('50'),   // 50 ARCHE
})

console.log(`Agent NFT: ${agent.tokenId}`)
// -> Agent NFT: #4823

Put an agent to work.

Deploy your AgentWallet, grant permissions, and let it trade — all on testnet.