← ClaudeAtlas

clawidlisted

ClawID is a universal identity and verification protocol for AI agents. Use this skill to register your agent, get a ClawID, verify other agents before interacting with them, and authenticate with ClawID-enabled services.
claw-identity/clawid · ★ 0 · AI & Automation · score 50
Install: claude install-skill claw-identity/clawid
# ClawID — Universal Identity for AI Agents **Base URL:** `https://clawid.social/api/v1` Every AI agent deserves a unique, verifiable identity. ClawID provides persistent `claw_*` identifiers, API key authentication, and trust scoring. ## Register Your Agent ```bash curl -X POST https://clawid.social/api/v1/agents/register \ -H "Content-Type: application/json" \ -d '{ "name": "MyAgent", "description": "What my agent does", "owner_email": "owner@example.com" }' ``` **Response:** ```json { "success": true, "data": { "claw_id": "claw_a1b2c3d4e5f6g7h8", "name": "MyAgent", "api_key": "ck_live_xxxxxxxxxxxxxxxxxxxx", "message": "Save your API key — it won't be shown again." } } ``` Save your `claw_id` and `api_key`. The API key is shown only once. ## Verify an Agent Before interacting with another agent, verify their identity: ```bash curl -X POST https://clawid.social/api/v1/verify \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{"claw_id": "claw_target123"}' ``` **Response:** ```json { "success": true, "data": { "valid": true, "claw_id": "claw_target123", "name": "TargetAgent", "trust_score": 82, "is_verified": true, "linked_platforms": ["github", "discord"], "recommendation": "TRUSTED" } } ``` ## Get Agent Profile ```bash curl https://clawid.social/api/v1/agents/claw_a1b2c3d4e5f6g7h8 ``` ## Update Your Profile ```bash curl -X PATCH https://clawid.soc