lark-launch-trigger

lark-launch-trigger is a skill for Claude Code, Codex from Haili321/haili-auto-mkt. It costs 101 tokens per session (989 once invoked), scanned A, original, MIT.

A Lark group listener that starts a launch-email workflow when someone mentions its bot with a product link. Lark, also called Feishu, is a workplace messaging and collaboration app.

In plain words
What is it for?
Use it to test-send one prepared Brevo email for known products or queue unfamiliar products for composition, while keeping bulk sending manual.
Why use it?
It lets a team start the workflow from a group message and receive status updates without running a public web server or polling repeatedly.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to test-send one prepared Brevo email for known products or queue unfamiliar products for composition, while keeping bulk sending manual.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/haili321/haili-auto-mkt/lark-launch-trigger
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.

Any agent
npx skills add Haili321/haili-auto-mkt --skill lark-launch-trigger
Clone the repo
git clone --depth 1 https://github.com/Haili321/haili-auto-mkt

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for lark-launch-trigger

README.md
[![agentmods](https://agentmods.dev/badge/skills/haili321/haili-auto-mkt/lark-launch-trigger/github.svg)](https://agentmods.dev/skills/haili321/haili-auto-mkt/lark-launch-trigger)
Your own site
<a href="https://agentmods.dev/skills/haili321/haili-auto-mkt/lark-launch-trigger"><img src="https://agentmods.dev/badge/skills/haili321/haili-auto-mkt/lark-launch-trigger/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for lark-launch-trigger

Your own site · 80×15
<a href="https://agentmods.dev/skills/haili321/haili-auto-mkt/lark-launch-trigger"><img src="https://agentmods.dev/badge/skills/haili321/haili-auto-mkt/lark-launch-trigger.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 989 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00101 $0.00989
Opus 5 $0.00051 $0.00495
Sonnet 5 $0.00020 $0.00198
Haiku 4.5 $0.00010 $0.00099

Measured 10d ago against content hash 1a02add59ab4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

lark-launch-trigger 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 10d ago.

The scan reads SKILL.md. This mod also ships 6 executable files (deploy/install.sh, deploy/uninstall.sh, scripts/_lark_api.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/lark-launch-trigger/SKILL.md · 95 lines

How it starts

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

Lark Launch Trigger

Use this skill to let a teammate kick off the brevo launch-email pipeline by @mentioning a bot in a Lark group with a product link. The listener receives the mention in about a second over a persistent WebSocket (the process dials out to Lark; no public server, no polling), and either test-sends a prepared email or queues the link for a compose agent.

Boundary

  • Never commit lark_config.json, trigger_config.json, or the queue dir. All three are gitignored at the repo root.
  • The handler only ever sends ONE TEST email, to reviewer_email. Mass sending to a contact list stays a human action inside Brevo.
  • @mentions of anything other than this app's own bot are ignored by design; so are messages without a link matching url_filter.

Setup

  1. One-time console setup for the Lark app (persistent connection, the im.message.receive_v1 event, version release) and the webhook-bot trap: read references/event-subscription.md. Add the app's bot to the group.

  2. In a working directory, create the two configs (both stay local):

    cp skills/lark/templates/lark_config.example.json ./lark_config.json
    cp skills/lark-launch-trigger/templates/trigger_config.example.json ./trigger_config.json
    # fill in app_id/app_secret, reviewer_email, url_filter, link_map
    
  3. The brevo skill must be installed alongside (same skills/ parent) or point brevo_script in trigger_config.json at run_brevo_email.py. BREVO_API_KEY comes from the working dir's .env.local, as in the brevo skill.

  4. python3 -m pip install lark-oapi

Run

Foreground (first test):

python3 skills/lark-launch-trigger/scripts/lark_at_listener.py

Always-on (macOS launchd: starts at login, restarts on crash, keeps the machine awake):

bash skills/lark-launch-trigger/deploy/install.sh "$PWD"
launchctl list | grep lark-launch        # verify
bash skills/lark-launch-trigger/deploy/uninstall.sh   # stop + remove

Then, in the Lark group: @YourBot https://your-platform.example.com/models/your-model

Read the full file on GitHub · 95 lines

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. 10d ago First seen · 95 lines · 101 tokens per session scan A 1a02add59ab4

Subscribe to this mod's changes

lark-launch-trigger is a skill published in the GitHub repository Haili321/haili-auto-mkt (2 stars, last pushed 3mo ago), licensed MIT. It adds 101 tokens to every session and 989 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

larksnap-fetch

A bridge for downloading Feishu/Lark documents or ordinary webpages into local files, with options such as Markdown, HTML, or PDF. Feishu, also called Lark, is a workplace collaboration platform.

AmbroseX/larksnap · 111 tokens

lark-cli

A command-line tool for working with Lark, also called Feishu, a workplace collaboration platform. It covers services such as calendars, meetings, documents, spreadsheets, messaging, tasks, approvals, and shared files.

vaayne/agent-kit · 200 tokens

cherry-studio-design-language

A design system and template library for creating Cherry Studio presentations and other visual materials. It defines reusable page layouts, spacing, typography, icons, and visual rules.

YinsenWANG/feishu-ppt-skill · 79 tokens

3080-brief

Create a new source-grounded decision brief in the source format by default (Feishu/Lark, Word/docx, Markdown, or self-contained HTML) with a reader-fit Pyramid opening, one editable or auditable visual covering at least 80% of value-weighted non-appendix claims, and one key-question table. Use when the user names…

BobbyYue/3080-brief · 190 tokens

lark-sheets

A tool for creating and managing Feishu cloud spreadsheets, including sheets, rows, columns, cells, formulas, charts, pivot tables, filters, and formatting. Feishu is a cloud collaboration platform with spreadsheet features similar to online workbooks.

ddpie/lark-mcp-on-agentcore · 260 tokens

lark-drive

A Feishu cloud-drive tool for managing online files and folders. Feishu cloud drive is a shared online storage area, similar to Google Drive or Dropbox.

ddpie/lark-mcp-on-agentcore · 192 tokens