Help us improve
Share bugs, ideas, or general feedback.
From Feishu
Use when the user asks Codex to work with Feishu or Lark docs, notifications, Bitable records, or Wiki knowledge bases.
npx claudepluginhub yfge/codex-plugins --plugin feishuHow this skill is triggered — by the user, by Claude, or both
Slash command
/feishu:feishuThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use the Feishu MCP server when a task needs live Feishu or Lark workspace access.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Use the Feishu MCP server when a task needs live Feishu or Lark workspace access.
The MCP server reads credentials from environment variables:
FEISHU_APP_ID and FEISHU_APP_SECRET for tenant access token acquisition.FEISHU_TENANT_ACCESS_TOKEN to provide a tenant token directly.FEISHU_USER_ACCESS_TOKEN for user-scoped document or wiki actions.FEISHU_WEBHOOK_URL and optional FEISHU_WEBHOOK_SECRET for custom bot notifications.FEISHU_BASE_URL only when using a non-default Feishu-compatible OpenAPI base URL.Start by calling feishu_auth_status if the user asks whether configuration is ready or if an API call fails with authentication errors.
feishu_docs_create, feishu_docs_get, feishu_docs_list_blocks, and feishu_docs_append_text.feishu_send_webhook for custom bot webhooks, or feishu_send_message for app bot messages to a user or chat.feishu_bitable_list_tables, feishu_bitable_search_records, feishu_bitable_create_record, and feishu_bitable_update_record.feishu_wiki_list_spaces, feishu_wiki_list_nodes, feishu_wiki_search, and feishu_wiki_get_node.feishu_api_request with an official Feishu OpenAPI path.