Shitty Email

PassAudited by ClawScan on May 1, 2026.

Overview

This is a transparent disposable-email helper, but it routes mail through an external service and uses a mailbox token that should be treated carefully.

This skill appears suitable for low-risk temporary email use, testing, and disposable signups. Do not use it for accounts where you need long-term recovery, private correspondence, or sensitive verification flows. Remember that messages go to an external disposable-email provider and that the generated token controls the inbox until it expires or is deleted.

Findings (3)

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

Using the skill will send requests to shitty.email and depend on that service for inbox creation and mail retrieval.

Why it was flagged

The skill instructs use of curl and jq to call the disclosed external API. This is expected for the purpose and limited to inbox operations, but it is still command-driven network activity.

Skill content
curl -s -X POST https://shitty.email/api/inbox | jq
Recommendation

Use it only for disposable-email tasks you intend to route through this service, and review actions that fetch, extend, or delete an inbox.

What this means

Anyone or any agent context with the token could read or manage that temporary inbox, including verification messages sent to it.

Why it was flagged

The generated token is effectively a bearer credential for the temporary mailbox, allowing later checks, message retrieval, extension, and deletion.

Skill content
This token is required for ALL subsequent operations. Always store and reuse the token for the same inbox session.
Recommendation

Treat the token like a temporary password, avoid using these inboxes for important long-term accounts, and delete the inbox when finished.

What this means

The skill may fail or require the user to provide these tools if they are not already available.

Why it was flagged

The skill documentation declares reliance on curl and jq while the supplied registry requirements list no required binaries. This is an under-declared operational dependency, not hidden installation behavior.

Skill content
bins: [curl, jq]
Recommendation

Ensure curl and jq are already installed from trusted sources, and prefer registry metadata that accurately declares required tools.