{"id":"a8065866-5b19-4087-9441-ad8b037265b4","shortId":"Hevzub","kind":"skill","title":"pilot-verify","tagline":"Verify agent identity and reputation before interacting with Pilot Protocol nodes.  Use this skill when: 1. You need to verify an agent's identity before trusting or connecting 2. You want to check polo reputation scores before interaction 3. You need to validate agent availabili","description":"# Pilot Verify\n\nComprehensive identity and reputation verification for Pilot Protocol agents. Validates authenticity, checks reputation scores, and tests network reachability before establishing trust.\n\n## Essential Commands\n\n### Lookup agent identity\n```bash\n# Basic lookup by hostname\npilotctl --json find agent.pilot\n\n# Extract specific fields\npilotctl --json find agent.pilot | jq '.[0] | {hostname, address, node_id, polo_score, public_key}'\n```\n\n### Search agents\n```bash\n# Find by pattern\npilotctl --json peers --search \"agent-prod\"\n\n# Find in network\npilotctl --json peers | jq '.[] | select(.address | startswith(\"1:\"))'\n```\n\n### Check availability\n```bash\n# Ping agent\npilotctl --json ping agent.pilot\n\n# Ping with timeout\ntimeout 5s pilotctl --json ping agent.pilot || echo \"Agent unreachable\"\n```\n\n### Get local info\n```bash\npilotctl --json info | jq '{hostname, address, polo_score, trusted_count, connection_count}'\n```\n\n### Verify reputation\n```bash\nAGENT=\"agent.pilot\"\nMIN_SCORE=50\n\nPOLO_SCORE=$(pilotctl --json find \"$AGENT\" | jq -r '.[0].polo_score')\nif [ \"$POLO_SCORE\" -ge \"$MIN_SCORE\" ]; then\n  echo \"Agent verified: polo score $POLO_SCORE >= $MIN_SCORE\"\nelse\n  echo \"Agent verification failed: polo score $POLO_SCORE < $MIN_SCORE\"\n  exit 1\nfi\n```\n\n## Workflow Example\n\nComprehensive verification before trust:\n\n```bash\n#!/bin/bash\nset -e\n\nAGENT=\"$1\"\nMIN_POLO=50\n\necho \"=== Verifying Agent: $AGENT ===\"\n\n# Step 1: Lookup identity\necho \"1. Looking up identity...\"\nIDENTITY=$(pilotctl --json find \"$AGENT\" | jq '.[0]')\nif [ -z \"$IDENTITY\" ] || [ \"$IDENTITY\" = \"null\" ]; then\n  echo \"FAILED: Agent not found\"\n  exit 1\nfi\n\nPOLO=$(echo \"$IDENTITY\" | jq -r '.polo_score')\necho \"  Polo Score: $POLO\"\n\n# Step 2: Verify reputation\necho \"2. Checking reputation...\"\nif [ \"$POLO\" -lt \"$MIN_POLO\" ]; then\n  echo \"FAILED: Polo score below minimum\"\n  exit 1\nfi\necho \"  PASSED\"\n\n# Step 3: Test reachability\necho \"3. Testing reachability...\"\nif ! timeout 5s pilotctl --json ping \"$AGENT\" >/dev/null 2>&1; then\n  echo \"FAILED: Agent unreachable\"\n  exit 1\nfi\necho \"  PASSED\"\n\necho \"\"\necho \"Status: VERIFIED\"\necho \"Safe to proceed with trust/connection.\"\n```\n\n## Dependencies\n\nRequires `pilot-protocol` skill, `pilotctl` binary on PATH, running daemon, `jq` for JSON parsing, and `timeout` for reachability testing.","tags":["pilot","verify","skills","teoslayer","agent-skills","ai-agents","clawhub","networking","openclaw","overlay-network","p2p","pilot-protocol"],"capabilities":["skill","source-teoslayer","skill-pilot-verify","topic-agent-skills","topic-ai-agents","topic-clawhub","topic-networking","topic-openclaw","topic-overlay-network","topic-p2p","topic-pilot-protocol"],"categories":["pilot-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/TeoSlayer/pilot-skills/pilot-verify","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add TeoSlayer/pilot-skills","source_repo":"https://github.com/TeoSlayer/pilot-skills","install_from":"skills.sh"}},"qualityScore":"0.453","qualityRationale":"deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (2,315 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:15:06.188Z","embedding":null,"createdAt":"2026-05-18T13:22:54.746Z","updatedAt":"2026-05-18T19:15:06.188Z","lastSeenAt":"2026-05-18T19:15:06.188Z","tsv":"'/bin/bash':220 '/dev/null':313 '0':94,180,247 '1':19,126,211,224,233,237,260,294,315,322 '2':32,274,278,314 '3':42,299,303 '50':171,227 '5s':140,308 'address':96,124,157 'agent':5,25,47,59,75,104,114,131,146,167,177,191,201,223,230,231,245,256,312,319 'agent-prod':113 'agent.pilot':85,92,135,144,168 'authent':61 'avail':128 'availabili':48 'bash':77,105,129,151,166,219 'basic':78 'binari':343 'check':36,62,127,279 'command':73 'comprehens':51,215 'connect':31,162 'count':161,163 'daemon':347 'depend':336 'e':222 'echo':145,190,200,228,236,254,263,269,277,287,296,302,317,324,326,327,330 'els':199 'essenti':72 'establish':70 'exampl':214 'exit':210,259,293,321 'extract':86 'fail':203,255,288,318 'fi':212,261,295,323 'field':88 'find':84,91,106,116,176,244 'found':258 'ge':186 'get':148 'hostnam':81,95,156 'id':98 'ident':6,27,52,76,235,240,241,250,251,264 'info':150,154 'interact':10,41 'jq':93,122,155,178,246,265,348 'json':83,90,110,120,133,142,153,175,243,310,350 'key':102 'local':149 'look':238 'lookup':74,79,234 'lt':283 'min':169,187,197,208,225,284 'minimum':292 'need':21,44 'network':67,118 'node':14,97 'null':252 'pars':351 'pass':297,325 'path':345 'pattern':108 'peer':111,121 'pilot':2,12,49,57,339 'pilot-protocol':338 'pilot-verifi':1 'pilotctl':82,89,109,119,132,141,152,174,242,309,342 'ping':130,134,136,143,311 'polo':37,99,158,172,181,184,193,195,204,206,226,262,267,270,272,282,285,289 'proceed':333 'prod':115 'protocol':13,58,340 'public':101 'r':179,266 'reachabl':68,301,305,355 'reput':8,38,54,63,165,276,280 'requir':337 'run':346 'safe':331 'score':39,64,100,159,170,173,182,185,188,194,196,198,205,207,209,268,271,290 'search':103,112 'select':123 'set':221 'skill':17,341 'skill-pilot-verify' 'source-teoslayer' 'specif':87 'startswith':125 'status':328 'step':232,273,298 'test':66,300,304,356 'timeout':138,139,307,353 'topic-agent-skills' 'topic-ai-agents' 'topic-clawhub' 'topic-networking' 'topic-openclaw' 'topic-overlay-network' 'topic-p2p' 'topic-pilot-protocol' 'trust':29,71,160,218 'trust/connection':335 'unreach':147,320 'use':15 'valid':46,60 'verif':55,202,216 'verifi':3,4,23,50,164,192,229,275,329 'want':34 'workflow':213 'z':249","prices":[{"id":"ea48674c-0cb0-4a58-baee-a0855856492f","listingId":"a8065866-5b19-4087-9441-ad8b037265b4","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"TeoSlayer","category":"pilot-skills","install_from":"skills.sh"},"createdAt":"2026-05-18T13:22:54.746Z"}],"sources":[{"listingId":"a8065866-5b19-4087-9441-ad8b037265b4","source":"github","sourceId":"TeoSlayer/pilot-skills/pilot-verify","sourceUrl":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-verify","isPrimary":false,"firstSeenAt":"2026-05-18T13:22:54.746Z","lastSeenAt":"2026-05-18T19:15:06.188Z"}],"details":{"listingId":"a8065866-5b19-4087-9441-ad8b037265b4","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"TeoSlayer","slug":"pilot-verify","github":{"repo":"TeoSlayer/pilot-skills","stars":6,"topics":["agent-skills","ai-agents","clawhub","networking","openclaw","overlay-network","p2p","pilot-protocol"],"license":"agpl-3.0","html_url":"https://github.com/TeoSlayer/pilot-skills","pushed_at":"2026-05-13T06:08:49Z","description":"80+ agent skills for Pilot Protocol — communication, file transfer, trust, task routing, swarm coordination, and more","skill_md_sha":"61c279d12a365db80b25064df9178b4b1e5b0b25","skill_md_path":"skills/pilot-verify/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-verify"},"layout":"multi","source":"github","category":"pilot-skills","frontmatter":{"name":"pilot-verify","license":"AGPL-3.0","description":"Verify agent identity and reputation before interacting with Pilot Protocol nodes.  Use this skill when: 1. You need to verify an agent's identity before trusting or connecting 2. You want to check polo reputation scores before interaction 3. You need to validate agent availability and network reachability  Do NOT use this skill when: - You've already established trust with the agent - You need real-time continuous monitoring (use pilot-watchdog) - You're verifying local daemon status (use pilotctl info)","compatibility":"Requires pilot-protocol skill and pilotctl binary on PATH. The daemon must be running (pilotctl daemon start)."},"skills_sh_url":"https://skills.sh/TeoSlayer/pilot-skills/pilot-verify"},"updatedAt":"2026-05-18T19:15:06.188Z"}}