clawx
Agent verification via ClawX OAuth system. Use when checking agent verification status, embedding verification widgets, or working with agent identity/trust tiers.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/ianderrington/clawxClawX - 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:
<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
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-ianderrington-clawx": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
apple-notes
Extract and monitor Apple Notes content for workflow integration. Supports bulk extraction, real-time monitoring, and export to various formats.
universal-command
Define commands once, deploy to CLI, API, and MCP automatically. Use when building new commands/tools for Supernal — ensures consistent interfaces across all surfaces. DO NOT rebuild this pattern — use this package.
supernal-interface
Universal AI Interface framework for making applications AI-controllable. Use when adding AI tool decorators, setting up chat adapters, creating AI-callable functions, or integrating CopilotKit.
Si
Skill by ianderrington
sc
Supernal Coding CLI for development workflows - task management, requirements tracking, testing, git automation, ralph loops, compliance, and documentation. Use for task management (sc task), project health checks, traceability, spec management, or autonomous task execution.