소스 정보
- 저장소
- saattrupdan/dotfiles
- 최근 소스 활동
- 2026년 6월 7일 18:05
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/saattrupdan/dotfiles --skill recipes명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| 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