feishu-wiki

m1heng/clawdbot-feishu · updated Apr 8, 2026

$npx skills add https://github.com/m1heng/clawdbot-feishu --skill feishu-wiki
0 commentsdiscussion
summary

Navigate and manage Feishu knowledge base spaces, nodes, and wiki pages.

  • Four core actions: list spaces and nodes, retrieve node details, create new pages (docx, sheet, bitable, mindnote, file, doc, slides), and move or rename existing nodes
  • Extract wiki tokens from Feishu URLs and use them to fetch node metadata including object tokens for content editing
  • Requires feishu_doc skill to be enabled for reading and writing wiki page content; use feishu_wiki for navigation, then hand off
skill.md

Feishu Wiki Tool

Single tool feishu_wiki for knowledge base operations.

Token Extraction

From URL https://xxx.feishu.cn/wiki/ABC123deftoken = ABC123def

Actions

List Knowledge Spaces

{ "action": "spaces" }

Returns all accessible wiki spaces.

List Nodes

{ "action": "nodes", "space_id": "7xxx" }

With parent:

{ "action": "nodes", "space_id": "7xxx", "parent_node_token": "wikcnXXX" }

Get Node Details

{ "action": "get", "token": "ABC123def" }

Returns: node_token, obj_token, obj_type, etc. Use obj_token with feishu_doc to read/write the document.

Create Node

{ "action": "create", "space_id": "7xxx", "title": "New Page" }

With type and parent:

{ "action": "create", "space_id": "7xxx", "title": "Sheet", "obj_type": "sheet", "parent_node_token": "wikcnXXX" }

obj_type: docx (default), sheet, bitable, mindnote, file, doc, slides

Move Node

{ "action": "move", "space_id": "7xxx", "node_token": "wikcnXXX" }

To different location:

{ "action": "move", "space_id": "7xxx", "node_token": "wikcnXXX", "target_space_id": "7yyy", "target_parent_token": "wikcnYYY" }

Rename Node

{ "action": "rename", "space_id": "7xxx", "node_token": "wikcnXXX", "title": "New Title" }

Wiki-Doc Workflow

To edit a wiki page:

  1. Get node: { "action": "get", "token": "wiki_token" } → returns obj_token
  2. Read doc: feishu_doc { "action": "read", "doc_token": "obj_token" }
  3. Write doc: feishu_doc { "action": "write", "doc_token": "obj_token", "content": "..." }

Configuration

channels:
  feishu:
    tools:
      wiki: true  # default: true
      doc: true   # required - wiki content uses feishu_doc

Dependency: This tool requires feishu_doc to be enabled. Wiki pages are documents - use feishu_wiki to navigate, then feishu_doc to read/edit content.

Permissions

Required: wiki:wiki or wiki:wiki:readonly

Discussion

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

Ratings

4.630 reviews
  • Ganesh Mohane· Dec 16, 2024

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

  • Ren Menon· Dec 12, 2024

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

  • Naina Farah· Dec 4, 2024

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

  • Neel Kim· Nov 23, 2024

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

  • Sakshi Patil· Nov 7, 2024

    Keeps context tight: feishu-wiki is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Chaitanya Patil· Oct 26, 2024

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

  • Layla Verma· Oct 14, 2024

    feishu-wiki is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Piyush G· Sep 5, 2024

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

  • Aditi Thompson· Sep 1, 2024

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

  • Shikha Mishra· Aug 24, 2024

    feishu-wiki is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

showing 1-10 of 30

1 / 3