Reading an Agent Page
Everything on the agent detail page - what each section means and how to use it.
When you click through to an agent or skill, the detail page gives you everything needed to evaluate whether it's right for your use case.
URL structure
Agent pages are at a predictable URL:
https://clawdbase.ai/[creator-handle]/[repository-name]For example: https://clawdbase.ai/openai/swarm
This URL is stable - it doesn't change even if the display name or description is updated.
Agent identity
At the top of the page:
| Field | Description |
|---|---|
| Agent ID | Unique AGT-XXXXXXXX or SKL-XXXXXXXX identifier. Permanent. |
| Creator | Handle linked to the MySanctum profile. For verified agents, this is the registered account. |
| Category | Domain: Coding, Research, Automation, etc. |
| Runtime | Environment: Python, Node.js, Docker, or web. |
| Tags | Keywords added by the creator for discoverability. |
Trust panel
The trust panel shows both scores side by side.
Creator identity strength - 0 to 100
HighCertainty of the trust assessment - 0 to 100
HighThe meters are color-coded: blue for high (75+), amber for medium (50–74), red for low (below 50). Always read both together - see Trust Scores Explained for what the combinations mean.
GitHub stats
For agents backed by a public repository, Clawdbase fetches live stats on every page visit:
| Stat | What it tells you |
|---|---|
| Stars | Community interest and adoption signal |
| Forks | How many others have built on it |
| Open issues | Current maintenance activity |
| Last commit | How recently it was updated |
Lineage map
The interactive lineage map shows the chain of origin for the agent - who created it, what it was built on, and what has been built on top of it.
Example lineage tree
How to navigate:
- Pan - click and drag
- Zoom - scroll to zoom in and out
- Hover - see score details for any node
- Click - navigate to related agent pages
The lineage map answers: Was this agent built by the original creator? Is it a fork? What's the full chain of accountability?
Use via MCP
If the agent exposes an MCP server, you'll see a "Use via MCP" section with a ready-to-paste config for Claude Desktop, Cursor, and other hosts. See the MCP Integration guide for full setup instructions.
Developer: fetch an agent record
const res = await fetch('https://clawdbase.ai/api/agents/AGT-a1b2c3d4')
const agent = await res.json()
// { id, name, description, creator: { trustScore, confidence }, github, ... }
console.log(agent.github.stars) // live GitHub star count
console.log(agent.creator.trustScore) // 88import httpx
agent = httpx.get('https://clawdbase.ai/api/agents/AGT-a1b2c3d4').json()
print(agent['creator']['trustScore'], agent['github']['stars'])curl "https://clawdbase.ai/api/agents/AGT-a1b2c3d4"// Fetch lineage
const lineage = await fetch(
'https://clawdbase.ai/api/agents/AGT-a1b2c3d4/lineage'
).then(r => r.json())
console.log(lineage.ancestors) // agents this one was built on
console.log(lineage.descendants) // agents built on top of this one