feishu-message

feishu-message is a skill for Claude Code, Codex from m1heng/clawdbot-feishu. It costs 27 tokens per session (731 once invoked), scanned A, original, MIT.

A skill for reading Feishu messages, including one message by its ID or recent messages from a chat. Feishu is a workplace messaging and collaboration platform.

In plain words
What is it for?
Use it to look up a message, read recent direct or group-chat history, search a time range, or review messages in chronological or reverse order.
Why use it?
It helps find messages without manually searching through chat history. It can retrieve a specific message or list messages with options such as chat, order, page size, and time range.

Skill for Claude CodeCodex

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

Good fit Use it to look up a message, read recent direct or group-chat history, search a time range, or review messages in chronological or reverse order.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/m1heng/clawdbot-feishu/feishu-message
About the project

clawd-feishu is a channel plugin that connects OpenClaw to Feishu/Lark, a collaboration and messaging platform. OpenClaw users use it to interact with the agent through Feishu or Lark.

m1heng/clawdbot-feishu · 4,243 stars · on GitHub

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 m1heng/clawdbot-feishu --skill feishu-message
Clone the repo
git clone --depth 1 https://github.com/m1heng/clawdbot-feishu

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-message

README.md
[![agentmods](https://agentmods.dev/badge/skills/m1heng/clawdbot-feishu/feishu-message/github.svg)](https://agentmods.dev/skills/m1heng/clawdbot-feishu/feishu-message)
Your own site
<a href="https://agentmods.dev/skills/m1heng/clawdbot-feishu/feishu-message"><img src="https://agentmods.dev/badge/skills/m1heng/clawdbot-feishu/feishu-message/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-message

Your own site · 80×15
<a href="https://agentmods.dev/skills/m1heng/clawdbot-feishu/feishu-message"><img src="https://agentmods.dev/badge/skills/m1heng/clawdbot-feishu/feishu-message.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 731 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00027 $0.00731
Opus 5 $0.00014 $0.00365
Sonnet 5 $0.00005 $0.00146
Haiku 4.5 $0.00003 $0.00073

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

Security

Grade A, and why

feishu-message 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 13d 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.

skills/feishu-message/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 Message Tool

Single tool feishu_message for reading Feishu messages — get a single message by ID or list recent messages in a chat.

Actions

Get Single Message

{
  "action": "get",
  "message_id": "om_xxx"
}

Returns:

{
  "ok": true,
  "action": "get",
  "found": true,
  "message_id": "om_xxx",
  "msg_type": "text",
  "content": "Hello world",
  "sender_id": "ou_xxx",
  "sender_type": "user",
  "chat_id": "oc_xxx",
  "create_time": "1710000000000",
  "update_time": "1710000000000",
  "mentions": []
}

List Recent Messages

List recent messages in a chat (DM or group), newest first by default. Omit chat_id to use the current conversation's chat:

{
  "action": "list"
}

With custom page size, sort order, and time range:

{
  "action": "list",
  "chat_id": "oc_xxx",
  "page_size": 20,
  "sort_type": "ByCreateTimeAsc",
  "start_time": "1710000000",
  "end_time": "1710086400"
}

Returns:

{
  "ok": true,
  "action": "list",
  "chat_id": "oc_xxx",
  "total": 10,
  "messages": [
    {
      "message_id": "om_xxx",
      "msg_type": "text",
      "content_preview": "Hello world",
      "sender_id": "ou_xxx",
      "sender_type": "user",
      "create_time": "1710000000000",
      "chat_id": "oc_xxx"
    }
  ]
}

Parameters

Parameter Required Description
action Yes get or list
message_id get: Yes Feishu message ID (e.g., om_xxx)
chat_id list: Optional Chat ID (e.g., oc_xxx). Omit to use current chat.
page_size list: Optional Number of messages (default: 10, max: 50)
sort_type list: Optional ByCreateTimeDesc (default) or ByCreateTimeAsc
start_time list: Optional Unix timestamp in seconds (e.g., "1710000000"). No lower bound if omitted.
end_time list: Optional Unix timestamp in seconds (e.g., "1710086400"). No upper bound if omitted.

Configuration

channels:
  feishu:
    tools:
      message: true  # default: true

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. 13d ago First seen · 112 lines · 27 tokens per session scan A d8fac84688d3

Subscribe to this mod's changes

feishu-message is a skill published in the GitHub repository m1heng/clawdbot-feishu (4,243 stars, last pushed 5mo ago), licensed MIT. It adds 27 tokens to every session and 731 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