Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
m1heng avatar

Feishu Reaction

  • 76 installs
  • 4.3k repo stars
  • Updated March 29, 2026
  • m1heng/clawdbot-feishu

Helps with frontend development tasks.

About

feishu-reaction is a Claude Code skill for frontend development. It helps solo builders move faster with AI-assisted development.

  • feishu-reaction
  • Frontend Development
  • AI-coding skill

Feishu Reaction by the numbers

  • 76 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #1,123 of 2,244 Frontend Development skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/m1heng/clawdbot-feishu --skill feishu-reaction

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs76
repo stars4.3k
Last updatedMarch 29, 2026
Repositorym1heng/clawdbot-feishu

What it does

Helps with frontend development tasks.

Files

SKILL.mdMarkdownGitHub ↗

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

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.