Agent skill

feishu-wiki

Feishu knowledge base navigation. Activate when user mentions knowledge base, wiki, or wiki links.

SafeAI-Lab-Xgithub.com/SafeAI-Lab-XGitHub ↗
claude-code
Install
npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-wiki --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: legacy/clawkeeper-watcher/extensions/feishu/skills/feishu-wiki/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,027
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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"

What's inside
Steps it walks through
  1. Token Extraction
  2. Actions
  3. List Knowledge Spaces
  4. List Nodes
  5. Get Node Details
  6. Create Node
  7. Move Node
  8. Rename Node
  9. Wiki-Doc Workflow
  10. Configuration
  11. Permissions
More from ClawKeeper
All skills →
About this skill
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.

Keep going