zero_exposure_smtp_sender — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited zero_exposure_smtp_sender (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.
Send emails safely without exposing SMTP passwords. Credentials stay encrypted inside your local MGC Blackbox.
Most email‑sending tools require you to hardcode SMTP passwords or store them in plaintext.
This skill uses MGC Blackbox, a local encrypted vault:
Your AI can send emails — but never sees your password.
pip install mgc-blackbox
mgcCreate a JSON file:
{
"address": "[email protected]",
"password": "auth_code",
"smtp_server": "smtp.email.com",
"smtp_port": 587
}Store it:
mgc_save info_type=config info_owner=your_email < config.jsonNote:info_typeandinfo_ownerare identifiers you choose when saving credentials.
send_emailfrom mcp import MCPClient
client = MCPClient("http://localhost:57219")
client.call_tool("send_email", {
"to": "[email protected]",
"subject": "Hello",
"body": "This is a secure email.",
"info_type": "config",
"info_owner": "your_email"
})If you need attachments, HTML emails, templates, or automation workflows, you can extend this skill using MGC’s secure local execution capabilities.
MirginCipher MIT License (see GitHub repository)
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.