feishu-bitable

feishu-bitable is a skill for Claude Code, Codex from OPPO-Mente-Lab/X-OmniClaw. It costs 29 tokens per session (738 once invoked), scanned A, original, Apache-2.0.

A tool for working with Feishu Bitable, Feishu’s database-like spreadsheet for organizing structured records. It can inspect tables, search records, and change the data.

In plain words
What is it for?
Use it to list tables, inspect fields and record counts, query matching records, and create, edit, or delete records.
Why use it?
It avoids manually opening tables to find or edit individual records. Filters can narrow results before records are created, updated, or deleted.

Skill for Claude CodeCodex

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

Good fit Use it to list tables, inspect fields and record counts, query matching records, and create, edit, or delete records.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oppo-mente-lab/x-omniclaw/feishu-bitable
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-bitable
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-bitable

README.md
[![agentmods](https://agentmods.dev/badge/skills/oppo-mente-lab/x-omniclaw/feishu-bitable/github.svg)](https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/feishu-bitable)
Your own site
<a href="https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/feishu-bitable"><img src="https://agentmods.dev/badge/skills/oppo-mente-lab/x-omniclaw/feishu-bitable/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-bitable

Your own site · 80×15
<a href="https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/feishu-bitable"><img src="https://agentmods.dev/badge/skills/oppo-mente-lab/x-omniclaw/feishu-bitable.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 738 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 original No closer match found 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.00029 $0.00738
Opus 5 $0.00015 $0.00369
Sonnet 5 $0.00006 $0.00148
Haiku 4.5 $0.00003 $0.00074

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

Security

Grade A, and why

feishu-bitable 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 11d 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.

extensions/feishu/skills/feishu-bitable/SKILL.md · 138 lines

How it starts

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

Feishu Bitable Tool

Tool feishu_bitable for multi-dimensional table operations.

Token Extraction

From URL https://xxx.feishu.cn/base/ABC123defapp_token = ABC123def

Actions

List Tables

{ "action": "list_tables", "app_token": "ABC123def" }

Returns: all tables in the bitable app.

Get Table Info

{ "action": "get_table", "app_token": "ABC123def", "table_id": "tblXXX" }

Returns: table name, fields, record count.

Query Records

{
  "action": "query_records",
  "app_token": "ABC123def",
  "table_id": "tblXXX",
  "filter": "field_name=\"value\"",
  "page_size": 20
}

Returns: records matching filter criteria.

Create Record

{
  "action": "create_record",
  "app_token": "ABC123def",
  "table_id": "tblXXX",
  "fields": {
    "field1": "value1",
    "field2": "value2"
  }
}

Creates a new record in the table.

Update Record

{
  "action": "update_record",
  "app_token": "ABC123def",
  "table_id": "tblXXX",
  "record_id": "recXXX",
  "fields": {
    "field1": "new_value"
  }
}

Updates an existing record.

Delete Record

{
  "action": "delete_record",
  "app_token": "ABC123def",
  "table_id": "tblXXX",
  "record_id": "recXXX"
}

Deletes a record from the table.

X-OmniClaw Implementation

Tool Class: FeishuBitableTools.kt

Available Tools:

  • feishu_bitable_list_tables - List all tables
  • feishu_bitable_query - Query records
  • feishu_bitable_create - Create record
  • feishu_bitable_update - Update record
  • feishu_bitable_delete - Delete record

Example Usage:

// Query records
val result = feishuBitableTools.queryRecords(
    appToken = "ABC123def",
    tableId = "tblXXX",
    filter = "Status=\"Active\""
)

// Create record
val result = feishuBitableTools.createRecord(
    appToken = "ABC123def",
    tableId = "tblXXX",
    fields = mapOf(
        "Name" to "Task 1",
        "Status" to "Active"
    )
)

Read the full file on GitHub · 138 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. 11d ago First seen · 138 lines · 29 tokens per session scan A dc58de08a7a6

Subscribe to this mod's changes

feishu-bitable 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 29 tokens to every session and 738 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories