feishu-wiki

feishu-wiki is a skill for Claude Code, Codex from djblack1209-coder/OpenClaw-Bot. It costs 24 tokens per session (670 once invoked), scanned A, a copy of feishu-wiki, Apache-2.0.

A navigation tool for Feishu Wiki, Feishu’s shared knowledge-base service. It can list knowledge spaces and pages, read page details, create pages, and move or rename them.

In plain words
What is it for?
Use it to find wiki spaces and pages, inspect page details, create new pages, and reorganise wiki content.
Why use it?
It removes the need to navigate the knowledge base manually when locating or organising shared documentation.

Skill for Claude CodeCodex

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

Good fit Use it to find wiki spaces and pages, inspect page details, create new pages, and reorganise wiki content.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/djblack1209-coder/openclaw-bot/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 djblack1209-coder/OpenClaw-Bot --skill feishu-wiki
Clone the repo
git clone --depth 1 https://github.com/djblack1209-coder/OpenClaw-Bot

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/djblack1209-coder/openclaw-bot/feishu-wiki.svg)](https://agentmods.dev/skills/djblack1209-coder/openclaw-bot/feishu-wiki)
Your own site
<a href="https://agentmods.dev/skills/djblack1209-coder/openclaw-bot/feishu-wiki"><img src="https://agentmods.dev/badge/skills/djblack1209-coder/openclaw-bot/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. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00024 $0.00670
Opus 5 $0.00012 $0.00335
Sonnet 5 $0.00005 $0.00134
Haiku 4.5 $0.00002 $0.00067

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

packages/openclaw-npm/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. 8d 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 djblack1209-coder/OpenClaw-Bot (5 stars, last pushed 3d ago), licensed Apache-2.0. 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.

Related

Other skills, from other repositories

inspector-workbench

Runs Inspector UI work on the standalone Threads state lab so the agent can see the overlay. Use when a CopilotKit employee asks an agent to fix, polish, add, or debug Inspector UI, chrome, panes, overlay actions, launcher, Home, Threads, Playground, Memory, or any visual behavior in @copilotkit/web-inspector. Don't…

CopilotKit/CopilotKit · 112 tokens

hygiene

Data-retention and memory-hygiene summarization. Compress one calendar day of source-table rows, or a cluster of older same-source memories, into a single dense paragraph. Use when bounding storage growth while preserving the gist for retrieval.

Glad-Labs/poindexter · 51 tokens

recall-conversation

Recall something said earlier in this voice conversation — semantic search over the voicemessages table. Use when the user says "what did I say about X earlier?", "remind me what we talked about", "did I mention X already?", "what was that thing I said about". Different from recall-decision (curated memory) — this is…

Glad-Labs/poindexter · 80 tokens

recall-decision

Look up a past decision or memory specifically — filtered to memory-type embeddings (decision logs, project notes, feedback). Use when the user says "what did I decide about", "what was decided", "why did we choose", "remind me about [project]", or "what's our policy on".

Glad-Labs/poindexter · 67 tokens

search-memory

Search semantic memory across all embedded content (memory, posts, issues, audit). Use when the user says "what do I know about", "search memory for", "recall", "find references to", or asks open-ended questions about prior context.

Glad-Labs/poindexter · 54 tokens

a2ui-renderer

Render A2UI (Agent-to-UI declarative surfaces) in CopilotKit v2. Enable the runtime via CopilotRuntime({ a2ui: {...} }), then enable the provider via . Auto-activates via /info — do NOT manually pass renderActivityMessages. createA2UIMessageRenderer ships from @copilotkit/react-core/v2; low-level primitives…

CopilotKit/CopilotKit · 175 tokens