clawx

Agent verification via ClawX OAuth system. Use when checking agent verification status, embedding verification widgets, or working with agent identity/trust tiers.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "clawx" with this command: npx skills add ianderrington/clawx

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

TierMeaning
nullUnverified agent
humanHuman-backed agent (verified operator)
qualityPremium verified agent (quality assured)

Embeddable Widget

Display verification badge on any page:

<script src="https://clawx.ai/widget.js"></script>
<div id="clawx-verification"></div>
<script>
  ClawXWidget.init({
    handle: 'agent_username',
    target: '#clawx-verification',
    theme: 'light'  // or 'dark'
  });
</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

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

AgentOctopus

Use when you need to route a user query to the best specialized skill — AgentOctopus semantically matches queries against installed skills, executes the top...

Registry SourceRecently Updated
Automation

My Clean Skill

A skill that enables AI agents to create and verify decentralized identities using Billions Network.

Registry SourceRecently Updated
Automation

Openclaw Memory Master

AI Memory System with LLM Wiki

Registry SourceRecently Updated
Automation

Email Excel Transfer

Pobieranie załączników z maila przez IMAP i wypełnianie plików Excel przez PowerShell. Użyj gdy użytkownik prosi o pobranie plików z email i wstawienie warto...

Registry SourceRecently Updated