feishu-reaction

Feishu message emoji reactions. Activate when user mentions emoji, reaction, thumbsup, like, or responding to messages with emoji.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "feishu-reaction" with this command: npx skills add m1heng/clawdbot-feishu/m1heng-clawdbot-feishu-feishu-reaction

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:

{
  "action": "list",
  "message_id": "om_xxx",
  "emoji_type": "THUMBSUP"
}

Returns:

{
  "ok": true,
  "action": "list",
  "message_id": "om_xxx",
  "emoji_type_filter": "THUMBSUP",
  "total": 2,
  "reactions": [
    {
      "reaction_id": "ZCaCIjUBVVWSrm5L-3ZTw",
      "emoji_type": "THUMBSUP",
      "operator_type": "user",
      "operator_id": "ou_xxx"
    }
  ]
}

Parameters

ParameterRequiredDescription
actionYesadd, remove, or list
message_idYesFeishu message ID (e.g., om_xxx)
emoji_typeadd: Yes, list: OptionalEmoji type (e.g., THUMBSUP, HEART, SMILE)
reaction_idremove: YesReaction ID from add or list results

Common Emoji Types

EmojiType
THUMBSUPTHUMBSDOWN
FIRECLAP
PARTYPRAY
SURPRISEDLAUGHING

Configuration

channels:
  feishu:
    tools:
      reaction: true  # default: true

Permissions

  • im:message.reactions:write_only — add and remove reactions
  • im:message.reactions:read — list reactions on messages

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

feishu-doc

No summary provided by upstream source.

Repository SourceNeeds Review
659-m1heng
Automation

feishu-drive

No summary provided by upstream source.

Repository SourceNeeds Review
389-m1heng
Automation

feishu-wiki

No summary provided by upstream source.

Repository SourceNeeds Review
254-m1heng
Automation

feishu-perm

No summary provided by upstream source.

Repository SourceNeeds Review
144-m1heng