Use when running the OpenClaw/ClawHub Bring! skill to search recipes on the web, parse recipe URLs for ingredients, and add ingredients to a Bring shopping list. Covers recipe search via web_search, URL parsing, recipe batch-add, list management, and inspiration filters.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
Use when running the OpenClaw/ClawHub Bring! skill to search recipes on the web, parse recipe URLs for ingredients, and add ingredients to a Bring shopping list. Covers recipe search via web_search, URL parsing, recipe batch-add, list management, and inspiration filters.
metadata
{"openclaw":{"emoji":"🛒","requires":{"bins":["node"],"env":[{"name":"BRING_EMAIL","description":"Bring! account email address","required":true},{"name":"BRING_PASSWORD","description":"Bring! account password","required":true},{"name":"BRING_COUNTRY","description":"Country code for Bring! (e.g. DE, AT, CH)","required":false,"default":"DE"}]}}}
Bring App
When to Use
User fragt nach Rezeptvorschlägen oder saisonalen Gerichten ("Was essen wir heute?", "Rezeptideen", "saisonale Inspirationen")
User möchte Einkaufslisten anzeigen oder aktualisieren ("Was steht auf der Einkaufsliste?", "Füge ... hinzu")
User will Zutaten für ein Rezept hinzufügen
User fragt nach Bring-Liste-Status oder Rezept-Markern
Jegliche Anfragen rund um Einkaufsplanung und Rezeptauswahl
Overview
Build a Bring! CLI-focused skill that uses the updated node-bring-api to fetch inspirations (recipes), highlight seasonal dishes, and add user-selected ingredients to a shopping list.
WICHTIG: Immer explizit nach Bestätigung fragen, bevor Artikel zur Liste hinzugefügt werden!
Quick start workflow
List inspiration filters and identify seasonal tags.
Fetch inspirations using those tags.
Summarize 3-7 seasonal dishes.
IMMER FRAGEN: "Soll ich die Zutaten für [Rezeptname] zur Bring-Liste hinzufügen?"
Nur bei expliziter Bestätigung: Add their ingredients (not the dish name).
Use references/bring-inspirations.md for endpoint details and headers.
These scripts load node-bring-api from:
BRING_NODE_API_PATH (if set), or
../../node-bring-api/build/bring.js relative to this skill, or
the installed bring-shopping package.
Tasks
1) Discover available filters (season, diet, cuisine)
Run:
node scripts/bring_inspirations.js --filters
Read the JSON and pick tags that look seasonal (e.g., winter/sommer/fruehling/herbst).
If unsure, ask the user to pick from the filter list.
Returns structured JSON per recipe: name, ingredients (itemId + spec), image URL, source URL.
For a single URL, returns a single object. For multiple URLs, returns an array.
Step 3: Present options to the user
Show the user the parsed recipes with:
Recipe name
Number of ingredients
Source URL
Key ingredients (first 5-6)
IMMER FRAGEN: "Möchtest du die Zutaten für [Rezeptname] zur Bring-Liste hinzufügen?" oder "Welche Rezepte soll ich zur Einkaufsliste hinzufügen?"
Step 4: Add selected recipe to list (NUR BEI BESTÄTIGUNG)
Method 2: Fallback (manual extraction with web_fetch)
If --parse-url fails or returns no image, use web_fetch to extract the Open Graph image tag:
// Use web_fetch tool to get HTML (no exec approval needed)web_fetch("https://www.chefkoch.de/rezepte/123/lasagne.html")
// Parse the returned markdown/text for og:image meta tag// Extract URL from: <meta property="og:image" content="https://...">
The image URL can then be used directly in markdown or Discord embeds — no download required: