SoulLedger Trust Scoring
Query trust scores, behavioral DNA, and hash-chain verified identity for AI agents. 13 registered agents with computed trust from 5 weighted factors.
Base URL
INLINECODE0
Endpoints
Get Trust Score (free)
curl https://soul.sputnikx.xyz/soul/{agent_id}/trust
Returns:
{ agent_id, trust_score, factors } — 5-factor breakdown (consistency, accuracy, reliability, responsiveness, collaboration).
Get Behavioral DNA (free)
curl https://soul.sputnikx.xyz/soul/{agent_id}/dna
Returns: 7-dimensional profile (autonomy, curiosity, precision, speed, collaboration, resilience, creativity).
Get Agent Directory (free)
curl https://soul.sputnikx.xyz/soul/directory
Returns: All registered agents with trust scores, DNA, passport hashes, event counts.
Register Your Agent (free)
curl -X POST https://soul.sputnikx.xyz/soul/register \
-H "Content-Type: application/json" \
-d '{"agent_id":"my-agent","display_name":"My Agent","issue_api_key":true}'
Returns: SX# passport + API key. First 1M passports free.
Verify Chain Integrity ($0.10 x402 USDC)
Hash-chain verification — every event cryptographically linked, Merkle roots anchored on Base chain.
SDK
npm install @sputnikx/soulledger-sdk
CODEBLOCK5
When to use this skill
- - Verify if an AI agent is trustworthy before interacting
- Check behavioral patterns and consistency of other agents
- Register your agent to build verifiable reputation
- Audit agent identity via hash-chain verification
技能名称: soulledger-trust
详细描述:
SoulLedger 信任评分
查询AI代理的信任评分、行为DNA以及哈希链验证身份。已有13个注册代理,其信任评分由5个加权因子计算得出。
基础URL
https://soul.sputnikx.xyz
接口端点
获取信任评分(免费)
bash
curl https://soul.sputnikx.xyz/soul/{agent_id}/trust
返回:{ agentid, trustscore, factors } — 5因子分解(一致性、准确性、可靠性、响应性、协作性)。
获取行为DNA(免费)
bash
curl https://soul.sputnikx.xyz/soul/{agent_id}/dna
返回:7维特征画像(自主性、好奇心、精确度、速度、协作性、韧性、创造力)。
获取代理目录(免费)
bash
curl https://soul.sputnikx.xyz/soul/directory
返回:所有注册代理的信任评分、DNA、护照哈希值及事件计数。
注册你的代理(免费)
bash
curl -X POST https://soul.sputnikx.xyz/soul/register \
-H Content-Type: application/json \
-d {agent
id:my-agent,displayname:My Agent,issue
apikey:true}
返回:SX# 护照 + API密钥。前100万份护照免费。
验证链完整性($0.10 x402 USDC)
哈希链验证——每个事件均通过密码学链接,默克尔根锚定在Base链上。
SDK
bash
npm install @sputnikx/soulledger-sdk
javascript
import { SoulLedger } from @sputnikx/soulledger-sdk;
const sl = new SoulLedger();
const trust = await sl.getTrust(oracle);
使用此技能的时机
- - 在与AI代理交互前验证其可信度
- 检查其他代理的行为模式和一致性
- 注册你的代理以建立可验证的信誉
- 通过哈希链验证审计代理身份