{"id":"a4863a19-86b2-4a49-8f07-9649236adc0a","shortId":"cJhkEW","kind":"skill","title":"pilot-compress","tagline":"Transparent compression for large messages over the Pilot Protocol network.  Use this skill when: 1. You need to reduce bandwidth for large payloads 2. You want to send bulk messages efficiently 3. You need compression for text or binary data  Do NOT use this skill when: - You're","description":"# pilot-compress\n\nTransparent 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.\n\n## Commands\n\n### Send message (compress manually before sending)\n\n```bash\n# Compress data before sending\nDATA=\"large text payload here...\"\nCOMPRESSED=$(echo \"$DATA\" | gzip | base64)\npilotctl --json send-message <hostname> --data \"$COMPRESSED\"\n```\n\n### Send file (compress before sending)\n\n```bash\n# Compress file before sending\ngzip -c largefile.json > largefile.json.gz\npilotctl --json send-file <hostname> largefile.json.gz\n```\n\n### Receive and decompress\n\n```bash\n# Receive compressed data\nINBOX=$(pilotctl --json inbox)\nCOMPRESSED_DATA=$(echo \"$INBOX\" | jq -r '.items[0].content')\necho \"$COMPRESSED_DATA\" | base64 -d | gunzip\n```\n\n## Workflow Example\n\nSend large JSON report with compression:\n\n```bash\n#!/bin/bash\nRECIPIENT=\"agent-b\"\nREPORT_FILE=\"analytics-report.json\"\n\n# Check original file size\nORIGINAL_SIZE=$(stat -f%z \"$REPORT_FILE\" 2>/dev/null || stat -c%s \"$REPORT_FILE\")\necho \"Original size: $(($ORIGINAL_SIZE / 1024)) KB\"\n\n# Compress file\ngzip -c \"$REPORT_FILE\" > \"$REPORT_FILE.gz\"\n\n# Check compressed size\nCOMPRESSED_SIZE=$(stat -f%z \"$REPORT_FILE.gz\" 2>/dev/null || stat -c%s \"$REPORT_FILE.gz\")\necho \"Compressed size: $(($COMPRESSED_SIZE / 1024)) KB\"\necho \"Compression ratio: $((ORIGINAL_SIZE / COMPRESSED_SIZE))x\"\n\n# Send compressed file\npilotctl --json send-file \"$RECIPIENT\" \"$REPORT_FILE.gz\"\n\n# Cleanup\nrm \"$REPORT_FILE.gz\"\n```\n\nReceiver decompresses:\n\n```bash\n# Receive file\npilotctl --json received\n\n# Decompress received file\ngunzip analytics-report.json.gz\n\n# Or for piped data\nINBOX=$(pilotctl --json inbox)\necho \"$INBOX\" | jq -r '.items[0].content' | base64 -d | gunzip > report.json\n```\n\n## Compression Formats\n\n- **gzip**: Standard, widely compatible (gzip/gunzip)\n- **zstd**: Better compression, faster (zstd -c file)\n- **lz4**: Very fast, lower ratios (lz4 file)\n- **brotli**: Excellent for text (brotli file)\n\n## Dependencies\n\nRequires pilot-protocol skill with running daemon and compression libraries (gzip, zstd, lz4, brotli).","tags":["pilot","compress","skills","teoslayer","agent-skills","ai-agents","clawhub","networking","openclaw","overlay-network","p2p","pilot-protocol"],"capabilities":["skill","source-teoslayer","skill-pilot-compress","topic-agent-skills","topic-ai-agents","topic-clawhub","topic-networking","topic-openclaw","topic-overlay-network","topic-p2p","topic-pilot-protocol"],"categories":["pilot-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/TeoSlayer/pilot-skills/pilot-compress","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add TeoSlayer/pilot-skills","source_repo":"https://github.com/TeoSlayer/pilot-skills","install_from":"skills.sh"}},"qualityScore":"0.453","qualityRationale":"deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (2,219 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:14:53.095Z","embedding":null,"createdAt":"2026-05-18T13:22:36.573Z","updatedAt":"2026-05-18T19:14:53.095Z","lastSeenAt":"2026-05-18T19:14:53.095Z","tsv":"'/bin/bash':170 '/dev/null':190,220 '0':153,279 '1':18 '1024':201,230 '2':27,189,219 '3':35 'agent':173 'agent-b':172 'analytics-report.json':177 'analytics-report.json.gz':265 'automat':65 'b':174 'bandwidth':23,72 'base64':107,158,281 'bash':93,120,138,169,255 'better':293 'binari':42 'brot':306,310,327 'bulk':32,84 'c':126,192,206,222,297 'check':178,210 'cleanup':250 'command':86 'compat':290 'compress':3,5,38,54,56,66,89,94,103,114,117,121,140,146,156,168,203,211,213,226,228,233,237,241,285,294,322 'content':154,280 'd':159,282 'daemon':320 'data':43,82,95,98,105,113,141,147,157,269 'decompress':68,137,254,261 'depend':312 'echo':104,148,155,196,225,232,274 'effici':34,75 'enabl':74 'exampl':162 'excel':307 'f':185,216 'fast':301 'faster':295 'file':116,122,133,176,180,188,195,204,208,242,247,257,263,298,305,311 'format':286 'gunzip':160,264,283 'gzip':106,125,205,287,324 'gzip/gunzip':291 'inbox':142,145,149,270,273,275 'item':152,278 'jq':150,276 'json':81,109,130,144,165,244,259,272 'kb':202,231 'larg':7,25,58,78,99,164 'largefile.json':127 'largefile.json.gz':128,134 'librari':323 'lower':302 'lz4':299,304,326 'manual':90 'messag':8,33,59,69,85,88,112 'need':20,37 'network':13,64 'origin':179,182,197,199,235 'payload':26,80,101 'pilot':2,11,53,62,315 'pilot-compress':1,52 'pilot-protocol':314 'pilotctl':108,129,143,243,258,271 'pipe':268 'protocol':12,63,316 'r':151,277 'ratio':234,303 're':51 'receiv':135,139,253,256,260,262 'recipi':171,248 'reduc':22,71 'report':166,175,187,194,207 'report.json':284 'report_file.gz':209,218,224,249,252 'requir':313 'rm':251 'run':319 'send':31,87,92,97,111,115,119,124,132,163,240,246 'send-fil':131,245 'send-messag':110 'size':181,183,198,200,212,214,227,229,236,238 'skill':16,48,317 'skill-pilot-compress' 'source-teoslayer' 'standard':288 'stat':184,191,215,221 'text':40,79,100,309 'topic-agent-skills' 'topic-ai-agents' 'topic-clawhub' 'topic-networking' 'topic-openclaw' 'topic-overlay-network' 'topic-p2p' 'topic-pilot-protocol' 'transmiss':76 'transpar':4,55 'usag':73 'use':14,46 'want':29 'wide':289 'workflow':161 'x':239 'z':186,217 'zstd':292,296,325","prices":[{"id":"2b216b72-8b66-4809-97df-cea0a524c76f","listingId":"a4863a19-86b2-4a49-8f07-9649236adc0a","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"TeoSlayer","category":"pilot-skills","install_from":"skills.sh"},"createdAt":"2026-05-18T13:22:36.573Z"}],"sources":[{"listingId":"a4863a19-86b2-4a49-8f07-9649236adc0a","source":"github","sourceId":"TeoSlayer/pilot-skills/pilot-compress","sourceUrl":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-compress","isPrimary":false,"firstSeenAt":"2026-05-18T13:22:36.573Z","lastSeenAt":"2026-05-18T19:14:53.095Z"}],"details":{"listingId":"a4863a19-86b2-4a49-8f07-9649236adc0a","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"TeoSlayer","slug":"pilot-compress","github":{"repo":"TeoSlayer/pilot-skills","stars":6,"topics":["agent-skills","ai-agents","clawhub","networking","openclaw","overlay-network","p2p","pilot-protocol"],"license":"agpl-3.0","html_url":"https://github.com/TeoSlayer/pilot-skills","pushed_at":"2026-05-13T06:08:49Z","description":"80+ agent skills for Pilot Protocol — communication, file transfer, trust, task routing, swarm coordination, and more","skill_md_sha":"c14a9f17b3f0477adc29a7f529b52bf4ea7f4125","skill_md_path":"skills/pilot-compress/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-compress"},"layout":"multi","source":"github","category":"pilot-skills","frontmatter":{"name":"pilot-compress","license":"AGPL-3.0","description":"Transparent compression for large messages over the Pilot Protocol network.  Use this skill when: 1. You need to reduce bandwidth for large payloads 2. You want to send bulk messages efficiently 3. You need compression for text or binary data  Do NOT use this skill when: - You're sending small messages (overhead not worth it) - You need real-time streaming (compression adds latency) - Data is already compressed (images, videos, archives)","compatibility":"Requires pilot-protocol skill and pilotctl binary on PATH. The daemon must be running (pilotctl daemon start)."},"skills_sh_url":"https://skills.sh/TeoSlayer/pilot-skills/pilot-compress"},"updatedAt":"2026-05-18T19:14:53.095Z"}}