WeCom Quick Notify
Fire off a one-off plain-text message to a WeCom (Enterprise WeChat) group bot in a single command.
AutomationBeginner★ 1,323⑂ 212AI score 7/10Last updated: Aug 8, 2026
What it does
Run /notify-wecom [message] and the text is pushed straight to your WeCom group bot webhook — no confirmation step, no template setup.
- Reads
webhook_urlfrom~/.config/setup-notifications-via-wecom/config.json - Unsets local proxy env vars so Tencent endpoints are reached directly
- Reports success or the exact WeCom
errcodeon failure - Stops with setup instructions if the config file is missing
Who it's for
- Developers whose team uses WeCom as the primary work chat
- Anyone wanting a ping when long-running builds, deploys, or backups finish
- Users who need throwaway alerts without any templating layer
Examples
- Deploy confirmation —
/notify-wecom Service is live 🚀 - Failure alert —
/notify-wecom Alert: build failed, please check logs - Nightly job summary —
/notify-wecom Sync complete, 0 missing, 0 lagging
· · · Install guide · · ·
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 /tmp/claude-code-skills && cp -r /tmp/claude-code-skills/notify-wecom ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and create the skills folder:
mkdir -p ~/.claude/skills - Clone the repo:
git clone https://github.com/daymade/claude-code-skills.git /tmp/claude-code-skills - Copy the skill:
cp -r /tmp/claude-code-skills/notify-wecom ~/.claude/skills/ - (Recommended) Also copy the companion:
cp -r /tmp/claude-code-skills/setup-notifications-via-wecom ~/.claude/skills/ - In your WeCom group chat, 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 test with
/notify-wecom hello from Claude.
View source on GitHub ↗License: MIT