Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

One-off WeCom Notifier

Instantly sends a single plain-text message to a WeCom (Enterprise WeChat) group bot via a stored webhook.

AutomationBeginner1,323212AI score 8/10Last updated: Aug 8, 2026

What it does

  • Reads webhook_url from ~/.config/setup-notifications-via-wecom/config.json and posts your message to the WeCom group bot immediately.
  • Unsets local proxy env vars so Tencent endpoints are reached directly.
  • Reports success, or prints the exact WeCom errcode on failure.
  • If the config file is missing, it prints the setup command and stops instead of failing silently.

Who it's for

  • Dev/ops teams on WeCom (Enterprise WeChat) who want deploy, backup, or alert pings in a group chat.
  • Anyone who wants a chat notification when a long Claude Code task finishes.
  • One-shot sends where a reusable template or setup workflow would be overkill.

Usage examples

  • /notify-wecom Service deployed successfully 🚀 → instant group ping.
  • /notify-wecom Alert: build failed, please check → pushes CI failures to the team.
  • Multi-line: wrap the text in quotes (plain text only, 4096-byte UTF-8 limit, no cards/images/@mentions).

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/notify-wecom/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the notify-wecom folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/notify-wecom/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/notify-wecom ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/daymade/claude-code-skills.git
  3. Copy the skill in: mkdir -p ~/.claude/skills && cp -r claude-code-skills/notify-wecom ~/.claude/skills/
  4. Recommended: also copy the companion skill: cp -r claude-code-skills/setup-notifications-via-wecom ~/.claude/skills/
  5. In your WeCom group, add a "Group Bot" and copy its webhook URL.
  6. Create the config: mkdir -p ~/.config/setup-notifications-via-wecom, then save config.json containing {"webhook_url": "YOUR_URL"}.
  7. Restart Claude Code and run /notify-wecom test to confirm delivery.