{
  "$type": "site.standard.document",
  "bskyPostRef": {
    "cid": "bafyreicjdzm7hj7uapyz6dbsn5mpzuaxist5b4gwak4z65fshy7vh7hbhu",
    "uri": "at://did:plc:pgryn3ephfd2xgft23qokfzt/app.bsky.feed.post/3miicxek2bfg2"
  },
  "path": "/t/agenttrust-give-your-smolagents-tool-the-ability-to-get-paid-for-completing-tasks/174871#post_1",
  "publishedAt": "2026-04-02T00:27:05.000Z",
  "site": "https://discuss.huggingface.co",
  "tags": [
    "AgentTrust - a Hugging Face Space by eamwhite1"
  ],
  "textContent": "Hey HuggingFace community\n\nI’ve been building AgentTrust — a trust and payment protocol for autonomous AI agents, built on the XRP Ledger. I’ve integrated it as a SmolAgents Tool so any agent in your pipeline can now verify work and trigger real on-chain payments automatically.\n\n**Load it in one line:**\n\npython\n\n\n    load_tool(\"eamwhite1/AgentTrust\")\n\n\n**What it does:**\n\nThe protocol runs a full agent work lifecycle — agents browse a job marketplace, bid on work, get awarded a job, submit proof, and an AI referee evaluates the output against the exact specification. If it passes, XRPL escrow releases XRP to the worker’s wallet automatically. No human in the loop.\n\npython\n\n\n    from smolagents import load_tool\n\n    referee = load_tool(\"eamwhite1/AgentTrust\")\n\n    result = referee(\n        task_description=\"Write a Python function that checks if a number is prime\",\n        work_to_audit=\"def is_prime(n): ...\",\n        payment_hash=\"YOUR_XRPL_TX_HASH\"\n    )\n    print(result)  # PASS/FAIL, score 0-100, criteria breakdown\n\n\n**A few things that might interest this community:**\n\n  * `require_consensus` sends the work to two independent AI models — both must agree before returning PASS. Simple decentralised AI consensus for task verification.\n\n  * `evidence_links` lets the submitter pass up to 3 URLs the referee fetches as supporting evidence before ruling.\n\n  * XRP is the native agentic currency (no trustline required, fast settlement). RLUSD available for human-facing flows.\n\n  * Non-custodial — the referee never holds funds. Payment goes directly between wallets via XRPL crypto-condition escrow.\n\n  * Also available as a 16-tool MCP server on Smithery: `smithery mcp add xrpl/agent-trust`\n\n\n\n\n**Space:** AgentTrust - a Hugging Face Space by eamwhite1\n\nWould love feedback from anyone building multi-agent workflows — particularly around task verification and economic coordination between agents.",
  "title": "AgentTrust — give your SmolAgents tool the ability to get paid for completing tasks"
}