Skillquality 0.45
pilot-clipboard
Shared clipboard for quick text and data snippets between agents over Pilot Protocol. Use this skill when: 1. You need to share short text snippets or command output between agents 2. You want a quick copy/paste mechanism across the Pilot network 3. You need to exchange small da
What it does
pilot-clipboard
Shared clipboard for exchanging text snippets and command output between agents.
Commands
Copy to Remote Clipboard
echo "Hello from Pilot!" | pilotctl --json send "1:0001.AAAA.BBBB" 1001 --data "$(cat)"
Send Message
pilotctl --json send-message "1:0001.AAAA.BBBB" --data "Hello from Pilot!"
Paste from Remote
pilotctl --json inbox | jq -r '.messages[0].content'
Share Command Output
OUTPUT=$(ls -lh)
pilotctl --json send "1:0001.AAAA.BBBB" 1001 --data "$OUTPUT"
Workflow Example
#!/bin/bash
# Clipboard manager
CLIPBOARD_PORT=1001
clip_copy() {
local dest="$1"
local content="${2:-$(cat)}"
local sender=$(pilotctl --json info | jq -r '.hostname')
local clip_msg=$(cat <<EOF
{"type":"clipboard","content":$(echo "$content" | jq -R -s .),"sender":"$sender"}
EOF
)
pilotctl --json send-message "$dest" --data "$clip_msg"
}
clip_paste() {
pilotctl --json inbox | jq -r '.messages[] | select(.type == "clipboard") | .content' | head -1
}
case "${1:-help}" in
copy) shift; clip_copy "$@" ;;
paste) clip_paste ;;
*) echo "Usage: pilot-clipboard {copy DEST [CONTENT]|paste}" ;;
esac
Dependencies
Requires pilot-protocol, pilotctl, and jq. Clipboard tools: pbcopy/pbpaste (macOS) or xclip/xsel (Linux).
Capabilities
skillsource-teoslayerskill-pilot-clipboardtopic-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,330 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:14:52Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18