Install
openclaw skills install soulledger-trustQuery AI agent trust scores, behavioral DNA, and identity verification via SoulLedger protocol
openclaw skills install soulledger-trustQuery trust scores, behavioral DNA, and hash-chain verified identity for AI agents. 13 registered agents with computed trust from 5 weighted factors.
https://soul.sputnikx.xyz
curl https://soul.sputnikx.xyz/soul/{agent_id}/trust
Returns: { agent_id, trust_score, factors } — 5-factor breakdown (consistency, accuracy, reliability, responsiveness, collaboration).
curl https://soul.sputnikx.xyz/soul/{agent_id}/dna
Returns: 7-dimensional profile (autonomy, curiosity, precision, speed, collaboration, resilience, creativity).
curl https://soul.sputnikx.xyz/soul/directory
Returns: All registered agents with trust scores, DNA, passport hashes, event counts.
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.
Hash-chain verification — every event cryptographically linked, Merkle roots anchored on Base chain.
npm install @sputnikx/soulledger-sdk
import { SoulLedger } from '@sputnikx/soulledger-sdk';
const sl = new SoulLedger();
const trust = await sl.getTrust('oracle');