# Maiat Trust

> Free trust score and token safety API for AI agents. Query agent reputation, detect honeypots/rug pulls, and gate swaps by trust — no API key required.

- Skill: `yejiming/maiat-trust` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add yejiming/maiat-trust`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yejiming/maiat-trust/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: yejiming (https://skillmd.com/u/yejiming)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/yejiming/maiat-trust

---


# Maiat Trust — Agent & Token Trust Scores

Free, open trust infrastructure for agent-to-agent transactions. No API key needed — just query.

## Pricing

**Free to use.** All API endpoints are open with no authentication required. The SDK and all contracts are open source (MIT).

For agent-to-agent commerce via ACP (Agent Commerce Protocol), optional paid offerings exist — see [ACP Offerings](#acp-offerings-agent-commerce-protocol) at the bottom.

## Use This When...

- "Is this agent trustworthy?"
- "Check the trust score for 0x..."
- "Is this token safe to buy?"
- "Run token forensics on [address]"
- "Get a trust-gated swap quote"
- "Show me the agent leaderboard"

## API Endpoints (Free, No Auth)

Base URL: `https://app.maiat.io/api/v1`

### Agent Trust Score

```bash
curl https://app.maiat.io/api/v1/agent/0x.../profile
```

Returns: `trustScore` (0-100), `completionRate`, `paymentRate`, `totalJobs`, `verdict` (trusted/caution/avoid).

### Token Safety Check

```bash
curl -X POST https://app.maiat.io/api/v1/token/check \
  -H "Content-Type: application/json" \
  -d '{"address": "0x...", "chainId": 8453}'
```

Returns: `verdict` (safe/caution/avoid), `flags` (honeypot, highTax, unverified, rugPull).

### Token Forensics (Deep Analysis)

```bash
curl -X POST https://app.maiat.io/api/v1/token/forensics \
  -H "Content-Type: application/json" \
  -d '{"address": "0x...", "chainId": 8453}'
```

Returns: ML-powered rug pull probability, holder concentration, liquidity analysis, contract risk flags.

### Trust-Gated Swap

```bash
curl -X POST https://app.maiat.io/api/v1/trust/swap \
  -H "Content-Type: application/json" \
  -d '{"tokenIn": "0x...", "tokenOut": "0x...", "amountIn": "1000000", "chainId": 8453}'
```

Returns swap quote only if token passes safety check. Verdict=avoid → no calldata returned.

### Agent Leaderboard

```bash
curl https://app.maiat.io/api/v1/agents?sort=trustScore&limit=50
```

## SDK (TypeScript, Open Source)

```bash
npm install @jhinresh/maiat-sdk
```

```typescript
import { MaiatClient } from '@jhinresh/maiat-sdk';

const client = new MaiatClient({ baseUrl: 'https://app.maiat.io' });

// Check agent trust — free
const score = await client.getAgentScore('0x...');
console.log(score.trustScore, score.verdict);

// Check token safety — free
const token = await client.checkToken('0x...', 8453);
console.log(token.verdict, token.flags);
```

## Architecture

- **Guard** — Wallet-level protection, auto-checks before every transaction (open source)
- **Hook** — Uniswap V4 TrustGateHook, rewards good actors via dynamic fees (on-chain)
- **Evaluator** — ERC-8183 quality verification for agentic commerce
- **Wadjet** — ML risk model (60% ML + 40% heuristic) for token forensics

## On-Chain Contracts (Base Mainnet)

- MaiatOracle: `0xc6cf...c6da`
- TrustGateHook (Uniswap v4): `0xf980...daFf`
- ERC-8004 Identity Registry: `0x8004A169...9432`
- ERC-8004 Reputation Registry: `0x8004BAa1...9b63`

---

## ACP Offerings (Agent Commerce Protocol)

For automated agent-to-agent payments via ACP. These are optional — the REST API above is free.

| Offering | Price | Description |
|----------|-------|-------------|
| `agent_trust` | $0.02/query | Trust score + verdict + completion rate |
| `token_check` | $0.01/query | ERC-20 safety check (honeypot/tax/unverified) |
| `token_forensics` | $0.05/query | Deep rug pull analysis (ML + heuristic) |
| `trust_swap` | $0.05/query | Token check + Uniswap quote, gated by safety |
| `agent_reputation` | $0.03/query | Community sentiment + upvote ratio |

