{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wecom",
    "name": "WeCom",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/qidu/wecom",
    "canonicalUrl": "https://clawhub.ai/qidu/wecom",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/wecom",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wecom",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package-lock.json",
      "package.json",
      "README.md",
      "skill.json",
      "SKILL.md",
      "tsconfig.json"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "wecom",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T20:54:00.227Z",
      "expiresAt": "2026-05-17T20:54:00.227Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wecom",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wecom",
        "contentDisposition": "attachment; filename=\"wecom-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "wecom"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/wecom"
    },
    "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/wecom",
    "agentPageUrl": "https://openagent3.xyz/skills/wecom/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wecom/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wecom/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "WeCom Skill",
        "body": "Send text and markdown messages to WeCom (企业微信) via incoming webhooks (ENV: WECOM_WEBHOOK_URL).\n\nWeCom is the enterprise version (using in office) of the famous all-in-on IM WeChat envied by Elon Musk."
      },
      {
        "title": "Setup",
        "body": "# Navigate to skill directory\ncd skills/wecom\n\n# Install dependencies\nnpm install\n\n# Build TypeScript\nnpm run build\n\n# Set webhook URL\nexport WECOM_WEBHOOK_URL=\"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY\""
      },
      {
        "title": "Usage with Claude Code",
        "body": "Add to your ~/.config/claude_code/mcp.json:\n\n{\n  \"mcpServers\": {\n    \"wecom\": {\n      \"command\": \"node\",\n      \"args\": [\"/path/to/clawdbot/skills/wecom/dist/index.js\"],\n      \"env\": {\n        \"WECOM_WEBHOOK_URL\": \"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY\"\n      }\n    }\n  }\n}\n\nThen restart Claude Code. You'll have two new tools:"
      },
      {
        "title": "send_wecom_message",
        "body": "Send a text message to WeCom.\n\n# Simple message\nawait send_wecom_message({ content: \"Hello from OpenClaw!\" });\n\n# With mentions\nawait send_wecom_message({\n  content: \"Meeting starting now\",\n  mentioned_list: [\"zhangsan\", \"lisi\"]\n});"
      },
      {
        "title": "send_wecom_markdown",
        "body": "Send a markdown message (WeCom flavor).\n\nawait send_wecom_markdown({\n  content: `# Daily Report\n  \n**Completed:**\n- Task A\n- Task B\n\n**Pending:**\n- Task C\n\n<@zhangsan>`\n});"
      },
      {
        "title": "WeCom Markdown Tags",
        "body": "WeCom supports:\n\nFeatureSyntaxBold**text** or <strong>text</strong>Italic*text* or <i>text</i>Strikethrough~~text~~ or <s>text</s>Mention<@userid>Link<a href=\"url\">text</a>Image<img src=\"url\" />Font size<font size=\"5\">text</font>Color<font color=\"#FF0000\">text</font>"
      },
      {
        "title": "Environment Variables",
        "body": "VariableRequiredDefaultDescriptionWECOM_WEBHOOK_URLYes-WeCom webhook URLWECOM_TIMEOUT_MSNo10000Request timeout (ms)"
      },
      {
        "title": "How To",
        "body": "Get WECOM_WEBHOOK_URL following steps here, and envolve it as a bot into a group chat:\n\n(Tip: You should get the WECOM_WEBHOOK_URL entirely as a URL, NOT just a KEY )"
      },
      {
        "title": "Reference",
        "body": "Message Receiving and Sending in a Group Chat\n\nDownload WeCom Apps"
      }
    ],
    "body": "WeCom Skill\n\nSend text and markdown messages to WeCom (企业微信) via incoming webhooks (ENV: WECOM_WEBHOOK_URL).\n\nWeCom is the enterprise version (using in office) of the famous all-in-on IM WeChat envied by Elon Musk.\n\nSetup\n# Navigate to skill directory\ncd skills/wecom\n\n# Install dependencies\nnpm install\n\n# Build TypeScript\nnpm run build\n\n# Set webhook URL\nexport WECOM_WEBHOOK_URL=\"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY\"\n\nUsage with Claude Code\n\nAdd to your ~/.config/claude_code/mcp.json:\n\n{\n  \"mcpServers\": {\n    \"wecom\": {\n      \"command\": \"node\",\n      \"args\": [\"/path/to/clawdbot/skills/wecom/dist/index.js\"],\n      \"env\": {\n        \"WECOM_WEBHOOK_URL\": \"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY\"\n      }\n    }\n  }\n}\n\n\nThen restart Claude Code. You'll have two new tools:\n\nTools\nsend_wecom_message\n\nSend a text message to WeCom.\n\n# Simple message\nawait send_wecom_message({ content: \"Hello from OpenClaw!\" });\n\n# With mentions\nawait send_wecom_message({\n  content: \"Meeting starting now\",\n  mentioned_list: [\"zhangsan\", \"lisi\"]\n});\n\nsend_wecom_markdown\n\nSend a markdown message (WeCom flavor).\n\nawait send_wecom_markdown({\n  content: `# Daily Report\n  \n**Completed:**\n- Task A\n- Task B\n\n**Pending:**\n- Task C\n\n<@zhangsan>`\n});\n\nWeCom Markdown Tags\n\nWeCom supports:\n\nFeature\tSyntax\nBold\t**text** or <strong>text</strong>\nItalic\t*text* or <i>text</i>\nStrikethrough\t~~text~~ or <s>text</s>\nMention\t<@userid>\nLink\t<a href=\"url\">text</a>\nImage\t<img src=\"url\" />\nFont size\t<font size=\"5\">text</font>\nColor\t<font color=\"#FF0000\">text</font>\nEnvironment Variables\nVariable\tRequired\tDefault\tDescription\nWECOM_WEBHOOK_URL\tYes\t-\tWeCom webhook URL\nWECOM_TIMEOUT_MS\tNo\t10000\tRequest timeout (ms)\nHow To\n\nGet WECOM_WEBHOOK_URL following steps here, and envolve it as a bot into a group chat:\n\n(Tip: You should get the WECOM_WEBHOOK_URL entirely as a URL, NOT just a KEY )\n\nSTEP 1\n\nSTEP 2\n\nSTEP 3\n\nSTEP 4\n\nReference\n\nMessage Receiving and Sending in a Group Chat\n\nDownload WeCom Apps"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/qidu/wecom",
    "publisherUrl": "https://clawhub.ai/qidu/wecom",
    "owner": "qidu",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wecom",
    "downloadUrl": "https://openagent3.xyz/downloads/wecom",
    "agentUrl": "https://openagent3.xyz/skills/wecom/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wecom/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wecom/agent.md"
  }
}