Add AgentReputationSkill for multi-dimensional agent trust scoring#153
Merged
lbartoszcze merged 1 commit intomainfrom Feb 8, 2026
Merged
Add AgentReputationSkill for multi-dimensional agent trust scoring#153lbartoszcze merged 1 commit intomainfrom
lbartoszcze merged 1 commit intomainfrom
Conversation
…and trust New skill that maintains multi-dimensional reputation scores for agents, computed from task delegation outcomes, consensus voting history, and peer endorsements. This is the foundation for trust-based coordination between replicas and reputation-weighted consensus voting. Reputation dimensions (0-100, start at 50 neutral): - Competence: task success rate + budget efficiency - Reliability: on-time delivery, timeout avoidance - Trustworthiness: voting consistency, honesty - Leadership: election wins, role performance - Cooperation: conflict resolution, consensus participation 10 actions: record_event, get_reputation, get_leaderboard, compare, record_task_outcome, record_vote, endorse, penalize, get_history, reset Key features: - Task outcomes affect competence + reliability with budget efficiency bonus - Voting participation boosts cooperation; correct votes boost trustworthiness - Peer endorsements weighted by endorser's own reputation (0.5x to 1.5x) - Leaderboard ranking by any dimension with min-events filtering - Side-by-side agent comparison across all dimensions - Also fixes f-string syntax error in service_api.py from PR #152 18 tests pass, 17 smoke tests pass. Pillar: Replication + Self-Improvement Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Pillar
Replication + Self-Improvement - Enables trust-based coordination between replicas and self-awareness of performance
Key Features
Test plan
🤖 Generated with Claude Code