40 KiB
summary, read_when, title
| summary | read_when | title | ||
|---|---|---|---|---|
| Feishu bot overview, features, and configuration |
|
Feishu |
OpenClaw connects to Feishu/Lark (the all-in-one collaboration platform) through the official @openclaw/feishu plugin: bot DMs, group chats, streaming card replies, and Feishu doc/wiki/drive/Bitable tools.
Status: production-ready for bot DMs + group chats. WebSocket is the default event transport (no public URL needed); webhook mode is optional.
Quick start
Requires OpenClaw 2026.5.29 or above. Run `openclaw --version` to check. Upgrade with `openclaw update`. ```bash openclaw channels login --channel feishu ``` This installs the `@openclaw/feishu` plugin if it is missing, then walks through setup:- Manual setup: paste an App ID and App Secret from Feishu Open Platform (
https://open.feishu.cn) or Lark Developer (https://open.larksuite.com). - QR setup: scan a QR code in the Feishu app to create a bot automatically. This flow locks DMs to your own account (
dmPolicy: "allowlist"with youropen_id).
The wizard also asks for the API domain (Feishu vs Lark) and the group policy. If the domestic Feishu mobile app does not react to the QR code, rerun setup and choose manual setup.
```bash openclaw gateway restart ```Inbound durability
OpenClaw durably queues authenticated im.message.receive_v1 and drive.notice.comment_add_v1 envelopes before agent dispatch. In webhook mode, the durable 200 carries x-openclaw-delivery-accepted: durable; verification challenges, non-durable event types, and error responses omit the marker, so reverse proxies can require it to distinguish durable acceptance from a generic 200. Pending or retryable events survive a Gateway restart, remain serialized per chat or document, and use Feishu's event ID to suppress duplicate queue entries while the active or retained completion record exists.
If a WebSocket event cannot be persisted after bounded retries, OpenClaw closes that socket and forces a fresh authenticated connection instead of continuing past an uncommitted turn. Other Feishu event types, including reactions and VC meeting invitations, use their normal event paths and do not receive this durable-queue guarantee.
Access control
Direct messages
Configure channels.feishu.dmPolicy (default: pairing) to control who can DM the bot:
| Value | Behavior |
|---|---|
"pairing" |
Unknown users receive a pairing code; approve via CLI |
"allowlist" |
Only users listed in allowFrom can chat |
"open" |
Public DMs; config validation requires allowFrom to include "*". Non-wildcard entries still narrow access |
Approve a pairing request:
openclaw pairing list feishu
openclaw pairing approve feishu <CODE>
Group chats
Group policy (channels.feishu.groupPolicy, default: allowlist):
| Value | Behavior |
|---|---|
"open" |
Respond to all messages in groups |
"allowlist" |
Only respond to groups in groupAllowFrom or explicitly configured under groups.<chat_id> |
"disabled" |
Disable all group messages; explicit groups.<chat_id> entries do not override this |
Mention requirement (channels.feishu.requireMention):
- Default: @mention required, except when the effective group policy is
"open"; there it defaults tofalseso messages that cannot carry mentions (for example images) still reach the agent. - Set
trueorfalseexplicitly to override; per-group override:channels.feishu.groups.<chat_id>.requireMention. - Broadcast-only
@alland@_allare not treated as bot mentions. A message that mentions both@alland the bot directly still counts as a bot mention.
Group configuration examples
Allow all groups, no @mention required
{
channels: {
feishu: {
groupPolicy: "open", // requireMention defaults to false under "open"
},
},
}
Allow all groups, still require @mention
{
channels: {
feishu: {
groupPolicy: "open",
requireMention: true,
},
},
}
Allow specific groups only
{
channels: {
feishu: {
groupPolicy: "allowlist",
// Group IDs look like: oc_xxx
groupAllowFrom: ["oc_xxx", "oc_yyy"],
},
},
}
In allowlist mode, you can also admit a group by adding an explicit groups.<chat_id> entry. Explicit entries do not override groupPolicy: "disabled". Wildcard defaults under groups.* configure matching groups, but they do not admit groups by themselves.
{
channels: {
feishu: {
groupPolicy: "allowlist",
groups: {
oc_xxx: {
requireMention: false,
},
},
},
},
}
Restrict senders within a group
{
channels: {
feishu: {
groupPolicy: "allowlist",
groupAllowFrom: ["oc_xxx"],
groups: {
oc_xxx: {
// User open_ids look like: ou_xxx
allowFrom: ["ou_user1", "ou_user2"],
},
},
},
},
}
channels.feishu.groupSenderAllowFrom sets the same sender allowlist for all groups; a per-group allowFrom takes precedence.
Bot-authored messages
Feishu ignores messages authored by other bots by default. To allow bot-to-bot group conversations, grant the app the im:message.group_at_msg.include_bot:readonly and im:message:readonly scopes, then set allowBots:
{
channels: {
feishu: {
allowBots: true,
},
},
}
Feishu only delivers bot-authored group events when another bot mentions this bot. Existing group policy, sender allowlists, and mention requirements still apply. OpenClaw drops self-authored messages, mentions the peer bot on every text or card reply, and applies the shared channels.defaults.botLoopProtection guard.
Get group/user IDs
Group IDs (chat_id, format: oc_xxx)
Open the group in Feishu/Lark, click the menu icon in the top-right corner, and go to Settings. The group ID (chat_id) is listed on the settings page.
User IDs (open_id, format: ou_xxx)
Start the gateway, send a DM to the bot, then check the logs:
openclaw logs --follow
Look for open_id in the log output. You can also check pending pairing requests:
openclaw pairing list feishu
Common commands
| Command | Description |
|---|---|
/status |
Show bot status |
/reset |
Reset the current session |
/model |
Show or switch the AI model |
Troubleshooting
Bot does not respond in group chats
- Ensure the bot is added to the group
- Ensure you @mention the bot (required by default)
- Verify
groupPolicyis not"disabled" - Check logs:
openclaw logs --follow
Bot does not receive messages
- Ensure the bot is published and approved in Feishu Open Platform / Lark Developer
- Ensure event subscription includes
im.message.receive_v1 - For meeting invite auto-join, also subscribe to
vc.bot.meeting_invited_v1 - Ensure persistent connection (WebSocket) is selected
- Ensure all required permission scopes are granted
- Ensure the gateway is running:
openclaw gateway status - Check logs:
openclaw logs --follow
Subscribing to vc.bot.meeting_invited_v1 only delivers the event. Automatic joins are
default-off. To enable them globally:
{
channels: {
feishu: {
vcAutoJoin: true,
},
},
}
To enable only one account, omit the top-level switch and set the account override:
{
channels: {
feishu: {
accounts: {
meetings: { vcAutoJoin: true },
},
},
},
}
Inviters still pass through the normal Feishu DM policy, allowlist/pairing, session, and reply
routing before the agent receives a join turn. Joining also requires an available Feishu VC join
tool configured for app identity with the
vc:meeting.bot.join:write scope. For example, the official
lark-cli VC agent skill
provides vc +meeting-join.
QR setup does not react in the Feishu mobile app
- Rerun setup:
openclaw channels login --channel feishu - Choose manual setup
- In Feishu Open Platform, create a self-built app and copy its App ID and App Secret
- Paste those credentials into the setup wizard
App Secret leaked
- Reset the App Secret in Feishu Open Platform / Lark Developer
- Update the value in your config
- Restart the gateway:
openclaw gateway restart
Advanced configuration
Multiple accounts
{
channels: {
feishu: {
defaultAccount: "main",
accounts: {
main: {
appId: "cli_xxx",
appSecret: "xxx",
name: "Primary bot",
tts: {
providers: {
openai: { voice: "shimmer" },
},
},
},
backup: {
appId: "cli_yyy",
appSecret: "yyy",
name: "Backup bot",
enabled: false,
},
},
},
},
}
defaultAccount controls which account is used when outbound APIs do not specify an accountId. Account entries inherit top-level settings; most top-level keys can be overridden per account.
accounts.<id>.tts uses the same shape as tts and deep-merges over global TTS config, so multi-bot Feishu setups can keep shared provider credentials globally while overriding only voice, model, persona, or auto mode per account.
Message limits
textChunkLimit- outbound text chunk size (default:4000chars)streaming.chunkMode-"length"(default) splits at the limit;"newline"prefers newline boundariesmediaMaxMb- media upload/download limit (default:30MB)
Ordinary Markdown cards and rich-text posts are also split to fit Feishu's 30 KB
serialized message limit. Headers, notes, mentions, JSON escaping, and UTF-8 text
count toward that limit, so chunks may be shorter than textChunkLimit. Long
media captions are sent as text/card chunks before the attachment.
Streaming
Feishu/Lark supports streaming replies via interactive cards (Card Kit streaming API). When enabled, the bot updates the card in real time as it generates text.
{
channels: {
feishu: {
streaming: {
mode: "partial", // streaming card output (default: "partial")
block: { enabled: true }, // opt into completed-block streaming
},
},
},
}
Set streaming.mode: "off" to send the completed reply without streaming updates; long replies still split at the message limits above. renderMode: "raw" (plain text instead of cards) also disables streaming cards. streaming.block.enabled is off by default; enable it only when you want completed assistant blocks flushed before the final reply. Legacy boolean streaming and the flat blockStreaming / blockStreamingCoalesce / chunkMode keys migrate to this nested shape via openclaw doctor --fix.
Quota optimization
Reduce the number of Feishu/Lark API calls with two optional flags:
typingIndicator(defaulttrue): setfalseto skip typing reaction callsresolveSenderNames(defaulttrue): setfalseto skip sender profile lookups
{
channels: {
feishu: {
typingIndicator: false,
resolveSenderNames: false,
},
},
}
Group session scope and topic threads
channels.feishu.groupSessionScope (top-level, per account, or per group) controls how group messages map to agent sessions:
| Value | Session |
|---|---|
"group" (default) |
One session per group chat |
"group_sender" |
One session per (group + sender) |
"group_topic" |
One session per topic thread; falls back to the group session |
"group_topic_sender" |
One session per (topic + sender); falls back to (group + sender) |
For the topic scopes, native Feishu/Lark topic groups use the event thread_id (omt_*) as the canonical topic session key. If a native topic starter event omits thread_id, OpenClaw hydrates it from Feishu before routing the turn. Normal group replies that OpenClaw turns into threads keep using the reply root message ID (om_*) so the first turn and follow-up turns stay in the same session.
Set replyInThread: "enabled" (top-level or per group) to make bot replies create or continue a Feishu topic thread instead of replying inline. topicSessionMode is the deprecated predecessor of groupSessionScope; prefer groupSessionScope.
Feishu workspace tools
The plugin ships agent tools for Feishu documents, chats, knowledge base, cloud storage, permissions, and Bitable, plus matching skills (feishu-doc, feishu-drive, feishu-perm, feishu-wiki). Tool families are gated by channels.feishu.tools:
| Key | Tools | Default |
|---|---|---|
tools.doc |
feishu_doc document operations |
true |
tools.chat |
feishu_chat chat info + member queries |
true |
tools.wiki |
feishu_wiki knowledge base (requires doc) |
true |
tools.drive |
feishu_drive cloud storage |
true |
tools.perm |
feishu_perm permission management |
false (sensitive) |
tools.scopes |
feishu_app_scopes app scope diagnostics |
true |
tools.bitable |
feishu_bitable_* Bitable/Base operations |
true |
Per-account gates live under accounts.<id>.tools.
feishu_doc creates title-only documents. To add Markdown, pass the returned
document_id as doc_token in a separate write action. A create request
that includes content fails without creating an empty document.
Grant drive:drive.metadata:readonly for direct feishu_drive info lookups outside the root
directory, unless the app already has the full drive:drive scope. Without either scope, info
keeps the legacy root-directory lookup available through drive:drive:readonly.
ACP sessions
Feishu/Lark supports ACP for DMs and group thread messages. Feishu/Lark ACP is text-command driven - there are no native slash-command menus, so use /acp ... messages directly in the conversation.
Persistent ACP binding
{
agents: {
entries: {
codex: {
default: true,
runtime: {
type: "acp",
acp: {
agent: "codex",
backend: "acpx",
mode: "persistent",
cwd: "/workspace/openclaw",
},
},
},
},
},
bindings: [
{
type: "acp",
agentId: "codex",
match: {
channel: "feishu",
accountId: "default",
peer: { kind: "direct", id: "ou_1234567890" },
},
},
{
type: "acp",
agentId: "codex",
match: {
channel: "feishu",
accountId: "default",
peer: { kind: "group", id: "oc_group_chat:topic:om_topic_root" },
},
acp: { label: "codex-feishu-topic" },
},
],
}
Spawn ACP from chat
In a Feishu/Lark DM or thread:
/acp spawn codex --thread here
--thread here works for DMs and Feishu/Lark thread messages. Follow-up messages in the bound conversation route directly to that ACP session.
Multi-agent routing
Use bindings to route Feishu/Lark DMs or groups to different agents.
{
agents: {
entries: {
main: { default: true },
"agent-a": { workspace: "/home/user/agent-a" },
"agent-b": { workspace: "/home/user/agent-b" },
},
},
bindings: [
{
agentId: "agent-a",
match: {
channel: "feishu",
peer: { kind: "direct", id: "ou_xxx" },
},
},
{
agentId: "agent-b",
match: {
channel: "feishu",
peer: { kind: "group", id: "oc_zzz" },
},
},
],
}
Routing fields:
match.channel:"feishu"match.peer.kind:"direct"(DM) or"group"(group chat)match.peer.id: user Open ID (ou_xxx) or group ID (oc_xxx)
See Get group/user IDs for lookup tips.
Per-user agent isolation (Dynamic Agent Creation)
Enable dynamicAgentCreation to automatically create isolated agent instances for each DM user. Each user gets their own:
- Independent workspace directory
- Separate
USER.md/SOUL.md/MEMORY.md - Private conversation history
- Isolated skills and state
This is essential for public bots where you want each user to have their own private AI assistant experience.
Dynamic bindings include the normalized Feishu `accountId`, so default and named accounts route each sender to the correct dynamic agent.If a named account created an unscoped dynamic agent on an older release, that legacy agent still counts toward maxAgents. Confirm that it is not used by the default account before removing it, or temporarily increase maxAgents; OpenClaw cannot safely infer which account owns ambiguous legacy state.
Quick setup
{
channels: {
feishu: {
dmPolicy: "open",
allowFrom: ["*"],
dynamicAgentCreation: {
enabled: true,
workspaceTemplate: "~/.openclaw/workspace-{agentId}",
agentDirTemplate: "~/.openclaw/agents/{agentId}/agent",
},
},
},
session: {
// Critical: makes each user's DM their "main session"
// Automatically loads USER.md / SOUL.md / MEMORY.md
// For stronger isolation, use "per-channel-peer" instead
dmScope: "main",
},
}
How it works
When a new user sends their first DM:
- The channel generates a unique
agentId:feishu-{user_open_id}for the default account, or a bounded account-prefixed identity digest for a named account - Creates a new workspace at
workspaceTemplatepath - Registers the agent and creates a binding for this user
- The workspace helper ensures bootstrap files (
AGENTS.md,SOUL.md,USER.md, etc.) on first access - Routes all future messages from this user to their dedicated agent
Configuration options
| Setting | Description | Default |
|---|---|---|
channels.feishu.dynamicAgentCreation.enabled |
Enable automatic per-user agent creation | false |
channels.feishu.dynamicAgentCreation.workspaceTemplate |
Path template for dynamic agent workspaces | ~/.openclaw/workspace-{agentId} |
channels.feishu.dynamicAgentCreation.agentDirTemplate |
Agent directory name template | ~/.openclaw/agents/{agentId}/agent |
channels.feishu.dynamicAgentCreation.maxAgents |
Maximum number of dynamic agents to create | unlimited |
Template variables:
{agentId}- the generated agent ID (e.g.,feishu-ou_xxxxxxorfeishu-support-<identity_digest>){userId}- the sender's Feishu open_id (e.g.,ou_xxxxxx)
Session scope
session.dmScope controls how direct messages are mapped to agent sessions. This is a global setting that affects all channels.
| Value | Behavior | Best for |
|---|---|---|
"main" |
Each user's DM maps to their agent's main session | Single-user bots where you want USER.md / SOUL.md to auto-load |
"per-peer" |
Each peer gets a separate session (regardless of channel) | Isolation keyed by sender identity only |
"per-channel-peer" |
Each (channel + user) combination gets a separate session | Public multi-user bots needing stronger isolation |
"per-account-channel-peer" |
Each (account + channel + user) combination gets a separate session | Multi-account bots needing account-level session isolation |
Tradeoff: Using "main" enables automatic bootstrap file loading (USER.md, SOUL.md, MEMORY.md), but means all DMs across all channels share the same session key pattern. For public multi-user bots where isolation matters more than bootstrap auto-loading, consider "per-channel-peer" and manage bootstrap files manually.
Typical multi-user deployment
{
channels: {
feishu: {
appId: "cli_xxx",
appSecret: "xxx",
dmPolicy: "open",
allowFrom: ["*"],
groupPolicy: "open",
requireMention: true,
dynamicAgentCreation: {
enabled: true,
workspaceTemplate: "~/.openclaw/workspace-{agentId}",
agentDirTemplate: "~/.openclaw/agents/{agentId}/agent",
},
},
},
session: {
// Choose dmScope based on your isolation needs:
// "main" for bootstrap auto-loading, "per-channel-peer" for stronger isolation
dmScope: "main",
},
bindings: [], // Empty - dynamic agents auto-bind
}
Verification
Check gateway logs to confirm dynamic creation is working:
feishu: creating dynamic agent "feishu-ou_xxxxxx" for user ou_xxxxxx
workspace: /home/user/.openclaw/workspace-feishu-ou_xxxxxx
agentDir: /home/user/.openclaw/agents/feishu-ou_xxxxxx/agent
List all created workspaces:
ls -la ~/.openclaw/workspace-*
Notes
- Workspace isolation: Each user gets their own workspace directory and agent instance. Users cannot see each other's conversation history or files within the normal messaging flow.
- Security boundary: This is a messaging-context isolation mechanism, not a hostile co-tenant security boundary. The agent process and host environment are shared.
- Config writes must stay enabled: Dynamic agent creation writes agents and bindings into the config; it is skipped when
channels.feishu.configWritesisfalse(default: enabled). bindingsshould be empty: Dynamic agents auto-register their own bindings- Upgrade path: Existing manual bindings continue to work alongside dynamic agents
session.dmScopeis global: This affects all channels, not just Feishu
Configuration reference
Full configuration: Gateway configuration
| Setting | Description | Default |
|---|---|---|
channels.feishu.enabled |
Enable/disable the channel | true |
channels.feishu.domain |
API domain (feishu, lark, or an https:// base URL) |
feishu |
channels.feishu.connectionMode |
Event transport (websocket or webhook) |
websocket |
channels.feishu.defaultAccount |
Default account for outbound routing | default |
channels.feishu.verificationToken |
Required for webhook mode | - |
channels.feishu.encryptKey |
Required for webhook mode | - |
channels.feishu.webhookPath |
Canonical HTTP request path (must start with /) |
/feishu/events |
channels.feishu.webhookHost |
Webhook bind host | 127.0.0.1 |
channels.feishu.webhookPort |
Webhook bind port | 3000 |
channels.feishu.accounts.<id>.appId |
App ID | - |
channels.feishu.accounts.<id>.appSecret |
App Secret | - |
channels.feishu.accounts.<id>.domain |
Per-account domain override | feishu |
channels.feishu.accounts.<id>.replyToMode |
Per-account reply-reference mode | inherited |
channels.feishu.accounts.<id>.tts |
Per-account TTS override | tts |
channels.feishu.accounts.<id>.actions.sticker |
Per-account sticker action override | inherited |
channels.feishu.dmPolicy |
DM policy (pairing, allowlist, open) |
pairing |
channels.feishu.allowFrom |
DM allowlist (open_id list) | - |
channels.feishu.groupPolicy |
Group policy (open, allowlist, disabled) |
allowlist |
channels.feishu.groupAllowFrom |
Group allowlist | - |
channels.feishu.groupSenderAllowFrom |
Sender allowlist applied to all groups | - |
channels.feishu.requireMention |
Require @mention in groups | true (false when policy open) |
channels.feishu.allowBots |
Accept other bots that mention this bot, with bot-loop protection | false |
channels.feishu.groups.<chat_id>.requireMention |
Per-group @mention override; explicit IDs also admit the group in allowlist mode | inherited |
channels.feishu.groups.<chat_id>.enabled |
Enable/disable a specific group | true |
channels.feishu.groups.<chat_id>.allowFrom |
Per-group sender allowlist (overrides groupSenderAllowFrom) |
- |
channels.feishu.groupSessionScope |
Group session mapping (group, group_sender, group_topic, group_topic_sender) |
group |
channels.feishu.replyToMode |
Reply-reference mode (off, first, all, batched) |
all |
channels.feishu.replyInThread |
Bot replies create/continue topic threads (disabled, enabled) |
disabled |
channels.feishu.reactionNotifications |
Inbound reaction events (off, own, all) |
own |
channels.feishu.actions.sticker |
Enable received-sticker sending and configured sticker search | false |
channels.feishu.stickerSets |
Searchable received-sticker keys and keywords, grouped by bot app ID | none |
channels.feishu.vcAutoJoin |
Join invited VC meetings after normal DM authorization | false |
channels.feishu.dynamicAgentCreation.enabled |
Enable automatic per-user agent creation | false |
channels.feishu.dynamicAgentCreation.workspaceTemplate |
Path template for dynamic agent workspaces | ~/.openclaw/workspace-{agentId} |
channels.feishu.dynamicAgentCreation.agentDirTemplate |
Agent directory name template | ~/.openclaw/agents/{agentId}/agent |
channels.feishu.dynamicAgentCreation.maxAgents |
Maximum number of dynamic agents to create | unlimited |
channels.feishu.textChunkLimit |
Message chunk size | 4000 |
channels.feishu.streaming.chunkMode |
Chunk splitting (length or newline) |
length |
channels.feishu.mediaMaxMb |
Media size limit | 30 |
channels.feishu.renderMode |
Reply rendering (auto, raw, card) |
auto |
channels.feishu.streaming.mode |
Streaming card output (partial or off) |
partial |
channels.feishu.streaming.block.enabled |
Completed-block reply streaming | false |
channels.feishu.typingIndicator |
Send typing reactions | true |
channels.feishu.resolveSenderNames |
Resolve sender display names | true |
channels.feishu.configWrites |
Allow channel-initiated config writes (needed by dynamic agents) | true |
channels.feishu.tools.doc |
Enable document tools | true |
channels.feishu.tools.chat |
Enable chat info tools | true |
channels.feishu.tools.wiki |
Enable knowledge base tools (requires doc) |
true |
channels.feishu.tools.drive |
Enable cloud storage tools | true |
channels.feishu.tools.perm |
Enable permission management tools | false |
channels.feishu.tools.scopes |
Enable app scopes diagnostic tool | true |
channels.feishu.tools.bitable |
Enable Bitable/Base tools | true |
channels.feishu.accounts.<id>.tools.bitable |
Per-account Bitable/Base tool gate | inherited |
In webhook mode, both channels.feishu.webhookPath and
channels.feishu.accounts.<id>.webhookPath must be canonical HTTP request paths
beginning with /, such as /feishu/events. An optional query string is
supported and must match exactly. Full URLs, relative paths, URL fragments, dot
segments, and unencoded spaces or Unicode are rejected. If an existing
configuration contains a noncanonical path, run openclaw doctor --fix to
repair it before starting the gateway.
Supported message types
Receive
- ✅ Text
- ✅ Rich text (post)
- ✅ Images
- ✅ Files
- ✅ Audio
- ✅ Video/media
- ✅ Stickers
Received stickers expose their reusable file_key to the agent as
<sticker key="..."/>. Feishu/Lark does not support downloading sticker
resources, so OpenClaw preserves the key without fetching an attachment.
Inbound Feishu/Lark audio messages are normalized as media placeholders instead
of raw file_key JSON. When tools.media.audio is configured, OpenClaw
downloads the voice-note resource and runs shared audio transcription before the
agent turn, so the agent receives the spoken transcript. If Feishu includes
transcript text directly in the audio payload, that text is used without another
ASR call. Without an audio transcription provider, the agent still receives a
<media:audio> placeholder plus the saved attachment, not the raw Feishu
resource payload.
Send
- ✅ Text
- ✅ Images
- ✅ Files
- ✅ Audio
- ✅ Video/media
- ✅ Interactive cards (including streaming updates)
- ✅ Stickers previously received by the same bot (requires
actions.sticker) - ⚠️ Rich text (post-style formatting; doesn't support full Feishu/Lark authoring capabilities)
Native Feishu/Lark audio bubbles use the Feishu audio message type and require
Ogg/Opus upload media (file_type: "opus"). Existing .opus and .ogg media
is sent directly as native audio. MP3/WAV/M4A and other likely audio formats are
transcoded to 48kHz Ogg/Opus with ffmpeg only when the reply requests voice
delivery (audioAsVoice / message tool asVoice, including TTS voice-note
replies). Ordinary MP3 attachments stay regular files. If ffmpeg is missing or
conversion fails, OpenClaw falls back to a file attachment and logs the reason.
Sticker replies
Enable the sticker action to let the agent resend stickers:
{
channels: {
feishu: {
actions: { sticker: true },
},
},
}
For one account only, set channels.feishu.accounts.<id>.actions.sticker: true
instead. An account-level actions object replaces, rather than merges
with, the channel-level object. Repeat any action gates you want to preserve.
For example, keep reactions disabled while enabling stickers for work:
{
channels: {
feishu: {
actions: { reactions: false },
accounts: {
work: {
actions: { reactions: false, sticker: true },
},
},
},
},
}
Send a sticker to that bot first, then ask it to resend the sticker.
The shared message tool uses action: "sticker" with the received file_key
in fileId or the first entry of stickerId. In multi-account setups, use the
same accountId that received the sticker.
Only stickers previously received by that bot can be sent. Uploading new stickers, downloading sticker resources, and searching the sticker store are not supported.
Sticker keyword search
Add a curated sticker set to let the agent find a received sticker by keyword.
First send each sticker to the bot and ask it for the received file_key.
Then add keys and your own labels to the existing Feishu configuration:
{
channels: {
feishu: {
actions: { sticker: true },
stickerSets: {
cli_work: {
file_received_key: ["thumbs up", "赞", "👍"],
},
},
},
},
}
Replace cli_work with the bot's actual app ID and file_received_key with
the key received by that bot. stickerSets belongs directly under
channels.feishu, not inside an account. The selected account can search only
the set matching its app ID; changing an account to a different bot does not
reuse the previous bot's set. Accounts using the same bot share its set.
Keep any existing account-level action gates as described above.
Ask the agent to “send a thumbs up sticker.” It can use the shared message
tool with action: "sticker-search", query: "thumbs up", and the intended
accountId, then send a returned fileId with action: "sticker" on that
same account. Search is available only when stickers are enabled and the bot
has a nonempty configured set.
Search matches a case-insensitive substring of an explicit keyword, including
Chinese labels and emoji, in sticker-key order. It does not infer a sticker's
meaning, search Feishu's store, or automatically collect received stickers.
Results include the matching keyword and reusable fileId. No matches
produce an empty list; truncated: true means matching entries were omitted
by the result limit or output budget. Narrow the query to find other matches.
Limits: 32 bot sets, 256 stickers per set, and 1–8 keywords per sticker.
Store keywords without leading or trailing whitespace; each must be nonempty
and at most 64 Unicode characters. File keys must be canonical received keys,
at most 512 Unicode characters. Each key appears only once in its bot's map.
Queries are nonempty and at most 128 Unicode characters. limit defaults to 5
and accepts integers from 1 through 10; search results are also capped at
3 KiB of JSON output. Removing a set removes it from search; no separate
sticker database or cache is created.
Threads and replies
- ✅ Inline replies
- ✅ Thread replies
- ✅ Media replies stay thread-aware when replying to a thread message
Topic-group session routing is covered under Group session scope and topic threads.
Related
- Channels Overview - all supported channels
- Pairing - DM authentication and pairing flow
- Groups - group chat behavior and mention gating
- Channel Routing - session routing for messages
- Security - access model and hardening
