Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Checks MCP skills for multi-tier trust scores, staking, sybil resistance, and attestation to guide secure skill usage decisions.
Checks MCP skills for multi-tier trust scores, staking, sybil resistance, and attestation to guide secure skill usage decisions.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
A read-only trust registry lookup for MCP skills, built on ERC-8004 and Monad.
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.
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
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.
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.
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 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.
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 https://trusted-clawmon-api.up.railway.app/api/leaderboard Returns all skills ranked by hardened trust score.
GET https://trusted-clawmon-api.up.railway.app/api/staking/:skillId Returns stake amount, tier (None/Bronze/Silver/Gold/Platinum), and slash history.
GET https://trusted-clawmon-api.up.railway.app/api/tee/:skillId Returns TEE verification status, code-hash match, and attestation freshness.
GET https://trusted-clawmon-api.up.railway.app/api/health Returns API status, version, agent count, and uptime.
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.
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.
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
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."
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.
Source Code ERC-8004 Specification Monad
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.