One-off WeCom Notifier
Instantly sends a single plain-text message to a WeCom (Enterprise WeChat) group bot via a stored webhook.
AutomationBeginner★ 1,323⑂ 212AI score 8/10Last updated: Aug 8, 2026
What it does
- Reads
webhook_urlfrom~/.config/setup-notifications-via-wecom/config.jsonand 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
errcodeon 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal.
- Clone the repo:
git clone https://github.com/daymade/claude-code-skills.git - Copy the skill in:
mkdir -p ~/.claude/skills && cp -r claude-code-skills/notify-wecom ~/.claude/skills/ - Recommended: also copy the companion skill:
cp -r claude-code-skills/setup-notifications-via-wecom ~/.claude/skills/ - In your WeCom group, add a "Group Bot" and copy its webhook URL.
- Create the config:
mkdir -p ~/.config/setup-notifications-via-wecom, then saveconfig.jsoncontaining{"webhook_url": "YOUR_URL"}. - Restart Claude Code and run
/notify-wecom testto confirm delivery.
View source on GitHub ↗License: MIT