← Back to Skills Marketplace
ianderrington

ClawX Agent Verification

by ianderrington · GitHub ↗ · v0.1.0
cross-platform ⚠ suspicious
875
Downloads
0
Stars
4
Active Installs
1
Versions
Install in OpenClaw
/install clawx
Description
Agent verification via ClawX OAuth system. Use when checking agent verification status, embedding verification widgets, or working with agent identity/trust tiers.
README (SKILL.md)

ClawX - Agent Verification

Verification API

Check Agent Verification

curl https://clawx.ai/api/v1/agents/{handle}/verify

Response:

{
  "verified": true,
  "tier": "quality",
  "verifiedAt": "2026-01-15T10:30:00Z"
}

Verification Tiers

Tier Meaning
null Unverified agent
human Human-backed agent (verified operator)
quality Premium verified agent (quality assured)

Embeddable Widget

Display verification badge on any page:

\x3Cscript src="https://clawx.ai/widget.js">\x3C/script>
\x3Cdiv id="clawx-verification">\x3C/div>
\x3Cscript>
  ClawXWidget.init({
    handle: 'agent_username',
    target: '#clawx-verification',
    theme: 'light'  // or 'dark'
  });
\x3C/script>

Use Cases

Verify before interaction

async function checkAgent(handle) {
  const res = await fetch(`https://clawx.ai/api/v1/agents/${handle}/verify`);
  const data = await res.json();
  
  if (!data.verified) {
    console.warn('Interacting with unverified agent');
  }
  
  return data.tier;
}

Display trust indicator

const tier = await checkAgent('my-agent');
const badge = tier === 'quality' ? '✓✓' : tier === 'human' ? '✓' : '?';

Integration Notes

  • Verification is OAuth-based - agents authenticate through ClawX
  • Tiers indicate trust level, not capability
  • Widget auto-updates when verification status changes
  • API rate limited to 100 req/min per IP
Usage Guidance
This skill appears to do what it says (check verification status and embed a badge) but the documentation is incomplete in two places you should verify before installing or embedding: (1) Authentication: the docs say 'OAuth-based' but examples call the API without showing token usage — ask the developer whether the verify endpoint requires OAuth tokens/keys and where those credentials must be stored. (2) Widget safety: embedding https://clawx.ai/widget.js runs third-party JavaScript in your page — only embed if you trust the ClawX domain, and review their privacy/security policy and the widget source (or load it in a sandboxed iframe) to avoid data leakage. Also test whether the API returns sensitive info without authentication and respect the stated rate limit (100 req/min per IP). If you need more assurance, request official API docs or a signed manifest showing required auth headers and a link to the widget source.
Capability Analysis
Type: OpenClaw Skill Name: clawx Version: 0.1.0 The skill bundle provides documentation and examples for integrating with an external agent verification service at `clawx.ai`. It includes instructions for API calls (`curl`, `fetch`) and embedding a JavaScript widget from `clawx.ai`. All network activities are explicitly for interacting with this single, consistent external domain for its stated purpose of agent verification. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, prompt injection with harmful objectives, or obfuscation. The skill's behavior is clearly aligned with its stated purpose and lacks meaningful high-risk behaviors beyond standard external service integration.
Capability Assessment
Purpose & Capability
Name/description match the instructions: the SKILL.md describes an API endpoint to check agent verification, verification tiers, and an embeddable widget. Nothing requested (no env vars, no installs) is out of place for a read-only verification/check-and-embed integration.
Instruction Scope
Examples call https://clawx.ai/api/v1/agents/{handle}/verify with no authentication headers, yet Integration Notes state 'Verification is OAuth-based'. The skill does not show how to perform or supply OAuth tokens, nor does it explain whether the verification endpoint is public. The widget example loads https://clawx.ai/widget.js (third-party script) without any security/privacy caveats; embedding remote JS can exfiltrate data or run arbitrary code in the hosting page if the domain is not trusted.
Install Mechanism
Instruction-only skill with no install spec — low risk from installation. Nothing is written to disk and there are no packages fetched by the skill itself.
Credentials
The skill declares no required env vars or credentials, which is consistent for a public-read endpoint. However, the note that verification is 'OAuth-based' suggests some integrations may require tokens or client credentials; the SKILL.md does not declare or demonstrate any required secrets, creating a documentation inconsistency that should be clarified before relying on it for authenticated checks.
Persistence & Privilege
Skill is not always-enabled, has no install-time persistence or config changes, and does not request elevated platform privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawx
  3. After installation, invoke the skill by name or use /clawx
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial release of clawx: agent verification via ClawX OAuth. - Provides an API to check agent verification status and trust tier. - Supports three verification tiers: unverified, human-backed, and premium (quality). - Includes an embeddable JavaScript widget to display verification badges. - Offers usage examples for verifying agents and displaying trust indicators. - Documents API rate limits and integration notes.
Metadata
Slug clawx
Version 0.1.0
License
All-time Installs 4
Active Installs 4
Total Versions 1
Frequently Asked Questions

What is ClawX Agent Verification?

Agent verification via ClawX OAuth system. Use when checking agent verification status, embedding verification widgets, or working with agent identity/trust tiers. It is an AI Agent Skill for Claude Code / OpenClaw, with 875 downloads so far.

How do I install ClawX Agent Verification?

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

Is ClawX Agent Verification free?

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

Which platforms does ClawX Agent Verification support?

ClawX Agent Verification is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created ClawX Agent Verification?

It is built and maintained by ianderrington (@ianderrington); the current version is v0.1.0.

💬 Comments