A specialized tool for programmatically @mentioning robots within Feishu group chats to trigger automated workflows and inter-agent communication.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install feishu-mention-bot
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install feishu-mention-bot using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Feishu Mention Bot is a powerful integration designed to facilitate communication between users and robots, or even between multiple robots, within the Feishu (Lark) ecosystem. By leveraging Openclaw Skills, developers can automate the process of sending @mentions, ensuring that specific bots receive and respond to notifications in real-time. This skill is essential for building complex, multi-agent workflows where coordination within group chats is required.
This skill addresses a specific technical challenge in Feishu: robot information is not returned via standard group member APIs. By using this bot, you can effectively identify and target robots using their unique identifiers. It supports various message formats, including plain text, rich text (post), and interactive cards, providing flexibility for diverse automation needs across Openclaw Skills environments.
Ensure your Feishu application has the following scopes enabled:
im:message or im:message:send_as_bot — To send messages.im:message.group_at_msg:readonly — To receive and process @mentions.To use this skill effectively, you must retrieve the robot's open_id from the message history:
# 1. Obtain the tenant_access_token
TOKEN=$(curl -s -X POST "https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal" \
-H "Content-Type: application/json" \
-d '{"app_id":"YOUR_APP_ID","app_secret":"YOUR_APP_SECRET"}' | jq -r '.tenant_access_token')
# 2. Extract robot open_ids from chat history mentions
curl -s "https://open.feishu.cn/open-apis/im/v1/messages?container_id_type=chat&container_id=CHAT_ID&page_size=50" \
-H "Authorization: Bearer $TOKEN" | \
jq '[.data.items[]? | select(.mentions != null and .mentions != []) | .mentions[]?] | unique_by(.id)'
The skill utilizes specific identifier patterns and XML-like tags to ensure mentions are rendered correctly by the Feishu client.
| Message Type | Mention Syntax |
|---|---|
| Text Message | <at user_id="ou_xxx">RobotName</at> |
| Rich Text (Post) | <at user_id="ou_xxx">RobotName</at> |
| Interactive Card | <at id=ou_xxx></at> |
Key Requirements:
open_id: Must start with ou_. Application IDs (cli_) are not supported for mentions.chat_id: The target group must contain both the sender and the mentioned robot.Loading
A professional data extraction and analysis tool for Bilibili search results, generating structured reports on trends and engagement.

A powerful local AI image generation skill leveraging ComfyUI for high-speed text-to-image creation and automated grid layouts.

A browser-based automation skill for generating high-quality AI images and videos via Google Gemini and Google Flow without incurring API costs.

A specialized monitoring tool for tracking F5-TTS training progress on multi-GPU mining rigs via non-intrusive SSH commands.

A comprehensive CLI integration for interacting with over 100 cryptocurrency exchanges to fetch market data and execute trades.

An official gateway to search and retrieve live technical documentation from the Microsoft Learn platform.








































