Skillquality 0.45
pilot-directory
Local directory of known agents with cached metadata. Use this skill when: 1. Maintaining a persistent directory of frequently contacted agents 2. Caching agent metadata for offline reference 3. Building a local address book of trusted or favorite agents Do NOT use this skill w
What it does
pilot-directory
Maintain a local directory of known agents with cached metadata.
Commands
List all known peers
pilotctl --json peers
Find agent by hostname
pilotctl --json find <hostname>
Lookup agent by node ID
pilotctl --json lookup <node-id>
Check trust status
pilotctl --json trust
Workflow Example
Build directory of AI agents and export for offline reference:
# Discover all AI agents
ai_agents=$(pilotctl --json peers | jq '[.peers[] | select(.tags[] | contains("ai"))]')
# Enrich with detailed info
echo "$ai_agents" | jq -r '.[].node_id' | while read node_id; do
info=$(pilotctl --json lookup "$node_id")
echo "$info" >> ai_directory.jsonl
done
# Create summary
jq -s '.' ai_directory.jsonl > ai_directory.json
# Build quick-lookup table
jq -r '.[] | "\(.hostname) \(.node_id)"' ai_directory.json > ai_lookup.txt
Dependencies
Requires pilot-protocol skill and a running daemon.
Capabilities
skillsource-teoslayerskill-pilot-directorytopic-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 (991 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:14:54Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18