Agent skill · Backend & API

sendblue-cli

Send iMessage and SMS from the shell via the @sendblue/cli npm package — outbound sends, contact management, and account setup with no API client or webhook server required.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill sendblue-cli --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Declared author: AnthonyFirth
Path: skills/sendblue/sendblue-cli/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Sendblue CLI ## Overview `@sendblue/cli` is a Node CLI that creates a Sendblue account, provisions an iMessage-enabled number, and sends messages. It is the fastest way to text from a shell, script, or Claude Code hook — no API client, no webhook server, no credentials in env vars. Credentials live at `~/.sendblue/credentials.json` (mode `600`) and Node.js 18+ is required. ## When to Use This Skill - Use when the user wants to text a phone number from a script, shell, hook, or agent turn (e.g. "text me when X finishes", "ping my phone", "notify on completion"). - Use when the user mentions `sendblue` as a CLI/binary or asks to set up the `@sendblue/cli` package. - Prefer this skill over [[sendblue-api]] when the work happens in a shell context, one-shot script, cron job, or agent hook. - Reach for [[sendblue-api]] instead when writing application code that integrates Sendblue, receiving inbound webhooks, or needing features the CLI does not expose (send styles, reactions, group messages, status callbacks, media uploads). ## How It Works ### Step 1: Install ```bash npm install -g @sendblue/cli # global, exposes `sendblue` # or one-shot: npx @sendblue/cli <command> ``` ### Step 2:

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. How It Works
  4. Step 1: Install
  5. Step 2: Set up an account
  6. Step 3: Send messages
  7. Step 4: Manage contacts and plan
  8. Command Reference
  9. Examples
  10. Example 1: Notify when a long task finishes
  11. Example 2: Read recent inbound for a specific contact
  12. Example 3: Verify creds are good before a batch send
  13. Example 4: Wire to a Claude Code Stop hook
  14. Best Practices
Commands it runs
npm install -g @sendblue/cli       # global, exposes `sendblue`
or one-shot:
npx @sendblue/cli <command>
sendblue setup --email you@example.com                                       # sends code
sendblue setup --email you@example.com --code 12345678 \
sendblue send +15551234567 'Hello from Sendblue!'
sendblue messages --inbound --limit 20
long_running_thing && sendblue send +15551234567 "✅ done: $(date)"
sendblue messages -n +15551234567 --inbound --limit 50
sendblue whoami || sendblue login
More from agentic-awesome-skills
All skills →
About this skill
What does the sendblue-cli skill do?

Send iMessage and SMS from the shell via the @sendblue/cli npm package — outbound sends, contact management, and account setup with no API client or webhook server required.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill sendblue-cli --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going