Resend
Analysis
This instruction-only Resend integration matches its stated email-management purpose, but it requires a Maton API key and can send or modify email-account resources, so approvals and account selection matter.
Findings (6)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
POST /resend/emails ... **All write operations require explicit user approval.**
The skill exposes Resend write operations such as sending email, while also instructing the agent to get approval before create, update, or delete calls.
Maton proxies requests to `api.resend.com` and automatically injects your API key.
The skill depends on Maton's proxy service for API access and credential handling; this is disclosed, but it is a trust dependency.
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/resend/emails')The instructions use local Python snippets to make API calls. This is purpose-aligned and no dynamic evaluation or downloaded executable is shown.
Send transactional emails, manage domains, contacts, templates, and broadcasts. ... POST /resend/emails/batch
Batch emails, broadcasts, and account-resource changes can affect many recipients or persistent account settings if an input is wrong.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
All requests require the Maton API key ... Access is scoped to emails, domains, API keys, and audiences within the connected Resend account.
The skill requires a sensitive Maton API key and can act against privileged Resend-account resources, including API keys and audiences.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
https://api.maton.ai/resend/{endpoint} ... If you have multiple Resend connections, specify which one to use with the `Maton-Connection` headerRequests flow through a gateway/proxy, and account identity depends on selecting the correct Maton connection when multiple connections exist.
