.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/cli/lark-openapi-explorer
home/skills/larksuite/cli/lark-openapi-explorer
larksuite avatar

lark-openapi-explorer

bylarksuite· 47 skills

Installs

386k

Stars

16k

Forks

1.2k

Category

Backend & APIs

View on GitHub

TL;DR

飞书/Lark 原生 OpenAPI 探索:从官方文档库中挖掘未经 CLI 封装的原生 OpenAPI 接口。当用户的需求无法被现有 lark-* skill 或 lark-cli 已注册命令满足,需要查找并调用原生飞书 OpenAPI 时使用。

How to install lark-openapi-explorer?

larksuite/cli/lark-openapi-explorer
$npx -y skills add larksuite/cli --skill lark-openapi-explorer

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/larksuite/cli" --skill "larksuite/cli/lark-openapi-explorer"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/larksuite/cli" that are relevant to the current task. Run `npx skills add "https://github.com/larksuite/cli"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# OpenAPI Explorer
2 
3> **前置条件:** 先阅读 [`../lark-shared/SKILL.md`](../lark-shared/SKILL.md) 了解认证、身份切换和安全规则。
4 
5当用户的需求**无法被现有 skill 或 CLI 已注册 API 覆盖**时,使用本技能从飞书官方 markdown 文档库中逐层挖掘原生 OpenAPI 接口,然后通过 `lark-cli api` 裸调完成任务。
6 
7## 文档库结构
8 
9飞书 OpenAPI 文档以 markdown 层级组织:
10 
11```
12llms.txt ← 顶层索引,列出所有模块文档链接
13 └─ llms-<module>.txt ← 模块文档,包含功能概述 + 底层 API 文档链接
14 └─ <api-doc>.md ← 单个 API 的完整说明(方法/路径/参数/响应/错误码)
15```
16 
17文档入口:
18 
19| 品牌 | 入口 URL |
20|------|----------|
21| 飞书 (Feishu) | `https://open.feishu.cn/llms.txt` |
22| Lark | `https://open.larksuite.com/llms.txt` |
23 
24> 所有文档以**中文**编写。如果用户使用英文交流,需将文档内容翻译为英文后输出。
25 
26## 挖掘流程
27 
28严格按以下步骤逐层检索,**不要跳步或猜测 API**:
29 
30### Step 1:确认现有能力不足
31 
32```bash
33# 先检查是否已有对应的 skill 或已注册 API
34lark-cli <可能的service> --help
35```
36 
37如果已有对应命令或 shortcut,直接使用,**不需要继续挖掘**。
38 
39### Step 2:从顶层索引定位模块
40 
41用 WebFetch 获取顶层索引,找到与需求相关的模块文档链接:
42 
43```
44WebFetch https://open.feishu.cn/llms.txt
45 → 提取问题:"列出所有模块文档链接,找出与 <用户需求关键词> 相关的链接"
46```
47 
48- 飞书品牌使用 `open.feishu.cn`
49- Lark 品牌使用 `open.larksuite.com`
50- 如不确定用户品牌,默认使用飞书
51 
52### Step 3:从模块文档定位具体 API
53 
54用 WebFetch 获取模块文档,找到具体 API 的文档链接:
55 
56```
57WebFetch https://open.feishu.cn/llms-docs/zh-CN/llms-<module>.txt
58 → 提取问题:"找出与 <用户需求> 相关的 API 说明和文档链接"
59```
60 
61### Step 4:获取 API 完整规范
62 
63用 WebFetch 获取具体 API 文档,提取完整的调用规范:
64 
65```
66WebFetch https://open.feishu.cn/document/server-docs/.../<api>.md
67 → 提取问题:"返回完整 API 规范:HTTP 方法、URL 路径、路径参数、查询参数、请求体字段(名称/类型/必填/说明)、响应字段、所需权限、错误码"
68```
69 
70### Step 5:通过 CLI 调用 API
71 
72使用 `lark-cli api` 裸调:
73 
74```bash
75# GET 请求
76lark-cli api GET /open-apis/<path> --params '{"key":"value"}'
77 
78# POST 请求
79lark-cli api POST /open-apis/<path> --data '{"key":"value"}'
80 
81# PUT 请求
82lark-cli api PUT /open-apis/<path> --data '{"key":"value"}'
83 
84# DELETE 请求
85lark-cli api DELETE /open-apis/<path>
86```
87 
88## 输出规范
89 
90向用户呈现挖掘结果时,按以下格式组织:
91 
921. **API 名称与功能**:一句话描述
932. **HTTP 方法与路径**:`METHOD /open-apis/...`
943. **关键参数**:列出必填和常用可选参数
954. **所需权限**:scope 列表
965. **调用示例**:给出 `lark-cli api` 的完整命令
976. **注意事项**:频率限制、特殊约束等
98 
99如果用户使用英文交流,将以上所有内容翻译为英文。
100 
101## 安全规则
102 
103- **写入/删除类 API**(POST/PUT/DELETE)调用前必须确认用户意图
104- 建议先用 `--dry-run` 预览请求(如支持)
105- 不要猜测 API 路径或参数——必须从文档中获取确认
106- 涉及敏感操作(删除群、移除成员等)时,向用户说明影响范围
107 
108## 使用场景示例
109 
110### 场景 1:用户需要拉人进群(未被 CLI 封装)
111 
112```bash
113# Step 1: 确认 CLI 没有封装
114lark-cli im --help
115# → 发现没有 chat_members 相关的 create 命令
116 
117# Step 2-4: 通过文档挖掘获得 API 规范
118# → POST /open-apis/im/v1/chats/:chat_id/members
119 
120# Step 5: 调用
121lark-cli api POST /open-apis/im/v1/chats/oc_xxx/members \
122 --data '{"id_list":["ou_xxx","ou_yyy"]}' \
123 --params '{"member_id_type":"open_id"}'
124```
125 
126### 场景 2:用户需要设置群公告
127 
128```bash
129# Step 1: 确认 CLI 没有封装
130lark-cli im --help
131# → 没有 announcement 相关命令
132 
133# Step 2-4: 挖掘文档
134# → PATCH /open-apis/im/v1/chats/:chat_id/announcement
135 
136# Step 5: 调用
137lark-cli api PATCH /open-apis/im/v1/chats/oc_xxx/announcement \
138 --data '{"revision":"0","requests":["<html>公告内容</html>"]}'
139```
140 
141## 参考
142 
143- [lark-shared](../lark-shared/SKILL.md) — 认证和全局参数
144- [lark-skill-maker](../lark-skill-maker/SKILL.md) — 如需将挖掘到的 API 固化为新 Skill

Security

Review

  • Gen Agent Trust Hubpass
  • Socketwarn
  • Snykwarn
  • ZeroLeakspass

Preview

larksuite/clilarksuite/cli

$ npx -y skills add larksuite/cli --skill lark-openapi-explorer

▸ installing to .claude/skills…

✓ lark-openapi-explorer ready

Repolarksuite/cli
TypeSkills
CategoryBackend & APIs
ForDeveloperArchitect
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. microsoft avatarazure-messagingTroubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus.SkillsJul 2026473k1.3k
  2. larksuite avatarlark-skill-maker创建 lark-cli 的自定义 Skill。当用户需要把飞书 API 操作封装成可复用的 Skill(包装原子 API 或编排多步流程)时使用。SkillsJul 2026385k16k
  3. mattpocock avatarimplementImplement a piece of work based on a spec or set of tickets.SkillsJul 2026237k189k
  4. supabase avatarsupabaseUse when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client…SkillsJul 2026188k2.4k
  5. firebase avatarfirebase-basicsProvides foundational setup, authentication, and project management workflows for Firebase using the Firebase CLI.SkillsJul 2026117k389
  6. firebase avatarfirebase-auth-basicsGuide for setting up and using Firebase Authentication. Use this skill when the user's app requires user sign-in, user management, or secure data access using…SkillsJul 2026116k389