brevo

brevo is a skill for Claude Code, Codex from Haili321/haili-auto-mkt. It costs 93 tokens per session (1,700 once invoked), scanned A, original, MIT.

A set of instructions for sending transactional outreach emails through Brevo, an email delivery service. It supports drafting, dry runs, test sends, and approved one-recipient-at-a-time sending.

In plain words
What is it for?
Use it to prepare and render outreach emails, check Brevo access, send test messages, and send approved emails individually.
Why use it?
It reduces accidental sends by making review, testing, API-key handling, and approval part of the email process.

Skill for Claude CodeCodex

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

Good fit Use it to prepare and render outreach emails, check Brevo access, send test messages, and send approved emails individually.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/haili321/haili-auto-mkt/brevo/github.svg)](https://agentmods.dev/skills/haili321/haili-auto-mkt/brevo)
Your own site
<a href="https://agentmods.dev/skills/haili321/haili-auto-mkt/brevo"><img src="https://agentmods.dev/badge/skills/haili321/haili-auto-mkt/brevo/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 brevo

Your own site · 80×15
<a href="https://agentmods.dev/skills/haili321/haili-auto-mkt/brevo"><img src="https://agentmods.dev/badge/skills/haili321/haili-auto-mkt/brevo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,700 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.00093 $0.01700
Opus 5 $0.00046 $0.00850
Sonnet 5 $0.00019 $0.00340
Haiku 4.5 $0.00009 $0.00170

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

Security

Grade A, and why

brevo 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 11d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/bootstrap_runtime.sh, scripts/brevo_image_import.py, scripts/build_model_email.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/brevo/SKILL.md · 179 lines

How it starts

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

Brevo Email

Use this skill to draft, dry-run, test, and officially send transactional emails through Brevo, one recipient at a time. The skill is designed for outreach: every send is intentional, audited, and reviewable.

Boundary

  • Never commit API keys. Load BREVO_API_KEY from the shell environment or a local .env.local (already in .gitignore).
  • Default to dry-run. Sending requires the --send flag.
  • One email per society / organisation / recipient. Do not batch unrelated recipients into a single message.
  • Each official send must be approved by the user.

Inputs

The skill drives off a single request JSON file per email. See references/request-schema.md for the full shape. Minimal example:

{
  "sender":  { "email": "[email protected]", "name": "Your Name" },
  "to":      [{ "email": "[email protected]", "name": "Recipient" }],
  "subject": "Your subject here",
  "markdown": "Hi there,\n\nYour email body in Markdown.\n\nBest,\nYou"
}

Entry points

Check API access (no email sent):

skills/brevo/scripts/bootstrap_runtime.sh --check-account

Dry run (renders email, no API call):

skills/brevo/scripts/bootstrap_runtime.sh --request-file ./email_request.json

Test send (rewrites recipients to a single test address, prefixes subject):

skills/brevo/scripts/bootstrap_runtime.sh \
  --request-file ./email_request.json \
  --test-to [email protected] \
  --send

Official send (uses the recipients in the request file as-is):

skills/brevo/scripts/bootstrap_runtime.sh \
  --request-file ./email_request.json \
  --send

Setup

  1. Sign in to Brevo and verify your sender address (Senders, Domains & Dedicated IPs -> Senders). Brevo will not send mail from an unverified address.
  2. Create an API key at https://app.brevo.com/settings/keys/api. Pick "v3 Transactional" scope; you do not need full account access.
  3. Export it in your shell, or write it to a local .env.local (which is gitignored):
    export BREVO_API_KEY=xkeysib-...
    # or:
    cp skills/brevo/.env.example .env.local
    # then edit .env.local with your key
    
  4. Sanity-check the credential without sending an email:
    skills/brevo/scripts/bootstrap_runtime.sh --check-account
    
    A 200 response means the key works.

Read the full file on GitHub · 179 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. 11d ago First seen · 179 lines · 93 tokens per session scan A 6efbc1307bdc

Subscribe to this mod's changes

brevo is a skill published in the GitHub repository Haili321/haili-auto-mkt (2 stars, last pushed 3mo ago), licensed MIT. It adds 93 tokens to every session and 1,700 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