<< All versions
Skill v1.0.0
currentAutomated scan100/100autogame-17/feishu-skills/feishu-wiki
──Details
PublishedJune 24, 2026 at 09:30 PM
Content Hashsha256:8edd67313b00e5cd...
Git SHA7a74404bec1e
──Files
Files (1 file, 1.7 KB)
SKILL.md1.7 KBactive
SKILL.md · 53 lines · 1.7 KB
version: "1.0.0" 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-commonfor authentication. - Must be configured with
FEISHU_APP_IDandFEISHU_APP_SECRET.
Actions
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.
Usage
bash
# List all knowledge spacesnode skills/feishu-wiki/index.js --action spaces# List nodes in a specific spacenode 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 parentnode skills/feishu-wiki/index.js --action create --space_id <space_id> --parent_node_token <parent_token> --obj_type docx --title "New Page"# Move a nodenode 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"
Tips
- Use
feishu-docto manipulate the content of the pages. Usefeishu-wikito manipulate the structure. tokenrefers to the Wiki Token (from URL/wiki/XXX).obj_typedefaults todocx. Can besheet,bitable, etc.