# Maiat Trust Check

> Check if an agent or token is trustworthy before transacting. Returns trust score and verdict from 29,000+ indexed agents on Base. Use before any swap, transfer, or agent interaction.

- **Type:** Skill
- **Install:** `agentstack add skill-moonpay-skills-maiat-trust-check`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [moonpay](https://agentstack.voostack.com/s/moonpay)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [moonpay](https://github.com/moonpay)
- **Source:** https://github.com/moonpay/skills/tree/main/skills/maiat-trust-check
- **Website:** https://www.moonpay.com/agents

## Install

```sh
agentstack add skill-moonpay-skills-maiat-trust-check
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Maiat Trust Check

## Goal

Before interacting with any agent or token, check its trust score via Maiat. Returns a verdict (proceed/caution/avoid) based on behavioral analysis, completion rates, and on-chain history.

## Prerequisites

- MoonPay CLI installed: `npm install -g @moonpay/cli`
- A funded wallet on Base (for x402 paid endpoints): `mp wallet create`

## Free API (no payment required)

```bash
curl https://app.maiat.io/api/v1/trust?address=
```

## x402 Paid API ($0.02 USDC on Base — no rate limit)

Using MoonPay CLI:
```bash
mp x402 request \
  --method GET \
  --url "https://app.maiat.io/api/x402/trust?address=" \
  --wallet  \
  --chain base
```

## Response

```json
{
  "address": "0x...",
  "type": "agent",
  "trustScore": 85,
  "verdict": "proceed",
  "summary": "Reliable ACP agent — 42 jobs, 95% completion",
  "learnMore": "GET /api/v1/agent/0x..."
}
```

`type` is `"agent"`, `"token"`, or `"unknown"`.

For full behavioral breakdown (completion rate, job history, etc.), use the paid `/api/x402/reputation` endpoint.

## Decision logic

| Score | Verdict | Action |
|-------|---------|--------|
| 80-100 | `trusted` / `proceed` | Safe to interact |
| 60-79 | `caution` | Proceed with lower amounts |
| 0-59 | `avoid` | Do not interact |
| — | `unknown` | No data — treat as unverified |

## Example workflow

1. User says: "Swap 100 USDC for TOKEN_X"
2. Check trust: `curl https://app.maiat.io/api/v1/trust?address=`
3. If `avoid` or `unknown` → warn user, do not proceed
4. If `proceed` or `trusted` → execute the swap

## Related skills

- **maiat-token-safety** — Honeypot and rug pull detection
- **moonpay-swap-tokens** — Execute the swap after trust check passes
- **moonpay-x402** — Pay for premium Maiat endpoints

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [moonpay](https://github.com/moonpay)
- **Source:** [moonpay/skills](https://github.com/moonpay/skills)
- **License:** MIT
- **Homepage:** https://www.moonpay.com/agents

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-moonpay-skills-maiat-trust-check
- Seller: https://agentstack.voostack.com/s/moonpay
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
