PixelLetter
/install pixelletter
PixelLetter
Use this skill when a user wants to send or test a letter/PDF/fax through PixelLetter, query PixelLetter account information, or build workflows around PixelLetter's HTTPS API.
Setup
- Create a free account at https://www.pixelletter.de
- Add credit to your account (letters cost approx. €0.79–€1.99 each)
- Provide credentials via environment variables:
export PIXELLETTER_EMAIL="[email protected]"
export PIXELLETTER_PASSWORD="yourpassword"
Or use secret injection (e.g. Proton Pass):
PIXELLETTER_EMAIL='pass://Personal/Pixelletter/email' \
PIXELLETTER_PASSWORD='pass://Personal/Pixelletter/password' \
pass-cli run -- node scripts/pixelletter.mjs account
- Test with a dry-run first — no mail is sent, no costs incurred.
Safety rules
- PixelLetter dispatches real postal mail/faxes and may create costs.
- Default to test mode. Never run a productive send unless the user explicitly confirms the exact recipient, document/text, options, and cost/dispatch intent.
- Never store credentials in the skill or examples. Use environment variables or secret injection:
PIXELLETTER_EMAILPIXELLETTER_PASSWORD
- Do not expose credentials in logs, dry-runs, commits, screenshots, or community-shared examples.
- Prefer PDF upload for already-rendered letters. Use text mode only for simple letters where PixelLetter handles layout.
- Treat API success code
100as "transmission accepted", not final delivery. PixelLetter sends final confirmation later by email.
CLI wrapper
Bundled script: scripts/pixelletter.mjs
Run from the skill directory or pass the full script path.
PIXELLETTER_EMAIL="..." PIXELLETTER_PASSWORD="..." \
node scripts/pixelletter.mjs account
Dry-run a text letter
node scripts/pixelletter.mjs send-text \
--address-file /path/address.txt \
--message-file /path/message.txt \
--subject "Betreff" \
--destination DE \
--dry-run
Test-mode PDF upload (safe, no real dispatch)
PIXELLETTER_EMAIL="..." PIXELLETTER_PASSWORD="..." \
node scripts/pixelletter.mjs send-upload \
--file /path/letter.pdf \
--destination DE
Real dispatch
Only after explicit user confirmation:
PIXELLETTER_ALLOW_REAL_SEND=true \
PIXELLETTER_EMAIL="..." PIXELLETTER_PASSWORD="..." \
node scripts/pixelletter.mjs send-upload \
--file /path/letter.pdf \
--destination DE \
--production \
--confirm-real-send
Important options
--action 1|2|31= postal letter only (default)2= fax only3= postal letter and fax
--fax "+49 ..."is required for action2or3.--destination DEis required for postal letter actions1or3.--location 1|2|31= München (default)2= Hausleiten bei Wien3= Hamburg
--addoptionregistered-mail options, comma-separated:27Einschreiben28Rückschein, only with2729Eigenhändig, only with2730Einschreiben Einwurf, not combinable
API reference
For endpoint details and response shape, read references/api.md only when needed.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install pixelletter - After installation, invoke the skill by name or use
/pixelletter - Provide required inputs per the skill's parameter spec and get structured output
What is PixelLetter?
Send letters, PDFs, postcards, faxes, or query PixelLetter account credit via the PixelLetter HTTPS API with automated physical mail dispatch. It is an AI Agent Skill for Claude Code / OpenClaw, with 57 downloads so far.
How do I install PixelLetter?
Run "/install pixelletter" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is PixelLetter free?
Yes, PixelLetter is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does PixelLetter support?
PixelLetter is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created PixelLetter?
It is built and maintained by Marcel Janus (@bone187); the current version is v1.0.0.