{"id":"0d44c1c4-49b2-4816-bebd-a33bc44c8d0d","shortId":"xRwLKg","kind":"skill","title":"pilot-priority-queue","tagline":"Priority-based message delivery with urgency levels over the Pilot Protocol network.  Use this skill when: 1. You need urgent message handling with priority levels 2. You want to implement SLA-based message delivery 3. You need priority triage for incoming messages  Do NOT use th","description":"# pilot-priority-queue\n\nPriority-based message delivery with urgency levels over the Pilot Protocol network. This skill enables structured message prioritization, ensuring urgent communications are processed first while maintaining ordered delivery for messages of equal priority.\n\n## Commands\n\n### Send messages with priority prefix\n\n```bash\n# Send critical message with [CRITICAL] prefix\npilotctl --json send-message <hostname> --data \"[CRITICAL] System alert\"\n\n# Send high priority with [HIGH] prefix\npilotctl --json send-message <hostname> --data \"[HIGH] Urgent task\"\n\n# Send normal message\npilotctl --json send-message <hostname> --data \"Regular update\"\n\n# Send low priority with [LOW] prefix\npilotctl --json send-message <hostname> --data \"[LOW] FYI: Log summary\"\n```\n\n### Receive and filter by priority\n\n```bash\n# View all inbox\npilotctl --json inbox\n\n# Filter critical messages using jq\npilotctl --json inbox | jq '.items[]? | select(.content | startswith(\"[CRITICAL]\"))'\n\n# Filter high priority\npilotctl --json inbox | jq '.items[]? | select(.content | startswith(\"[HIGH]\"))'\n```\n\n### Manual queue management\n\n```bash\n# Clear inbox after processing\npilotctl --json inbox --clear\n```\n\n## Workflow Example\n\nProcess messages by priority with automatic triage:\n\n```bash\n#!/bin/bash\n# Process priority inbox using prefix tags\n\nINBOX=$(pilotctl --json inbox)\n\n# Extract and count by priority prefix\nCRITICAL_COUNT=$(echo \"$INBOX\" | jq '[.items[]? | select(.content | startswith(\"[CRITICAL]\"))] | length')\nHIGH_COUNT=$(echo \"$INBOX\" | jq '[.items[]? | select(.content | startswith(\"[HIGH]\"))] | length')\nNORMAL_COUNT=$(echo \"$INBOX\" | jq '[.items[]? | select(.content | (startswith(\"[CRITICAL]\") or startswith(\"[HIGH]\") or startswith(\"[LOW]\")) | not)] | length')\nLOW_COUNT=$(echo \"$INBOX\" | jq '[.items[]? | select(.content | startswith(\"[LOW]\"))] | length')\n\necho \"Critical: $CRITICAL_COUNT, High: $HIGH_COUNT, Normal: $NORMAL_COUNT, Low: $LOW_COUNT\"\n\n# Process critical first\nif [ \"$CRITICAL_COUNT\" -gt 0 ]; then\n  echo \"CRITICAL MESSAGES:\"\n  echo \"$INBOX\" | jq -r '.items[]? | select(.content | startswith(\"[CRITICAL]\")) |\n    \"[\\(.timestamp // \"N/A\")] \\(.content)\"'\nfi\n\n# Process high priority\nif [ \"$HIGH_COUNT\" -gt 0 ]; then\n  echo \"HIGH PRIORITY:\"\n  echo \"$INBOX\" | jq -r '.items[]? | select(.content | startswith(\"[HIGH]\")) |\n    \"[\\(.timestamp // \"N/A\")] \\(.content)\"'\nfi\n```\n\n## Dependencies\n\nRequires `pilot-protocol` skill, `pilotctl` binary, and running daemon.","tags":["pilot","priority","queue","skills","teoslayer","agent-skills","ai-agents","clawhub","networking","openclaw","overlay-network","p2p"],"capabilities":["skill","source-teoslayer","skill-pilot-priority-queue","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-priority-queue","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,476 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:59.188Z","embedding":null,"createdAt":"2026-05-18T13:22:44.921Z","updatedAt":"2026-05-18T19:14:59.188Z","lastSeenAt":"2026-05-18T19:14:59.188Z","tsv":"'/bin/bash':215 '0':303,328 '1':22 '2':31 '3':41 'alert':112 'automat':212 'base':7,38,59 'bash':97,160,196,214 'binari':353 'clear':197,204 'command':91 'communic':78 'content':178,190,239,250,261,279,314,319,339,344 'count':228,233,244,255,273,286,289,292,295,301,326 'critic':99,102,110,168,180,232,241,263,284,285,297,300,306,316 'daemon':356 'data':109,124,136,150 'deliveri':9,40,61,85 'depend':346 'echo':234,245,256,274,283,305,308,330,333 'enabl':72 'ensur':76 'equal':89 'exampl':206 'extract':226 'fi':320,345 'filter':157,167,181 'first':81,298 'fyi':152 'gt':302,327 'handl':27 'high':114,117,125,182,192,243,252,266,287,288,322,325,331,341 'implement':35 'inbox':163,166,174,186,198,203,218,222,225,235,246,257,275,309,334 'incom':47 'item':176,188,237,248,259,277,312,337 'jq':171,175,187,236,247,258,276,310,335 'json':105,120,132,146,165,173,185,202,224 'length':242,253,271,282 'level':12,30,64 'log':153 'low':140,143,151,269,272,281,293,294 'maintain':83 'manag':195 'manual':193 'messag':8,26,39,48,60,74,87,93,100,108,123,130,135,149,169,208,307 'n/a':318,343 'need':24,43 'network':17,69 'normal':129,254,290,291 'order':84 'pilot':2,15,54,67,349 'pilot-priority-queu':1,53 'pilot-protocol':348 'pilotctl':104,119,131,145,164,172,184,201,223,352 'prefix':96,103,118,144,220,231 'priorit':75 'prioriti':3,6,29,44,55,58,90,95,115,141,159,183,210,217,230,323,332 'priority-bas':5,57 'process':80,200,207,216,296,321 'protocol':16,68,350 'queue':4,56,194 'r':311,336 'receiv':155 'regular':137 'requir':347 'run':355 'select':177,189,238,249,260,278,313,338 'send':92,98,107,113,122,128,134,139,148 'send-messag':106,121,133,147 'skill':20,71,351 'skill-pilot-priority-queue' 'sla':37 'sla-bas':36 'source-teoslayer' 'startswith':179,191,240,251,262,265,268,280,315,340 'structur':73 'summari':154 'system':111 'tag':221 'task':127 'th':52 'timestamp':317,342 'topic-agent-skills' 'topic-ai-agents' 'topic-clawhub' 'topic-networking' 'topic-openclaw' 'topic-overlay-network' 'topic-p2p' 'topic-pilot-protocol' 'triag':45,213 'updat':138 'urgenc':11,63 'urgent':25,77,126 'use':18,51,170,219 'view':161 'want':33 'workflow':205","prices":[{"id":"6f3da536-9ff5-4d7c-afa7-6d3f8a74e050","listingId":"0d44c1c4-49b2-4816-bebd-a33bc44c8d0d","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:44.921Z"}],"sources":[{"listingId":"0d44c1c4-49b2-4816-bebd-a33bc44c8d0d","source":"github","sourceId":"TeoSlayer/pilot-skills/pilot-priority-queue","sourceUrl":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-priority-queue","isPrimary":false,"firstSeenAt":"2026-05-18T13:22:44.921Z","lastSeenAt":"2026-05-18T19:14:59.188Z"}],"details":{"listingId":"0d44c1c4-49b2-4816-bebd-a33bc44c8d0d","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"TeoSlayer","slug":"pilot-priority-queue","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":"00fab7d4329f68ac065fd3ee6dc1132dac05350e","skill_md_path":"skills/pilot-priority-queue/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-priority-queue"},"layout":"multi","source":"github","category":"pilot-skills","frontmatter":{"name":"pilot-priority-queue","license":"AGPL-3.0","description":"Priority-based message delivery with urgency levels over the Pilot Protocol network.  Use this skill when: 1. You need urgent message handling with priority levels 2. You want to implement SLA-based message delivery 3. You need priority triage for incoming messages  Do NOT use this skill when: - All messages have equal priority (use pilot-chat) - You need file transfer (use pilot-send-file) - You need real-time streaming (use pilot-connect)","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-priority-queue"},"updatedAt":"2026-05-18T19:14:59.188Z"}}