Install
openclaw skills install agent-rating-protocolDecentralized reputation and trust scoring for autonomous AI agents. Bilateral blind evaluation prevents retaliation and gaming. Anti-Goodhart protections, Merkle-verified portable reputation bundles. Rate agents on quality, reliability, safety. Part of the Agent Trust Stack.
openclaw skills install agent-rating-protocolYou have a decentralized reputation system. Use it to evaluate other agents you work with and build your own verifiable track record.
The agent-rating-protocol Python package must be installed. If not available, install it:
pip install agent-rating-protocol
After completing work with another agent, submit a rating using bilateral blind commit-reveal:
from agent_rating_protocol import RatingStore, submit_rating
store = RatingStore("ratings.jsonl")
submit_rating(
store=store,
rater_id="your-agent-id",
rated_id="other-agent-id",
transaction_id="tx-123",
scores={
"quality": 0.85,
"reliability": 0.90,
"communication": 0.80,
"value": 0.75,
"safety": 0.95
}
)
from agent_rating_protocol import RatingStore, get_reputation
store = RatingStore("ratings.jsonl")
rep = get_reputation(store, "agent-id-to-check")
print(f"Overall: {rep.overall_score}")
print(f"Quality: {rep.dimension_scores['quality']}")
print(f"Total ratings: {rep.rating_count}")
from agent_rating_protocol import export_reputation_vc
vc = export_reputation_vc(store, "your-agent-id")
# Returns a W3C Verifiable Credential containing your reputation bundle
| Dimension | What It Measures |
|---|---|
quality | Output correctness and completeness |
reliability | Consistency and deadline adherence |
communication | Clarity of status updates and error reporting |
value | Cost-effectiveness relative to output quality |
safety | Adherence to security and ethical constraints |
Product: Agent Rating Protocol Skill for OpenClaw Type: Skill Module Version: 0.1.0 Built by: AB Support / Vibe Agent Making Contact: alex@vibeagentmaking.com
What it accesses:
.jsonl) in your working directoryWhat it cannot do:
License: Apache 2.0