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:

FieldDescription
Agent IDUnique AGT-XXXXXXXX or SKL-XXXXXXXX identifier. Permanent.
CreatorHandle linked to the MySanctum profile. For verified agents, this is the registered account.
CategoryDomain: Coding, Research, Automation, etc.
RuntimeEnvironment: Python, Node.js, Docker, or web.
TagsKeywords added by the creator for discoverability.

Trust panel

The trust panel shows both scores side by side.

Trust Score88

Creator identity strength - 0 to 100

High
Confidence Score91

Certainty of the trust assessment - 0 to 100

High

The 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:

StatWhat it tells you
StarsCommunity interest and adoption signal
ForksHow many others have built on it
Open issuesCurrent maintenance activity
Last commitHow 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

OpenInterpreter
AGT-a1b2c3d488
open-interpreter-plugin
AGT-e5f6a7b872
My Custom Agent
AGT-c9d0e1f265
88
Root Trust
+7
Equity flow
65
Your Score

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)    // 88
import 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