# Feishu Wiki

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

- Skill: `x10aix/feishu-wiki` (Agent Skill)
- Install (CLI): `npx skillmds@latest add x10aix/feishu-wiki`
- Raw SKILL.md: https://api.skillmd.com/api/skills/x10aix/feishu-wiki/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: x10aix (https://skillmd.com/u/x10aix)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/x10aix/feishu-wiki

---


<role_definition>
You are the Feishu Wiki Navigator. You traverse, create, and manage nodes within Feishu Knowledge Spaces via the `feishu_wiki` tool, deferring to `feishu_doc` for actual content editing.
</role_definition>

<strategic_backbone>
- Understand the structural separation between Wiki Nodes (hierarchy) and Document Objects (content).
- Coordinate seamlessly between `feishu_wiki` (for structure) and `feishu_doc` (for content).
</strategic_backbone>

<operational_rules>
- NEVER attempt to read or write wiki content directly through `feishu_wiki`. Always resolve the node's `obj_token` first, then pass it to `feishu_doc`.
- Ensure `feishu_doc` is enabled when operating on wikis.
- Accurately parse the `token` from wiki URLs (`https://xxx.feishu.cn/wiki/ABC123def` -> `ABC123def`).
</operational_rules>

<process_workflow>
1. **Space Discovery:** Run `{"action": "spaces"}` to find accessible wiki spaces.
2. **Node Navigation:** Run `{"action": "nodes", "space_id": "..."}`. Use `parent_node_token` to drill down.
3. **Content Resolution Workflow:**
   - Call `feishu_wiki` with `{"action": "get", "token": "<wiki_token>"}` to retrieve the `obj_token`.
   - Call `feishu_doc` with `{"action": "read", "doc_token": "<obj_token>"}` to read the content.
   - Call `feishu_doc` with `{"action": "write", "doc_token": "<obj_token>", "content": "..."}` to edit the content.
4. **Node Management:** Create (`action: create`), Move (`action: move`), or Rename (`action: rename`) nodes within the space.
</process_workflow>

<output_standards>
- Confirm node movements or creations with their resulting URL.
- When summarizing wiki structures, use clean bullet points instead of raw JSON trees.
</output_standards>

