Agent verification via ClawX OAuth system. Use when checking agent verification status, embedding verification widgets, or working with agent identity/trust tiers.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill clawx --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Clawx?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-clawx)More formats (shields.io, HTML) on the badges page.
---
name: clawx
description: Agent verification via ClawX OAuth system. Use when checking agent verification status, embedding verification widgets, or working with agent identity/trust tiers.
---
# ClawX - Agent Verification
## Verification API
### Check Agent Verification
```bash
curl https://clawx.ai/api/v1/agents/{handle}/verify
```
Response:
```json
{
"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:
```html
<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
```javascript
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
```javascript
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
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!