-
Notifications
You must be signed in to change notification settings - Fork 603
feat: add markdown shortcuts and skill docs #716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ | |
|
|
||
| [中文版](./README.zh.md) | [English](./README.md) | ||
|
|
||
| 飞书官方 CLI 工具,由 [larksuite](https://github.com/larksuite) 团队维护 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、幻灯片、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 23 个 AI Agent [Skills](./skills/)。 | ||
| 飞书官方 CLI 工具,由 [larksuite](https://github.com/larksuite) 团队维护 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、幻灯片、日历、邮箱、任务、会议、Markdown 等核心业务域,提供 200+ 命令及 23 个 AI Agent [Skills](./skills/)。 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The skill count is stale after adding This intro still says 🧰 Tools🪛 LanguageTool[uncategorized] ~9-~9: 数量词修饰并列短语,可能产生歧义 (s5) 🤖 Prompt for AI Agents |
||
|
|
||
| [安装](#安装与快速开始) · [AI Agent Skills](#agent-skills) · [认证](#认证) · [命令](#三层命令调用) · [进阶用法](#进阶用法) · [安全](#安全与风险提示使用前必读) · [贡献](#贡献) | ||
|
|
||
|
|
@@ -28,6 +28,7 @@ | |
| | 💬 即时通讯 | 发送/回复消息、创建和管理群聊、查看聊天记录与话题、搜索消息、下载媒体文件 | | ||
| | 📄 云文档 | 创建、读取、更新文档、搜索文档、读写素材与画板 | | ||
| | 📁 云空间 | 上传和下载文件、搜索文档与知识库、管理评论 | | ||
| | 📝 Markdown | 创建、读取、覆盖更新 Drive 中的原生 `.md` 文件 | | ||
| | 📊 多维表格 | 创建和管理数据表、字段、记录、视图、仪表盘、自动化流程、表单、角色权限,数据聚合分析 | | ||
| | 📈 电子表格 | 创建、读取、写入、追加、查找和导出表格数据 | | ||
| | 🖼️ 幻灯片 | 创建和管理演示文稿、读取演示文稿内容,以及新增或删除幻灯片页面 | | ||
|
|
@@ -140,6 +141,7 @@ lark-cli auth status | |
| | `lark-im` | 发送/回复消息、群聊管理、消息搜索、上传下载图片与文件、表情回复 | | ||
| | `lark-doc` | 创建、读取、更新、搜索文档(基于 Markdown) | | ||
| | `lark-drive` | 上传、下载文件,管理权限与评论 | | ||
| | `lark-markdown` | 创建、读取、覆盖更新 Drive 中的原生 Markdown 文件 | | ||
| | `lark-sheets` | 创建、读取、写入、追加、查找、导出电子表格 | | ||
| | `lark-slides` | 创建和管理演示文稿、读取演示文稿内容,以及新增或删除幻灯片页面 | | ||
| | `lark-base` | 多维表格、字段、记录、视图、仪表盘、数据聚合分析 | | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -40,8 +40,8 @@ func ResolveEndpoints(brand LarkBrand) Endpoints { | |||||||||||||||
| } | ||||||||||||||||
| default: | ||||||||||||||||
| return Endpoints{ | ||||||||||||||||
| Open: "https://open.feishu.cn", | ||||||||||||||||
| Accounts: "https://accounts.feishu.cn", | ||||||||||||||||
| Open: "https://open.feishu-pre.cn", | ||||||||||||||||
| Accounts: "https://accounts.feishu-pre.cn", | ||||||||||||||||
|
Comment on lines
+43
to
+44
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do not switch the default Feishu brand to pre-production endpoints.
Suggested fix return Endpoints{
- Open: "https://open.feishu-pre.cn",
- Accounts: "https://accounts.feishu-pre.cn",
+ Open: "https://open.feishu.cn",
+ Accounts: "https://accounts.feishu.cn",
MCP: "https://mcp.feishu.cn",
}📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||
| MCP: "https://mcp.feishu.cn", | ||||||||||||||||
| } | ||||||||||||||||
| } | ||||||||||||||||
|
|
||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The skill count needs to be updated.
This line still says
23AI Agent Skills, but the table below now lists24after addinglark-markdown. Please update the numeric references here and the matching23counters later in the file.🤖 Prompt for AI Agents