Feishu Wiki Andy27725
v1.0.0Feishu knowledge base navigation. Activate when user mentions knowledge base, wiki, or wiki links.
运行时依赖
安装命令
点击复制技能文档
Feishu Wiki 工具
Single 工具 feishu_wiki for knowledge base operations.
令牌 提取ion
From URL https://xxx.feishu.cn/wiki/ABC123def → 令牌 = ABC123def
Actions 列出 Knowledge Spaces { "action": "spaces" }
Returns all 访问ible wiki spaces.
列出 Nodes { "action": "nodes", "space_id": "7xxx" }
With parent:
{ "action": "nodes", "space_id": "7xxx", "parent_node_令牌": "wikcnXXX" }
获取 Node DetAIls { "action": "获取", "令牌": "ABC123def" }
Returns: node_令牌, obj_令牌, obj_type, etc. Use obj_令牌 with feishu_doc to read/write the document.
创建 Node { "action": "创建", "space_id": "7xxx", "title": "New Page" }
With type and parent:
{ "action": "创建", "space_id": "7xxx", "title": "Sheet", "obj_type": "sheet", "parent_node_令牌": "wikcnXXX" }
obj_type: docx (default), sheet, bitable, mindnote, file, doc, slides
Move Node { "action": "move", "space_id": "7xxx", "node_令牌": "wikcnXXX" }
To different location:
{ "action": "move", "space_id": "7xxx", "node_令牌": "wikcnXXX", "tar获取_space_id": "7yyy", "tar获取_parent_令牌": "wikcnYYY" }
Rename Node { "action": "rename", "space_id": "7xxx", "node_令牌": "wikcnXXX", "title": "New Title" }
Wiki-Doc 工作流
To edit a wiki page:
获取 node: { "action": "获取", "令牌": "wiki_令牌" } → returns obj_令牌 Read doc: feishu_doc { "action": "read", "doc_令牌": "obj_令牌" } Write doc: feishu_doc { "action": "write", "doc_令牌": "obj_令牌", "content": "..." } Configuration channels: feishu: 工具s: wiki: true # default: true doc: true # required - wiki content uses feishu_doc
Dependency: This 工具 requires feishu_doc to be enabled. Wiki pages are documents - use feishu_wiki to navigate, then feishu_doc to read/edit content.
权限s
Required: wiki:wiki or wiki:wiki:readonly