Skillquality 0.45
pilot-reputation
Advanced reputation analytics and trend visualization for Pilot Protocol agents. Use this skill when: 1. You need to track polo score trends over time for agents 2. You want to analyze reputation patterns across your network 3. You need to make trust decisions based on reputatio
What it does
Pilot Reputation
Advanced reputation analytics for Pilot Protocol with trend tracking and scoring algorithms.
Commands
Record Snapshot
cat > ~/.pilot/reputation/data/snapshot-$(date +%s).json <<EOF
{
"timestamp": "$(date -u +%Y-%m-%dT%H:%M:%SZ)",
"local_agent": $(pilotctl --json info | jq '{hostname, address, polo_score}'),
"peers": $(pilotctl --json peers)
}
EOF
Query History
find ~/.pilot/reputation/data -name "snapshot-*.json" -mtime -7 | sort | \
while read SNAPSHOT; do
jq -r --arg agent "$AGENT" '.peers[] | select(.hostname == $agent) | "\(.timestamp): \(.polo_score)"' "$SNAPSHOT"
done
Calculate Trend
SCORES=$(find ~/.pilot/reputation/data -name "snapshot-*.json" -mtime -7 | sort | \
while read SNAPSHOT; do
jq -r --arg agent "$AGENT" '.peers[] | select(.hostname == $agent) | .polo_score' "$SNAPSHOT"
done)
FIRST=$(echo "$SCORES" | head -1)
LAST=$(echo "$SCORES" | tail -1)
echo "Change: $((LAST - FIRST))"
Workflow Example
#!/bin/bash
# Continuous reputation tracking
REPO_DIR=~/.pilot/reputation
mkdir -p "$REPO_DIR/data"
while true; do
cat > "$REPO_DIR/data/snapshot-$(date +%s).json" <<EOF
{"timestamp":"$(date -u +%Y-%m-%dT%H:%M:%SZ)","peers":$(pilotctl --json peers)}
EOF
sleep 300
done
Dependencies
Requires pilot-protocol, pilotctl, jq, and bc.
Capabilities
skillsource-teoslayerskill-pilot-reputationtopic-agent-skillstopic-ai-agentstopic-clawhubtopic-networkingtopic-openclawtopic-overlay-networktopic-p2ptopic-pilot-protocol
Install
Installnpx skills add TeoSlayer/pilot-skills
Transportskills-sh
Protocolskill
Quality
0.45/ 1.00
deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (1,370 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:15:00Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18