com um clique
recipes
CLI for Valdemarsro.dk recipes — search and view Danish recipes
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
CLI for Valdemarsro.dk recipes — search and view Danish recipes
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
GitHub CLI (gh) — the official command-line interface to GitHub. Use when the user needs to create or manage pull requests, issues, repositories, GitHub Actions, gists, API calls, authentication, or any other GitHub workflow from the terminal. Also use for scripting GitHub automation, querying the GraphQL/REST API, managing forks/clones, and viewing workflow run logs. Prefer gh over web browsing or the raw REST API.
CLI for Gmail via Google's REST API — list, search, read, send, draft, label, delete. Use for all Gmail email operations.
Draft, post, and review Dan's LinkedIn posts (handle saattrupdan) via the `linkedin` CLI, which drives the real LinkedIn web UI with agent-browser. Use when the user wants to write/post a LinkedIn post, save or view a draft, or fetch their recent posts with engagement stats. Also use whenever drafting LinkedIn content, to match Dan's voice and formatting.
Edit Microsoft Excel .xlsx files in place while preserving all formatting — surgical raw-OOXML cell editing that keeps styles, charts, data validations, formulas and named ranges intact. Use when filling in or revising .xlsx workbooks (bid sheets, budgets, forms, trackers) rather than regenerating them.
Edit Microsoft Word .docx files in place while preserving all formatting — surgical raw-OOXML editing, Word comments, page breaks, character-limit fields. Use when filling in or revising .docx documents (grant applications, forms, reports) rather than regenerating them.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.
| name | recipes |
| description | CLI for Valdemarsro.dk recipes — search and view Danish recipes |
| tagline | Search and view Danish recipes from valdemarsro.dk |
| last-updated | "2026-06-07T00:00:00.000Z" |
CLI wrapper for Valdemarsro.dk recipes, Denmark's popular recipe site. Search for recipes by keyword and view full recipe details including ingredients, instructions, and nutrition info. Defaults to vegetarian meals only.
recipes <command> [options]
cd /Users/dansmart/.pi/agent/skills/recipes
uv pip install -e . # Install CLI with dependencies (beautifulsoup4)
Standard library + BeautifulSoup4 only. All commands support --json for
machine-readable output.
| Command | What it does |
|---|---|
recipes search QUERY [filters] | Search with filters (veggie on by default) |
recipes view URL | View a single recipe with full details |
# Search vegetarian recipes (default)
recipes search "curry"
# Search all recipes (disable veggie filter)
recipes search "pasta" --no-veggie
# Filter by cooking time (under 20 min)
recipes search "salat" --time 0_20
# Combine filters: asian + vegan + under 30 min
recipes search "wok" --theme asian --vegan --time 21_30
# Search for Christmas desserts
recipes search "kage" --season christmas --meal-type dessert
# JSON output
recipes search "pasta" --json
Dietary:
--vegan — Vegan recipes--no-veggie — Disable default vegetarian filterMeal type (--meal-type): dinner, breakfast, lunch, dessert, snack,
starter, cocktail, ...
Season (--season): spring, summer, autumn, winter, christmas, easter,
halloween, ...
Time (--time): 0_20 (0-20 min), 21_30, 31_45, 45_plus
Theme (--theme): asian, indian, mexican, pasta, pizza, soup, grill,
seafood, ...
Filters can be combined and are passed to Valdemarsro.dk's built-in search API.
# View a recipe by full URL
recipes view https://www.valdemarsro.dk/halloumi-curry/
# View by path (base URL added automatically)
recipes view /halloumi-curry/
# JSON output
recipes view https://www.valdemarsro.dk/halloumi-curry/ --json
Search/list output:
Vegetarian recipes:
1. Halloumi Curry
https://www.valdemarsro.dk/halloumi-curry/
2. Vegetarisk Lasagnesuppe
https://www.valdemarsro.dk/vegetarisk-lasagnesuppe/
View output:
============================================================
Halloumi Curry
============================================================
Lækker cremet curry med stegt halloumi...
INGREDIENTS
----------------------------------------
• 2 pakker halloumi
• 1 løg
• 2 fed hvidløg
...
INSTRUCTIONS
----------------------------------------
1. Skær halloumi i tern
2. Svits løg og hvidløg
...
TIPS
----------------------------------------
• Serveres gerne med ris eller naanbrød
NUTRITION
----------------------------------------
Energi: 450 kcal
Protein: 25 g
...
Source: https://www.valdemarsro.dk/halloumi-curry/
--json)Search/list JSON:
[
{
"title": "Halloumi Curry",
"url": "https://www.valdemarsro.dk/halloumi-curry/"
}
]
View JSON:
{
"title": "Halloumi Curry",
"description": "Lækker cremet curry...",
"ingredients": ["2 pakker halloumi", "..."],
"instructions": ["Skær halloumi i tern", "..."],
"nutrition": { "Energi": "450 kcal", "...": "..." },
"tips": ["Serveres gerne med ris..."],
"servings": null,
"time": null
}
--all
to include meat and fish recipes.The CLI uses Python's standard library (urllib, html.parser) plus BeautifulSoup4 for
HTML parsing. No official API exists — this reverse-engineers the public HTML structure.
The CLI uses Valdemarsro.dk's built-in search API at /soeg/ with filter term IDs.
Filters are combined using comma-separated term IDs (e.g. terms=3745,duration_0,3821
for vegetarian + under 20 min + Asian).
The vegetarian filter (--veggie) is enabled by default. Disable it with --no-veggie
to search all recipes including meat and fish.
Test the CLI:
cd /Users/dansmart/.pi/agent/skills/recipes
# Install dependencies
uv pip install -e .
# Test vegetarian search
uv run recipes search "curry"
# Test vegetarian list
uv run recipes veggie
# Test view (known recipe)
uv run recipes view https://www.valdemarsro.dk/halloumi-curry/
# Test JSON output
uv run recipes search "pasta" --json | head -20