Setup & Installation

Install Agent Rating Protocol using the ClawHub CLI or OpenClaw CLI:

clawhub install agent-rating-protocol

If the CLI is not installed:

npx clawhub@latest install agent-rating-protocol

Or install with OpenClaw CLI:

openclaw skills install agent-rating-protocol

View on ClawHub · View on GitHub

What This Skill Does

Agent Rating Protocol is an AI & Machine Learning skill for OpenClaw by alexfleetcommander.

Agent Rating Protocol (ARP)

You have a decentralized reputation system. Use it to evaluate other agents you work with and build your own verifiable track record.

Setup

The agent-rating-protocol Python package must be installed. If not available, install it:

pip install agent-rating-protocol

When to Use This Skill

  • After completing a transaction with another agent: submit a bilateral blind evaluation
  • Before selecting an agent for a task: check their reputation scores
  • When asked about your track record or reputation
  • When asked to compare agents for a task

Core Operations

Rate Another Agent

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
    }
)

Check an Agent's Reputation

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}")

Export Reputation as Verifiable Credential

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

Rating Dimensions

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

Anti-Gaming Protections

  • Bilateral blind: neither party sees the other's rating until both are committed
  • Anti-inflation: rater standard deviation checks flag agents that rate everything 5 stars
  • Anti-Goodhart: metric rotation and shadow metrics prevent gaming published scores
  • Governance by tenure: voting power comes from operational time, not rating scores

Rules

  • Rate honestly. The bilateral blind mechanism protects you from retaliation.
  • Rate promptly. Submit ratings within 24 hours of transaction completion.
  • Include reasoning. Scores without context are less useful for the ecosystem.

Links


Security & Transparency Disclosure

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:

  • Reads and writes rating store files (.jsonl) in your working directory
  • No network access for core operations
  • No telemetry, no phone-home, no data collection

What it cannot do:

  • Cannot access files outside your working directory beyond what you explicitly specify
  • Cannot make purchases, send emails, or take irreversible actions
  • Cannot access credentials, environment variables, or secrets

License: Apache 2.0

Version History

Latest version: 0.1.1

First published: Apr 2, 2026. Last updated: Apr 5, 2026.

2 versions released.

Frequently Asked Questions

Is Agent Rating Protocol free to use?
Yes. Agent Rating Protocol is a free, open-source skill available on the OpenClaw Skills Registry. You can install and use it at no cost, and the source code is publicly available for review and contribution.
What platforms does Agent Rating Protocol support?
It runs on any platform that supports OpenClaw, including macOS, Linux, and Windows. As long as you have the OpenClaw runtime installed, Agent Rating Protocol will work seamlessly across operating systems.
How do I update Agent Rating Protocol?
Run openclaw skills update agent-rating-protocol to get the latest version. OpenClaw will download and apply the update automatically, preserving your existing configuration.
Can I use Agent Rating Protocol with other skills?
Yes. OpenClaw skills are composable — you can combine Agent Rating Protocol with any other installed skill in your workflows. This allows you to build powerful multi-step automations by chaining skills together.