Skip to main content
RapidDev - Software Development Agency

How to Install and Use Feishu Evolver Wrapper in OpenClaw

To use Feishu Evolver Wrapper in OpenClaw, run `clawhub install feishu-evolver-wrapper`, create a Feishu app with event subscription permissions at open.feishu.cn, configure your App ID, App Secret, and Evolver webhook settings in OpenClaw, and unlock advanced event-driven Feishu automation: multi-step bot workflows, message event triggers, and complex interaction patterns far beyond basic send/receive messaging.

What you'll learn

  • How to install the feishu-evolver-wrapper ClawHub skill and understand how it extends feishu-bridge
  • How to configure Feishu event subscriptions for OpenClaw-triggered automation
  • How to set up Evolver middleware settings for event-driven workflow handling
  • How to build multi-step bot interactions and conversation flows through OpenClaw prompts
  • When to use feishu-evolver-wrapper versus the simpler feishu-bridge skill
Book a free consultation
4.9Clutch rating
600+Happy partners
17+Countries served
190+Team members
Beginner13 min read20 minutesPlatform ToolsMarch 2026RapidDev Engineering Team
TL;DR

To use Feishu Evolver Wrapper in OpenClaw, run `clawhub install feishu-evolver-wrapper`, create a Feishu app with event subscription permissions at open.feishu.cn, configure your App ID, App Secret, and Evolver webhook settings in OpenClaw, and unlock advanced event-driven Feishu automation: multi-step bot workflows, message event triggers, and complex interaction patterns far beyond basic send/receive messaging.

Advanced Feishu Automation with Evolver Middleware in OpenClaw

The feishu-bridge skill handles basic Feishu messaging — send a message here, receive one there. For many teams, that is enough. But when your automation needs become more complex — reacting to incoming messages, triggering workflows on specific events, managing multi-turn bot conversations, or chaining Feishu interactions with other tools — you need something more capable. That is what feishu-evolver-wrapper provides.

Evolver middleware sits between OpenClaw and the Feishu API, adding a stateful event layer. Instead of OpenClaw simply calling the Feishu API for one-shot operations, the Evolver layer subscribes to Feishu events (message received, user joined a group, reaction added, card button clicked) and fires corresponding OpenClaw workflows. This creates a genuine event-driven architecture: your Feishu workspace becomes an interactive surface that OpenClaw listens to and responds to intelligently, not just a passive notification target.

The practical difference from feishu-bridge is substantial. With feishu-bridge, you initiate all actions from OpenClaw chat. With feishu-evolver-wrapper, Feishu events can initiate OpenClaw actions — turning OpenClaw into a responsive bot that members of your Feishu workspace interact with on their own terms. Teams using Feishu for internal operations, customer support routing, or development workflows will find the Evolver layer essential for building genuinely interactive experiences rather than one-directional notification streams.

Integration method

ClawHub Skill

Feishu Evolver Wrapper runs inside OpenClaw as a native ClawHub skill. It extends the base Feishu API connection with Evolver middleware, which adds event subscription handling, workflow state management, and trigger-action automation logic. Once installed and configured, you can define complex automation rules in OpenClaw chat prompts that respond to Feishu events — message reactions, user joins, scheduled triggers — rather than just issuing one-shot send commands.

Prerequisites

  • OpenClaw installed and running (see openclaw.ai for installation instructions)
  • ClawHub CLI available in your terminal (bundled with OpenClaw)
  • A Feishu account with developer access to the Feishu Open Platform at open.feishu.cn
  • Permission to configure event subscriptions in your Feishu app (requires app admin role)
  • Familiarity with feishu-bridge basics is helpful but not required — this guide is self-contained

Step-by-step guide

1

Install the Feishu Evolver Wrapper Skill via ClawHub

Open your terminal and run the clawhub install command below. The feishu-evolver-wrapper skill includes everything in feishu-bridge plus the Evolver middleware components — you do not need to install both skills separately. If you already have feishu-bridge installed, feishu-evolver-wrapper replaces it with a superset of functionality. ClawHub downloads the skill package, verifies its signature, and registers it with your OpenClaw configuration. The installation takes 15-40 seconds. On completion, you will see a success message listing the installed version and the required configuration keys: FEISHU_APP_ID, FEISHU_APP_SECRET, and FEISHU_EVOLVER_VERIFICATION_TOKEN (for event subscription verification). If you already have feishu-bridge installed, you can safely install feishu-evolver-wrapper alongside it — they are independent skills. However, for simplicity, most users choose to use one or the other rather than both simultaneously.

terminal
1# Install feishu-evolver-wrapper
2clawhub install feishu-evolver-wrapper
3
4# Verify installation
5clawhub list | grep feishu
6
7# See all available config options
8clawhub info feishu-evolver-wrapper

Pro tip: Run `clawhub info feishu-evolver-wrapper` immediately after installation to see the full list of configuration options. The Evolver wrapper has more settings than feishu-bridge — reviewing them before configuration saves troubleshooting time.

Expected result: Terminal shows 'feishu-evolver-wrapper@X.X.X installed successfully'. The skill appears in `clawhub list` output alongside any other installed skills.

2

Create and Configure a Feishu App with Event Subscriptions

Navigate to open.feishu.cn and log in. If you already created a Feishu app for feishu-bridge, you can extend that app with event subscription permissions. If starting fresh, click 'Create App' and follow the prompts to create a new In-House app. In your app settings, navigate to 'Permissions & Scopes'. For the Evolver wrapper, you need a broader set of permissions than basic messaging: add `im:message` (read and send messages), `im:message.receive_v1` (receive message events), `im:chat` (manage chat membership), and `im:chat.member` (react to member join/leave events). Save your permission changes. Next, go to 'Event Subscriptions' in your app settings. This is where you register the event types that Feishu will send to OpenClaw. Enable the event types relevant to your automation: `im.message.receive_v1` for incoming messages is the most common starting point. Feishu will ask for a 'Request URL' — this is the webhook endpoint where OpenClaw's Evolver middleware listens for events. For local OpenClaw instances, you will need a tunneling tool like ngrok to expose a public URL; for server-deployed OpenClaw, use your server's public URL. Feishu's event subscription setup also generates an Encrypt Key and Verification Token — copy both, as you will need the Verification Token for OpenClaw configuration.

Pro tip: For local development and testing with Feishu events, use ngrok to expose your local OpenClaw webhook port: `ngrok http 3000` (or whatever port your OpenClaw instance listens on). Copy the resulting https URL into the Feishu Event Subscription Request URL field.

Expected result: Your Feishu app has event subscription permissions enabled. Feishu shows a 'Verification successful' status after you save the Request URL — this confirms Feishu can reach OpenClaw's Evolver webhook endpoint.

3

Configure Feishu and Evolver Credentials in OpenClaw

With your Feishu app credentials and Evolver Verification Token ready, configure all required values in OpenClaw. The feishu-evolver-wrapper needs three core variables: your Feishu App ID, your App Secret, and the Evolver Verification Token from the Event Subscriptions page. Set all three using the `clawhub config set` command or by adding them to your `~/.openclaw/.env` file. The environment variable names must match exactly — incorrect names will cause silent failures where the skill installs but events do not trigger. After setting all three values, run `clawhub reload` to apply the configuration. OpenClaw will start the Evolver middleware webhook listener on its configured port, which Feishu can now send events to. You can verify the webhook is running by checking OpenClaw's status output.

.env
1# Add to ~/.openclaw/.env
2FEISHU_APP_ID=cli_your_app_id_here
3FEISHU_APP_SECRET=your_app_secret_here
4FEISHU_EVOLVER_VERIFICATION_TOKEN=your_verification_token_here
5
6# Or set via clawhub config
7clawhub config set FEISHU_APP_ID cli_your_app_id
8clawhub config set FEISHU_APP_SECRET your_secret
9clawhub config set FEISHU_EVOLVER_VERIFICATION_TOKEN your_token
10
11# Apply and verify
12clawhub reload
13clawhub status feishu-evolver-wrapper

Pro tip: Run `clawhub status feishu-evolver-wrapper` after reload to confirm the Evolver middleware webhook listener started successfully. If the status shows 'inactive' or 'webhook not listening', check that the port OpenClaw uses is not blocked by a firewall.

Expected result: `clawhub status feishu-evolver-wrapper` shows 'active' and 'webhook listening on port [N]'. All three config variables return masked values when queried.

4

Define and Test an Evolver Workflow from OpenClaw Chat

With the Evolver middleware running, you can now define event-triggered workflows directly from OpenClaw chat. The feishu-evolver-wrapper skill accepts workflow definitions in natural language and translates them into event subscription rules within the Evolver layer. Start with a simple test: define a rule that responds to a specific message in a Feishu chat you have access to. Once the rule is defined, send the triggering message from your Feishu account and verify that OpenClaw responds through the Evolver middleware. Evolver workflows support conditions, multi-step sequences, and state persistence within a conversation session. A 'conversation session' in Evolver terms is a series of message exchanges between one Feishu user and the OpenClaw bot within a time window — Evolver tracks context across these exchanges so your bot can ask follow-up questions, validate responses, and build up complex inputs before taking an action. RapidDev can help configure complex Evolver workflow rules for enterprise teams building sophisticated Feishu automation — particularly useful for teams with conditional routing logic, integration with multiple back-end systems, and compliance requirements around message handling.

OpenClaw Prompt

Using feishu-evolver-wrapper, create a simple test workflow: whenever someone sends the message 'ping' to the OpenClaw bot in Feishu, respond with 'pong — OpenClaw Evolver is running correctly. Timestamp: [current time]'

Paste this in OpenClaw chat

feishu-evolver-wrapper.yaml
1# Advanced Evolver skill configuration in ~/.openclaw/skills/feishu-evolver-wrapper.yaml
2feishu-evolver-wrapper:
3 webhook_port: 3100 # port for Feishu event webhook listener
4 session_timeout_minutes: 10 # conversation session window for stateful workflows
5 max_workflow_steps: 10 # max steps in a single triggered workflow
6 default_response_format: "markdown" # plain | markdown | card
7 event_types: # event types to subscribe to
8 - im.message.receive_v1
9 - im.chat.member.user.added_v3

Pro tip: Keep `session_timeout_minutes` at 10-15 for interactive conversation workflows. For simple one-shot event-response rules, the session timeout is irrelevant and you can set it lower to free up Evolver memory.

Expected result: Sending 'ping' to the OpenClaw bot in Feishu triggers an immediate 'pong' response from the bot within 2-5 seconds, confirming the Evolver middleware is receiving events and executing workflows.

5

Build a Multi-Step Workflow with Conditional Logic

Now that basic event triggering works, extend your automation to include multi-step logic with conditions. Evolver workflows can branch based on message content, user attributes, or time conditions — giving you the ability to build intelligent routing and response systems inside Feishu. A common pattern is a triage bot: a team member mentions a keyword in a channel, the Evolver trigger fires, OpenClaw evaluates the message content to determine priority, and routes to a different response or escalation path based on the evaluation. This replaces manual triage work with an automated first pass that humans then review. Define your conditional workflow in OpenClaw chat using natural language. Be explicit about the branching conditions — the more specific your description of the decision logic, the more accurately Evolver translates it into workflow rules. After defining the workflow, test each branch by sending messages that should trigger each path.

OpenClaw Prompt

Using feishu-evolver-wrapper, set up a conditional workflow: when a message is posted in the Feishu channel 'Incoming Requests' that contains the word 'bug', route it to the '#engineering-bugs' channel with a formatted card showing the original message and sender. If it contains 'feature request', route it to '#product-backlog' with the same format. For anything else, reply in the original channel asking the user to tag their request as either 'bug' or 'feature request'.

Paste this in OpenClaw chat

Pro tip: After defining a conditional workflow, test all branches explicitly before relying on it in production. Send a message that triggers each branch and verify the routing behavior is exactly as expected — edge cases in how message content is evaluated can produce surprising routing results.

Expected result: Test messages routed to the correct channels based on their content. The 'bug' message appears in '#engineering-bugs', the 'feature request' in '#product-backlog', and the untagged message receives a clarification reply in the original channel.

Common use cases

Keyword-Triggered Workflow Automation

Configure the Evolver middleware to watch for specific keywords or phrases in Feishu messages. When a trigger phrase is detected — such as '@openclaw summarize' or '/ticket create' — the Evolver layer fires an OpenClaw workflow that processes the message context and sends back an intelligent response, all without manual intervention.

OpenClaw Prompt

Set up an Evolver trigger: whenever anyone posts a message in the 'Support' Feishu channel containing the phrase 'urgent issue', send an alert to the on-call engineer's direct messages with the original message content, the sender's name, and a timestamp.

Copy this prompt to try it in OpenClaw

Multi-Step Interactive Bot Conversations

Build Feishu bot conversations that span multiple message turns, maintaining state between each exchange. For example, a bot that asks a series of qualification questions and routes the person to the right team based on their answers — not possible with basic one-shot messaging, but straightforward with Evolver's stateful workflow management.

OpenClaw Prompt

Create an Evolver workflow that starts when someone sends 'start onboarding' to the OpenClaw bot in Feishu. The bot should ask for their name, their role, and their team, wait for each response, then send a personalized welcome message with the relevant onboarding resources based on their role.

Copy this prompt to try it in OpenClaw

Event-Driven Cross-Tool Automation

React to Feishu events by triggering actions in other systems connected to OpenClaw. When a project status message is posted in Feishu, automatically update a data record, send a confirmation to a different channel, and log the event — all triggered by a single Feishu message event.

OpenClaw Prompt

Configure an Evolver rule: when a message is posted in the 'Project Updates' Feishu channel with the tag #shipped, extract the product name and version number from the message and send a formatted release notification to the 'Announcements' channel and the 'Customer Success' channel.

Copy this prompt to try it in OpenClaw

Troubleshooting

Feishu events are not triggering OpenClaw workflows — the Evolver webhook shows no activity

Cause: Feishu's event subscription may not be able to reach OpenClaw's Evolver webhook endpoint. This usually means the Request URL in the Feishu Open Platform is incorrect, the port is blocked, or the webhook listener is not running.

Solution: Run `clawhub status feishu-evolver-wrapper` to confirm the webhook listener is active. Verify the Request URL in the Feishu Open Platform matches your OpenClaw instance's public address and port. If running locally, confirm your ngrok tunnel is still active and update the Feishu Request URL if the tunnel URL changed.

typescript
1# Check webhook status
2clawhub status feishu-evolver-wrapper
3
4# Restart the Evolver middleware listener
5clawhub reload feishu-evolver-wrapper

'feishu-evolver-wrapper: authentication failed' or credential errors despite correct App ID and Secret

Cause: The Feishu app may be in draft/unpublished state, missing required event subscription permissions, or the FEISHU_EVOLVER_VERIFICATION_TOKEN value is incorrect or missing.

Solution: Confirm all three config values are set: FEISHU_APP_ID, FEISHU_APP_SECRET, and FEISHU_EVOLVER_VERIFICATION_TOKEN. Verify the app is published in the Feishu Open Platform (not just saved as draft). Check that event subscription permissions (`im:message.receive_v1`) are granted and saved in the app's permission settings.

typescript
1# Verify all required config values
2clawhub config get FEISHU_APP_ID
3clawhub config get FEISHU_APP_SECRET
4clawhub config get FEISHU_EVOLVER_VERIFICATION_TOKEN

`clawhub install feishu-evolver-wrapper` fails with a version conflict mentioning feishu-bridge

Cause: If feishu-bridge is installed and flagged as conflicting with feishu-evolver-wrapper, ClawHub may block installation to prevent configuration conflicts.

Solution: Uninstall feishu-bridge first if you intend to replace it: `clawhub uninstall feishu-bridge`. Then install feishu-evolver-wrapper. Note that feishu-evolver-wrapper is a superset — it provides all the basic messaging that feishu-bridge does plus the Evolver automation layer.

typescript
1# Remove feishu-bridge if it conflicts
2clawhub uninstall feishu-bridge
3
4# Then install the wrapper
5clawhub install feishu-evolver-wrapper

Evolver workflows trigger correctly but Feishu API rate limit errors appear during high-activity periods

Cause: Feishu's Open Platform API has per-app rate limits. High-frequency event-driven workflows that send many messages in response to rapid incoming events can exceed these limits.

Solution: Add a minimum delay between successive API calls in your skill configuration using the `rate_limit_delay_ms` setting. For workflows that handle bursts of events, consider batching responses or adding conditional deduplication to avoid processing the same event multiple times.

typescript
1# Add rate limiting in skill config
2feishu-evolver-wrapper:
3 rate_limit_delay_ms: 500 # minimum delay between API calls (ms)

Best practices

  • Start with a simple ping-pong test workflow before building complex multi-step automation — verifying the Evolver webhook is working end-to-end saves hours of debugging later.
  • Store all three credentials (FEISHU_APP_ID, FEISHU_APP_SECRET, FEISHU_EVOLVER_VERIFICATION_TOKEN) only in your OpenClaw `.env` file or via `clawhub config set` — never in chat history or version-controlled files.
  • Configure the minimal set of Feishu event subscription types your workflows actually need — subscribing to unnecessary events creates noise and increases the load on the Evolver middleware.
  • Test each branch of conditional workflows explicitly before deploying — edge cases in message content evaluation can produce unexpected routing behavior.
  • Use feishu-bridge for simple one-shot send/receive needs and feishu-evolver-wrapper only when you genuinely need event-driven or stateful automation — the simpler skill is faster to configure and easier to debug.
  • Keep Evolver session timeouts reasonable (10-15 minutes) for interactive conversation workflows to balance responsiveness with memory usage.
  • For production deployments, run OpenClaw on a server rather than a local machine to ensure the Evolver webhook endpoint is consistently available for incoming Feishu events.
  • Log Evolver workflow executions during initial setup by enabling verbose logging in the skill config — this makes it much easier to trace why a specific event did or did not trigger the expected workflow.

Alternatives

Frequently asked questions

What is the difference between feishu-bridge and feishu-evolver-wrapper in OpenClaw?

feishu-bridge provides basic messaging: OpenClaw can send and receive Feishu messages on demand. feishu-evolver-wrapper adds Evolver middleware that makes OpenClaw react to Feishu events automatically — when someone sends a specific message or triggers an event in Feishu, OpenClaw runs a workflow without you needing to manually issue a command. Use feishu-bridge for simple notifications; use feishu-evolver-wrapper for event-driven automation.

How do I install feishu-evolver-wrapper in OpenClaw?

Run `clawhub install feishu-evolver-wrapper` in your terminal. Then create a Feishu app at open.feishu.cn, enable event subscriptions, and configure FEISHU_APP_ID, FEISHU_APP_SECRET, and FEISHU_EVOLVER_VERIFICATION_TOKEN in OpenClaw using `clawhub config set`. Run `clawhub reload` to start the Evolver webhook listener.

What is the OpenClaw evolver setting and what does it do?

The Evolver setting in OpenClaw refers to the Evolver middleware layer provided by feishu-evolver-wrapper. It is an event subscription and workflow state management system that sits between OpenClaw and the Feishu API. It listens for Feishu events (incoming messages, user actions, reactions) and triggers corresponding OpenClaw workflows automatically based on rules you define.

Do I need both feishu-bridge and feishu-evolver-wrapper installed?

No — feishu-evolver-wrapper is a superset of feishu-bridge and includes all basic messaging functionality. If you install feishu-evolver-wrapper, you do not also need feishu-bridge. You can uninstall feishu-bridge if you have both installed and find them conflicting.

Why are my Feishu events not triggering OpenClaw workflows after setup?

The most common cause is that Feishu cannot reach OpenClaw's Evolver webhook URL. Verify the Request URL in your Feishu app's Event Subscriptions settings is correct and publicly accessible. If running OpenClaw locally, ensure your ngrok or equivalent tunnel is active. Also confirm FEISHU_EVOLVER_VERIFICATION_TOKEN is set correctly — a wrong token causes Feishu to reject the webhook silently.

Can RapidDev help configure Feishu Evolver Wrapper for enterprise automation?

Yes — RapidDev specializes in configuring OpenClaw skills for complex team workflows, and feishu-evolver-wrapper is one of the more involved setups due to the event subscription and webhook configuration requirements. Teams building multi-stage Feishu automation pipelines are welcome to reach out to RapidDev for hands-on configuration support.

Does feishu-evolver-wrapper work with Lark (the international Feishu edition)?

Yes — set `FEISHU_API_BASE=https://open.larksuite.com` in your OpenClaw config alongside your App ID, App Secret, and Verification Token. The Evolver middleware supports both the Feishu (feishu.cn) and Lark (larksuite.com) API endpoints with the same skill configuration structure.

RapidDev

Talk to an Expert

Our team has built 600+ apps. Get personalized help with your project.

Book a free consultation

Need help with your project?

Our experts have built 600+ apps and can accelerate your development. Book a free consultation — no strings attached.

Book a free consultation

We put the rapid in RapidDev

Need a dedicated strategic tech and growth partner? Discover what RapidDev can do for your business! Book a call with our team to schedule a free, no-obligation consultation. We'll discuss your project and provide a custom quote at no cost.