用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill post-at命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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"]}}} |
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).
Cache a short-lived session (auto-expires):
post-at login
# Output: Logged in as you@example.com
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
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
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‑PlatzUsing 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"
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"
--json output for programmatic processing