Dingtalk File Send
自动将文件上传并发送至钉钉用户,基于当前会话账号绑定。
下载 702
实现飞书在线表格的创建、读写、增删行/列及工作表管理。
openclaw skills install @wesley138cn/feishu-sheets-skill命令、参数、文件名以原文为准
单一工具 feishu_sheets,通过动作参数支持所有电子表格操作。
从 URL https://xxx.feishu.cn/sheets/shtABC123 → spreadsheet_token = shtABC123
{ "action": "create", "title": "新建电子表格" }可选文件夹:
{ "action": "create", "title": "新建电子表格", "folder_token": "fldcnXXX" }返回:spreadsheet_token、url、title
{
"action": "write",
"spreadsheet_token": "shtABC123",
"sheet_id": "0bxxxx",
"range": "A1:C3",
"values": [["Name", "Age", "City"], ["Alice", 25, "Beijing"], ["Bob", 30, "Shanghai"]]
}{
"action": "read",
"spreadsheet_token": "shtABC123",
"sheet_id": "0bxxxx",
"range": "A1:C10"
}{
"action": "append",
"spreadsheet_token": "shtABC123",
"sheet_id": "0bxxxx",
"values": [["Charlie", 28, "Shenzhen"]]
}{
"action": "insert_dimension",
"spreadsheet_token": "shtABC123",
"sheet_id": "0bxxxx",
"dimension": "ROWS",
"start_index": 5,
"end_index": 7
}{
"action": "delete_dimension",
"spreadsheet_token": "shtABC123",
"sheet_id": "0bxxxx",
"dimension": "ROWS",
"start_index": 5,
"end_index": 7
}{ "action": "get_info", "spreadsheet_token": "shtABC123" }返回:元数据,包括所有 sheet_id 和标题
{
"action": "add_sheet",
"spreadsheet_token": "shtABC123",
"title": "Sheet2"
}{
"action": "delete_sheet",
"spreadsheet_token": "shtABC123",
"sheet_id": "0bxxxx"
}A1、B5A1:C10、B2:D5A:A、B:D1:1、3:50bxxxx!A1:C10https://xxx.feishu.cn/sheets/shtABC123?sheet=0bxxxxget_info 动作获取0bxxxx 的简单 ID值可以是:
"Hello"123、45.67{"type": "formula", "text": "=SUM(A1:A10)"}{"type": "url", "text": "点击这里", "link": "https://..."}channels:
feishu:
tools:
sheets: true # 默认值:truesheets:spreadsheet - 创建和管理电子表格sheets:spreadsheet:readonly - 读取电子表格数据drive:drive - 访问云存储基础地址:https://open.feishu.cn/open-apis/sheets/v2/spreadsheets/
详细 API 文档请参见 references/api-reference.md。
已收录 1 个 Skill