OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Apify
6,000+ web scrapers for your agent, free to start
Try Apify free →
Firecrawl
Crawl and scrape any site into clean data
Try Firecrawl free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
SetupClaw
Done-for-you OpenClaw for founders and teams
Get it set up for you →
DataForSEO
SEO data APIs for your agent, $1 free credit
Try DataForSEO free →
Your product here
Reach thousands of AI builders a month
Learn more →
Claude Market
Menu
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/wecomteam/wecom-cli/wecomcli-sheet
wecomcli-sheet logo

wecomcli-sheet

wecomteam/wecom-cli
679 installs2K stars
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|Command ExecutionPrompt Injection|View on GitHub|Create your own skill →

Installation

npx skills add https://github.com/wecomteam/wecom-cli --skill wecomcli-sheet

Summary

企业微信在线表格(sheet)管理技能。提供在线表格的新建、内容读取、内容修改、追加行数据,以及子工作表的增删管理。适用场景:(1) 新建空白在线表格 (2) 读取表格完整内容(Markdown)(3) 读取基础信息与子表列表 (4) 读取表格子表数据 (5) 修改指定区域内容 (6) 末尾追加一行数据 (7) 添加/删除子工作表。当用户提到「企业微信表格」「企业微信在线表格」「企微 Excel 表格」,或链接形如 `https://doc.weixin.qq.com/sheet/xxx` 时触发该技能。注意:智能表格(`/smartsheet/*`)请用 `wecomcli-smartsheet`;普通文档(`/doc/*`)请用 `wecomcli-doc`;智能文档/智能主页(`/smartpage/*`)请用 `wecomcli-smartpage`。

SKILL.md

企业微信在线表格管理

wecom-cli 是企业微信提供的命令行程序,所有操作通过执行 wecom-cli 命令完成。

资源型技能,负责在线表格(/sheet/*)的新建、内容读写以及子工作表管理。

调用方式

通过 wecom-cli 调用,品类为 doc:

wecom-cli doc <tool_name> '<json_params>'

接口路由表

硬规则:第二列是 references/xxx.md 链接的,命中这一行后先 read 对应 references 文件,再构造命令。写入/读取子表数据前,先用 sheet_get_info 拿到目标子表的 sheet_id。

用户意图参考位置
读取在线表格完整内容(Markdown 概览)见下方「读取完整内容」
读取在线表格基础信息与子表列表见下方「读取基础信息」
从零新建在线表格(空白)见下方「新建在线表格」
修改在线表格指定区域内容references/sheet-update-range-data.md
在线表格末尾追加一行数据references/sheet-append-data.md
添加在线表格子工作表references/sheet-add-sub.md
删除在线表格子工作表references/sheet-delete-sub.md

接口详述

新建在线表格

从零新建一篇企微在线表格:空白。创建成功后返回 docid 和 url。

命令

wecom-cli doc create_doc '<JSON 参数>'

参数

参数类型必填默认值说明
doc_typeint是—固定传 4(在线表格)
doc_namestring是—表格标题

注意事项

  • 本接口仅创建空白在线表格,不支持携带初始内容;如需写入数据,请在创建后先用 sheet_get_info 拿到子表 sheet_id,再通过 sheet_update_range_data / sheet_append_data 写入。

读取完整内容

获取在线表格的完整内容数据,统一以 Markdown 格式返回。采用异步轮询机制:首次调用无需传 task_id,接口返回 task_id;若 task_done 为 false,需携带该 task_id 再次调用,直到 task_done 为 true 时返回完整内容。适合快速概览或读取整篇表格内容。

命令

wecom-cli doc get_doc_content '<JSON 参数>'

参数

字段类型必填默认值语义
docidstring与 url 二选一—在线表格的 docid
urlstring与 docid 二选一—在线表格的访问链接
typeint是—内容返回格式,固定传 2(Markdown)
task_idstring否—任务 ID,首次不传,轮询时填上次返回的 task_id

返回

字段类型说明
contentstringtask_done 为 true 时返回的完整 Markdown 内容
task_idstring任务 ID,未完成时用于下次轮询
task_donebool任务是否完成,false 时需携带 task_id 继续轮询

使用规则

  • 首次调用不传 task_id;若 task_done 为 false,记录 task_id 后携带其再次调用,直到 task_done 为 true 取 content。

读取基础信息

读取在线表格的基础信息,包括工作表列表、文档名称与访问链接。所有后续需要 sheet_id 的接口(sheet_update_range_data / sheet_append_data / sheet_delete_sub等)的 sheet_id 都从本接口返回的 sheets[] 中取。

命令

wecom-cli doc sheet_get_info '<JSON 参数>'

参数

字段类型必填默认值语义
docidstring与 url 二选一—在线表格的 docid
urlstring与 docid 二选一—在线表格的访问链接

返回

字段类型说明
sheetsarray工作表列表;每项含 sheet_id / title / row_count / column_count / data_range 等基础信息
urlstring文档访问链接
namestring文档名称

使用规则

  • docid 与 url 二选一,至少传其一。
  • 读 → 写 链路:当需要往具体子表写内容(sheet_update_range_data / sheet_append_data)时,应先用 get_doc_content 读取并识别出各子表的标题与具体数据,再调用本接口拿到 sheets[] 中每个子表的 sheet_id 与行列数(row_count / column_count);通过子表标题与 title 匹配确定目标 sheet_id,并结合行列数核对写入区域范围,从而打通「读 → 写」的完整链路。

跨技能依赖

依赖技能典型协作场景数据流向
wecomcli-contact表格里需要写入人员信息时按姓名查 useridget_userlist 查到 userid → 本 skill 写入
wecomcli-msg用户要求把在线表格链接发给某人/某群本 skill 新建后返回 url → wecomcli-msg 发送链接

Score

0–100
65/ 100

Grade

C

Popularity17/30

679 installs — growing adoption. Source repo has 2,451 GitHub stars.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Wecomcli Sheet skill score badge previewScore badge

Markdown

[![Wecomcli Sheet skill](https://www.claudemarket.ai/skills/wecomteam/wecom-cli/wecomcli-sheet/badges/score.svg)](https://www.claudemarket.ai/skills/wecomteam/wecom-cli/wecomcli-sheet)

HTML

<a href="https://www.claudemarket.ai/skills/wecomteam/wecom-cli/wecomcli-sheet"><img src="https://www.claudemarket.ai/skills/wecomteam/wecom-cli/wecomcli-sheet/badges/score.svg" alt="Wecomcli Sheet skill"/></a>

Wecomcli Sheet FAQ

How do I install the Wecomcli Sheet skill?

Run “npx skills add https://github.com/wecomteam/wecom-cli --skill wecomcli-sheet” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Wecomcli Sheet skill do?

企业微信在线表格(sheet)管理技能。提供在线表格的新建、内容读取、内容修改、追加行数据,以及子工作表的增删管理。适用场景:(1) 新建空白在线表格 (2) 读取表格完整内容(Markdown)(3) 读取基础信息与子表列表 (4) 读取表格子表数据 (5) 修改指定区域内容 (6) 末尾追加一行数据 (7) 添加/删除子工作表。当用户提到「企业微信表格」「企业微信在线表格」「企微 Excel 表格」,或链接形如 `https://doc.weixin.qq.com/sheet/xxx` 时触发该技能。注意:智能表格(`/smartsheet/*`)请用 `wecomcli-smartsheet`;普通文档(`/doc/*`)请用 `wecomcli-doc`;智能文档/智能主页(`/smartpage/*`)请用 `wecomcli-smartpage`。 The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Wecomcli Sheet skill free?

Yes. Wecomcli Sheet is a free, open-source skill published from wecomteam/wecom-cli. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Wecomcli Sheet work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Wecomcli Sheet works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
LS

lark-sheets

open.feishu.cn

532K installsInstall
lark-sheets logo

lark-sheets

larksuite/cli

399K installsInstall
find-skills logo

find-skills

vercel-labs/skills

2.8M installsInstall
grill-me logo

grill-me

mattpocock/skills

766K installsInstall
frontend-design logo

frontend-design

anthropics/skills

746K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

651K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+20 more

MCP servers by category

AI & MLDeveloper ToolsVector & MemoryFiles & DocsDatabasesFinance & PaymentsBrowser & ScrapingCommunication+8 more

Plugins by category

developmentproductivitycommunicationdesignsecuritydatabaseworkflowcompliance+34 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed