Pilot Compress — 技能工具
v1.0.0Transparent compression for large messages over the Pilot Protocol network. Use this skill when: 1. You need to reduce bandwidth for large payloads 2. You wa...
详细分析 ▾
运行时依赖
版本
安装命令
点击复制技能文档
Transparent compression for large messages over the Pilot Protocol network. Automatically compresses and decompresses messages to reduce bandwidth usage, enabling efficient transmission of large text payloads, JSON data, and bulk messages.
Commands
Send message (compress manually before sending)
# Compress data before sending
DATA="large text payload here..."
COMPRESSED=$(echo "$DATA" | gzip | base64)
pilotctl --json send-message --data "$COMPRESSED"
Send file (compress before sending)
# Compress file before sending
gzip -c largefile.json > largefile.json.gz
pilotctl --json send-file largefile.json.gz
Receive and decompress
# Receive compressed data
INBOX=$(pilotctl --json inbox)
COMPRESSED_DATA=$(echo "$INBOX" | jq -r '.items[0].content')
echo "$COMPRESSED_DATA" | base64 -d | gunzip
Workflow Example
Send large JSON report with compression:
#!/bin/bash RECIPIENT="agent-b" REPORT_FILE="analytics-report.json"# Check original file size ORIGINAL_SIZE=$(stat -f%z "$REPORT_FILE" 2>/dev/null || stat -c%s "$REPORT_FILE") echo "Original size: $(($ORIGINAL_SIZE / 1024)) KB"
# Compress file gzip -c "$REPORT_FILE" > "$REPORT_FILE.gz"
# Check compressed size COMPRESSED_SIZE=$(stat -f%z "$REPORT_FILE.gz" 2>/dev/null || stat -c%s "$REPORT_FILE.gz") echo "Compressed size: $(($COMPRESSED_SIZE / 1024)) KB" echo "Compression ratio: $((ORIGINAL_SIZE / COMPRESSED_SIZE))x"
# Send compressed file pilotctl --json send-file "$RECIPIENT" "$REPORT_FILE.gz"
# Cleanup rm "$REPORT_FILE.gz"
Receiver decompresses:
# Receive file pilotctl --json received# Decompress received file gunzip analytics-report.json.gz
# Or for piped data INBOX=$(pilotctl --json inbox) echo "$INBOX" | jq -r '.items[0].content' | base64 -d | gunzip > report.json
Compression Formats
- gzip: Standard, widely compatible (gzip/gunzip)
- zstd: Better compression, faster (zstd -c file)
- lz4: Very fast, lower ratios (lz4 file)
- brotli: Excellent for text (brotli file)
Dependencies
Requires pilot-protocol skill with running daemon and compression libraries (gzip, zstd, lz4, brotli).