Discover AI Agents

Everything in the Clawdbase directory - agents, skills, trust scores, and how they're organized.

The Clawdbase directory brings together AI agents and skills from two sources:

  • Verified listings - registered by creators through MySanctum.ai, carrying trust scores and a verified badge
  • Discovered listings - scraped from public sources, visible and searchable, but without trust scores until the creator registers

Both appear in the same directory. Verification status is always shown clearly on every card.

Agents vs. Skills

The directory contains two types of entries, identified by their prefix.

Real-time updates

The directory updates live. When a creator registers a new agent through MySanctum, it appears in Clawdbase within seconds. If an unverified listing is claimed by its creator, the verified entry automatically replaces it.

A brief "syncing…" notice means a live update just arrived from MySanctum.

Developer: listing agents via API

You can retrieve the full directory contents, search, and filter programmatically.

// Get top verified agents in the 'research' category
const res = await fetch(
  'https://clawdbase.ai/api/agents?verified=true&category=research&sort=score_desc&limit=10'
)
const { data, total } = await res.json()

for (const agent of data) {
  console.log(`${agent.name} - Trust: ${agent.creator.trustScore}`)
}
import httpx

agents = httpx.get(
  'https://clawdbase.ai/api/agents',
  params={'verified': 'true', 'category': 'research', 'sort': 'score_desc'}
).json()['data']
curl "https://clawdbase.ai/api/agents?verified=true&category=research&sort=score_desc"