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.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add jiayaoqijia/cryptoskill --skill maiat-trust --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Maiat Trust?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jiayaoqijia-maiat-trust)More formats (shields.io, HTML) on the badges page.
---
name: maiat-trust
description: 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.
version: 0.9.0
author: JhiNResH
tags:
- trust
- reputation
- agent-safety
- token-check
- rug-detection
- erc-8004
- base
- free
homepage: https://github.com/JhiNResH/maiat-protocol
triggers:
- "check agent trust score"
- "is this agent trustworthy"
- "verify agent reputation"
- "check token safety"
- "is this token a rug pull"
- "token forensics"
- "trust-gated swap"
config:
MAIAT_API_URL:
description: "Maiat API endpoint (default: https://app.maiat.io)"
default: "https://app.maiat.io"
---
# 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 |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!