Agent Email

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is coherent and purpose-aligned for operating a disposable email CLI, but users should notice that it can install an external CLI, read full email contents including codes, delete messages, and reuse local mailbox profiles.

Before installing, make sure you trust the external agent-email package. Use the skill mainly with disposable inboxes, verify the active/default mailbox before reading or deleting mail, and avoid exposing sensitive verification codes or account recovery messages unless that is your explicit goal.

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

Installing the package gives external CLI code the ability to run on the user’s machine and handle mailbox data.

Why it was flagged

The skill relies on a globally installed third-party package that is not pinned to a specific version in the reviewed artifacts. This is expected for a CLI wrapper skill, but users should trust the package source before installing.

Skill content
If missing, install:

```bash
npm install -g @zaddy6/agentemail
# or
bun install -g @zaddy6/agentemail
```
Recommendation

Install only if you trust the package and prefer a reviewed or pinned version where available.

What this means

The agent may see or use login links, one-time codes, and other sensitive mailbox contents.

Why it was flagged

The skill can retrieve full email bodies, including verification links and codes. This is aligned with disposable inbox automation, but those messages can grant access to other services.

Skill content
Use `show` when you need body/source details for verification links, codes, or full content extraction.
Recommendation

Use this for disposable or low-risk inboxes, and avoid routing sensitive account recovery or production authentication messages through it unless explicitly intended.

What this means

A mistaken command could remove mailbox messages from the disposable inbox.

Why it was flagged

The CLI includes a message deletion command. The instruction scopes deletion to when the user requests it, so this is not suspicious, but it is a mutating action.

Skill content
Delete processed/irrelevant message when requested.

```bash
agent-email delete <email|default> <messageId>
```
Recommendation

Confirm the target email address and message ID before allowing deletion.

What this means

The agent may read from or act on the currently active mailbox profile if no address is specified.

Why it was flagged

The skill uses local mailbox profiles and a default active account that can persist across tasks. This is expected for mailbox management, but future commands may act on the stored default profile.

Skill content
Manage mailbox profiles.

```bash
agent-email accounts list
agent-email use <email|default>
agent-email accounts remove <email>
```

Prefer `default` alias when user does not specify an email.
Recommendation

Check the active/default mailbox before use and remove profiles that should no longer be available.