# Add to your Claude Code skills
git clone https://github.com/Sendmux/skillsLast scanned: 6/28/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-06-28T07:52:51.705Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Sendmux. Agent skills for Sendmux. It has 53 GitHub stars.
Yes. skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/Sendmux/skills" and add it to your Claude Code skills directory (see the Installation section above).
skills is primarily written in JavaScript. It is open-source under Sendmux on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh skills against similar tools.
No comments yet. Be the first to share your thoughts!
Official Sendmux skills for AI coding agents.
This repository contains Sendmux plugin bundles for Cursor, Claude, and Codex. The Cursor bundle is prepared but is not available through /add-plugin until its marketplace submission is approved.
Cursor (after marketplace publication):
/add-plugin sendmux
Claude app, Claude Desktop, and Cowork:
Sendmux/skills, then install the Sendmux plugin.Claude Code:
/plugin marketplace add Sendmux/skills
/plugin install sendmux@sendmux
/reload-plugins
Codex app and Codex CLI:
codex plugin marketplace add Sendmux/skills
Then open Plugins in the Codex app or /plugins in Codex CLI and install Sendmux from the Sendmux marketplace.
Use skills add when your agent supports raw Agent Skills rather than plugin marketplaces.
npx skills add Sendmux/skills
Install one skill from the pack:
npx skills add Sendmux/skills --skill sendmux-send-email
Update an installed pack:
npx skills update
sendmux CLI for terminal one-shots, and SDKs for application flows.smx_root_* for account-level work, send-capable smx_mbx_* keys or owner-approved Sending-resource smx_agent_* tokens for sending, smx_mbx_* keys for single-mailbox work, and scoped smx_agent_* tokens for self-registered agent mailbox work.The catalogue is built item by item from the local API, SDK, CLI, and MCP source of truth.
| Skill | Use when |
|---|---|
sendmux-getting-started |
Choosing a Sendmux surface, setting up auth, or making a first verified call. |
sendmux-send-email |
Sending single or batch transactional email. |
sendmux-attachments |
Uploading, downloading, or sending attachments without wasting context on base64. |
sendmux-mailbox-agent |
Reading, triaging, replying, or syncing one mailbox. |
sendmux-management |
Managing domains, mailboxes, sending accounts, webhooks, billing, and logs. |
sendmux-cli |
Using the sendmux CLI from a terminal. |
sendmux-mcp-setup |
Connecting Sendmux MCP servers to an agent client. |
sendmux-token-efficient-usage |
Choosing low-token Sendmux calls and avoiding wasteful reads. |
sendmux-email-for-agents |
Giving an AI agent an inbox, challenge-first self-registration flow, or email workflow, even when Sendmux is not named. |
| Target | Recommended install |
|---|---|
| Cursor | After official marketplace publication, run /add-plugin sendmux. |
| Claude app, Claude Desktop, Cowork | Add marketplace from repository Sendmux/skills, then install Sendmux. |
| Claude Code | /plugin marketplace add Sendmux/skills, then /plugin install sendmux@sendmux. |
| Codex app and Codex CLI | codex plugin marketplace add Sendmux/skills, then install Sendmux from Plugins or /plugins. |
| Agent Skills clients | npx skills add Sendmux/skills. |
| Single-skill installs | npx skills add Sendmux/skills --skill <skill-name>. |
Marketplace plugins and raw Agent Skills only teach workflows. They do not grant Sendmux access. Authorise hosted MCP, create API keys, or use agent access before asking an agent to act on Sendmux data.
This repo uses the Agent Skills format:
skills/
<skill-name>/
SKILL.md
references/
scripts/
assets/
Each skill must be validated, benchmarked against a baseline, and packaged before it is marked complete.
Generate Cursor, Claude, and Codex marketplace bundles:
node scripts/build-plugin-bundles.mjs
node scripts/check-plugin-bundles.mjs
The canonical skill source stays in skills/. Cursor reads it directly; generated Cursor, Claude, and Codex manifests plus both MCP files are checked for drift in CI.
See docs/eval-lint-package-playbook.md for the local eval, lint, package, and install-smoke loop.
See docs/regen-update-playbook.md for the source drift check and regeneration procedure.