skills/mylukin/openclaw-feishu-ops-assistant/SKILL.md
Feishu (Lark) workspace operations for OpenClaw agents. Provides document CRUD, cloud drive management, permission control, and knowledge-base navigation through a unified tool surface. Activate when user mentions Feishu docs, wiki, drive, permissions, or Lark cloud documents.
npx skillsauth add aiskillstore/marketplace openclaw-feishu-ops-assistantInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A skill bundle that teaches OpenClaw agents how to operate Feishu (Lark) workspace resources: documents, cloud drive, permissions, and knowledge bases.
Platform: OpenClaw with the
feishuplugin enabled. Trigger keywords: Feishu, Lark, 飞书, cloud doc, wiki, drive, permissions, 文档, 知识库, 云空间, 权限
| # | Skill | Tool | What it does |
|---|-------|------|-------------|
| 1 | feishu-doc | feishu_doc | Read, write, append, create documents; manage blocks and tables |
| 2 | feishu-drive | feishu_drive | List, create, move, and delete files/folders in cloud storage |
| 3 | feishu-perm | feishu_perm | Add/remove collaborators, manage sharing and permissions |
| 4 | feishu-wiki | feishu_wiki | Navigate knowledge bases, create/move/rename wiki pages |
clawhub install openclaw-feishu-ops-assistant
Read this doc: https://xxx.feishu.cn/docx/ABC123def
Single tool feishu_doc with an action parameter for all document operations.
From URL https://xxx.feishu.cn/docx/ABC123def → doc_token = ABC123def
| Action | Description |
|--------|-------------|
| read | Get plain-text content + block statistics |
| write | Replace entire document with Markdown |
| append | Append Markdown to end of document |
| create | Create a new document (optionally in a folder) |
| list_blocks | List all blocks (tables, images, code, etc.) |
| get_block | Get a single block by ID |
| update_block | Update block text content |
| delete_block | Delete a block |
| Action | Description |
|--------|-------------|
| create_table | Create a table in a document |
| create_table_with_values | Create a table pre-filled with data |
| write_table_cells | Write values into existing table cells |
| insert_table_row / insert_table_column | Insert rows or columns |
| delete_table_rows / delete_table_columns | Delete rows or columns |
| merge_table_cells | Merge a range of cells |
| Action | Description |
|--------|-------------|
| upload_image | Upload an image (URL, file path, or base64) into a document |
| upload_file | Upload a file attachment into a document |
action: "read" — get plain text + statistics.block_types in response for Table, Image, Code, etc.action: "list_blocks" for full data.docx:document, docx:document:readonly, docx:document.block:convert, drive:drive
Single tool feishu_drive for cloud storage operations.
From URL https://xxx.feishu.cn/drive/folder/ABC123 → folder_token = ABC123
| Action | Description |
|--------|-------------|
| list | List folder contents (root if no token) |
| info | Get file metadata |
| create_folder | Create a new folder |
| move | Move a file/folder |
| delete | Delete a file/folder |
doc, docx, sheet, bitable, folder, file, mindnote, shortcut
Feishu bots have no root folder. The bot can only access files/folders that have been shared with it. Users must first create a folder and share it with the bot.
drive:drive (full) or drive:drive:readonly (read-only)
Single tool feishu_perm for managing file/document permissions.
Disabled by default — permission management is sensitive. Enable via config:
channels: feishu: tools: perm: true
| Action | Description |
|--------|-------------|
| list | List collaborators on a resource |
| add | Add a collaborator (email, user ID, group, department) |
| remove | Remove a collaborator |
| Level | Description |
|-------|-------------|
| view | View only |
| edit | Can edit |
| full_access | Full access (can manage permissions) |
email, openid, userid, unionid, openchat, opendepartmentid
drive:permission
Single tool feishu_wiki for knowledge-base operations.
From URL https://xxx.feishu.cn/wiki/ABC123def → token = ABC123def
| Action | Description |
|--------|-------------|
| spaces | List all accessible knowledge spaces |
| nodes | List child nodes of a space or parent node |
| get | Get node details (returns obj_token for doc operations) |
| search | Search for nodes by keyword |
| create | Create a new wiki page (docx, sheet, bitable, etc.) |
| move | Move a node within or across spaces |
| rename | Rename a node |
feishu_wiki { action: "get", token: "wiki_token" } → returns obj_tokenfeishu_doc { action: "read", doc_token: "<obj_token>" }feishu_doc { action: "write", doc_token: "<obj_token>", content: "..." }wiki:wiki or wiki:wiki:readonly
channels:
feishu:
tools:
doc: true # default: true
drive: true # default: true
perm: false # default: false (enable explicitly)
wiki: true # default: true
| Scope | Required for |
|-------|-------------|
| docx:document | Doc read/write |
| docx:document:readonly | Doc read-only |
| docx:document.block:convert | Block operations |
| drive:drive | Drive full access |
| drive:drive:readonly | Drive read-only |
| drive:permission | Permission management |
| wiki:wiki | Wiki full access |
| wiki:wiki:readonly | Wiki read-only |
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.