Agent skill

feishu-notify

Send notifications to Feishu/Lark. Internal utility used by other skills, or manually via /feishu-notify. Supports push-only (webhook) and interactive (bidirectional) modes. Use when user says \"发飞书\", \"notify feishu\", or other skills need to send status updates.

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-coderead-onlyNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill feishu-notify --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Allowed tools: Bash(curl*)Bash(cat*)ReadGlob
Path: skills/42-wanshuiyin-ARIS/skills/feishu-notify/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Feishu/Lark Notification Send a notification: **$ARGUMENTS** ## Overview This skill provides Feishu/Lark integration for ARIS. It is designed as an **internal utility** — other skills call it at key events (experiment done, review scored, checkpoint waiting). It can also be invoked manually. **Zero-impact guarantee**: If no `feishu.json` config exists, this skill does nothing and returns silently. All existing workflows are completely unaffected. ## Configuration The skill reads `~/.claude/feishu.json`. If this file does not exist, **all Feishu functionality is disabled** — skills behave exactly as before. ### Config Format ```json { "mode": "push", "webhook_url": "https://open.feishu.cn/open-apis/bot/v2/hook/YOUR_WEBHOOK_ID", "interactive": { "bridge_url": "http://localhost:5000", "timeout_seconds": 300 } } ``` ### Modes | Mode | `"mode"` value | What it does | Requires | |------|----------------|--------------|----------| | **Off** | `"off"` or file absent | Nothing. Pure CLI as-is | Nothing | | **Push only** | `"push"` | Send webhook notifications at key events. Mobile push, no reply | Feishu bot webhook URL | | **Interactive** | `"interactive"` | Full bidirectional. Approve/r

What's inside
Steps it walks through
  1. Overview
  2. Configuration
  3. Config Format
  4. Modes
  5. Workflow
  6. Step 1: Read Config
  7. Step 2: Push Notification (webhook)
  8. Step 3: Interactive Notification (bidirectional)
  9. Step 4: Verify Delivery
  10. Helper Function (for other skills)
  11. Event Catalog
  12. Key Rules
Commands it runs
cat ~/.claude/feishu.json 2>/dev/null
curl -s -X POST "$WEBHOOK_URL" \
curl -s -X POST "$BRIDGE_URL/send" \
curl -s "$BRIDGE_URL/poll?timeout=$TIMEOUT_SECONDS"
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the feishu-notify skill do?

Send notifications to Feishu/Lark. Internal utility used by other skills, or manually via /feishu-notify. Supports push-only (webhook) and interactive (bidirectional) modes. Use when user says \"发飞书\", \"notify feishu\", or other skills need to send status updates.

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill feishu-notify --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going