{
  "schemaVersion": "1.0",
  "item": {
    "slug": "slack",
    "name": "Slack",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/steipete/slack",
    "canonicalUrl": "https://clawhub.ai/steipete/slack",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/slack",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=slack",
    "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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/slack"
    },
    "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/slack",
    "agentPageUrl": "https://openagent3.xyz/skills/slack/agent",
    "manifestUrl": "https://openagent3.xyz/skills/slack/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/slack/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": "Overview",
        "body": "Use slack to react, manage pins, send/edit/delete messages, and fetch member info. The tool uses the bot token configured for Clawdbot."
      },
      {
        "title": "Inputs to collect",
        "body": "channelId and messageId (Slack message timestamp, e.g. 1712023032.1234).\nFor reactions, an emoji (Unicode or :name:).\nFor message sends, a to target (channel:<id> or user:<id>) and content.\n\nMessage context lines include slack message id and channel fields you can reuse directly."
      },
      {
        "title": "Action groups",
        "body": "Action groupDefaultNotesreactionsenabledReact + list reactionsmessagesenabledRead/send/edit/deletepinsenabledPin/unpin/listmemberInfoenabledMember infoemojiListenabledCustom emoji list"
      },
      {
        "title": "React to a message",
        "body": "{\n  \"action\": \"react\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\",\n  \"emoji\": \"✅\"\n}"
      },
      {
        "title": "List reactions",
        "body": "{\n  \"action\": \"reactions\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\"\n}"
      },
      {
        "title": "Send a message",
        "body": "{\n  \"action\": \"sendMessage\",\n  \"to\": \"channel:C123\",\n  \"content\": \"Hello from Clawdbot\"\n}"
      },
      {
        "title": "Edit a message",
        "body": "{\n  \"action\": \"editMessage\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\",\n  \"content\": \"Updated text\"\n}"
      },
      {
        "title": "Delete a message",
        "body": "{\n  \"action\": \"deleteMessage\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\"\n}"
      },
      {
        "title": "Read recent messages",
        "body": "{\n  \"action\": \"readMessages\",\n  \"channelId\": \"C123\",\n  \"limit\": 20\n}"
      },
      {
        "title": "Pin a message",
        "body": "{\n  \"action\": \"pinMessage\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\"\n}"
      },
      {
        "title": "Unpin a message",
        "body": "{\n  \"action\": \"unpinMessage\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\"\n}"
      },
      {
        "title": "List pinned items",
        "body": "{\n  \"action\": \"listPins\",\n  \"channelId\": \"C123\"\n}"
      },
      {
        "title": "Member info",
        "body": "{\n  \"action\": \"memberInfo\",\n  \"userId\": \"U123\"\n}"
      },
      {
        "title": "Emoji list",
        "body": "{\n  \"action\": \"emojiList\"\n}"
      },
      {
        "title": "Ideas to try",
        "body": "React with ✅ to mark completed tasks.\nPin key decisions or weekly status updates."
      }
    ],
    "body": "Slack Actions\nOverview\n\nUse slack to react, manage pins, send/edit/delete messages, and fetch member info. The tool uses the bot token configured for Clawdbot.\n\nInputs to collect\nchannelId and messageId (Slack message timestamp, e.g. 1712023032.1234).\nFor reactions, an emoji (Unicode or :name:).\nFor message sends, a to target (channel:<id> or user:<id>) and content.\n\nMessage context lines include slack message id and channel fields you can reuse directly.\n\nActions\nAction groups\nAction group\tDefault\tNotes\nreactions\tenabled\tReact + list reactions\nmessages\tenabled\tRead/send/edit/delete\npins\tenabled\tPin/unpin/list\nmemberInfo\tenabled\tMember info\nemojiList\tenabled\tCustom emoji list\nReact to a message\n{\n  \"action\": \"react\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\",\n  \"emoji\": \"✅\"\n}\n\nList reactions\n{\n  \"action\": \"reactions\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\"\n}\n\nSend a message\n{\n  \"action\": \"sendMessage\",\n  \"to\": \"channel:C123\",\n  \"content\": \"Hello from Clawdbot\"\n}\n\nEdit a message\n{\n  \"action\": \"editMessage\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\",\n  \"content\": \"Updated text\"\n}\n\nDelete a message\n{\n  \"action\": \"deleteMessage\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\"\n}\n\nRead recent messages\n{\n  \"action\": \"readMessages\",\n  \"channelId\": \"C123\",\n  \"limit\": 20\n}\n\nPin a message\n{\n  \"action\": \"pinMessage\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\"\n}\n\nUnpin a message\n{\n  \"action\": \"unpinMessage\",\n  \"channelId\": \"C123\",\n  \"messageId\": \"1712023032.1234\"\n}\n\nList pinned items\n{\n  \"action\": \"listPins\",\n  \"channelId\": \"C123\"\n}\n\nMember info\n{\n  \"action\": \"memberInfo\",\n  \"userId\": \"U123\"\n}\n\nEmoji list\n{\n  \"action\": \"emojiList\"\n}\n\nIdeas to try\nReact with ✅ to mark completed tasks.\nPin key decisions or weekly status updates."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/steipete/slack",
    "publisherUrl": "https://clawhub.ai/steipete/slack",
    "owner": "steipete",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/slack",
    "downloadUrl": "https://openagent3.xyz/downloads/slack",
    "agentUrl": "https://openagent3.xyz/skills/slack/agent",
    "manifestUrl": "https://openagent3.xyz/skills/slack/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/slack/agent.md"
  }
}