feishu-cli-perm

riba2534/feishu-cli · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/riba2534/feishu-cli --skill feishu-cli-perm
0 commentsdiscussion
summary

飞书云文档权限管理:添加/更新/删除/查看协作者、公开权限管理、分享密码、批量添加、权限检查、转移所有权。

skill.md

飞书权限管理技能

飞书云文档权限管理:添加/更新/删除/查看协作者、公开权限管理、分享密码、批量添加、权限检查、转移所有权。

适用场景

  • 给飞书文档添加/更新/删除协作者权限
  • 查看文档协作者列表
  • 管理文档公开权限(外部访问、链接分享)
  • 设置/刷新/删除分享密码
  • 批量添加协作者
  • 检查用户对文档的权限
  • 转移文档所有权

前置条件

安装与认证

  • feishu-cli:如尚未安装,请前往 riba2534/feishu-cli 获取安装方式
  • 认证:使用 App Token(应用身份),需配置 App ID 和 App Secret(环境变量或 ~/.feishu-cli/config.yaml)。无需 auth login(User Token 不适用于权限管理 API)。

所需权限 scope

scope 说明
docs:permission.member:create 添加协作者
docs:permission.member:readonly 查看协作者列表
docs:permission.member:delete 删除协作者
docs:permission.setting:write 更新公开权限、密码管理
drive:drive 云空间文件操作(含转移所有权)

快速开始

# 给用户添加编辑权限(最常用操作)
feishu-cli perm add <TOKEN> --doc-type docx --member-type email --member-id [email protected] --perm edit --notification

# 查看文档协作者列表
feishu-cli perm list <TOKEN> --doc-type docx

# 删除指定协作者
feishu-cli perm delete <TOKEN> --doc-type docx --member-type email --member-id [email protected]

命令总览

一、基础操作

命令 说明
perm add 添加协作者权限
perm update 更新已有协作者的权限级别
perm list 查看协作者列表
perm delete 删除协作者

二、高级操作

命令 说明
perm batch-add 从 JSON 文件批量添加协作者
perm transfer-owner 转移文档所有权
perm auth 检查当前用户对文档的权限

三、公开设置

命令 说明
perm public-get 查看文档公开权限设置
perm public-update 更新公开权限(外部访问、链接分享等)
perm password create 创建分享密码
perm password update 刷新分享密码
perm password delete 删除分享密码

命令详情

添加权限

feishu-cli perm add <TOKEN> \
  --doc-type <DOC_TYPE> \
  --member-type <MEMBER_TYPE> \
  --member-id <MEMBER_ID> \
  --perm <PERM> \
  [--notification]

更新权限

feishu-cli perm update <TOKEN> \
  --doc-type <DOC_TYPE> \
  --member-type <MEMBER_TYPE> \
  --member-id <MEMBER_ID> \
  --perm <PERM>

查看协作者列表

feishu-cli perm list <TOKEN> --doc-type <DOC_TYPE>

删除协作者

feishu-cli perm delete <TOKEN> \
  --doc-type <DOC_TYPE> \
  --member-type <MEMBER_TYPE> \
  --member-id <MEMBER_ID>

批量添加协作者

feishu-cli perm batch-add <TOKEN> \
  --members-file <members.json> \
  [--notification]

members.json 格式:

[
  {"member_type": "email", "member_id": "[email protected]", "perm": "edit"},
  {"member_type": "email", "member_id": "[email protected]", "perm": "view"}
]

转移所有权

feishu-cli perm transfer-owner <TOKEN> \
  --member-type <MEMBER_TYPE> \
  --member-id <MEMBER_ID> \
  [--notification] \
  [--remove-old-owner] \
  [--stay-put] \
  [--old-owner-perm <view|edit|full_access>]
参数 默认值 说明
--notification true 通知新所有者
--remove-old-owner false 移除原所有者权限
--stay-put false 文档保留在原位置
--old-owner-perm full_access 原所有者保留权限(仅 remove-old-owner=false 时生效)

权限检查

feishu-cli perm auth <TOKEN> --action <ACTION> [--doc-type <DOC_TYPE>]

可用的 action 值:vieweditsharecommentexport

查看公开权限

feishu-cli perm public-get <TOKEN>

更新公开权限

feishu-cli perm public-update <TOKEN> \
  [--external-access] \
  [--link-share-entity <anyone_readable|anyone_editable|...>]

分享密码管理

feishu-cli perm password create <TOKEN> [--doc-type <DOC_TYPE>]
feishu-cli perm password update <TOKEN> [--doc-type <DOC_TYPE>]
feishu-cli perm password delete <TOKEN> [--doc-type <DOC_TYPE>]

参数说明

perm(权限级别)

说明 使用场景
view 查看权限 只读分享给外部人员或大范围分享,保护文档不被误改
edit 编辑权限 团队协作编辑,日常最常用的权限级别
full_access 完全访问权限 管理员权限,包含管理协作者、文档设置、导出、查看历史版本等全部能力

member-type(协作者 ID 类型)

别名(IM 风格) 说明 使用场景 示例
email 邮箱 最常用,精确到个人 [email protected]
openid open_id Open ID 通过开放平台获取的用户 ID ou_xxx
userid user_id User ID 企业内部用户 ID 123456
unionid union_id Union ID 跨应用统一 ID on_xxx
openchat chat_id 群聊 ID 按群聊授权,群内所有成员获得权限 oc_xxx
opendepartmentid 部门 ID 按部门授权,部门内所有成员获得权限 od_xxx
groupid 群组 ID 用户组 gc_xxx
wikispaceid 知识空间 ID 知识库空间 ws_xxx

IM API 风格别名(open_iduser_idunion_idchat_id)会自动映射为标准值,两种写法等效。

doc-type(云文档类型)

说明
docx 新版文档(默认)
doc 旧版文档
sheet 电子表格
bitable 多维表格
wiki 知识库
file 文件
folder 文件夹
mindnote 思维笔记
minutes 妙记
slides 幻灯片

Token 前缀对应关系

前缀 doc-type
docx_ docx
doccn doc
sht_ sheet
bascn bitable
wikicn wiki
fldcn folder

示例

按邮箱添加用户为编辑者

feishu-cli perm add docx_xxxxxx \
  --doc-type docx \
  --member-type email \
  --member-id [email protected] \
  --perm edit \
  --notification

更新已有权限为完全访问

feishu-cli perm update docx_xxxxxx \
  --doc-type docx \
  --member-type email \
  --member-id [email protected] \
  --perm full_access

给群聊添加编辑权限

feishu-cli perm add sht_xxxxxx \
  --doc-type sheet \
  --member-type openchat \
  --member-id oc_xxxxxx \
  --perm edit

按部门添加查看权限

feishu-cli perm add sht_xxxxxx \
  --doc-type sheet \
  --member-type opendepartmentid \
  --member-id od_xxxxxx \
  --perm view

转移所有权并保留原所有者查看权限

feishu-cli perm transfer-owner docx_xxxxxx \
  --member-type email \
  --member-id [email protected] \
  --old-owner-perm view

设置文档为"链接可读"

feishu-cli perm public-update docx_xxxxxx \
  --external-access \
  --link-share-entity anyone_readable

创建文档后标准授权流程

# 1. 授予完全访问权限
feishu-cli perm add <TOKEN> \
  --doc-type docx \
  --member-type email \
  --member-id [email protected] \
  --perm full_access \
  --notification

# 2. 转移文档所有权
feishu-cli perm transfer-owner <TOKEN> \
  --doc-type docx \
  --member-type email \
  --member-id [email protected] \
  --notification

错误排障

错误 原因 解决方法
Permission denied / 权限不足 App 未开通相关权限 scope 在飞书开放平台 -> 权限管理中申请 docs:permission.member:create 等权限
doc-type mismatch / Token 无效 doc-type 与实际文档类型不匹配 检查 Token 前缀:docx_ -> docx、sht_ -> sheet、bascn -> bitable
member not found member-id 不存在或 member-type 不正确 确认邮箱/ID 正确,注意 email 类型需要用户的飞书注册邮箱
password create: Permission denied 分享密码为企业版功能 确认企业是否开通此功能,或联系管理员开启
transfer-owner: no permission 只有文档所有者或管理员可转移 先用 perm list 确认当前 App 身份,确保是文档创建者

参考文档

perm add 命令的详细参数枚举和输入检查清单见 references/add_permission.md

how to use feishu-cli-perm

How to use feishu-cli-perm on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add feishu-cli-perm
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/riba2534/feishu-cli --skill feishu-cli-perm

The skills CLI fetches feishu-cli-perm from GitHub repository riba2534/feishu-cli and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/feishu-cli-perm

Reload or restart Cursor to activate feishu-cli-perm. Access the skill through slash commands (e.g., /feishu-cli-perm) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.758 reviews
  • Sakura Bansal· Dec 28, 2024

    Solid pick for teams standardizing on skills: feishu-cli-perm is focused, and the summary matches what you get after install.

  • Jin Gupta· Dec 28, 2024

    We added feishu-cli-perm from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Noah Perez· Dec 16, 2024

    feishu-cli-perm has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Chaitanya Patil· Dec 8, 2024

    We added feishu-cli-perm from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Omar Gonzalez· Dec 8, 2024

    feishu-cli-perm reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Piyush G· Nov 27, 2024

    feishu-cli-perm fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Omar Mehta· Nov 19, 2024

    Registry listing for feishu-cli-perm matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Jin Tandon· Nov 19, 2024

    feishu-cli-perm fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Ama Gupta· Nov 15, 2024

    I recommend feishu-cli-perm for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Hana Bansal· Nov 7, 2024

    Useful defaults in feishu-cli-perm — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

showing 1-10 of 58

1 / 6