# Send WeCom to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/wecom",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wecom",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package-lock.json",
      "package.json",
      "README.md",
      "skill.json",
      "SKILL.md",
      "tsconfig.json"
    ],
    "downloadMode": "redirect",
    "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### WeCom Skill

Send text and markdown messages to WeCom (企业微信) via incoming webhooks (ENV: WECOM_WEBHOOK_URL).

WeCom is the enterprise version (using in office) of the famous all-in-on IM WeChat envied by Elon Musk.

### Setup

# Navigate to skill directory
cd skills/wecom

# Install dependencies
npm install

# Build TypeScript
npm run build

# Set webhook URL
export WECOM_WEBHOOK_URL="https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY"

### Usage with Claude Code

Add to your ~/.config/claude_code/mcp.json:

{
  "mcpServers": {
    "wecom": {
      "command": "node",
      "args": ["/path/to/clawdbot/skills/wecom/dist/index.js"],
      "env": {
        "WECOM_WEBHOOK_URL": "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY"
      }
    }
  }
}

Then restart Claude Code. You'll have two new tools:

### send_wecom_message

Send a text message to WeCom.

# Simple message
await send_wecom_message({ content: "Hello from OpenClaw!" });

# With mentions
await send_wecom_message({
  content: "Meeting starting now",
  mentioned_list: ["zhangsan", "lisi"]
});

### send_wecom_markdown

Send a markdown message (WeCom flavor).

await send_wecom_markdown({
  content: \`# Daily Report
  
**Completed:**
- Task A
- Task B

**Pending:**
- Task C

<@zhangsan>\`
});

### WeCom Markdown Tags

WeCom supports:

FeatureSyntaxBold**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>

### Environment Variables

VariableRequiredDefaultDescriptionWECOM_WEBHOOK_URLYes-WeCom webhook URLWECOM_TIMEOUT_MSNo10000Request timeout (ms)

### How To

Get WECOM_WEBHOOK_URL following steps here, and envolve it as a bot into a group chat:

(Tip: You should get the WECOM_WEBHOOK_URL entirely as a URL, NOT just a KEY )

### Reference

Message Receiving and Sending in a Group Chat

Download WeCom Apps
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: qidu
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/wecom)
- [Send to Agent page](https://openagent3.xyz/skills/wecom/agent)
- [JSON manifest](https://openagent3.xyz/skills/wecom/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/wecom/agent.md)
- [Download page](https://openagent3.xyz/downloads/wecom)