OpenClaw · Skill
Cookidoo
Access Cookidoo (Thermomix) recipes, shopping lists, and meal planning.
Install
Start with the primary install command. Alternate entrypoints are included below for ClawHub and OpenClaw CLI users.
Primary command
clawhub install thekie/cookidooClawHub installer
npx clawhub@latest install thekie/cookidooOpenClaw CLI
openclaw skills install thekie/cookidooDirect OpenClaw install
openclaw install thekie/cookidooWhat this skill does
Access Cookidoo (Thermomix) recipes, shopping lists, and meal planning.
Why it matters
Gives programmatic access to Cookidoo data that the official app doesn't expose, enabling automation and integration with other tools.
Typical use cases
- Browsing saved Thermomix recipes from the terminal
- Pulling this week's meal plan before cooking
- Fetching the shopping list ahead of a grocery run
- Searching Cookidoo recipes by dish or ingredient
- Exporting ingredient lists from specific recipes
Source instructions
Cookidoo
Access Cookidoo (Thermomix) recipes, shopping lists, and meal planning.
Required Credentials
| Variable | Required | Description |
|---|---|---|
COOKIDOO_EMAIL | ✅ Yes | Your Cookidoo account email |
COOKIDOO_PASSWORD | ✅ Yes | Your Cookidoo account password |
COOKIDOO_COUNTRY | Optional | Country code (default: DE) |
COOKIDOO_LANGUAGE | Optional | Language code (default: de-DE) |
Set in environment or ~/.config/atlas/cookidoo.env:
COOKIDOO_EMAIL=your@email.com
COOKIDOO_PASSWORD=yourpassword
Dependencies
pip install cookidoo-api
Tasks
List saved recipes
python scripts/cookidoo_cli.py recipes
Get weekly plan
python scripts/cookidoo_cli.py plan
Get shopping list from Cookidoo
python scripts/cookidoo_cli.py shopping
Search recipes
python scripts/cookidoo_cli.py search "Pasta"
Get recipe details
python scripts/cookidoo_cli.py recipe <recipe_id>
Get account info
python scripts/cookidoo_cli.py info
Options
--json— Output as JSON--limit N— Limit results (default: 10)
Integration Ideas
- Sync Cookidoo shopping list → Bring! app
- Suggest recipes based on what's in season
- Weekly meal planning assistance
- Export ingredients for selected recipes
Notes
- Requires active Cookidoo subscription
- API is unofficial — may break with Cookidoo updates
- Store credentials securely (not in skill folder)