cookidoo

Health & Fitness
v1.0.1
Benign

Access Cookidoo (Thermomix) recipes, shopping lists, and meal planning.

31.7K downloads1.7K installsby @thekie

Setup & Installation

Install command

clawhub install thekie/cookidoo

If the CLI is not installed:

Install command

npx clawhub@latest install thekie/cookidoo

Or install with OpenClaw CLI:

Install command

openclaw skills install thekie/cookidoo

or paste the repo link into your assistant's chat

Install command

https://github.com/openclaw/skills/tree/main/skills/thekie/cookidoo

What This Skill Does

Connects to Cookidoo, the Thermomix recipe platform, via an unofficial Python API. Retrieves saved recipes, weekly meal plans, and shopping lists from your account.

Gives programmatic access to Cookidoo data that the official app doesn't expose, enabling automation and integration with other tools.

When to Use It

  • 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
View original SKILL.md file
# 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`:
```bash
COOKIDOO_EMAIL=your@email.com
COOKIDOO_PASSWORD=yourpassword
```

## Dependencies

```bash
pip install cookidoo-api
```

## Tasks

### List saved recipes
```bash
python scripts/cookidoo_cli.py recipes
```

### Get weekly plan
```bash
python scripts/cookidoo_cli.py plan
```

### Get shopping list from Cookidoo
```bash
python scripts/cookidoo_cli.py shopping
```

### Search recipes
```bash
python scripts/cookidoo_cli.py search "Pasta"
```

### Get recipe details
```bash
python scripts/cookidoo_cli.py recipe <recipe_id>
```

### Get account info
```bash
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)

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Browsing saved Thermomix recipes from the terminal

AGENT
  1. 1Browsing saved Thermomix recipes from the terminal
  2. 2Pulling this week's meal plan before cooking
  3. 3Fetching the shopping list ahead of a grocery run
  4. 4Searching Cookidoo recipes by dish or ingredient
  5. 5Exporting ingredient lists from specific recipes
OUTPUT
Access Cookidoo (Thermomix) recipes, shopping lists, and meal planning.

Share this skill

Security Audits

VirusTotalBenign
OpenClawBenign
View full report

These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.

Details

LanguageMarkdown
Last updatedFeb 26, 2026