docs: update Feishu plugin docs
parent
35eb40a700
commit
5292367324
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
summary: "Feishu bot support status, features, and configuration"
|
summary: "Feishu bot overview, features, and configuration"
|
||||||
read_when:
|
read_when:
|
||||||
- You want to connect a Feishu/Lark bot
|
- You want to connect a Feishu/Lark bot
|
||||||
- You are configuring the Feishu channel
|
- You are configuring the Feishu channel
|
||||||
|
|
@ -8,7 +8,7 @@ title: Feishu
|
||||||
|
|
||||||
# Feishu bot
|
# Feishu bot
|
||||||
|
|
||||||
Status: production-ready, supports bot DMs and group chats. Uses WebSocket long connection mode to receive events.
|
Feishu (Lark) is a team chat platform used by companies for messaging and collaboration. This plugin connects OpenClaw to a Feishu/Lark bot using the platform’s WebSocket event subscription so messages can be received without exposing a public webhook URL.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -106,6 +106,7 @@ Current npm plugin list (update as needed):
|
||||||
- @openclaw/bluebubbles
|
- @openclaw/bluebubbles
|
||||||
- @openclaw/diagnostics-otel
|
- @openclaw/diagnostics-otel
|
||||||
- @openclaw/discord
|
- @openclaw/discord
|
||||||
|
- @openclaw/feishu
|
||||||
- @openclaw/lobster
|
- @openclaw/lobster
|
||||||
- @openclaw/matrix
|
- @openclaw/matrix
|
||||||
- @openclaw/msteams
|
- @openclaw/msteams
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,47 @@
|
||||||
|
# @openclaw/feishu
|
||||||
|
|
||||||
|
Feishu/Lark channel plugin for OpenClaw (WebSocket bot events).
|
||||||
|
|
||||||
|
## Install (local checkout)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
openclaw plugins install ./extensions/feishu
|
||||||
|
```
|
||||||
|
|
||||||
|
## Install (npm)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
openclaw plugins install @openclaw/feishu
|
||||||
|
```
|
||||||
|
|
||||||
|
Onboarding: select Feishu/Lark and confirm the install prompt to fetch the plugin automatically.
|
||||||
|
|
||||||
|
## Config
|
||||||
|
|
||||||
|
```json5
|
||||||
|
{
|
||||||
|
channels: {
|
||||||
|
feishu: {
|
||||||
|
accounts: {
|
||||||
|
default: {
|
||||||
|
appId: "cli_xxx",
|
||||||
|
appSecret: "xxx",
|
||||||
|
domain: "feishu",
|
||||||
|
enabled: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
dmPolicy: "pairing",
|
||||||
|
groupPolicy: "open",
|
||||||
|
blockStreaming: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Lark (global) tenants should set `domain: "lark"` (or a full https:// domain).
|
||||||
|
|
||||||
|
Restart the gateway after config changes.
|
||||||
|
|
||||||
|
## Docs
|
||||||
|
|
||||||
|
https://docs.openclaw.ai/channels/feishu
|
||||||
Loading…
Reference in New Issue