TopRank Skills

Home / Claw Skills / API 集成 / resend
Official OpenClaw rules 36%

resend

Resend integration. Manage Emails, Domains, ApiKeys. Use when the user wants to interact with Resend data.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 resend 技能。 若已安装,则直接安装 resend 技能。

Overview

Skill Key
gora050/resend-integration
Author
gora050
Source Repo
openclaw/skills
Version
-
Source Path
skills/gora050/resend-integration
Latest Commit SHA
18374774071e1ba707612b46b350830cce5981ac

Extracted Content

SKILL.md excerpt

# Resend

Resend is an email API platform for developers. It allows them to send transactional emails and manage email infrastructure directly from their code.

Official docs: https://resend.com/docs

## Resend Overview

- **Email**
  - **Email Address**
- **Domain**
- **API Key**
- **Webhook**

## Working with Resend

This skill uses the Membrane CLI to interact with Resend. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.

### Install the CLI

Install the Membrane CLI so you can run `membrane` from the terminal:

```bash
npm install -g @membranehq/cli
```

### First-time setup

```bash
membrane login --tenant
```

A browser window opens for authentication.

**Headless environments:** Run the command, copy the printed URL for the user to open in a browser, then complete with `membrane login complete <code>`.

### Connecting to Resend

1. **Create a new connection:**
   ```bash
   membrane search resend --elementType=connector --json
   ```
   Take the connector ID from `output.items[0].element?.id`, then:
   ```bash
   membrane connect --connectorId=CONNECTOR_ID --json
   ```
   The user completes authentication in the browser. The output contains the new connection id.

### Getting list of existing connections
When you are not sure if connection already exists:
1. **Check existing connections:**
   ```bash
   membrane connection list --json
   ```
   If a Resend connection exists, note its `connectionId`


### Searching for actions

When you know what you want to do but not the exact action ID:

```bash
membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json
```
This will return action objects with id and inputSchema in it, so you will know how to run it.


## Popular actions

| Name | Key | Description |
| --- | --- | --- |
| List Templates | list-templates |  |
| List Domains | list-domains |  |
| Verify Domain | verify-domain |  |
| Create Domain | create...

Related Claw Skills