feishu-urgent
Feishu urgent notification tool. Activate when user wants to send urgent messages or notifications.
Install / Use
npx skills add OPPO-Mente-Lab/X-OmniClawInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
CommunicationSupported Platforms
Tags
Skill content
View source on GitHubname: feishu-urgent description: | Feishu urgent notification tool. Activate when user wants to send urgent messages or notifications.
Feishu Urgent Tool
Tool feishu_urgent for sending urgent notifications.
Actions
Send Urgent Message
{
"action": "send",
"user_id": "ou_xxx",
"title": "Urgent: Production Issue",
"content": "Service is down, please check immediately!"
}
Sends an urgent notification to a user with push notification.
Send Urgent to Multiple Users
{
"action": "send_batch",
"user_ids": ["ou_xxx", "ou_yyy"],
"title": "Critical Alert",
"content": "System maintenance starting in 5 minutes"
}
Sends urgent notifications to multiple users.
Notification Features
- Push Notification: Sends system push notification to user's devices
- SMS Fallback: Can trigger SMS if user is offline (requires config)
- Priority Display: Shows as urgent in Feishu app
- Sound Alert: Plays notification sound even in DND mode
X-OmniClaw Implementation
Tool Class: FeishuUrgentTools.kt
Available Tools:
feishu_urgent_send- Send urgent message to userfeishu_urgent_batch- Send urgent message to multiple users
Example Usage:
// Send urgent notification
val result = feishuUrgentTools.sendUrgent(
userId = "ou_xxx",
title = "Production Alert",
content = "Database connection failed!"
)
// Send to multiple users
val result = feishuUrgentTools.sendUrgentBatch(
userIds = listOf("ou_xxx", "ou_yyy"),
title = "System Maintenance",
content = "Starting in 5 minutes"
)
Use Cases
- Production Alerts: Notify on-call engineers
- Critical Issues: Alert team about urgent problems
- Time-Sensitive Notifications: Meeting reminders, deadlines
- Emergency Broadcasts: Company-wide urgent announcements
Best Practices
- Use Sparingly: Only for truly urgent matters
- Clear Titles: Make urgency clear in title
- Action Items: Include what needs to be done
- Avoid Spam: Don't overuse to maintain effectiveness
Permissions
Required: im:message:send_as_bot, im:message
Notes
- Rate Limiting: Urgent notifications may have stricter rate limits
- User Settings: Users can configure urgent notification preferences
- Do Not Disturb: Urgent messages can bypass DND settings (use responsibly)
Related Skills
AstrBot
40.8kAI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨
cmux
27.3kOpen source Ghostty-based macOS terminal with vertical tabs and notifications for AI coding agents. Built for multitasking, organization, and programmability.
lemonade
5.8kLemonade helps users discover and run local AI apps by serving optimized LLMs right from their own GPUs and NPUs. Join our discord: https://discord.gg/5xXzkMu8Zk
claude-code
3.3kClaude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.
Security Score
Audited on May 22, 2026
