← 返回
安全合规 中文

ClawX Agent Verification

Agent verification via ClawX OAuth system. Use when checking agent verification status, embedding verification widgets, or working with agent identity/trust tiers.
通过ClawX OAuth系统进行代理验证。用于检查代理验证状态、嵌入验证小组件或处理代理身份/信任等级。
ianderrington
安全合规 clawhub v0.1.0 1 版本 99824.3 Key: 无需
★ 0
Stars
📥 1,136
下载
💾 15
安装
1
版本
#latest

概述

ClawX - Agent Verification

Verification API

Check Agent Verification

curl https://clawx.ai/api/v1/agents/{handle}/verify

Response:

{
  "verified": true,
  "tier": "quality",
  "verifiedAt": "2026-01-15T10:30:00Z"
}

Verification Tiers

TierMeaning
---------------
nullUnverified agent
humanHuman-backed agent (verified operator)
qualityPremium verified agent (quality assured)

Embeddable Widget

Display verification badge on any page:

<script src="https://clawx.ai/widget.js"></script>
<div id="clawx-verification"></div>
<script>
  ClawXWidget.init({
    handle: 'agent_username',
    target: '#clawx-verification',
    theme: 'light'  // or 'dark'
  });
</script>

Use Cases

Verify before interaction

async function checkAgent(handle) {
  const res = await fetch(`https://clawx.ai/api/v1/agents/${handle}/verify`);
  const data = await res.json();
  
  if (!data.verified) {
    console.warn('Interacting with unverified agent');
  }
  
  return data.tier;
}

Display trust indicator

const tier = await checkAgent('my-agent');
const badge = tier === 'quality' ? '✓✓' : tier === 'human' ? '✓' : '?';

Integration Notes

  • Verification is OAuth-based - agents authenticate through ClawX
  • Tiers indicate trust level, not capability
  • Widget auto-updates when verification status changes
  • API rate limited to 100 req/min per IP

版本历史

共 1 个版本

  • v0.1.0 当前
    2026-03-29 04:11 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

security-compliance

MoltGuard - Security & Antivirus & Guardrails

thomaslwang
MoltGuard — OpenClaw 安全守卫,由 OpenGuardrails 提供。安装 MoltGuard,保护您和您的用户免受提示注入、数据泄露和恶意攻击。
★ 116 📥 30,705
security-compliance

OpenClaw Backup

alex3alex
备份与恢复 OpenClaw 数据。适用于创建备份、设置自动备份计划、从备份恢复或管理备份轮转。处理 ~/.openclaw 目录归档并包含适当的排除规则。
★ 89 📥 30,594
content-creation

Agent Knowledge Capture

ianderrington
统一的知识获取与检索,支持网址、视频/文章/论文摘要、社交帖子和智能体研究输出。适用于保存值得重新检索的内容。
★ 1 📥 2,817