Save To Email

ReviewAudited by ClawScan on May 1, 2026.

Overview

This skill transparently sends user-requested email through Resend, but it will use your Resend credentials to send real outbound messages.

Install this only if you want the agent to send emails through your Resend account. Keep the .env file private and trusted, use a dedicated API key if possible, and confirm the recipient and message contents before sending.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If invoked with the wrong recipient or content, it will send a real email from the configured sender.

Why it was flagged

The script performs the intended outbound email send through the Resend API.

Skill content
-X POST "https://api.resend.com/emails" ... --data-binary "${PAYLOAD}"
Recommendation

Use it only for user-requested sends and review the recipient, subject, and body before running the command.

What this means

Anyone or any agent that can run the skill with this environment can send email through the configured Resend account.

Why it was flagged

The script uses the user's Resend API key to authenticate and send email.

Skill content
-H "Authorization: Bearer ${RESEND_API_KEY}"
Recommendation

Use a dedicated, rotatable Resend key with the least privileges available, keep it out of source control, and revoke it if it is exposed.

What this means

A malicious or accidentally edited .env file could execute shell commands when the script starts.

Why it was flagged

The script sources the local .env file as shell code to load configuration.

Skill content
if [ -f "${ROOT_DIR}/.env" ]; then ... . "${ROOT_DIR}/.env"
Recommendation

Keep the .env file private and trusted, and put only simple RESEND_API_KEY and RESEND_FROM assignments in it.

What this means

Reports or private content placed in the email body will leave the local session and be sent to Resend and the recipient.

Why it was flagged

The email body and recipient are included in the payload sent to Resend for delivery.

Skill content
"html": html ... "to": [recipient]
Recommendation

Do not include sensitive information unless the recipient and delivery path are intended and appropriate.