4.1k★by krausefx
post-at – OpenClaw Skill
post-at is an OpenClaw Skills integration for data analytics workflows. Manage Austrian Post (post.at) deliveries - list packages, check delivery status, set delivery place preferences.
Skill Snapshot
| name | post-at |
| description | Manage Austrian Post (post.at) deliveries - list packages, check delivery status, set delivery place preferences. OpenClaw Skills integration. |
| owner | krausefx |
| repository | krausefx/post-at |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @krausefx/post-at |
| last updated | Feb 7, 2026 |
Maintainer

name: post-at description: Manage Austrian Post (post.at) deliveries - list packages, check delivery status, set delivery place preferences. homepage: https://github.com/krausefx/post-at-cli metadata: {"clawdbot":{"emoji":"📦","requires":{"bins":["node"]}}}
post-at CLI
Unofficial CLI for viewing and managing deliveries on post.at (Österreichische Post). Uses the same web flows as the site and requires your own account credentials.
Credentials: POST_AT_USERNAME and POST_AT_PASSWORD environment variables (or --username / --password options).
Quick Reference
Login
Cache a short-lived session (auto-expires):
post-at login
# Output: Logged in as you@example.com
List Deliveries
Upcoming deliveries (default):
post-at deliveries
# Shows: tracking number, ETA, sender, status
All deliveries (including delivered):
post-at deliveries --all
JSON output:
post-at deliveries --json
Limit results:
post-at deliveries --limit 10
Delivery Details
Get details for a specific tracking number:
post-at delivery 1042348411302810212306
# Output: tracking, expected delivery, sender, status, picture URL
JSON output:
post-at delivery <tracking-number> --json
Delivery Place Options (Wunschplatz)
List available place options:
post-at routing place-options
Common options:
Vor_Haustüre— Vor der HaustüreVor_Wohnungstüre— Vor der WohnungstüreAufOderUnter_Briefkasten— Unter / Auf dem BriefkastenHinter_Zaun— Hinter dem ZaunIn_Garage— In der GarageAuf_Terrasse— Auf der TerrasseIm_Carport— Im CarportIn_Flexbox— In der Flexboxsonstige— Anderer Wunsch‑Platz
Set Delivery Place
Using preset shortcut:
post-at routing place <tracking-number> \
--preset vor-der-wohnungstuer \
--description "Please leave at the door"
Using key directly:
post-at routing place <tracking-number> \
--key Vor_Wohnungstüre \
--description "Bitte vor die Wohnungstür"
Using label:
post-at routing place <tracking-number> \
--place "Vor der Wohnungstüre" \
--description "Custom instructions"
Example Workflows
Check what's arriving today/tomorrow:
post-at deliveries
Get full details including package photo:
post-at delivery <tracking-number>
Set all upcoming deliveries to door:
# First list deliveries
post-at deliveries --json > /tmp/deliveries.json
# Then set place for each (requires scripting)
# Example for a specific one:
post-at routing place 1042348411302810212306 \
--preset vor-der-wohnungstuer \
--description "Leave at apartment door"
Notes
- Session tokens expire after a short time (auto-relogin when needed)
- Not all deliveries support Wunschplatz redirection
- Picture URLs may not be available for all packages
- Use
--jsonoutput for programmatic processing
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install post-at?
Run openclaw add @krausefx/post-at in your terminal. This installs post-at into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/krausefx/post-at. Review commits and README documentation before installing.
