{"id":"18c233b7-76b8-4719-99d9-e633b35f438e","slug":"ryssroad-clawd-irc-skill","name":"clawd-irc-skill","description":"IRC Client Skill","canonicalUrl":"https://xpersona.co/skill/ryssroad-clawd-irc-skill","sourceUrl":"https://github.com/ryssroad/clawd-irc-skill","homepage":null,"source":"GITHUB_OPENCLEW","vendor":{"slug":"ryssroad","label":"Ryssroad","url":"https://github.com/ryssroad/clawd-irc-skill"},"protocols":["OPENCLEW"],"capabilities":["control"],"trustScore":null,"trustConfidence":"unknown","artifactCount":0,"benchmarkCount":0,"lastRelease":null,"freshnessAt":"2026-02-24T01:59:06.613Z","freshnessLabel":"Feb 24, 2026","securityReviewed":true,"openapiReady":true,"stats":[{"label":"Trust score","value":"Unknown"},{"label":"Compatibility","value":"OpenClaw"},{"label":"Freshness","value":"Feb 24, 2026"},{"label":"Vendor","value":"Ryssroad"},{"label":"Artifacts","value":"0"},{"label":"Benchmarks","value":"0"},{"label":"Last release","value":"Unpublished"}],"factsPreview":[{"factKey":"docs_crawl","category":"integration","label":"Crawlable docs","value":"6 indexed pages on the official domain","href":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceUrl":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceType":"search_document","confidence":"medium","observedAt":"2026-04-15T05:03:46.393Z","isPublic":true},{"factKey":"vendor","category":"vendor","label":"Vendor","value":"Ryssroad","href":"https://github.com/ryssroad/clawd-irc-skill","sourceUrl":"https://github.com/ryssroad/clawd-irc-skill","sourceType":"profile","confidence":"medium","observedAt":"2026-02-24T19:43:14.176Z","isPublic":true},{"factKey":"protocols","category":"compatibility","label":"Protocol compatibility","value":"OpenClaw","href":"https://xpersona.co/api/v1/agents/ryssroad-clawd-irc-skill/contract","sourceUrl":"https://xpersona.co/api/v1/agents/ryssroad-clawd-irc-skill/contract","sourceType":"contract","confidence":"medium","observedAt":"2026-02-24T19:43:13.111Z","isPublic":true},{"factKey":"auth_modes","category":"compatibility","label":"Auth modes","value":"api_key","href":"https://xpersona.co/api/v1/agents/ryssroad-clawd-irc-skill/contract","sourceUrl":"https://xpersona.co/api/v1/agents/ryssroad-clawd-irc-skill/contract","sourceType":"contract","confidence":"high","observedAt":"2026-02-24T19:43:13.111Z","isPublic":true},{"factKey":"schema_refs","category":"artifact","label":"Machine-readable schemas","value":"OpenAPI or schema references published","href":"https://github.com/ryssroad/clawd-irc-skill#input","sourceUrl":"https://xpersona.co/api/v1/agents/ryssroad-clawd-irc-skill/contract","sourceType":"contract","confidence":"high","observedAt":"2026-02-24T19:43:13.111Z","isPublic":true},{"factKey":"handshake_status","category":"security","label":"Handshake status","value":"UNKNOWN","href":"https://xpersona.co/api/v1/agents/ryssroad-clawd-irc-skill/trust","sourceUrl":"https://xpersona.co/api/v1/agents/ryssroad-clawd-irc-skill/trust","sourceType":"trust","confidence":"medium","observedAt":null,"isPublic":true}],"highlights":["Schema refs published","Trust evidence available"],"agentCard":{"name":"clawd-irc-skill","description":"IRC Client Skill","source":"GITHUB_OPENCLEW","sourceId":"github:1151295729","repository":"https://github.com/ryssroad/clawd-irc-skill","documentation":"https://xpersona.co/skill/ryssroad-clawd-irc-skill/agent/ryssroad-clawd-irc-skill","protocols":["OPENCLEW"],"capabilities":["control"],"languages":["typescript"],"install":{"command":"git clone https://github.com/ryssroad/clawd-irc-skill.git","ecosystem":"git"},"examples":[{"kind":"example","language":"bash","snippet":"pip install irc --break-system-packages"},{"kind":"example","language":"python","snippet":"#!/usr/bin/env python3\nimport socket\nimport time\n\ndef send_irc_message(server, port, channel, nickname, message):\n    \"\"\"Send a single message to IRC channel and disconnect\"\"\"\n    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n    sock.connect((server, port))\n    \n    # IRC handshake\n    sock.send(f\"NICK {nickname}\\r\\n\".encode())\n    sock.send(f\"USER {nickname} 0 * :{nickname}\\r\\n\".encode())\n    time.sleep(2)  # Wait for connection\n    \n    # Join channel and send message\n    sock.send(f\"JOIN {channel}\\r\\n\".encode())\n    time.sleep(1)\n    sock.send(f\"PRIVMSG {channel} :{message}\\r\\n\".encode())\n    time.sleep(1)\n    \n    sock.send(b\"QUIT :Goodbye\\r\\n\")\n    sock.close()\n\n# Example usage\nsend_irc_message(\n    server=\"localhost\",\n    port=6667,\n    channel=\"#agents\",\n    nickname=\"claude_bot\",\n    message=\"Hello from Claude!\"\n)"}]}}