feishu-wiki/SKILL.md
--- name: feishu-wiki description: Feishu knowledge base operations. Actions: spaces, nodes, get, create, move, rename tags: [feishu, lark, wiki, knowledge, spaces, nodes, move] --- # Feishu Wiki Management Manage Feishu (Lark) Knowledge Base structure. Create spaces, list nodes, move pages, and manage hierarchy. ## Prerequisites - Requires `feishu-common` for authentication. - Must be configured with `FEISHU_APP_ID` and `FEISHU_APP_SECRET`. ## Actions - `spaces`: List knowledge spaces. -
npx skillsauth add autogame-17/feishu-skills feishu-wikiInstall 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.
Manage Feishu (Lark) Knowledge Base structure. Create spaces, list nodes, move pages, and manage hierarchy.
feishu-common for authentication.FEISHU_APP_ID and FEISHU_APP_SECRET.spaces: List knowledge spaces.nodes: List nodes in a space (with optional parent filter).get: Get details of a specific node.create: Create a new node (page) in a space.move: Move a node to a new parent or space.rename: Update node title.# List all knowledge spaces
node skills/feishu-wiki/index.js --action spaces
# List nodes in a specific space
node skills/feishu-wiki/index.js --action nodes --space_id <space_id>
# Get details of a node (resolve from token)
node skills/feishu-wiki/index.js --action get --token <wiki_token>
# Create a new node under a parent
node skills/feishu-wiki/index.js --action create --space_id <space_id> --parent_node_token <parent_token> --obj_type docx --title "New Page"
# Move a node
node skills/feishu-wiki/index.js --action move --token <node_token> --target_parent_token <new_parent_token> --target_space_id <space_id>
# Rename a node (updates title)
node skills/feishu-wiki/index.js --action rename --token <node_token> --title "New Title"
feishu-doc to manipulate the content of the pages. Use feishu-wiki to manipulate the structure.token refers to the Wiki Token (from URL /wiki/XXX).obj_type defaults to docx. Can be sheet, bitable, etc.tools
# Feishu Whiteboard Skill Allows creating and manipulating Feishu Whiteboards programmatically. ## Configuration Requires `FEISHU_APP_ID` and `FEISHU_APP_SECRET` in environment or `config.json`. Scopes required: `board:whiteboard:node:create` **Whiteboard scripts** (draw_*.js, relocate.js, debug_*.js, create_dashboard_real.js): - `FEISHU_WHITEBOARD_ID` — target whiteboard ID (or use `--board-id=ID` CLI arg) **Wiki board creation** (create_wiki_board.js): - `FEISHU_WIKI_SPACE_ID` — wiki space
content-media
Sends voice messages (audio) to Feishu chats using Duby TTS.
development
# Feishu Video Conference Skill Manage Feishu Video Conferences (VC). ## Usage ### Reserve a Meeting Create a meeting reservation. ```bash node skills/feishu-vc/reserve.js --subject "Meeting Title" --time "2026-02-04T10:00:00+08:00" ``` ## API Reference - Reserve: `POST /open-apis/vc/v1/reserve` - Permissions required: `vc:meeting:request` (Update meeting reservation info) ## Setup Requires `FEISHU_APP_ID` and `FEISHU_APP_SECRET`.
tools
# Feishu Toolkit **Description:** A consolidated, robust toolkit for Feishu operations (Image, Post, Doc, etc.). Currently features a safer image sender. ## Commands ### Send Image Upload and send an image to a chat or user. Uses `util.parseArgs` for robust argument handling. ```bash node skills/feishu-toolkit/send-image.js --target <id> --file <path> ``` **Parameters:** - `--target` (required): User OpenID (`ou_...`) or Chat ID (`oc_...`) - `--file` (required): Path to local image file **