repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | name: food-order |
| #3 | description: Reorder Foodora orders + track ETA/status with ordercli. Never confirm without explicit user approval. Triggers: order food, reorder, track ETA. |
| #4 | homepage: https://ordercli.sh |
| #5 | metadata: {"clawdbot":{"emoji":"🥡","requires":{"bins":["ordercli"]},"install":[{"id":"go","kind":"go","module":"github.com/steipete/ordercli/cmd/ordercli@latest","bins":["ordercli"],"label":"Install ordercli (go)"}]}} |
| #6 | --- |
| #7 | |
| #8 | # Food order (Foodora via ordercli) |
| #9 | |
| #10 | Goal: reorder a previous Foodora order safely (preview first; confirm only on explicit user “yes/confirm/place the order”). |
| #11 | |
| #12 | Hard safety rules |
| #13 | - Never run `ordercli foodora reorder ... --confirm` unless user explicitly confirms placing the order. |
| #14 | - Prefer preview-only steps first; show what will happen; ask for confirmation. |
| #15 | - If user is unsure: stop at preview and ask questions. |
| #16 | |
| #17 | Setup (once) |
| #18 | - Country: `ordercli foodora countries` → `ordercli foodora config set --country AT` |
| #19 | - Login (password): `ordercli foodora login --email you@example.com --password-stdin` |
| #20 | - Login (no password, preferred): `ordercli foodora session chrome --url https://www.foodora.at/ --profile "Default"` |
| #21 | |
| #22 | Find what to reorder |
| #23 | - Recent list: `ordercli foodora history --limit 10` |
| #24 | - Details: `ordercli foodora history show <orderCode>` |
| #25 | - If needed (machine-readable): `ordercli foodora history show <orderCode> --json` |
| #26 | |
| #27 | Preview reorder (no cart changes) |
| #28 | - `ordercli foodora reorder <orderCode>` |
| #29 | |
| #30 | Place reorder (cart change; explicit confirmation required) |
| #31 | - Confirm first, then run: `ordercli foodora reorder <orderCode> --confirm` |
| #32 | - Multiple addresses? Ask user for the right `--address-id` (take from their Foodora account / prior order data) and run: |
| #33 | - `ordercli foodora reorder <orderCode> --confirm --address-id <id>` |
| #34 | |
| #35 | Track the order |
| #36 | - ETA/status (active list): `ordercli foodora orders` |
| #37 | - Live updates: `ordercli foodora orders --watch` |
| #38 | - Single order detail: `ordercli foodora order <orderCode>` |
| #39 | |
| #40 | Debug / safe testing |
| #41 | - Use a throwaway config: `ordercli --config /tmp/ordercli.json ...` |
| #42 |