feishu-reaction
This tool manages emoji reactions within Feishu conversations, letting you add reactions like thumbsup or heart to any message, remove them when needed, and view all reactions on a thread. It integrates directly into Feishu workflows and supports a range of common emoji types.
feishu-reaction adds, removes, and lists emoji reactions on Feishu messages.
AI-generated summary based on this skill's SKILL.md
Install
m1heng/clawdbot-feishu/feishu-reaction · repository language: TypeScript
git clone https://github.com/m1heng/clawdbot-feishu
cp -r clawdbot-feishu/skills/feishu-reaction ~/.claude/skills/feishu-reactionFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
How do I add emoji reactions in feishu?
feishu-reaction lets you add emoji reactions directly to Feishu messages. Simply select the message you want to react to, choose your emoji (such as thumbsup, heart, or smile), and the reaction will be attached. The tool integrates seamlessly into your Feishu workflow, making quick feedback and engagement instant.
Can I remove emoji reaction feishu?
Yes, feishu-reaction supports removing reactions you've added. Once a reaction is no longer needed, you can delete it from the message. This gives you full control over managing your reactions and keeping conversations clean and organized.
What emoji types does feishu-reaction support?
feishu-reaction supports a range of common emoji types including thumbsup, thumbsdown, heart, and smile. You can also list and filter reactions by emoji type to see which emojis have been used on a message, helping you quickly identify the feedback or engagement level.
Can feishu-reaction react to previous messages?
Yes, feishu-reaction allows you to react to messages anywhere in your conversation history, not just new ones. This enables you to add feedback or engagement markers to earlier messages in the thread whenever you need to.
How does feishu-reaction enable team engagement?
feishu-reaction streamlines quick feedback by letting team members add reactions like thumbsup or heart without typing full responses. This lightweight interaction method speeds up communication, encourages participation, and makes it easy to gauge sentiment or agreement on messages within Feishu.
Is feishu-reaction open source?
Yes, feishu-reaction is released under the MIT license, making it open source and freely available for use and modification.
SKILL.md
rendered from the published skill — quoted content, verbatim
Feishu Reaction Tool
Single tool feishu_reaction for adding, removing, and listing emoji reactions on Feishu messages.
Workflow: Reacting to Previous Messages
To react to a message other than the current one, first use feishu_message with action: "list" to fetch recent messages and find the target message_id, then use feishu_reaction with that message_id.
Actions
Add Reaction
{
"action": "add",
"message_id": "om_xxx",
"emoji_type": "THUMBSUP"
}
Returns:
{
"ok": true,
"action": "add",
"message_id": "om_xxx",
"emoji_type": "THUMBSUP",
"reaction_id": "ZCaCIjUBVVWSrm5L-3ZTw"
}
Remove Reaction
{
"action": "remove",
"message_id": "om_xxx",
"reaction_id": "ZCaCIjUBVVWSrm5L-3ZTw"
}
List Reactions
List all reactions on a message:
{
"action": "list",
"message_id": "om_xxx"
}
Filter by emoji type:
```json { "action": "list", "message_id": "om_xxx", "emoji_type":
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 1 file
skills/feishu-reaction/SKILL.md