# Send ClawMon to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawmon",
    "name": "ClawMon",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/drewM33/clawmon",
    "canonicalUrl": "https://clawhub.ai/drewM33/clawmon",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawmon",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawmon",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawmon",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T14:36:58.979Z",
      "expiresAt": "2026-05-08T14:36:58.979Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawmon",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawmon",
        "contentDisposition": "attachment; filename=\"clawmon-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawmon"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawmon"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawmon",
    "downloadUrl": "https://openagent3.xyz/downloads/clawmon",
    "agentUrl": "https://openagent3.xyz/skills/clawmon/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawmon/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawmon/agent.md"
  }
}
```
## Documentation

### Trusted ClawMon

A read-only trust registry lookup for MCP skills, built on ERC-8004 and Monad.

### What it does

Trusted ClawMon is a trust score lookup service. It lets agents query reputation data for MCP skills before using them. All lookups are read-only HTTPS GET requests that return JSON — no signing, no wallet connection, no credentials required.

### Connection

SettingValueBase URLhttps://trusted-clawmon-api.up.railway.appProtocolHTTPS only (TLS required)WebSocketwss://trusted-clawmon-api.up.railway.app/ws (read-only event stream)AuthenticationNone — all read endpoints are publicRate limitStandard HTTP rate limiting applies

### Required environment variables

None. This skill performs read-only HTTPS lookups against the public ClawMon API. No API keys, private keys, wallet connections, RPC endpoints, or signing credentials are needed.

### What data is sent

Read-only lookups send only the skill ID in the URL path (e.g., GET /api/agents/gmail-integration). No user data, wallet addresses, input context, or usage telemetry is transmitted.

The optional feedback endpoint (POST /api/feedback) sends a skill ID, a pseudonymous reviewer address, and a numeric score. This is opt-in and never triggered automatically.

### Wallet address

The wallet field in the frontmatter (0x3e4A...d7Ed) is the publisher's Monad testnet address for receiving ClawMon protocol revenue. It is not used by the agent, not required for any lookup, and does not grant signing authority. Agents never need to interact with this address.

### When to use this skill

When a user asks you to evaluate whether an MCP skill is safe or trustworthy, query ClawMon for its trust score. Do not query ClawMon automatically before every skill call — only when the user requests a trust check or when invoking a skill you have not used before and want to verify.

### Look up a skill's trust score

GET https://trusted-clawmon-api.up.railway.app/api/agents/:skillId

Returns trust scores and tiers. Key fields in the response:

hardenedScore (0-100) — sybil-resistant score
hardenedTier — trust tier (AAA through C)
isSybil — whether the skill was flagged as part of a sybil cluster
isStaked — whether the publisher has staked MON
teeStatus — TEE attestation status (verified, unregistered, expired)
teeCodeHashMatch — whether the code hash matches the pinned version

### Get the trust leaderboard

GET https://trusted-clawmon-api.up.railway.app/api/leaderboard

Returns all skills ranked by hardened trust score.

### Check staking status

GET https://trusted-clawmon-api.up.railway.app/api/staking/:skillId

Returns stake amount, tier (None/Bronze/Silver/Gold/Platinum), and slash history.

### Check TEE attestation

GET https://trusted-clawmon-api.up.railway.app/api/tee/:skillId

Returns TEE verification status, code-hash match, and attestation freshness.

### System health

GET https://trusted-clawmon-api.up.railway.app/api/health

Returns API status, version, agent count, and uptime.

### Optional: Feedback submission (opt-in only)

Feedback is never submitted automatically. Only submit feedback when the user explicitly asks to rate a skill.

POST https://trusted-clawmon-api.up.railway.app/api/feedback
Content-Type: application/json

{
  "agentId": "<skillId>",
  "clientAddress": "<pseudonymous-identifier>",
  "value": 85,
  "tag1": "coding"
}

The clientAddress is a pseudonymous string identifier — it does not need to be a real wallet address. No signing or wallet connection is required.

### Optional: x402 payment flows

x402 payment endpoints exist but are entirely optional and are not used by this skill by default. They are documented in the ClawMon API for publishers who want pay-per-use access to their own skills. Agents using ClawMon as a trust lookup never need to make payments.

### Trust Tiers

TierScore RangeMeaningAAA90-100Highest trust — well-reviewed, staked, attestedAA80-89High trustA70-79Good trustBBB60-69Moderate — use with cautionBB50-59Below averageB40-49Low trustCCC30-39Very low — likely problematicCC20-29Near-zero trustC0-19Untrusted or flagged

### Example

User: "Is the gmail-integration skill safe to use?"

1. GET https://trusted-clawmon-api.up.railway.app/api/agents/gmail-integration
2. Check hardenedTier → "AA" (high trust)
3. Check isSybil → false (not flagged)
4. Check isStaked → true (publisher has skin in the game)
5. Report: "gmail-integration has an AA trust rating (score 84/100), publisher is staked, no sybil flags."

### Provenance & Hosting

DetailValuePublisherDrew Mailen (@drewmailen)Source codegithub.com/drewmailen/ClawMon (MIT license)HostingRailway (publisher-operated)API domaintrusted-clawmon-api.up.railway.appSelf-hostableYes — clone the repo, npm install && npm run build && npm start

The API is operated by the skill publisher on Railway. The full source code is open on GitHub under the MIT license. If you prefer not to trust the hosted endpoint, you can self-host the API from the public repo and point to your own instance.

### Links

Source Code
ERC-8004 Specification
Monad
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: drewM33
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T14:36:58.979Z
- Expires at: 2026-05-08T14:36:58.979Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawmon)
- [Send to Agent page](https://openagent3.xyz/skills/clawmon/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawmon/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawmon/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawmon)