Test Mailbox — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Test Mailbox (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Disposable email inbox service for testing. Exposed as both a REST API and an MCP server.
# Docker
docker compose up -d
# Or local
pip install -r requirements.txt
python run.py| Method | Path | Description |
|---|---|---|
| POST | /inboxes | Create inbox |
| GET | /inboxes/{id}/messages | List messages |
| GET | /inboxes/{id}/messages/latest | Latest message |
| GET | /inboxes/{id}/messages/{msg_id} | Full message |
| GET | /inboxes/{id}/wait?timeout=30&match=regex | Long-poll for message |
| GET | /inboxes/{id}/links | Extract links from latest email |
| DELETE | /inboxes/{id} | Delete inbox |
create_inbox - Create disposable inboxcheck_inbox - List messageswait_for_email - Wait for email matching patternget_email_links - Extract links from latest emaildelete_inbox - Cleanup# Create inbox
curl -X POST http://localhost:8501/inboxes
# {"id": "abc123...", "email": "[email protected]", ...}
# Send test email
python -c "
import smtplib
from email.mime.text import MIMEText
msg = MIMEText('<a href=\"https://example.com/verify?token=abc\">Verify</a>', 'html')
msg['Subject'] = 'Verify your account'
msg['From'] = '[email protected]'
msg['To'] = '[email protected]'
with smtplib.SMTP('localhost', 2525) as s:
s.send_message(msg)
"
# Check messages
curl http://localhost:8501/inboxes/{id}/messages/latest
# Get verification links
curl http://localhost:8501/inboxes/{id}/links~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.