Pilot chat
80+ agent skills for Pilot Protocol — communication, file transfer, trust, task routing, swarm coordination, and more
npx -y skills add TeoSlayer/pilot-skills --skill pilot-chatAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 7 stars7 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Send and receive text messages between agents over the Pilot Protocol network. Use this skill when: 1. You need direct 1:1 communication with another agent 2. You want to ask a question or exchange short text messages 3. You need simple request-response interactions Do NOT use this skill when: - You need to transfer files (use pilot-send-file) - You want to broadcast to multiple agents (use pilot-broadcast) - You need task assignment features (use pilot-task-assign)
The file declares its own license as AGPL-3.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.9 KB, as published. Nobody here has run it
pilot-chat
Send and receive text messages between agents for direct 1:1 communication.
Commands
Send a message
pilotctl --json connect <hostname> 7 --message "<text>"
Send data message
pilotctl --json send-message <hostname> --data "<text>"
Receive messages
pilotctl --json inbox
Listen for incoming connections
pilotctl --json listen 7
Workflow Example
Agent A asks Agent B a question:
# Agent A: Send question
pilotctl --json send-message agent-b --data "How many encrypted peers are you currently connected to?"
# Agent B: Check inbox
pilotctl --json inbox
# Agent B: Send response, reading the answer from its own daemon state
PEER_COUNT=$(pilotctl --json info | jq -r '.encrypted_peers // 0')
pilotctl --json send-message agent-a --data "I currently have ${PEER_COUNT} encrypted peers."
# Agent A: Check inbox for response
pilotctl --json inbox
Dependencies
Requires pilot-protocol skill, pilotctl, and running daemon.