feishu-wiki

feishu-wiki is a skill for Claude Code, Codex from OPPO-Mente-Lab/X-OmniClaw. It costs 24 tokens per session (646 once invoked), scanned A, a copy of feishu-wiki, Apache-2.0.

A navigation guide for Feishu's knowledge base, or wiki, where teams store linked documents and other information. It explains how to find spaces and pages and how to read or edit their documents.

In plain words
What is it for?
Use it to list knowledge spaces, browse page trees, open wiki pages, create nodes, and read or update linked Feishu documents.
Why use it?
It provides the steps and identifiers needed to move from a wiki link to the underlying page or document.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to list knowledge spaces, browse page trees, open wiki pages, create nodes, and read or update linked Feishu documents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oppo-mente-lab/x-omniclaw/feishu-wiki
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OPPO-Mente-Lab/X-OmniClaw --skill feishu-wiki
Clone the repo
git clone --depth 1 https://github.com/OPPO-Mente-Lab/X-OmniClaw

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for feishu-wiki

README.md
[![agentmods](https://agentmods.dev/badge/skills/oppo-mente-lab/x-omniclaw/feishu-wiki/github.svg)](https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/feishu-wiki)
Your own site
<a href="https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/feishu-wiki"><img src="https://agentmods.dev/badge/skills/oppo-mente-lab/x-omniclaw/feishu-wiki/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for feishu-wiki

Your own site · 80×15
<a href="https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/feishu-wiki"><img src="https://agentmods.dev/badge/skills/oppo-mente-lab/x-omniclaw/feishu-wiki.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 646 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 86% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00024 $0.00646
Opus 5 $0.00012 $0.00323
Sonnet 5 $0.00005 $0.00129
Haiku 4.5 $0.00002 $0.00065

Measured 12d ago against content hash 9418dbc881eb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

feishu-wiki scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

86% identical to feishu-wiki — 196 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

extensions/feishu/skills/feishu-wiki/SKILL.md · 101 lines

How it starts

The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

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": "..." }

X-OmniClaw Implementation

Tool Class: FeishuWikiTools.kt

Available Tools:

  • feishu_wiki_spaces - List knowledge spaces
  • feishu_wiki_nodes - List nodes in space
  • feishu_wiki_get - Get node details
  • feishu_wiki_create - Create new node

Example Usage:

// List spaces
val result = feishuWikiTools.listSpaces()

// Create wiki page
val result = feishuWikiTools.createNode(
    spaceId = "7xxx",
    title = "New Page",
    objType = "docx"
)

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.

Read the full file on GitHub · 101 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 101 lines · 24 tokens per session scan A 9418dbc881eb

Subscribe to this mod's changes

feishu-wiki is a skill published in the GitHub repository OPPO-Mente-Lab/X-OmniClaw (261 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 24 tokens to every session and 646 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 86% identical to feishu-wiki, differing in 196 lines, and is treated as a copy.

Related

Other skills, from other repositories

docx

Read, edit, or create Microsoft Word .docx files. Trigger this skill whenever the user mentions a Word document, .docx file, contract, report, brief, memo, or asks to extract text, modify an existing doc, generate one from a brief, or audit tracked changes. Three execution paths: text-and-structure extraction…

opensquilla/opensquilla · 111 tokens

pdf-toolkit

Structured .pdf operations: extract text/tables, merge pages from multiple PDFs, split a PDF by page ranges, fill PDF form fields, and generate fresh PDFs from JSON. Trigger when the user wants programmatic PDF work without natural-language rewriting — examples: pull tables from a report, combine three PDFs, extract…

opensquilla/opensquilla · 127 tokens

xlsx

Read, edit, or create Microsoft Excel .xlsx workbooks. Trigger this skill whenever the user mentions a spreadsheet, .xlsx file, workbook, sheet, formula, pivot table, or asks to extract tabular data, modify a sheet, or build a workbook from rows. Three execution paths: structured inspection, in-place cell edits, and…

opensquilla/opensquilla · 108 tokens

nano-pdf

Edit PDFs with natural-language instructions using the nano-pdf CLI.

opensquilla/opensquilla · 17 tokens

liteparse

Use this skill when the user asks to parse, perform multi-format document conversion or spatially extract text from an unstructured file (PDF, DOCX, PPTX, XLSX, images, etc.) locally without cloud dependencies.

synthetic-sciences/openscience · 49 tokens

meta-pdf-intelligence

Use this meta-skill instead of answering directly when the user needs PDF analysis, pasted PDF excerpt analysis, digesting, comparison, or question answering that benefits from multi-skill orchestration across PDF extraction, summarization, cross-document synthesis, traceable evidence indexing, and memory capture.

opensquilla/opensquilla · 63 tokens