一键导入
feishu-chat
Feishu chat operations. Activate when user wants to create groups, manage chat members, or get chat info.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Feishu chat operations. Activate when user wants to create groups, manage chat members, or get chat info.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
主流APP搜索。当用户想要在拼多多、美团、高德地图、抖音、快手、小红书、哔哩哔哩、知乎、百度、OPPO音乐、OPPO软件商店等APP中搜索时激活。覆盖电商购物、生活服务、短视频内容、知识搜索、音乐搜索、应用商店搜索等场景。
CapCut (剪映) one-tap video creation on Android. Always clear A_latest first (copy_images_to_album clear-only), then retrieve by time (list_gallery_images) or content (image-memories). Copy to A_latest (clear_album_first), CapCut 照片视频 → A_latest → 全部, multi_tap, N=K.
Configure messaging channels in X-OmniClaw, including Feishu and Discord. Use when the user asks to configure, enable, disable, inspect, or fix channel settings such as tokens, appId/appSecret, dmPolicy, groupPolicy, requireMention, or connection status. For X-OmniClaw, these settings live in /sdcard/.xomniclaw/xomniclaw.json under channels.*.
将剪切板中的 App 跳转链接制作成一个可复用的快捷指令 Skill,下次用户说出 Skill 名称即可一键直达对应 App 页面。 当用户说"把剪切板的链接做成skill"、"帮我保存这个链接为快捷方式"、"用剪切板内容创建一个skill XX"、"把这个链接制作成skill"、"帮我把复制的链接做成一键跳转"等意图时激活。 支持淘宝、拼多多、抖音、快手、知乎、小红书、美团、哔哩哔哩、高德、QQ音乐、支付宝、百度等主流 App 的分享链接。
Sync gallery images into long-term memory files and rebuild the user profile from photo-derived memories.
Consume the full memory/IMAGE-MEMORY.md file for all gallery-image questions and operations instead of using retrieval-first search.
| name | feishu-chat |
| description | Feishu chat operations. Activate when user wants to create groups, manage chat members, or get chat info. |
Tool feishu_chat for chat management operations.
{ "action": "get", "chat_id": "oc_xxx" }
Returns: chat name, description, owner, member count, chat type (group/p2p).
{ "action": "members", "chat_id": "oc_xxx" }
Returns: all members in the chat with their user info.
{
"action": "create",
"name": "Project Team",
"description": "Project discussion group",
"member_ids": ["ou_xxx", "ou_yyy"]
}
Creates a new group chat.
{
"action": "add_members",
"chat_id": "oc_xxx",
"member_ids": ["ou_zzz"]
}
Adds members to a group chat.
{
"action": "remove_members",
"chat_id": "oc_xxx",
"member_ids": ["ou_zzz"]
}
Removes members from a group chat (requires admin permissions).
| Type | Description |
|---|---|
p2p | Private chat between two users |
group | Group chat with multiple members |
Tool Class: FeishuChatTools.kt
Available Tools:
feishu_chat_get - Get chat infofeishu_chat_members - List chat membersfeishu_chat_create - Create group chatfeishu_chat_add_members - Add membersExample Usage:
// Get chat info
val result = feishuChatTools.getChatInfo(chatId = "oc_xxx")
// Create group chat
val result = feishuChatTools.createGroupChat(
name = "Project Team",
description = "Project discussion",
memberIds = listOf("ou_xxx", "ou_yyy")
)
// Add members
val result = feishuChatTools.addMembers(
chatId = "oc_xxx",
memberIds = listOf("ou_zzz")
)
Required: im:chat, im:chat:readonly
open_id format for member IDs (ou_xxx)