🦀 ClawHub
Umeå Lunch
by @simskii
Get today's lunch menus from restaurants in Umeå. Use when asking about lunch, restaurants, or food in Umeå. Fetches live data from umealunchguide.se.
TERMINAL
clawhub install umea-lunch📖 About This Skill
name: umea-lunch description: Get today's lunch menus from restaurants in Umeå. Use when asking about lunch, restaurants, or food in Umeå. Fetches live data from umealunchguide.se.
Umeå Lunch Guide
Fetch and display lunch menus from Umeå restaurants via umealunchguide.se.
Quick Start
Run the script to get today's menus:
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py
Options
# Get menus for a specific date (YYYY-MM-DD)
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --date 2026-01-29Filter by restaurant name (case-insensitive partial match)
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --restaurant tonkaList all available restaurants
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --listCombine filters
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --date 2026-01-29 --restaurant "o'learys"
Output Format
The script outputs JSON with restaurant info and lunch courses:
{
"date": "2026-01-28",
"restaurants": [
{
"name": "Restaurant Name",
"address": "Street 123",
"phone": "090-123456",
"website": "https://...",
"courses": [
{
"title": "Dish Name",
"description": "Description of the dish",
"price": "149",
"tags": ["Vegetarisk", "Glutenfri"]
}
]
}
]
}
Response Guidelines
When presenting lunch options:
💡 Examples
Run the script to get today's menus:
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py
Options
# Get menus for a specific date (YYYY-MM-DD)
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --date 2026-01-29Filter by restaurant name (case-insensitive partial match)
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --restaurant tonkaList all available restaurants
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --listCombine filters
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --date 2026-01-29 --restaurant "o'learys"
⚙️ Configuration
# Get menus for a specific date (YYYY-MM-DD)
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --date 2026-01-29Filter by restaurant name (case-insensitive partial match)
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --restaurant tonkaList all available restaurants
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --listCombine filters
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --date 2026-01-29 --restaurant "o'learys"