feishu-wiki
Feishu knowledge base navigation. Activate when user mentions knowledge base, wiki, or wiki links.
npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-wiki --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Feishu Wiki Tool Single tool `feishu_wiki` for knowledge base operations. ## Token Extraction From URL `https://xxx.feishu.cn/wiki/ABC123def` → `token` = `ABC123def` ## Actions ### List Knowledge Spaces ```json { "action": "spaces" } ``` Returns all accessible wiki spaces. ### List Nodes ```json { "action": "nodes", "space_id": "7xxx" } ``` With parent: ```json { "action": "nodes", "space_id": "7xxx", "parent_node_token": "wikcnXXX" } ``` ### Get Node Details ```json { "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 ```json { "action": "create", "space_id": "7xxx", "title": "New Page" } ``` With type and parent: ```json { "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 ```json { "action": "move", "space_id": "7xxx", "node_token": "wikcnXXX" } ``` To different location: ```json { "action": "move", "space_id": "7xxx", "node_token": "wikcnXXX", "target_space_id": "7yyy", "target_parent_token"
- Token Extraction
- Actions
- List Knowledge Spaces
- List Nodes
- Get Node Details
- Create Node
- Move Node
- Rename Node
- Wiki-Doc Workflow
- Configuration
- Permissions
What does the feishu-wiki skill do?
Feishu knowledge base navigation. Activate when user mentions knowledge base, wiki, or wiki links.
How do I install it?
Run `npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-wiki --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From SafeAI-Lab-X/ClawKeeper, a repository with 1,027 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
