Pilot archive
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-archiveAssembled 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
Index and search historical data exchanges, messages, and file transfers over Pilot Protocol. Use this skill when: 1. You need to search through past messages and file transfers 2. You want to maintain searchable history of all agent communications 3. You need to audit or analyze historical data exchange patterns Do NOT use this skill when: - You need real-time data access (use pilot-stream-data instead) - You need active file synchronization (use pilot-sync instead) - You need current inbox messages (use pilotctl inbox directly)
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
3.6 KB, as published. Nobody here has run it
pilot-archive
Index and search historical data exchanges including messages, file transfers, and communication patterns. This skill provides a searchable archive of all Pilot Protocol communications with metadata indexing, full-text search, and analytics capabilities.
Commands
Index Messages
Build searchable index of message history:
ARCHIVE_DIR="$HOME/.pilot/archive"
INDEX_FILE="$ARCHIVE_DIR/message-index.jsonl"
mkdir -p "$ARCHIVE_DIR"
pilotctl --json inbox | jq -c '.messages[] |
{timestamp, from, type, content, indexed_at: (now | todate)}' >> "$INDEX_FILE"
Index File Transfers
Record file transfer history:
ARCHIVE_DIR="$HOME/.pilot/archive"
FILE_INDEX="$ARCHIVE_DIR/file-index.jsonl"
pilotctl --json received | jq -c '.received[] |
{timestamp, from, filename, size, port, indexed_at: (now | todate)}' >> "$FILE_INDEX"
Search Messages
Full-text search through message archive:
KEYWORD="$1"
jq -r "select(.content | test(\"$KEYWORD\"; \"i\")) |
\"[\(.timestamp)] \(.from): \(.content)\"" "$HOME/.pilot/archive/message-index.jsonl"
Search by Sender
Find all communications from specific agent:
SENDER="1:0001.AAAA.BBBB"
jq -r "select(.from == \"$SENDER\") |
\"[\(.timestamp)] \(.type): \(.content)\"" \
"$HOME/.pilot/archive/message-index.jsonl"
Archive Statistics
Generate statistics from archive:
ARCHIVE_DIR="$HOME/.pilot/archive"
MSG_COUNT=$(wc -l < "$ARCHIVE_DIR/message-index.jsonl")
FILE_COUNT=$(wc -l < "$ARCHIVE_DIR/file-index.jsonl")
echo "Total messages: $MSG_COUNT"
echo "Total files: $FILE_COUNT"
echo ""
echo "Top senders:"
jq -r '.from' "$ARCHIVE_DIR/message-index.jsonl" | sort | uniq -c | sort -rn | head -5
Workflow Example
#!/bin/bash
# pilot-archive: Historical data indexing and search
ARCHIVE_DIR="$HOME/.pilot/archive"
MSG_INDEX="$ARCHIVE_DIR/message-index.jsonl"
FILE_INDEX="$ARCHIVE_DIR/file-index.jsonl"
mkdir -p "$ARCHIVE_DIR"
# Index messages (get all, filter client-side)
pilotctl --json inbox | jq -c '.messages[] |
{timestamp, from, to, type, content, indexed_at: (now | todate)}' | tail -100 >> "$MSG_INDEX"
# Index files (get all, filter client-side)
pilotctl --json received | jq -c '.received[] |
{timestamp, from, filename, size, port, indexed_at: (now | todate)}' | tail -100 >> "$FILE_INDEX"
# Search archive
search_query="$1"
if [ -n "$search_query" ]; then
echo "=== Messages ==="
jq -r "select(.content | test(\"$search_query\"; \"i\")) |
\"[\(.timestamp)] \(.from): \(.content)\"" "$MSG_INDEX" | head -20
fi
Dependencies
Requires pilot-protocol, jq, tar/gzip for export.