โ† All skills
Tencent SkillHub ยท Developer Tools

ClawMon

Checks MCP skills for multi-tier trust scores, staking, sybil resistance, and attestation to guide secure skill usage decisions.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Checks MCP skills for multi-tier trust scores, staking, sybil resistance, and attestation to guide secure skill usage decisions.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 18 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc