skills$openclaw/recipe-to-list
borahm9.5k

by borahm

recipe-to-list – OpenClaw Skill

recipe-to-list is an OpenClaw Skills integration for coding workflows. Turn recipes into a Todoist Shopping list. Extract ingredients from recipe photos (Gemini Flash vision) or recipe web pages (search + fetch), then compare against the existing Shopping project with conservative synonym/overlap rules, skip pantry staples (salt/pepper), and sum quantities when units match. Also saves each cooked recipe into the workspace cookbook (recipes/).

9.5k stars1.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namerecipe-to-list
descriptionTurn recipes into a Todoist Shopping list. Extract ingredients from recipe photos (Gemini Flash vision) or recipe web pages (search + fetch), then compare against the existing Shopping project with conservative synonym/overlap rules, skip pantry staples (salt/pepper), and sum quantities when units match. Also saves each cooked recipe into the workspace cookbook (recipes/). OpenClaw Skills integration.
ownerborahm
repositoryborahm/recipe-to-list
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @borahm/recipe-to-list
last updatedFeb 7, 2026

Maintainer

borahm

borahm

Maintains recipe-to-list in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
recipe_to_list.py
38.9 KB
recipe-to-list.sh
327 B
_meta.json
458 B
SKILL.md
2.4 KB
SKILL.md

name: recipe-to-list description: Turn recipes into a Todoist Shopping list. Extract ingredients from recipe photos (Gemini Flash vision) or recipe web pages (search + fetch), then compare against the existing Shopping project with conservative synonym/overlap rules, skip pantry staples (salt/pepper), and sum quantities when units match. Also saves each cooked recipe into the workspace cookbook (recipes/).

Create Shopping List (Gemini Flash + Todoist)

Target flow:

  1. Input is either a photo or a recipe web search
  2. Extract ingredients (Gemini Flash for photos; web_fetch text → Gemini for websites)
  3. Pull current Todoist Shopping list
  4. Compare using overlap + synonym mapping (kept conservative; only merge high-confidence equivalents like coriander↔cilantro, panko↔breadcrumbs)
  5. Update Shopping (default: add only missing items; skip salt/pepper)

Use the bundled script to handle the photo → ingredients → Shopping update part.

It also automatically saves a markdown entry into recipes/ (your cookbook knowledge base) and appends to recipes/index.md.

For recipe-name → web search, do it confirm-first using web_search + web_fetch, then feed the ingredients into the same update logic (and save the recipe).

Prereqs

  • Env: GEMINI_API_KEY (or GOOGLE_API_KEY) for Gemini
  • Env: TODOIST_API_TOKEN for Todoist
  • Bin: todoist (todoist-ts-cli)

Output formatting

  • Items are reformatted to start with the ingredient name, followed by a parenthetical quantity.
  • The Shopping list is kept flat (no Todoist sections/groups).

Run

python3 skills/recipe-to-list/scripts/recipe_to_list.py \
  --image /path/to/photo.jpg \
  --title "<optional title>" \
  --source "photo:/path/to/photo.jpg"

Optional flags

  • --model gemini-2.0-flash (default; falls back automatically) or any compatible Gemini vision model
  • --dry-run to print extracted items without creating tasks
  • --prefix "[Recipe] " to prefix each created task
  • --no-overlap-check to skip checking your existing Shopping list
  • --include-pantry to include salt/pepper
  • --no-save to skip saving into recipes/

What to send to the model

The script prompts Gemini to return strict JSON:

{
  "items": ["2 large globe eggplants", "kosher salt", "..."],
  "notes": "optional"
}

If parsing fails, rerun with a clearer crop (ingredients list only) or provide a manual list.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install recipe-to-list?

Run openclaw add @borahm/recipe-to-list in your terminal. This installs recipe-to-list into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/borahm/recipe-to-list. Review commits and README documentation before installing.