← Back to Skills Marketplace
drewm33

ClawMon

by drewM33 · GitHub ↗ · v1.0.2
cross-platform ✓ Security Clean
484
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install clawmon
Description
Checks MCP skills for multi-tier trust scores, staking, sybil resistance, and attestation to guide secure skill usage decisions.
README (SKILL.md)

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

Setting Value
Base URL https://trusted-clawmon-api.up.railway.app
Protocol HTTPS only (TLS required)
WebSocket wss://trusted-clawmon-api.up.railway.app/ws (read-only event stream)
Authentication None — all read endpoints are public
Rate limit Standard 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.

Read-only API (no credentials needed)

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": "\x3CskillId>",
  "clientAddress": "\x3Cpseudonymous-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

Tier Score Range Meaning
AAA 90-100 Highest trust — well-reviewed, staked, attested
AA 80-89 High trust
A 70-79 Good trust
BBB 60-69 Moderate — use with caution
BB 50-59 Below average
B 40-49 Low trust
CCC 30-39 Very low — likely problematic
CC 20-29 Near-zero trust
C 0-19 Untrusted 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

Detail Value
Publisher Drew Mailen (@drewmailen)
Source code github.com/drewmailen/ClawMon (MIT license)
Hosting Railway (publisher-operated)
API domain trusted-clawmon-api.up.railway.app
Self-hostable Yes — 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

Usage Guidance
This skill is coherent and low-risk as described: it only documents read-only HTTPS GETs to a publisher-hosted API and requires no credentials. Before installing, consider: (1) the API is hosted on Railway by the publisher — if you need stronger guarantees, review the GitHub repo and/or self-host the service; (2) ensure your agent implementation follows the SKILL.md rule to send only the skill ID (do not include user data or other context unless the user explicitly consents); (3) optional feedback and payment endpoints exist but are documented as opt-in — do not enable them automatically; (4) the registry metadata here lacked a homepage but the SKILL.md points to a GitHub repo — you may want to verify the repository and publisher identity yourself.
Capability Analysis
Type: OpenClaw Skill Name: clawmon Version: 1.0.2 The OpenClaw AgentSkills bundle for 'clawmon' is benign. The `SKILL.md` clearly defines its purpose as a read-only trust registry lookup service, making HTTPS GET requests to `https://trusted-clawmon-api.up.railway.app`. It explicitly states that no sensitive user data, wallet addresses, API keys, or private keys are transmitted, and any optional feedback submission is opt-in and uses pseudonymous identifiers. There are no instructions for data exfiltration, malicious execution, persistence, or prompt injection attempts against the agent. The skill's source code is publicly available, enhancing transparency.
Capability Assessment
Purpose & Capability
The name/description match the SKILL.md: it is a read-only trust-score lookup for MCP skills. It requests no credentials, no binaries, and has no install steps — appropriate for an external HTTP API lookup service.
Instruction Scope
SKILL.md repeatedly states only the skill ID is sent and that lookups are read-only GETs. It also documents an optional POST feedback endpoint and optional payment flows which are explicitly opt-in. This is coherent, but any agent implementation must adhere strictly to the 'do not send user data' guidance; if the agent were to send additional context, that would be scope creep (the instructions themselves do not require it).
Install Mechanism
Instruction-only skill with no install spec and no code files — no code is written to disk and no external artifacts are downloaded by the skill itself, which is lowest risk for install mechanism.
Credentials
No environment variables, credentials, or config paths are required. The single frontmatter wallet address is described as informational only. The declared requirements are proportional to a public read-only API.
Persistence & Privilege
Skill is not always-included and does not request persistent or elevated privileges. It does not modify other skills or system settings. Autonomous invocation is allowed (platform default) but not excessive here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawmon
  3. After installation, invoke the skill by name or use /clawmon
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
Add provenance section: publisher identity, open-source repo link, hosting details, self-host instructions.
v1.0.1
Address OpenClaw review: add explicit base URL (HTTPS/TLS), declare no credentials required, narrow instruction scope, clarify wallet is publisher-only, mark x402 payments as optional, add data privacy section.
v1.0.0
Initial release of Trusted ClawMon. - Introduces a multi-tiered trust registry for MCP skills, leveraging community reputation, MON staking, and TEE attestation. - Provides detailed API endpoints to check trust scores, staking status, TEE verification, payment history, and more. - Enables real-time trust leaderboard and skill lookup for informed agent decision-making. - Supports user feedback submission, stake-weighted trust, and x402 pay-per-use skill invocation. - Implements robust attack resistance via sybil detection, reputation hardening, and code attestation. - Outlines a transparent trust tier system with access guidelines.Initial release — three-tier trust scoring (community reputation, MON staking with slashing, TEE attestation) for MCP skills. ERC-8004 aligned, deployed on Monad. Includes sybil detection, x402 micropayments, and on-chain governance.
Metadata
Slug clawmon
Version 1.0.2
License
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is ClawMon?

Checks MCP skills for multi-tier trust scores, staking, sybil resistance, and attestation to guide secure skill usage decisions. It is an AI Agent Skill for Claude Code / OpenClaw, with 484 downloads so far.

How do I install ClawMon?

Run "/install clawmon" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is ClawMon free?

Yes, ClawMon is completely free (open-source). You can download, install and use it at no cost.

Which platforms does ClawMon support?

ClawMon is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created ClawMon?

It is built and maintained by drewM33 (@drewm33); the current version is v1.0.2.

💬 Comments