# Send ProtonMail via Proton Mail Bridge to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-protonmail",
    "name": "ProtonMail via Proton Mail Bridge",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/rvacyber/openclaw-protonmail",
    "canonicalUrl": "https://clawhub.ai/rvacyber/openclaw-protonmail",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-protonmail",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-protonmail",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "CODE_OF_CONDUCT.md",
      "CONTRIBUTING.md",
      "README.md",
      "SECURITY.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-protonmail",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T02:47:30.166Z",
      "expiresAt": "2026-05-08T02:47:30.166Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-protonmail",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-protonmail",
        "contentDisposition": "attachment; filename=\"openclaw-protonmail-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-protonmail"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-protonmail"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-protonmail",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-protonmail",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-protonmail/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-protonmail/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-protonmail/agent.md"
  }
}
```
## Documentation

### ProtonMail Skill

Use ProtonMail for secure email via Proton Mail Bridge.

### Setup (once)

Install Proton Mail Bridge:
brew install --cask proton-mail-bridge



Launch Bridge and sign in:

Open Proton Mail Bridge app
Sign in with your ProtonMail credentials
Bridge will generate local IMAP/SMTP credentials



Configure the skill:
Add to your OpenClaw config (~/.openclaw/openclaw.json):
{
  "skills": {
    "entries": {
      "protonmail": {
        "enabled": true,
        "env": {
          "PROTONMAIL_ACCOUNT": "your-email@pm.me",
          "PROTONMAIL_BRIDGE_PASSWORD": "bridge-generated-password"
        }
      }
    }
  }
}

Get Bridge credentials:

In Bridge, click your account → Mailbox configuration
Copy the IMAP password (NOT your ProtonMail password)
Use skills.entries.protonmail (not skills.protonmail)

### CLI Usage

The skill provides a protonmail CLI tool:

# List inbox (most recent 10 emails)
protonmail list-inbox --limit=10 [--unread]

# Search emails
protonmail search "from:alice@example.com" --limit=20

# Read specific email
protonmail read <uid>

# Send email
protonmail send --to=bob@example.com --subject="Meeting" --body="See you at 3pm"

# Reply to email
protonmail reply <uid> --body="Sounds good!"

### Common Requests

List inbox: "Check my ProtonMail inbox"
Search emails: "Search ProtonMail for emails from alice@example.com"
Read email: "Read ProtonMail email UID 31"
Send email: "Send an email via ProtonMail to bob@example.com about the project"
Reply: "Reply to ProtonMail email UID 31"

### How It Works

Proton Mail Bridge runs locally and connects to your ProtonMail account
Bridge provides local IMAP (read) and SMTP (send) servers
This skill connects to Bridge's local servers
All encryption/decryption happens locally via Bridge
No third-party services — direct ProtonMail integration

### Security

✅ Official Proton software (audited, open-source Bridge)
✅ End-to-end encryption maintained
✅ Credentials stored locally only
✅ No API keys or tokens — uses standard IMAP/SMTP
✅ Bridge password is separate from your ProtonMail password

### "Connection refused" errors

Check Bridge is running: Open Proton Mail Bridge app
Verify ports: Bridge should show 127.0.0.1:1143 (IMAP) and 127.0.0.1:1025 (SMTP)

### "Authentication failed"

Use Bridge password, not ProtonMail password: Get it from Bridge → Account → Mailbox configuration
Check account email: Must match exactly (e.g., user@pm.me or user@protonmail.com)

### "Skill not found"

Reinstall skill: Run npm run install-skill in the skill directory
Check OpenClaw config: Ensure skills.protonmail.enabled: true

### Development

See README.md for development setup and testing.

### License

MIT — See LICENSE
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rvacyber
- Version: 0.1.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T02:47:30.166Z
- Expires at: 2026-05-08T02:47:30.166Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-protonmail)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-protonmail/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-protonmail/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-protonmail/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-protonmail)