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 Byte-n/larkDocx2md --skill lark-docx2mdgit clone --depth 1 https://github.com/Byte-n/larkDocx2mdWrote 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/byte-n/larkdocx2md/lark-docx2md)<a href="https://agentmods.dev/skills/byte-n/larkdocx2md/lark-docx2md"><img src="https://agentmods.dev/badge/skills/byte-n/larkdocx2md/lark-docx2md/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/byte-n/larkdocx2md/lark-docx2md"><img src="https://agentmods.dev/badge/skills/byte-n/larkdocx2md/lark-docx2md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 4 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 35 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 52 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 62 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 68 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.00068 | $0.00894 |
| Opus 5 | $0.00034 | $0.00447 |
| Sonnet 5 | $0.00014 | $0.00179 |
| Haiku 4.5 | $0.00007 | $0.00089 |
Grade A, and why
lark-docx2md 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 9d 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.
What it actually says
lark-docx2md
将飞书文档或电子表格 URL 转换为本地 Markdown 文件。
适用范围
- 适用链接类型:
https://*.feishu.cn/{wiki,docx,docs,sheets}/...(含?sheet=xxx)。 - 适用任务类型:读取、导入、归档、分析、抽取飞书文档内容,并提供给后续实现或生成任务使用。
wiki/docx/docs:支持整篇读取与按标题/章节定向读取。sheets:默认按整表读取,不做标题筛选。- 不适用于:非飞书链接、纯本地文件解析、需要直接写回飞书文档的场景。
工作流程
第一步:识别链接类型(必须先做)
- 若 URL 含
/sheets/:判定为电子表格。 - 若 URL 含
/wiki/、/docx/、/docs/:判定为文档。
第二步:按类型分支处理
A. 电子表格(/sheets/)
电子表格不做标题识别,直接下载整表:
npx -y lark-docx2md@latest dl --agent local --url "<url>"
B. 文档(/wiki/、/docx/、/docs/)
-
先从用户请求中识别
title:- 显式关键词「标题/章节/小节/部分/节选/只要/其中的」+ 名词短语。
- 成对引号
""''“”‘’「」《》包裹的短文本。 - 介词结构:
X 中的 Y、X 里的 Y、X 那一段、关于 X 的内容。 - 多级路径:
A 下/中/里的 B、A > B、A/B、A → B→ 取为有序路径[A, B, ...]。
抽到的标题文本:去首尾空白与包裹引号;保留原文大小写、标点、空格、中英文;不翻译/改写/补全。
-
如果成功识别到
title,则需要进一步获取<blockId>:
npx -y lark-docx2md@latest get-titles --agent local --url "<url>"
根据 get-titles 输出的所有标题信息,匹配 title 获取对应的 <blockId>。若没有明确的匹配项或存在多个匹配项,则必须让用户参与决策。
- 根据识别结果查询:
有 <blockId>:
npx -y lark-docx2md@latest dl --agent local --filter-title-block-id "<blockId>" --url "<url>"
无 <blockId>:
npx -y lark-docx2md@latest dl --agent local --url "<url>"
读取结果
从 dl 的 stdout 解析 Markdown 绝对路径并读取该文件;同时必须读取其中引用的所有图片(含画板内图片,路径形如 static/xxx.png)。
重要事项
dl必须带--agent local;get-titles必须带--agent local。
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 9d ago First seen · 78 lines · 68 tokens per session scan A 1846f2046586
lark-docx2md is a skill published in the GitHub repository Byte-n/larkDocx2md (31 stars, last pushed 25d ago), licensed ISC. It adds 68 tokens to every session and 894 once invoked, about $0.0003 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
dcf-model
Build discounted cash flow valuation workbooks in Excel.
audit-xls
Audit a spreadsheet for formula accuracy, errors, and common mistakes. Scopes to a selected range, a single sheet, or the entire model (including financial-model integrity checks like BS balance, cash tie-out, and logic sanity). Triggers on "audit this sheet", "check my formulas", "find formula errors", "QA this…
google-drive-sheets
Find, read, export, edit, and manage the user's Google Drive, Docs, Sheets, and Slides through per-user OAuth.
feishu
Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.
excel-basic-statistics-and-routing
An Excel workflow for filtering grouped data, calculating averages, extracting row ranges, removing duplicates, and adding totals.
skill-doc-delivery
Convert markdown to DOCX, PPTX, XLSX, PDF office documents — use when you need exportable deliverables.