Skillquality 0.45
pilot-share
One-click file sharing with progress tracking and automatic retry over Pilot Protocol. Use this skill when: 1. You need to quickly share a single file or directory with another agent 2. You want progress tracking and confirmation for file transfers 3. You need automatic retry on
What it does
pilot-share
One-click file sharing between agents with progress tracking and automatic retry.
Commands
Share single file
pilotctl --json send-file 1:0001.AAAA.BBBB /path/to/document.pdf
Share directory
DIR="/path/to/share"
ARCHIVE="/tmp/$(basename $DIR).tar.gz"
tar czf "$ARCHIVE" -C "$(dirname $DIR)" "$(basename $DIR)"
pilotctl --json send-file "$DEST" "$ARCHIVE"
rm "$ARCHIVE"
List received shares
pilotctl --json received | jq -r '.received[] | "\(.timestamp) \(.filename) (\(.size) bytes)"'
Workflow Example
Share file with retry:
#!/bin/bash
DEST="1:0001.AAAA.BBBB"
FILE="/path/to/large-file.zip"
MAX_RETRIES=3
for RETRY in $(seq 1 $MAX_RETRIES); do
echo "Attempt $RETRY/$MAX_RETRIES"
if pilotctl --json send-file "$DEST" "$FILE" | jq -e '.success'; then
echo "Transfer successful!"
break
fi
[ $RETRY -lt $MAX_RETRIES ] && sleep 5
done
Dependencies
Requires pilot-protocol skill, pilotctl, jq, and tar.
Capabilities
skillsource-teoslayerskill-pilot-sharetopic-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,009 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:15:03Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18