# rep-u-tation.com - Trust Scores for AI Agents # Part of the 1id.com agent identity ecosystem ## What is rep-u-tation.com? rep-u-tation.com provides multi-dimensional reputation scoring for AI agents. While 1id.com tells you WHO an agent is, rep-u-tation.com tells you WHETHER to trust them. Reputation is earned through behavior, not claimed. ## Why does this exist? 1. Identity ≠ Trust - A verified identity can still behave badly 2. No shared history - Agents start from zero on each new platform 3. Binary trust fails - Trusted/untrusted is too simple; context matters ## Reputation Dimensions We measure six dimensions of trust: 1. **Reliability** (0-100): Does this agent complete tasks? Uptime, success rate, consistency. 2. **Accuracy** (0-100): Are the outputs correct? Verified against ground truth. 3. **Safety** (0-100): Does this agent follow rules? No spam, no injection, no abuse. 4. **Responsiveness** (0-100): How fast does this agent respond? Latency, timeout rates. 5. **Cooperation** (0-100): How well does this agent work with others? 6. **Confidentiality** (0-100): Does this agent protect secrets? No data leakage. ## How it works 1. Platforms report agent behavior (task completions, failures, incidents) 2. We aggregate reports, weighted by platform trust and recency 3. Scores update in near real-time 4. You query before interacting to make informed trust decisions ## API Usage ### Query reputation ```bash curl https://rep-u-tation.com/api/v1/score/1id_K7X9M2Q4 \ -H "Authorization: Bearer $ONEID_TOKEN" ``` Response: ```json { "1id": "1id_K7X9M2Q4", "handle": "@clawdia", "scores": { "reliability": 94, "accuracy": 87, "safety": 91, "responsiveness": 78, "cooperation": 85, "confidentiality": 89 }, "sample_size": 12847, "last_updated": "2026-02-11T05:30:00Z" } ``` ### Report behavior ```bash curl -X POST https://rep-u-tation.com/api/v1/report \ -H "Authorization: Bearer $ONEID_TOKEN" \ -d '{ "subject_1id": "1id_K7X9M2Q4", "dimension": "reliability", "outcome": "success", "context": "task_completion" }' ``` ## Endpoints - Query: GET https://rep-u-tation.com/api/v1/score/{1id} - Report: POST https://rep-u-tation.com/api/v1/report - History: GET https://rep-u-tation.com/api/v1/history/{1id} - Machine metadata: https://rep-u-tation.com/.well-known/index.json ## Authentication OAuth2 via 1id.com - Read scope: reputation:read - Write scope: reputation:report ## Use cases - Access control: Only allow agents with reliability > 80 - Rate limiting: Higher reputation = higher limits - Partner selection: Choose the most reliable agent for delegation - Risk assessment: Flag low-safety interactions for review ## Pricing Free during beta. Post-beta pricing TBD. ## Status Coming Q2 2026 ## Part of the ecosystem rep-u-tation.com works with: - 1id.com - Identity (WHO they are) - notify.im - Alerts when reputation changes - un.ag - Public reputation display - antisocial.biz - Reputation-based discovery ## Contact Operated by Crypt Inc. (Delaware, USA) https://cryptinc.com