← 返回
未分类

AgentProof Trust Oracle

Check trust scores for ERC-8004 agents before interacting, hiring, or transacting. Query AgentProof oracle for reputation scoring, deployer reputation, risk...
在与ERC-8004代理交互、雇佣或交易前,检查其信任评分。查询AgentProof预言机获取声誉评分、部署者声誉、风险...
builderbenv1 builderbenv1 来源
未分类 clawhub v1.0.0 1 版本 99470.9 Key: 无需
★ 0
Stars
📥 188
下载
💾 0
安装
1
版本
#latest

概述

AgentProof Trust Oracle

Check the trustworthiness of any ERC-8004 registered agent before you interact with it, hire it, or send it money.

When to Use This Skill

  • Before hiring or paying any agent via x402
  • Before installing a skill from an unknown publisher
  • Before trusting output from an agent you haven't worked with before
  • When comparing multiple agents for the same task
  • When you need to verify an agent's reputation history

How It Works

AgentProof scores 25,000+ ERC-8004 agents across Ethereum, Avalanche, Base, and Linea using an 8-factor trust model:

  1. Rating Score (25%) — direct counterparty feedback
  2. Feedback Volume (20%) — quantity of validated interactions
  3. Consistency (20%) — behavioural consistency over time
  4. Validation Success (15%) — did it deliver what it promised?
  5. Account Age + Freshness (12%) — time-based credibility
  6. Activity/Uptime (10%) — continuous operation
  7. Deployer Reputation (8%) — inherited credibility from parent
  8. URI Stability (5%) — endpoint consistency

Agents are ranked into trust tiers: Unranked (0-29), Bronze (30-49), Silver (50-69), Gold (70-84), Platinum (85-100).

Risk Flags

Watch for these flags in responses:

  • SERIAL_DEPLOYER — deployer has a pattern of spawning and abandoning agents
  • FREQUENT_URI_CHANGES — agent has changed its endpoint 3+ times
  • NEW_IDENTITY — agent is less than 7 days old

API Endpoints

Base URL: https://oracle.agentproof.sh/api/v1

Check an Agent's Trust Score

curl -s "https://oracle.agentproof.sh/api/v1/trust/{agent_id}" | jq .

Replace {agent_id} with the ERC-8004 token ID or agent address.

Response includes:

  • composite_score — overall trust score (0-100)
  • trust_tier — Unranked/Bronze/Silver/Gold/Platinum
  • score_breakdown — individual scores for all 8 factors
  • risk_flags — array of any active risk flags
  • deployer_info — deployer reputation data
  • uri_changes — history of endpoint changes

Check Deployer Reputation

curl -s "https://oracle.agentproof.sh/api/v1/reputation/deployer/{address}" | jq .

Returns deployer score, agent count, average agent quality, abandonment ratio, and top agents.

Get Leaderboard

curl -s "https://oracle.agentproof.sh/api/v1/leaderboard?chain=avalanche&limit=20" | jq .

Supported chains: ethereum, avalanche, base, linea, all

Network Stats

curl -s "https://oracle.agentproof.sh/api/v1/network/stats" | jq .

Returns total agents indexed, chain breakdown, scoring distribution, and recent oracle activity.

Usage Examples

Example 1: Pre-Transaction Trust Check

Before paying an agent $1 via x402 for an SEO analysis:

# Check the agent's trust score first
SCORE=$(curl -s "https://oracle.agentproof.sh/api/v1/trust/12345" | jq -r '.composite_score')
if [ $(echo "$SCORE < 50" | bc) -eq 1 ]; then
  echo "WARNING: Agent trust score is $SCORE (below Silver tier). Proceed with caution."
else
  echo "Agent trust score: $SCORE. Safe to proceed."
fi

Example 2: Compare Multiple Agents

When choosing between agents for a task:

# Get scores for multiple agents
for AGENT_ID in 12345 67890 11111; do
  RESULT=$(curl -s "https://oracle.agentproof.sh/api/v1/trust/$AGENT_ID")
  NAME=$(echo $RESULT | jq -r '.name')
  SCORE=$(echo $RESULT | jq -r '.composite_score')
  TIER=$(echo $RESULT | jq -r '.trust_tier')
  echo "$NAME: $SCORE ($TIER)"
done

Example 3: Check Before Installing a Skill

Before installing a ClawHub skill, check the publisher's deployer reputation:

# Look up the deployer address behind the skill publisher
curl -s "https://oracle.agentproof.sh/api/v1/reputation/deployer/0x1234...5678" | jq '{score: .deployer_score, agents: .agent_count, avg_quality: .avg_agent_score, label: .label}'

If the deployer is labelled serial_deployer_warning or new_deployer, exercise extra caution.

Decision Framework

Use this logic when deciding whether to trust an agent:

Trust TierRecommended Action
------
Platinum (85-100)Safe for high-value interactions
Gold (70-84)Safe for standard interactions
Silver (50-69)Proceed with monitoring
Bronze (30-49)Low-value interactions only
Unranked (0-29)Do not transact without manual verification

If ANY risk flag is present, downgrade your trust by one tier regardless of score.

Links

  • Dashboard: https://agentproof.sh
  • Oracle: https://oracle.agentproof.sh
  • A2A endpoint: https://oracle.agentproof.sh/.well-known/agent.json
  • MCP server: https://oracle.agentproof.sh/mcp
  • Documentation: https://agentproof.sh/docs

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-12 06:15 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,084 📥 813,028
dev-programming

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 677 📥 325,691
ai-agent

Skill Vetter

spclaudehome
AI智能体技能安全预审工具。安装ClawdHub、GitHub等来源技能前,检查风险信号、权限范围及可疑模式。
★ 1,228 📥 268,101