{
  "schemaVersion": "1.0",
  "item": {
    "slug": "rocketchat",
    "name": "RocketChat",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zenjabba/rocketchat",
    "canonicalUrl": "https://clawhub.ai/zenjabba/rocketchat",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/rocketchat",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rocketchat",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/rocketchat"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/rocketchat",
    "agentPageUrl": "https://openagent3.xyz/skills/rocketchat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rocketchat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rocketchat/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Rocket.Chat Skill",
        "body": "Open-source team chat platform for communication and collaboration."
      },
      {
        "title": "Overview",
        "body": "Rocket.Chat supports:\n\nChannels (public/private), DMs, threads\nUser and role management\nIntegrations (webhooks, bots)\nFederation and omnichannel\n\nThree room types: channels (channels.*), groups/private (groups.*), DMs (im.*). Generic chat.* endpoints work across all types via roomId."
      },
      {
        "title": "API Authentication",
        "body": "# Header-based auth\ncurl -s \\\n  -H \"X-Auth-Token: $RC_TOKEN\" \\\n  -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/me\"\n\n# Get tokens from login\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"user\":\"username\",\"password\":\"password\"}' \\\n  \"$RC_URL/api/v1/login\" | jq '{userId: .data.userId, authToken: .data.authToken}'"
      },
      {
        "title": "Key Identifiers",
        "body": "roomId — room identifier (e.g. GENERAL, ByehQjC44FwMeiLbX)\nmsgId — alphanumeric message ID (not a timestamp like Slack)\nemoji — name without colons (e.g. thumbsup, white_check_mark)\n\nMessage context lines include rocketchat message id and room fields — reuse them directly."
      },
      {
        "title": "Channels",
        "body": "# List channels\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.list?count=50\"\n\n# Channel info\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.info?roomId=ROOM_ID\"\n\n# Get channel history\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.history?roomId=ROOM_ID&count=50\"\n\n# Create channel\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"new-channel\",\"members\":[\"user1\"]}' \\\n  \"$RC_URL/api/v1/channels.create\"\n\n# Archive channel\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"roomId\":\"ROOM_ID\"}' \\\n  \"$RC_URL/api/v1/channels.archive\"\n\n# Set channel topic\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"roomId\":\"ROOM_ID\",\"topic\":\"Weekly standup notes\"}' \\\n  \"$RC_URL/api/v1/channels.setTopic\"\n\n# List channel members\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.members?roomId=ROOM_ID&count=50\"\n\nFor private groups use groups.*, for DMs use im.*. Same query params."
      },
      {
        "title": "Messages",
        "body": "# Send message (simple)\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"channel\":\"#general\",\"text\":\"Hello!\"}' \\\n  \"$RC_URL/api/v1/chat.postMessage\"\n\nchannel accepts: #channel-name, @username (DM), or a roomId.\n\n# Send message (advanced — custom _id, alias, avatar)\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"message\":{\"rid\":\"ROOM_ID\",\"msg\":\"Hello from Clawdbot\"}}' \\\n  \"$RC_URL/api/v1/chat.sendMessage\"\n\n# Read recent messages\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.messages?roomId=ROOM_ID&count=20\"\n\n# Edit message\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"roomId\":\"ROOM_ID\",\"msgId\":\"MSG_ID\",\"text\":\"Updated text\"}' \\\n  \"$RC_URL/api/v1/chat.update\"\n\n# Delete message\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"roomId\":\"ROOM_ID\",\"msgId\":\"MSG_ID\"}' \\\n  \"$RC_URL/api/v1/chat.delete\"\n\n# Search messages\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/chat.search?roomId=ROOM_ID&searchText=keyword\"\n\n# React to message (toggle — calling again removes it)\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"messageId\":\"MSG_ID\",\"emoji\":\"thumbsup\"}' \\\n  \"$RC_URL/api/v1/chat.react\"\n\n# Get message (includes reactions in message.reactions field)\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/chat.getMessage?msgId=MSG_ID\""
      },
      {
        "title": "Pins",
        "body": "# Pin a message\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"messageId\":\"MSG_ID\"}' \\\n  \"$RC_URL/api/v1/chat.pinMessage\"\n\n# Unpin a message\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"messageId\":\"MSG_ID\"}' \\\n  \"$RC_URL/api/v1/chat.unPinMessage\"\n\n# List pinned messages (query is URL-encoded {\"pinned\":true})\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.messages?roomId=ROOM_ID&query=%7B%22pinned%22%3Atrue%7D\""
      },
      {
        "title": "Users",
        "body": "# List users\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/users.list\"\n\n# Get user info (by username or userId)\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/users.info?username=john\"\n\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/users.info?userId=USER_ID\"\n\n# Create user (admin)\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"email\":\"user@example.com\",\"name\":\"John\",\"username\":\"john\",\"password\":\"pass123\"}' \\\n  \"$RC_URL/api/v1/users.create\"\n\n# Set user status\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"message\":\"In a meeting\",\"status\":\"busy\"}' \\\n  \"$RC_URL/api/v1/users.setStatus\""
      },
      {
        "title": "Emoji",
        "body": "# List custom emoji\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/emoji-custom.list\""
      },
      {
        "title": "Integrations",
        "body": "# List webhooks\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/integrations.list?type=webhook-incoming\"\n\n# Use incoming webhook (no auth needed)\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\":\"Alert from external system!\"}' \\\n  \"$RC_URL/hooks/WEBHOOK_ID/WEBHOOK_TOKEN\""
      },
      {
        "title": "Statistics",
        "body": "# Server statistics\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/statistics\""
      },
      {
        "title": "Rate Limits",
        "body": "Default: 20 requests/second per user. Check headers: X-RateLimit-Limit, X-RateLimit-Remaining."
      },
      {
        "title": "Ideas to try",
        "body": "React with white_check_mark to mark completed tasks\nPin key decisions or weekly status updates\nSearch messages for past discussions before asking a question\nCreate project-specific channels and set descriptive topics\nDM users via chat.postMessage with \"channel\": \"@username\"\nUse incoming webhooks for external system alerts without auth\n\nFor full documentation, see Rocket.Chat API Docs."
      }
    ],
    "body": "Rocket.Chat Skill\n\nOpen-source team chat platform for communication and collaboration.\n\nOverview\n\nRocket.Chat supports:\n\nChannels (public/private), DMs, threads\nUser and role management\nIntegrations (webhooks, bots)\nFederation and omnichannel\n\nThree room types: channels (channels.*), groups/private (groups.*), DMs (im.*). Generic chat.* endpoints work across all types via roomId.\n\nAPI Authentication\n# Header-based auth\ncurl -s \\\n  -H \"X-Auth-Token: $RC_TOKEN\" \\\n  -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/me\"\n\n# Get tokens from login\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"user\":\"username\",\"password\":\"password\"}' \\\n  \"$RC_URL/api/v1/login\" | jq '{userId: .data.userId, authToken: .data.authToken}'\n\nKey Identifiers\nroomId — room identifier (e.g. GENERAL, ByehQjC44FwMeiLbX)\nmsgId — alphanumeric message ID (not a timestamp like Slack)\nemoji — name without colons (e.g. thumbsup, white_check_mark)\n\nMessage context lines include rocketchat message id and room fields — reuse them directly.\n\nChannels\n# List channels\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.list?count=50\"\n\n# Channel info\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.info?roomId=ROOM_ID\"\n\n# Get channel history\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.history?roomId=ROOM_ID&count=50\"\n\n# Create channel\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"name\":\"new-channel\",\"members\":[\"user1\"]}' \\\n  \"$RC_URL/api/v1/channels.create\"\n\n# Archive channel\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"roomId\":\"ROOM_ID\"}' \\\n  \"$RC_URL/api/v1/channels.archive\"\n\n# Set channel topic\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"roomId\":\"ROOM_ID\",\"topic\":\"Weekly standup notes\"}' \\\n  \"$RC_URL/api/v1/channels.setTopic\"\n\n# List channel members\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.members?roomId=ROOM_ID&count=50\"\n\n\nFor private groups use groups.*, for DMs use im.*. Same query params.\n\nMessages\n# Send message (simple)\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"channel\":\"#general\",\"text\":\"Hello!\"}' \\\n  \"$RC_URL/api/v1/chat.postMessage\"\n\n\nchannel accepts: #channel-name, @username (DM), or a roomId.\n\n# Send message (advanced — custom _id, alias, avatar)\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"message\":{\"rid\":\"ROOM_ID\",\"msg\":\"Hello from Clawdbot\"}}' \\\n  \"$RC_URL/api/v1/chat.sendMessage\"\n\n# Read recent messages\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.messages?roomId=ROOM_ID&count=20\"\n\n# Edit message\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"roomId\":\"ROOM_ID\",\"msgId\":\"MSG_ID\",\"text\":\"Updated text\"}' \\\n  \"$RC_URL/api/v1/chat.update\"\n\n# Delete message\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"roomId\":\"ROOM_ID\",\"msgId\":\"MSG_ID\"}' \\\n  \"$RC_URL/api/v1/chat.delete\"\n\n# Search messages\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/chat.search?roomId=ROOM_ID&searchText=keyword\"\n\n# React to message (toggle — calling again removes it)\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"messageId\":\"MSG_ID\",\"emoji\":\"thumbsup\"}' \\\n  \"$RC_URL/api/v1/chat.react\"\n\n# Get message (includes reactions in message.reactions field)\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/chat.getMessage?msgId=MSG_ID\"\n\nPins\n# Pin a message\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"messageId\":\"MSG_ID\"}' \\\n  \"$RC_URL/api/v1/chat.pinMessage\"\n\n# Unpin a message\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"messageId\":\"MSG_ID\"}' \\\n  \"$RC_URL/api/v1/chat.unPinMessage\"\n\n# List pinned messages (query is URL-encoded {\"pinned\":true})\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/channels.messages?roomId=ROOM_ID&query=%7B%22pinned%22%3Atrue%7D\"\n\nUsers\n# List users\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/users.list\"\n\n# Get user info (by username or userId)\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/users.info?username=john\"\n\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/users.info?userId=USER_ID\"\n\n# Create user (admin)\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"email\":\"user@example.com\",\"name\":\"John\",\"username\":\"john\",\"password\":\"pass123\"}' \\\n  \"$RC_URL/api/v1/users.create\"\n\n# Set user status\ncurl -s -X POST -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"message\":\"In a meeting\",\"status\":\"busy\"}' \\\n  \"$RC_URL/api/v1/users.setStatus\"\n\nEmoji\n# List custom emoji\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/emoji-custom.list\"\n\nIntegrations\n# List webhooks\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/integrations.list?type=webhook-incoming\"\n\n# Use incoming webhook (no auth needed)\ncurl -s -X POST \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\":\"Alert from external system!\"}' \\\n  \"$RC_URL/hooks/WEBHOOK_ID/WEBHOOK_TOKEN\"\n\nStatistics\n# Server statistics\ncurl -s -H \"X-Auth-Token: $RC_TOKEN\" -H \"X-User-Id: $RC_USER_ID\" \\\n  \"$RC_URL/api/v1/statistics\"\n\nRate Limits\n\nDefault: 20 requests/second per user. Check headers: X-RateLimit-Limit, X-RateLimit-Remaining.\n\nIdeas to try\nReact with white_check_mark to mark completed tasks\nPin key decisions or weekly status updates\nSearch messages for past discussions before asking a question\nCreate project-specific channels and set descriptive topics\nDM users via chat.postMessage with \"channel\": \"@username\"\nUse incoming webhooks for external system alerts without auth\n\nFor full documentation, see Rocket.Chat API Docs."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zenjabba/rocketchat",
    "publisherUrl": "https://clawhub.ai/zenjabba/rocketchat",
    "owner": "zenjabba",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/rocketchat",
    "downloadUrl": "https://openagent3.xyz/downloads/rocketchat",
    "agentUrl": "https://openagent3.xyz/skills/rocketchat/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rocketchat/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rocketchat/agent.md"
  }
}