> food-order
Reorder Foodora orders + track ETA/status with ordercli. Never confirm without explicit user approval. Triggers: order food, reorder, track ETA.
curl "https://skillshub.wtf/elizaOS/eliza/food-order?format=md"Food order (Foodora via ordercli)
Goal: reorder a previous Foodora order safely (preview first; confirm only on explicit user “yes/confirm/place the order”).
Hard safety rules
- Never run
ordercli foodora reorder ... --confirmunless user explicitly confirms placing the order. - Prefer preview-only steps first; show what will happen; ask for confirmation.
- If user is unsure: stop at preview and ask questions.
Setup (once)
- Country:
ordercli foodora countries→ordercli foodora config set --country AT - Login (password):
ordercli foodora login --email you@example.com --password-stdin - Login (no password, preferred):
ordercli foodora session chrome --url https://www.foodora.at/ --profile "Default"
Find what to reorder
- Recent list:
ordercli foodora history --limit 10 - Details:
ordercli foodora history show <orderCode> - If needed (machine-readable):
ordercli foodora history show <orderCode> --json
Preview reorder (no cart changes)
ordercli foodora reorder <orderCode>
Place reorder (cart change; explicit confirmation required)
- Confirm first, then run:
ordercli foodora reorder <orderCode> --confirm - Multiple addresses? Ask user for the right
--address-id(take from their Foodora account / prior order data) and run:ordercli foodora reorder <orderCode> --confirm --address-id <id>
Track the order
- ETA/status (active list):
ordercli foodora orders - Live updates:
ordercli foodora orders --watch - Single order detail:
ordercli foodora order <orderCode>
Debug / safe testing
- Use a throwaway config:
ordercli --config /tmp/ordercli.json ...
> related_skills --same-repo
> yara-rule-authoring
Guides authoring of high-quality YARA-X detection rules for malware identification. Use when writing, reviewing, or optimizing YARA rules. Covers naming conventions, string selection, performance optimization, migration from legacy YARA, and false positive reduction. Triggers on: YARA, YARA-X, malware detection, threat hunting, IOC, signature, crx module, dex module.
> weather
Get current weather and forecasts (no API key required). Use when the user asks about the weather, temperature, forecast, wind, humidity, or climate conditions for a city or location. Fetches real-time weather data from free services using curl.
> wacli
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats). Use when the user asks to send a WhatsApp message, text someone on WhatsApp, search WhatsApp chat history, sync WhatsApp conversations, backfill message history, or forward a file via WhatsApp to a third party.
> voice-call
Initiates, manages, and inspects voice calls through the Otto voice-call plugin using Twilio, Telnyx, Plivo, or mock providers. Supports starting outbound calls, continuing conversations, speaking messages, ending calls, and checking call status. Use when the user wants to make a phone call, dial a number, place a voice call, check call status, send a voice message, or speak to someone over the phone.