{"id":"6650d752-5722-4ce6-9f40-623f6929dd43","shortId":"BRNsw5","kind":"skill","title":"pilot-quarantine","tagline":"Isolate suspicious agents pending investigation in Pilot Protocol networks.  Use this skill when: 1. You detect compromised or suspicious agents that need isolation 2. You want to temporarily suspend trust without permanent blocking 3. You need to investigate agent behavior befor","description":"# Pilot Quarantine\n\nTemporary isolation system for suspicious agents with investigation workflows and automated review.\n\n## Commands\n\n### Quarantine Agent\n```bash\nAGENT=\"suspicious.pilot\"\nQUARANTINE_ID=$(openssl rand -hex 6)\nNODE_ID=$(pilotctl --json find \"$AGENT\" | jq -r '.node_id')\n\npilotctl --json untrust \"$NODE_ID\"\npilotctl --json connections | jq -r '.connections[] | select(.remote_hostname == \"'\"$AGENT\"'\") | .id' | \\\n  xargs -I {} pilotctl --json disconnect {}\n```\n\n### List Quarantined Agents\n```bash\nfor QFILE in ~/.pilot/quarantine/active/*.json; do\n  jq -r '\"ID: \\(.quarantine_id) Agent: \\(.agent) Reason: \\(.reason)\"' \"$QFILE\"\ndone\n```\n\n### Release from Quarantine\n```bash\nQUARANTINE_ID=\"abc123\"\nQFILE=~/.pilot/quarantine/active/$QUARANTINE_ID.json\nAGENT=$(jq -r '.agent' \"$QFILE\")\n\nmv \"$QFILE\" ~/.pilot/quarantine/resolved/\npilotctl --json handshake \"$AGENT\" \"Quarantine released\"\n```\n\n### Enforce Quarantine\n```bash\nfor QFILE in ~/.pilot/quarantine/active/*.json; do\n  AGENT=$(jq -r '.agent' \"$QFILE\")\n  NODE_ID=$(jq -r '.node_id' \"$QFILE\")\n\n  pilotctl --json connections | jq -r '.connections[] | select(.remote_hostname == \"'\"$AGENT\"'\") | .id' | \\\n    xargs -I {} pilotctl --json disconnect {}\ndone\n```\n\n## Workflow Example\n\n```bash\n#!/bin/bash\n# Quarantine management\n\nmkdir -p ~/.pilot/quarantine/{active,resolved}\n\nAGENT=\"malicious.pilot\"\nQUARANTINE_ID=$(openssl rand -hex 6)\nNODE_ID=$(pilotctl --json find \"$AGENT\" | jq -r '.node_id')\n\npilotctl --json untrust \"$NODE_ID\"\n\ncat > ~/.pilot/quarantine/active/$QUARANTINE_ID.json <<EOF\n{\n  \"quarantine_id\": \"$QUARANTINE_ID\",\n  \"agent\": \"$AGENT\",\n  \"reason\": \"Port scanning detected\",\n  \"quarantined_at\": \"$(date -u +%Y-%m-%dT%H:%M:%SZ)\",\n  \"status\": \"active\"\n}\nEOF\n\necho \"Quarantined: $AGENT (ID: $QUARANTINE_ID)\"\n```\n\n## Dependencies\n\nRequires pilot-protocol, pilotctl, jq, openssl. Quarantine records stored in ~/.pilot/quarantine/.","tags":["pilot","quarantine","skills","teoslayer","agent-skills","ai-agents","clawhub","networking","openclaw","overlay-network","p2p","pilot-protocol"],"capabilities":["skill","source-teoslayer","skill-pilot-quarantine","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-quarantine","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 (1,902 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.562Z","embedding":null,"createdAt":"2026-05-18T13:22:45.370Z","updatedAt":"2026-05-18T19:14:59.562Z","lastSeenAt":"2026-05-18T19:14:59.562Z","tsv":"'/.pilot/quarantine':193,264 '/.pilot/quarantine/active':109,131,153,220 '/.pilot/quarantine/resolved':140 '/bin/bash':188 '1':17 '2':27 '3':37 '6':70,203 'abc123':129 'activ':194,244 'agent':6,23,42,52,61,63,76,95,104,117,118,133,136,144,156,159,177,196,209,227,228,248 'autom':57 'bash':62,105,126,149,187 'befor':44 'behavior':43 'block':36 'cat':219 'command':59 'compromis':20 'connect':88,91,170,173 'date':235 'depend':252 'detect':19,232 'disconnect':101,183 'done':122,184 'dt':239 'echo':246 'enforc':147 'eof':222,245 'exampl':186 'find':75,208 'h':240 'handshak':143 'hex':69,202 'hostnam':94,176 'id':66,72,80,85,96,114,116,128,162,166,178,199,205,213,218,224,226,249,251 'investig':8,41,54 'isol':4,26,48 'jq':77,89,112,134,157,163,171,210,258 'json':74,82,87,100,110,142,154,169,182,207,215 'list':102 'm':238,241 'malicious.pilot':197 'manag':190 'mkdir':191 'mv':138 'need':25,39 'network':12 'node':71,79,84,161,165,204,212,217 'openssl':67,200,259 'p':192 'pend':7 'perman':35 'pilot':2,10,45,255 'pilot-protocol':254 'pilot-quarantin':1 'pilotctl':73,81,86,99,141,168,181,206,214,257 'port':230 'protocol':11,256 'qfile':107,121,130,137,139,151,160,167 'quarantin':3,46,60,65,103,115,125,127,145,148,189,198,223,225,233,247,250,260 'quarantine_id.json':132,221 'r':78,90,113,135,158,164,172,211 'rand':68,201 'reason':119,120,229 'record':261 'releas':123,146 'remot':93,175 'requir':253 'resolv':195 'review':58 'scan':231 'select':92,174 'skill':15 'skill-pilot-quarantine' 'source-teoslayer' 'status':243 'store':262 'suspend':32 'suspici':5,22,51 'suspicious.pilot':64 'system':49 'sz':242 'temporari':47 'temporarili':31 'topic-agent-skills' 'topic-ai-agents' 'topic-clawhub' 'topic-networking' 'topic-openclaw' 'topic-overlay-network' 'topic-p2p' 'topic-pilot-protocol' 'trust':33 'u':236 'untrust':83,216 'use':13 'want':29 'without':34 'workflow':55,185 'xarg':97,179 'y':237","prices":[{"id":"2ab11edd-c859-4612-82d4-dab92afaae2a","listingId":"6650d752-5722-4ce6-9f40-623f6929dd43","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:45.370Z"}],"sources":[{"listingId":"6650d752-5722-4ce6-9f40-623f6929dd43","source":"github","sourceId":"TeoSlayer/pilot-skills/pilot-quarantine","sourceUrl":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-quarantine","isPrimary":false,"firstSeenAt":"2026-05-18T13:22:45.370Z","lastSeenAt":"2026-05-18T19:14:59.562Z"}],"details":{"listingId":"6650d752-5722-4ce6-9f40-623f6929dd43","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"TeoSlayer","slug":"pilot-quarantine","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":"6f855c77accdf0a646d17142400145c60e05ab79","skill_md_path":"skills/pilot-quarantine/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/TeoSlayer/pilot-skills/tree/main/skills/pilot-quarantine"},"layout":"multi","source":"github","category":"pilot-skills","frontmatter":{"name":"pilot-quarantine","license":"AGPL-3.0","description":"Isolate suspicious agents pending investigation in Pilot Protocol networks.  Use this skill when: 1. You detect compromised or suspicious agents that need isolation 2. You want to temporarily suspend trust without permanent blocking 3. You need to investigate agent behavior before making final trust decisions  Do NOT use this skill when: - You need permanent blocking (use pilot-blocklist) - You're doing preventive blocking (use trust policies) - You need immediate disconnect (use pilotctl disconnect)","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-quarantine"},"updatedAt":"2026-05-18T19:14:59.562Z"}}