← 返回 Skills 市场
drewm33

ClawMon

作者 drewM33 · GitHub ↗ · v1.0.2
cross-platform ✓ 安全检测通过
484
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install clawmon
功能描述
Checks MCP skills for multi-tier trust scores, staking, sybil resistance, and attestation to guide secure skill usage decisions.
使用说明 (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

安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawmon
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawmon 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug clawmon
版本 1.0.2
许可证
累计安装 0
当前安装数 0
历史版本数 3
常见问题

ClawMon 是什么?

Checks MCP skills for multi-tier trust scores, staking, sybil resistance, and attestation to guide secure skill usage decisions. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 484 次。

如何安装 ClawMon?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawmon」即可一键安装,无需额外配置。

ClawMon 是免费的吗?

是的,ClawMon 完全免费(开源免费),可自由下载、安装和使用。

ClawMon 支持哪些平台?

ClawMon 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 ClawMon?

由 drewM33(@drewm33)开发并维护,当前版本 v1.0.2。

💬 留言讨论