feishu-urgent

feishu-urgent is a skill for Claude Code, Codex from m1heng/clawdbot-feishu. It costs 29 tokens per session (826 once invoked), scanned A, original, MIT.

A Feishu notification tool for sending an urgent alert, also called a buzz, about a message that has already been sent.

In plain words
What is it for?
Use it to send an in-app alert, text message, or phone call to specified Feishu recipients, using the original message’s ID.
Why use it?
It escalates an important message when ordinary delivery may not be enough to get a recipient’s attention.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to send an in-app alert, text message, or phone call to specified Feishu recipients, using the original message’s ID.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/m1heng/clawdbot-feishu/feishu-urgent
About the project

clawd-feishu is a channel plugin that connects OpenClaw to Feishu/Lark, a collaboration and messaging platform. OpenClaw users use it to interact with the agent through Feishu or Lark.

m1heng/clawdbot-feishu · 4,243 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add m1heng/clawdbot-feishu --skill feishu-urgent
Clone the repo
git clone --depth 1 https://github.com/m1heng/clawdbot-feishu

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for feishu-urgent

README.md
[![agentmods](https://agentmods.dev/badge/skills/m1heng/clawdbot-feishu/feishu-urgent/github.svg)](https://agentmods.dev/skills/m1heng/clawdbot-feishu/feishu-urgent)
Your own site
<a href="https://agentmods.dev/skills/m1heng/clawdbot-feishu/feishu-urgent"><img src="https://agentmods.dev/badge/skills/m1heng/clawdbot-feishu/feishu-urgent/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for feishu-urgent

Your own site · 80×15
<a href="https://agentmods.dev/skills/m1heng/clawdbot-feishu/feishu-urgent"><img src="https://agentmods.dev/badge/skills/m1heng/clawdbot-feishu/feishu-urgent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 826 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.00826
Opus 5 $0.00015 $0.00413
Sonnet 5 $0.00006 $0.00165
Haiku 4.5 $0.00003 $0.00083

Measured 13d ago against content hash 5610bbfad930, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

feishu-urgent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/feishu-urgent/SKILL.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Feishu Urgent Tool

Single tool feishu_urgent for sending urgent (buzz) notifications to recipients for an already-sent message.

Overview

Urgent notifications (also called "buzz" in Feishu) send a strong push notification to specified recipients. Use this to escalate important messages that require immediate attention.

Important: The message must already be sent before sending an urgent notification. You need the message_id from a previously sent message.

Urgency Types

Type Description Cost
app In-app buzz notification (popup + sound) Free
sms SMS push to recipient's phone May incur cost
phone Voice call to recipient's phone May incur cost

Send App Urgent (Default)

{
  "message_id": "om_xxx",
  "user_ids": ["ou_xxx"],
  "urgent_type": "app"
}

Send SMS Urgent

{
  "message_id": "om_xxx",
  "user_ids": ["ou_xxx"],
  "urgent_type": "sms"
}

Send Phone Call Urgent

{
  "message_id": "om_xxx",
  "user_ids": ["ou_xxx"],
  "urgent_type": "phone"
}

Multiple Recipients

{
  "message_id": "om_xxx",
  "user_ids": ["ou_xxx", "ou_yyy", "ou_zzz"],
  "urgent_type": "app"
}

Parameters

Parameter Required Description
message_id Yes Message ID to send urgent notification for (e.g., om_xxx). The message must already be sent.
user_ids Yes List of open_id values to buzz. Minimum 1 recipient. Recipients must be members of the chat where the message was sent.
urgent_type No Urgency delivery method: app (default), sms, or phone.

Response

{
  "ok": true,
  "message_id": "om_xxx",
  "urgent_type": "app",
  "invalid_user_list": []
}
  • invalid_user_list: List of user IDs that could not receive the urgent notification (e.g., not in the chat, or invalid ID).

Configuration

channels:
  feishu:
    tools:
      urgent: true  # default: true

Read the full file on GitHub · 108 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 108 lines · 29 tokens per session scan A 5610bbfad930

Subscribe to this mod's changes

feishu-urgent is a skill published in the GitHub repository m1heng/clawdbot-feishu (4,243 stars, last pushed 5mo ago), licensed MIT. It adds 29 tokens to every session and 826 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories