Search and order pharmacy products from apohealth.de via apo-cli. Use for medication search (by name or PZN), product details, category browsing, and cart management. Trigger when the user mentions Apotheke, pharmacy, Medikament, medication, PZN, apohealth, or health products.
41:T875,
Search pharmacy products and manage cart on apohealth.de using apo-cli — a pure-Python CLI bundled in this skill at {baseDir}/apo_cli.py.
https://www.apohealth.de/cart/<variant_id>:<qty>,<variant_id>:<qty>,... — the user cannot open a browser from the agent, so they need a clickable link.python3 {baseDir}/apo_cli.py <resource> <action> [options]
python3 {baseDir}/apo_cli.py search "Ibuprofen 400" # by name
python3 {baseDir}/apo_cli.py search "04114918" # by PZN
python3 {baseDir}/apo_cli.py search "Nasenspray" -n 20 # more results
python3 {baseDir}/apo_cli.py product <handle> # prices, variants, description
python3 {baseDir}/apo_cli.py categories # list all
python3 {baseDir}/apo_cli.py list --category bestseller # browse category
python3 {baseDir}/apo_cli.py list --category schmerzen -n 10 # with limit
python3 {baseDir}/apo_cli.py cart # show cart
python3 {baseDir}/apo_cli.py cart add <variant_id> # add product
python3 {baseDir}/apo_cli.py cart remove <variant_id> # remove product
python3 {baseDir}/apo_cli.py cart clear # clear cart ⚠️
python3 {baseDir}/apo_cli.py cart checkout # open browser for checkout
python3 {baseDir}/apo_cli.py status # CLI status info
For all commands, options, and flags see {baseDir}/references/commands.md.