Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

autosendautosend 命令行

Agent Skill

autosend 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,648

周安装

68

GitHub Stars

公开资料未说明

下载量

539
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:autosend(autosend 命令行)
来源仓库:https://github.com/autosendhq/skills
仓库路径:skills/autosend
安装命令:
npx skills add https://github.com/autosendhq/skills --skill AutoSend
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/autosendhq/skills --skill AutoSend

简介

autosend 提供事务性邮件发送与管理 REST API,支持联系人、模板与 Stripe 支付集成,适合需要邮件触达与计费联动的场景。

  • 适用于用户注册通知、支付成功提醒等需要可靠送达与追踪的通信需求。
  • 通过 JavaScript/TypeScript SDK 或 curl 调用 API,返回 Stripe 结账 URL 或预览信息。
  • 使用前需在 autosend.com 注册账号、添加域名并完成 DNS 验证以获取 API 密钥。
  • autosend 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

AutoSend Email API

Send transactional emails, manage contacts, and use templates via REST API.

Using JavaScript/TypeScript? See the SDK Guide for TypeScript examples with the autosendjs package.

Reference: API Guide | Official API Reference

Prerequisites

Complete these steps before using the API:

  • Create Account — Sign up at autosend.com
  • Add Domain — Settings → Domains → Add Domain → Select AWS region (docs)
  • Configure DNS — Copy the generated records (DKIM, SPF, DMARC) to your DNS provider
  • Verify Domain — Click "Verify Ownership" and wait for status to turn green (5-30 min)
  • Get API Key — Settings → API Keys → Generate API Key (docs)
  • Set Environment Variableexport AUTOSEND_API_KEY=as_your_key_here

Authentication

All requests require a Bearer token in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Base URL: https://api.autosend.com/v1

All POST/PUT requests must include Content-Type: application/json.


Email Operations

Send Email

POST /v1/mails/send

Send a single transactional email.

ParameterTypeRequiredDescription
fromobjectYesSender — {"email": "...", "name": "..."}
toobjectYesRecipient — {"email": "...", "name": "..."}
subjectstringYesEmail subject line
htmlstringNoHTML body
textstringNoPlain text body
templateIdstringNoTemplate ID (replaces html/text)
dynamicDataobjectNoTemplate variable substitutions
ccarrayNoCC recipients — [{"email": "...", "name": "..."}]
bccarrayNoBCC recipients — [{"email": "...", "name": "..."}]
replyToobjectNoReply-to address — {"email": "...", "name": "..."}
attachmentsarrayNoFile attachments — [{"filename": "...", "content": "..."}]

Response:

{
  "success": true,
  "data": { "emailId": "email_abc123" }
}

Bulk Send

POST /v1/mails/bulk

Send emails to multiple recipients with a shared sender, subject, and optional template.

ParameterTypeRequiredDescription
fromobjectYesShared sender — {"email": "...", "name": "..."}
subjectstringNoShared subject (required unless template provides it)
htmlstringNoShared HTML body
textstringNoShared plain text body
templateIdstringNoTemplate ID for templated emails
dynamicDataobjectNoShared default template variables
recipientsarrayYesArray of recipient objects (max 100)

Recipient object:

ParameterTypeRequiredDescription
emailstringYesRecipient email address
namestringNoRecipient display name
dynamicDataobjectNoPer-recipient variables (overrides shared)
ccarrayNoPer-recipient CC
bccarrayNoPer-recipient BCC
Limit: Maximum 100 recipients per bulk request.

Response:

{
  "success": true,
  "data": {
    "batchId": "batch_abc123",
    "totalRecipients": 2,
    "successCount": 2,
    "failedCount": 0
  }
}

Templates

POST /v1/mails/send with templateId

Send templated emails by passing a templateId and dynamicData instead of (or alongside) html/text.

ParameterTypeRequiredDescription
templateIdstringYesTemplate identifier
dynamicDataobjectNoKey-value pairs for template variables

Common template IDs:

TemplateIDTypical Variables
Order Confirmationtmpl_order_confirmationorderNumber, customerName, orderTotal, estimatedDelivery
Welcome Emailtmpl_welcomefirstName, activationLink, supportEmail
Password Resettmpl_password_resetresetLink, expiresIn

Templates also work with bulk send — pass templateId and dynamicData in the bulk request body.


Contact Management

Create Contact

POST /v1/contacts

ParameterTypeRequiredDescription
emailstringYesContact email address
firstNamestringNoContact first name
lastNamestringNoContact last name
userIdstringNoExternal user ID
listIdsarrayNoLists to add contact to — ["list_abc", "list_xyz"]
customFieldsobjectNoCustom field values

Response:

{
  "success": true,
  "data": {
    "id": "contact_abc123",
    "email": "user@example.com",
    "firstName": "Jane",
    "lastName": "Smith",
    "listIds": ["list_abc"],
    "customFields": {},
    "createdAt": "2025-01-15T00:00:00Z",
    "updatedAt": "2025-01-15T00:00:00Z"
  }
}

Get Contact

GET /v1/contacts/:id

ParameterTypeRequiredDescription
idstringYesContact ID (path parameter)

Response: Returns the contact object (same shape as Create Contact response).


Upsert Contact

POST /v1/contacts/email

Create or update a contact by email address. If a contact with the given email exists, it is updated; otherwise a new contact is created.

ParameterTypeRequiredDescription
emailstringYesContact email address
firstNamestringNoContact first name
lastNamestringNoContact last name
userIdstringNoExternal user ID
listIdsarrayNoLists to add contact to
customFieldsobjectNoCustom field values

Response: Returns the contact object (same shape as Create Contact response).


Delete Contact

DELETE /v1/contacts/:id

ParameterTypeRequiredDescription
idstringYesContact ID (path parameter)

Response:

{
  "success": true
}

Error Handling

All errors return JSON with an error object:

{
  "success": false,
  "error": {
    "message": "The 'to' field is required",
    "code": "VALIDATION_FAILED",
    "details": []
  }
}
StatusCodeDescription
400VALIDATION_FAILEDBad request — missing or invalid parameters
401UNAUTHORIZEDInvalid or missing API key
402PAYMENT_REQUIREDPlan upgrade needed
403FORBIDDENInsufficient permissions
404NOT_FOUNDResource not found
429RATE_LIMIT_EXCEEDEDToo many requests — retry with backoff
500SERVER_ERRORInternal server error

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.68%
按下载量换算208

Claude

27.65%
按下载量换算149

Cursor

20.17%
按下载量换算109

Gemini CLI

9.46%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills