Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Read, search, and scan ProtonMail via IMAP bridge (Proton Bridge or hydroxide). Includes daily digest for important emails.
Read, search, and scan ProtonMail via IMAP bridge (Proton Bridge or hydroxide). Includes daily digest for important emails.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
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. Summarize what changed and any follow-up checks I should run.
Access ProtonMail via IMAP using either: Proton Bridge (official, recommended) hydroxide (third-party, headless)
# Pull and run docker run -d --name=protonmail-bridge \ -v protonmail:/root \ -p 143:143 -p 1025:25 \ --restart=unless-stopped \ shenxn/protonmail-bridge # Initial login (interactive) docker run --rm -it -v protonmail:/root shenxn/protonmail-bridge init # Then: login โ enter credentials โ info (shows bridge password) โ exit
# Install git clone https://github.com/emersion/hydroxide.git cd hydroxide && go build ./cmd/hydroxide # Login ./hydroxide auth your@email.com # Run as service ./hydroxide serve
Create config file at ~/.config/protonmail-bridge/config.env: PROTONMAIL_HOST=127.0.0.1 PROTONMAIL_PORT=143 PROTONMAIL_USER=your@email.com PROTONMAIL_PASS=your-bridge-password Or set environment variables directly.
# List mailboxes protonmail.py mailboxes # Show recent inbox protonmail.py inbox --limit 10 # Show unread emails protonmail.py unread # Search emails protonmail.py search "keyword" # Read specific email protonmail.py read 123
The daily-scan.py script identifies important emails based on: Important senders (banks, government, schools) Urgent keywords (DE/EN/NL) Configure important patterns in the script or via environment variables.
Recommended Sieve filter for auto-sorting: require ["fileinto", "imap4flags"]; # Important emails - flag them if anyof ( address :contains "From" ["@bank", "@government"], header :contains "Subject" ["Urgent", "Dringend", "Belangrijk"] ) { addflag "\\Flagged"; } # Newsletters - auto-read and move if anyof ( address :contains "From" "newsletter@", address :contains "From" "noreply@" ) { addflag "\\Seen"; fileinto "Newsletter"; stop; }
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.