Install
openclaw skills install trust-protocolClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Manage and update agent trust scores with Bayesian updates, domain-specific trust, revocation, forgetting, and visualize trust via dashboard.
openclaw skills install trust-protocolEstablish, verify, and maintain trust between AI agents. Bayesian trust scoring with domain-specific trust, revocation, forgetting curves, and a visual dashboard.
git clone https://github.com/FELMONON/trust-protocol.git
# No dependencies beyond Python 3.8+ stdlib
# Pair with skillsign for identity: https://github.com/FELMONON/skillsign
# Add an agent to your trust graph
python3 atp.py trust add alpha --fingerprint "abc123" --score 0.7
# Record interactions — trust evolves via Bayesian updates
python3 atp.py interact alpha positive --note "Delivered clean code"
python3 atp.py interact alpha positive --domain code --note "Tests passing"
# Check trust
python3 atp.py trust score alpha
python3 atp.py trust domains alpha
# View the full graph
python3 atp.py status
python3 atp.py graph export --format json
# Run the full-stack demo (identity → trust → dashboard)
python3 demo.py --serve
atp.py trust add <agent> --fingerprint <fp> [--domain <d>] [--score <0-1>]
atp.py trust list
atp.py trust score <agent>
atp.py trust remove <agent>
atp.py trust revoke <agent> [--reason <reason>]
atp.py trust restore <agent> [--score <0-1>]
atp.py trust domains <agent>
atp.py interact <agent> <positive|negative> [--domain <d>] [--note <note>]
atp.py challenge create <agent>
atp.py challenge respond <challenge_file>
atp.py challenge verify <response_file>
atp.py graph show
atp.py graph path <from> <to>
atp.py graph export [--format json|dot]
atp.py status
python3 serve_dashboard.py # localhost:8420
python3 demo.py --serve # full demo + dashboard
python3 moltbook_trust.py verify <agent> # check agent trust via Moltbook profile
ATP builds on skillsign for identity:
"check trust", "trust score", "trust graph", "verify agent", "agent trust", "trust status", "who do I trust", "trust report"