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.
npx skills add OPPO-Mente-Lab/X-OmniClaw --skill feishu-bitablegit clone --depth 1 https://github.com/OPPO-Mente-Lab/X-OmniClawWrote 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.
[](https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/feishu-bitable)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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/ABC123def → app_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 tablesfeishu_bitable_query- Query recordsfeishu_bitable_create- Create recordfeishu_bitable_update- Update recordfeishu_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"
)
)
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.
- 11d ago First seen · 138 lines · 29 tokens per session scan A dc58de08a7a6
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.
Other skills, from other repositories
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…
smart-data-collection
A workflow for extracting structured information from images and documents such as PDFs, Word files, and spreadsheets, then storing it in a database.
meta-knowledge-base-bootstrap
Bootstrap a domain knowledge base from a single seed (URL / PDF path / git repo / free-text topic): classify source → ingest with the right tool → persist to memory + xlsx index.
meta-multi-format-export-pack
From one piece of source content, render four deliverables: .docx report, .pptx slides, .xlsx data, and an HTML/PDF public version.
meta-spreadsheet-insight
Turn an Excel workbook into business insight: structured read → trend/anomaly summary → write back to a new 'Insights' sheet → persist KPIs to memory.
lark-base
A guide for managing Lark Base, Feishu's spreadsheet-like database and workspace tool. It covers tables, fields, records, views, formulas, forms, dashboards, applications, workflows, and permissions.