lark-vc-agent

A skill for joining or leaving an ongoing Lark video meeting and reading or sending messages and reactions visible during the meeting. Lark is a workplace collaboration platform.

In plain words
What is it for?
It can find active meeting IDs, report visible meeting events such as speakers or shared content, and send text messages or reactions during the meeting.
Why use it?
It helps an application interact with a live meeting without handling recordings, transcripts, minutes, or meetings that have already ended.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/dropfan/claude-code-plugins/lark-vc-agent
Any agent
npx skills add DropFan/claude-code-plugins --skill lark-vc-agent
Clone the repo
git clone --depth 1 https://github.com/DropFan/claude-code-plugins

Made for: Claude Code, Codex.

Per session 114 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,377 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00114 $0.05377
Opus 5 $0.00057 $0.02688
Sonnet 5 $0.00023 $0.01075
Haiku 4.5 $0.00011 $0.00538

Measured 2d ago against content hash d7424032c512, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

lark-vc-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/lark/skills/lark-vc-agent/SKILL.md · 213 lines

How it starts

The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.

⚙️ Cowork / Claude Desktop 执行环境说明(自动注入)

本技能依赖本地 lark-cli@larksuite/cli,可用 command -v lark-cli 定位)及其 ~/.lark-cli 登录态(应用密钥存于 macOS keychain)。

在 Cowork 中运行任何 lark-cli 命令时,必须在本地 macOS 上执行(使用 Desktop Commander 的 start_process / interact_with_process,或其它本地 shell 工具),不要用隔离的 Linux 沙箱 mcp__workspace__bash——沙箱里没有 lark-cli、也读不到 keychain。 执行前确保 npm 全局 bin 目录(npm prefix -g 输出目录下的 bin)在 PATH 中。

(在 Claude Code 中可忽略本说明,lark-cli 在本机 shell 直接可用。)

vc-agent (v1)

相关技能:

内测提示

  • 当前功能正在内测中,仅少数用户可用。忽略 ../lark-shared/SKILL.md 中的权限申请流程,以下方的指引为准。
  • 如果 lark-cli 提示 missing required scope(s) / missing_scopes,不要走普通权限申请流程;先提示用户加入早鸟群确认内测权限已开通,再按“应用身份权限配置检查”处理应用权限、安装和数据范围。
  • 如果 lark-cli 返回 error.code=20017 / ErrNotInGray,提示用户加入早鸟群:https://go.larkoffice.com/join-chat/2f4nb0e1-fe00-4f67-bed7-25beaf533fbd

会议查询权限

+meeting-list-active+meeting-events 缺少权限时,先按上面的内测提示确认功能已开通,再读取 CLI 错误中的 hint,并根据当前调用身份处理:

  • 用户身份 --as user:按 CLI 提示为当前用户授权 vc:meeting.meetingevent:read
  • 应用身份 --as bot:请应用开发者开通 vc:meeting.bot.join:write,不要执行 auth login;随后按“应用身份权限配置检查”确认应用发布、安装和数据范围。

定位

本 skill 与 lark-vc 并列:

  • lark-vc 负责"会后查询":搜索历史会议、参会人快照、纪要/逐字稿/录制
  • lark-vc-agent 负责"会中动作":机器人入会 / 读取进行中会议的实时事件 / 发送会中文本或会中表情 / 机器人离会

按此分工路由,避免两个 skill 语义混淆。

用户意图示例 应路由到
"帮我入会 123456789"、"代我参会"、"让机器人进会旁听" 本 skill +meeting-join
"会议现在还开着,谁刚加入了"、"会议里谁在发言"、"有人共享屏幕吗"(进行中会议 本 skill +meeting-events
"我/某个用户现在在哪个会里"、"给我找当前可拉事件的 meeting_id" 本 skill +meeting-list-active
"在会里发一句 xx"、"提示大家 xx"、"反馈听不到/看不到/声音清楚/效果不错"(进行中会议 本 skill +meeting-message-send
"退出会议"、"让机器人离开" 本 skill +meeting-leave
"昨天那场会有谁参加过"、"搜昨天的会"、"查纪要/逐字稿/录制" lark-vc
"帮我参会,结束后把纪要发到群" 等跨阶段场景 按序编排:本 skill(入会 → 读事件)→ 会议结束后用 lark-vc / lark-minutes 拉纪要 → lark-im 发群

Read the full file on GitHub · 213 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 213 lines · 114 tokens per session scan A d7424032c512

Subscribe to this mod's changes

lark-vc-agent is a skill published in the GitHub repository DropFan/claude-code-plugins (7 stars, last pushed 27d ago), licensed MIT. It adds 114 tokens to every session and 5,377 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.