一键导入
feishu-perm
Feishu permission management for documents and files. Activate when user mentions sharing, permissions, collaborators.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Feishu permission management for documents and files. Activate when user mentions sharing, permissions, collaborators.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Shared Feishu (Lark) authentication and API request helper providing tenant token acquisition with caching, automatic retry with timeout handling, and authenticated request wrappers with token refresh.
Send multiple Feishu (Lark) messages in a single tool call with configurable delay, supporting plain text arrays and mixed content types (text and rich post).
Manage Feishu (Lark) calendars including listing, searching, syncing events, creating calendar entries from task requests, and setting up shared project calendars.
Send rich interactive cards to Feishu (Lark) users or groups with Markdown support, colored headers, action buttons, embedded images, and AI persona styling.
Unified CLI for Feishu (Lark) messaging operations including fetching messages by ID, sending audio voice bubbles, creating group chats, listing pinned messages, and adding emoji reactions.
Feishu native emoji mapping -- emoji_type codes, Chinese names, and Unicode conversion table for card markdown.
| name | feishu-perm |
| description | Feishu permission management for documents and files. Activate when user mentions sharing, permissions, collaborators. |
| tags | ["feishu","permission","share","collaborator","drive"] |
Manage collaborators and public link settings for Feishu Drive files (Docs, Sheets, Bitables, Wikis, Files).
# Add a collaborator (read-only)
node skills/feishu-perm/index.js --action add --token "shttc..." --type "sheet" --member_id "ou_..." --perm "view"
# List collaborators
node skills/feishu-perm/index.js --action list --token "docx..." --type "docx"
# Remove a collaborator
node skills/feishu-perm/index.js --action remove --token "docx..." --type "docx" --member_id "ou_..."
# Update a collaborator (to edit)
node skills/feishu-perm/index.js --action update --token "docx..." --type "docx" --member_id "ou_..." --perm "edit"
# Set public link sharing (Tenant Read)
node skills/feishu-perm/index.js --action public --token "docx..." --type "docx" --link_share_entity "tenant_readable"
--action: add, remove, list, update, public--token: File token (from URL)--type: doc, docx, sheet, bitable, file, wiki, folder (default: doc)--member_id: User Open ID (ou_...) or Chat ID (oc_...)--member_type: user, chat, department, group (default: user)--perm: view, edit, full_access--link_share_entity:
tenant_readable: Organization members can readtenant_editable: Organization members can editanyone_readable: Anyone with link can read (if allowed by tenant)anyone_editable: Anyone with link can editclosed: Only invited members--notify: true/false (send notification to new member)