Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

WeCom Quick Notify

Fire off a one-off plain-text message to a WeCom (Enterprise WeChat) group bot in a single command.

AutomationBeginner1,323212AI 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_url from ~/.config/setup-notifications-via-wecom/config.json
  • Unsets local proxy env vars so Tencent endpoints are reached directly
  • Reports success or the exact WeCom errcode on 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

  1. Deploy confirmation — /notify-wecom Service is live 🚀
  2. Failure alert — /notify-wecom Alert: build failed, please check logs
  3. Nightly job summary — /notify-wecom Sync complete, 0 missing, 0 lagging

· · · Install guide · · ·

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 /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.

  1. Open a terminal and create the skills folder: mkdir -p ~/.claude/skills
  2. Clone the repo: git clone https://github.com/daymade/claude-code-skills.git /tmp/claude-code-skills
  3. Copy the skill: cp -r /tmp/claude-code-skills/notify-wecom ~/.claude/skills/
  4. (Recommended) Also copy the companion: cp -r /tmp/claude-code-skills/setup-notifications-via-wecom ~/.claude/skills/
  5. In your WeCom group chat, 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 test with /notify-wecom hello from Claude.