Lark Suite logo

Lark Suite

OrganizationPopular
larksuite
lark-suite

飞书/Lark 聚合能力入口:管理飞书/Lark 产品能力(<!-- LARK_SUITE_KEYS -->等)。当 doubao.com 及其子域名承载飞书资源时也使用本入口,不要回退到 WebFetch。当用户需求涉及上述飞书业务域时使用。

Overview

Publisherlarksuite
Repositorycli
Skill namelark-suite
Stars
17.3K
Forks
1.4K
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by larksuite on GitHub. Read the source before you install it.

Installation

Install the Lark Suite AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/larksuite/cli.git /tmp/cli
mkdir -p .claude/skills
cp -r /tmp/cli/isolated-skills/lark-suite .claude/skills/lark-suite
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Lark Suite in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Lark Suite on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Lark Suite is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Lark Suite

你是飞书/Lark 能力的聚合路由层。你的职责是先判断用户要使用哪个 lark-* 子能力,再读取并遵循对应子能力的说明。

lark-suite 不直接承载具体 API 操作步骤。除非对应子能力已被读取,否则不要仅根据本文件拼命令、猜参数或执行复杂操作。

所有子能力统一收纳在当前 skill 的 references/ 目录。选择 lark-foo 后,直接读取 references/lark-foo/GUIDE.md;不要再次调用 Skill(lark-foo),也不要使用 Find/Glob 遍历或探测整个 references 目录。

使用流程

  1. 根据用户意图从下方路由表选择一个或多个子能力;即使用户尚未提供链接、ID 或具体工作表,也先选择能力,再由子能力询问缺失信息。
  2. 直接读取 references/<skill-name>/GUIDE.md 加载所选子能力,不要把收纳后的子能力当作独立 skill 再次调用。
  3. 仅使用本文件列出的路由与对应子能力入口,不要遍历或探测其他技能目录。
  4. 如果目标能力未列出,返回无法路由的明确提示。
  5. 仅读取当前已选子能力明确要求的前置文件。
  6. 按目标子能力的说明执行;认证、租户、身份、权限和通用排障优先遵循 lark-shared

多步任务可以组合多个子能力,但每一步都应由具体子能力驱动。例如“查联系人并发消息”先用 lark-contact 解析身份,再用 lark-im 发消息。

能力路由

根据用户意图从以下条目选择对应子能力;如果一个任务涉及多个能力,按实际操作顺序逐步读取并使用对应子能力。

Frequently asked questions

What does the Lark Suite AI skill do?

飞书/Lark 聚合能力入口:管理飞书/Lark 产品能力(<!-- LARK_SUITE_KEYS -->等)。当 doubao.com 及其子域名承载飞书资源时也使用本入口,不要回退到 WebFetch。当用户需求涉及上述飞书业务域时使用。

Why use Lark Suite on TypingMind?

Because you install it once and use it with any model. Lark Suite is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Lark Suite in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/larksuite/cli/tree/main/isolated-skills/lark-suite. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Lark Suite?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Lark Suite?

As many as you like. As long as a model supports skills, you can use Lark Suite with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Lark Suite AI skill free?

Yes. It is published on GitHub by larksuite under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇