feishu-wiki

feishu-wiki is a skill for Claude Code, Codex from ApiliumCode/mayros. It costs 24 tokens per session (670 once invoked), scanned A, a copy of feishu-wiki, MIT.

A tool for navigating Feishu knowledge bases, which are shared collections of linked pages and documents. It can list spaces and pages, inspect pages, create pages, and move them.

In plain words
What is it for?
Listing knowledge spaces and their pages, opening page details, creating pages of several supported types, renaming or moving pages, and locating the document behind a wiki link.
Why use it?
It removes the need to search through a Feishu wiki manually to find pages or understand where they are organized. Pages that contain documents can be passed to the Feishu document tool for editing.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/apiliumcode/mayros/feishu-wiki
Any agent
npx skills add ApiliumCode/mayros --skill feishu-wiki
Clone the repo
git clone --depth 1 https://github.com/ApiliumCode/mayros

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/apiliumcode/mayros/feishu-wiki.svg)](https://agentmods.dev/skills/apiliumcode/mayros/feishu-wiki)
Your own site
<a href="https://agentmods.dev/skills/apiliumcode/mayros/feishu-wiki"><img src="https://agentmods.dev/badge/skills/apiliumcode/mayros/feishu-wiki.svg" alt="Measured on agentmods" 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 670 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% 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 $0.00024 $0.00670
Opus 5 $0.00012 $0.00335
Sonnet 5 $0.00005 $0.00134
Haiku 4.5 $0.00002 $0.00067

Measured 3d ago against content hash cad3b27ae0fe, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 3d 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

100% identical to feishu-wiki — 23 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 · 112 lines

How it starts

The opening of the file, as written. The whole thing — 112 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

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

Read the full file on GitHub · 112 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. 3d ago First seen · 112 lines · 24 tokens per session scan A cad3b27ae0fe

Subscribe to this mod's changes

feishu-wiki is a skill published in the GitHub repository ApiliumCode/mayros (12 stars, last pushed 1mo ago), licensed MIT. It adds 24 tokens to every session and 670 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to feishu-wiki, differing in 23 lines, and is treated as a copy.