Agent Skills
› composio-community/awesome-agent-clis
› Food Delivery CLI (ordercli)
Food Delivery CLI (ordercli)
GitHub用于通过命令行工具查询Foodora和Deliveroo外卖订单历史、追踪活跃订单及重新下单的自动化技能。
触发场景
用户需要查看外卖订单状态
用户希望重复购买之前的餐食
用户想检查外卖订单历史记录
安装
npx skills add composio-community/awesome-agent-clis --skill Food Delivery CLI (ordercli) -g -y
SKILL.md
Frontmatter
{
"name": "Food Delivery CLI (ordercli)",
"description": "CLI for Foodora and Deliveroo — view order history, track active orders, and reorder past meals. Use when an agent needs to check food delivery order status, review past orders, or reorder from Foodora\/Deliveroo."
}
ordercli — Your takeout timeline, in the terminal
CLI for Foodora and Deliveroo food delivery services.
- Repo: https://github.com/steipete/ordercli
- Author: @steipete
Installation
Build from source:
git clone https://github.com/steipete/ordercli.git
cd ordercli
go build ./cmd/ordercli
Supported Providers
- Foodora — fully working
- Deliveroo — work in progress (requires bearer token)
Foodora Setup
Configure Country
ordercli foodora countries # list available countries
ordercli foodora config set --country AT
ordercli foodora config show
Login
ordercli foodora login --email you@example.com --password-stdin
If MFA triggers, it prompts for OTP automatically in a TTY.
For regions with Cloudflare protection:
ordercli foodora login --email you@example.com --password-stdin --browser
Import Session from Chrome
ordercli foodora session chrome --url https://www.foodora.at/ --profile "Default"
ordercli foodora session refresh --client-id android
Key Commands
Order History
ordercli foodora history
ordercli foodora history --limit 50
ordercli foodora history show <orderCode>
ordercli foodora history show <orderCode> --json
Active Orders
ordercli foodora orders
ordercli foodora orders --watch
Reorder
# Preview only (safe)
ordercli foodora reorder <orderCode>
# Actually add to cart (does NOT place order)
ordercli foodora reorder <orderCode> --confirm
# With specific delivery address
ordercli foodora reorder <orderCode> --confirm --address-id <id>
Logout
ordercli foodora logout
Deliveroo (WIP)
export DELIVEROO_BEARER_TOKEN='...'
ordercli deliveroo config set --market uk
ordercli deliveroo history
ordercli deliveroo orders
Configuration
Config stored in OS config dir. Override with:
ordercli --config /tmp/ordercli.json foodora config show
版本历史
- 9f765d2 当前 2026-07-24 16:03


