用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/saattrupdan/dotfiles --skill recipes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
What — the noskillish/slides framework for building single-file HTML decks (no build step, 27+ ready components including pure-CSS bar charts and SVG diagrams, embed mode, stepped PDF export). Use when the user asks to create, draft, extend, or restyle a slideshow, presentation, or deck — e.g. "create a slideshow about X", "make a deck on Y", "turn these notes into slides", "export the deck to PDF".
Create a LinkedIn carousel from a blog post or written content, and export it as a downloadable PDF. Use this skill whenever the user wants to turn an article, blog post, or piece of writing into a LinkedIn carousel, slide deck for social media, or multi-slide visual post. Trigger when the user says things like "turn this into a carousel", "make slides from this", "LinkedIn carousel", "social media slides", or pastes content and asks for a visual post. Also trigger when the user wants to repurpose written content for LinkedIn, or asks to export or download a carousel as a PDF.
Procedural skill for the Jottacloud CLI (`jotta-cli`). Use when managing Jotta Cloud backups, Archive uploads, Sync folders, downloads, remote file browsing, shares, trash, webhooks, logs/status triage, `jottad` pause/resume, ignore rules, or multi-instance host config. Triggers include any request to back up files to Jottacloud, upload to Archive, sync a local folder with Jottacloud, download from Jottacloud remotely, list or browse cloud paths, share files via public links, manage the remote trash, configure scan intervals or rate limits, set up webhooks, tail logs, diagnose backup/sync problems, or install/update `jotta-cli` itself. Also use for configuring a remote machine's `jottad` over SSH by setting `--host`/`--port`. Prefer `jotta-cli` over the web UI for scripted or repeatable operations.
基于 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