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

Setup Notifications via WeCom

Configures a WeCom (Enterprise WeChat) group-bot webhook and sends clear, well-structured status, backup, and alert notifications.

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

What it does

  • Stores your WeCom group bot webhook URL in ~/.config/setup-notifications-via-wecom/config.json with 600 permissions, then verifies connectivity with a test message.
  • Sends single-line or file-based multiline messages via the bundled scripts/send_wecom.py, automatically stripping proxy env vars (env -u ...) as required for Tencent endpoints.
  • Enforces eight message-quality rules: headline first, separate state from delta, define every number, drop noise like commit hashes, include verification metrics, and end with a next action.
  • Ships three templates: backup/sync completion, urgent alert (P1–P5), and routine status update.

Who it's for

  • Developers and operators whose team uses WeCom and who want cron, backup, or service alerts delivered there.
  • Anyone whose current notifications are ambiguous ("were 1075 sessions synced, or just 13?").
  • Teams standardizing the format of technical notifications.

Examples

  1. "Set up my WeCom webhook" → creates the config file, locks permissions, sends a test ping.
  2. "Have my backup script notify WeCom when it finishes" → extracts counts from the script output and posts the backup-complete template (delta 13, total 1075, 0 missing).
  3. "Send an alert: API error rate above 10%" → fills the symptom-based alert template with impact, severity, actions taken, and next step.

· · · 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/setup-notifications-via-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 setup-notifications-via-wecom folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/setup-notifications-via-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/ccs && mkdir -p ~/.claude/skills && cp -r /tmp/ccs/setup-notifications-via-wecom ~/.claude/skills/

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

  1. Clone the repository: git clone https://github.com/daymade/claude-code-skills.git
  2. Copy the skill folder: mkdir -p ~/.claude/skills && cp -r claude-code-skills/setup-notifications-via-wecom ~/.claude/skills/
  3. In your WeCom group, add a group bot and copy its webhook URL.
  4. Create the config: mkdir -p ~/.config/setup-notifications-via-wecom then echo '{"webhook_url": "YOUR_URL"}' > ~/.config/setup-notifications-via-wecom/config.json && chmod 600 ~/.config/setup-notifications-via-wecom/config.json
  5. Install uv if needed: curl -LsSf https://astral.sh/uv/install.sh | sh (or use any Python with requests).
  6. Restart Claude Code and ask it to "send a WeCom test notification" to confirm the message reaches your group.