Jump to related tools in the same category or review the original source on GitHub.

Health & Fitness @simskii Updated 2/26/2026

Umea Lunch OpenClaw Skill - ClawHub

Do you want your AI agent to automate Umea Lunch workflows? This free skill from ClawHub helps with health & fitness tasks without building custom tools from scratch.

What this skill does

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.

Install

npx clawhub@latest install umea-lunch

Full SKILL.md

Open original
namedescription
umea-lunchGet 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-29

# Filter by restaurant name (case-insensitive partial match)
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --restaurant tonka

# List all available restaurants
python3 /root/clawd/skills/umea-lunch/scripts/fetch_lunch.py --list

# Combine 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:

  • Group by restaurant
  • Show dish name, description, and price
  • Mention dietary tags (🥗 vegetarisk, 🌱 vegansk, 🌾 glutenfri, 🥛 laktosfri)
  • Include address if user needs directions
Original URL: https://github.com/openclaw/skills/blob/main/skills/simskii/umea-lunch

Related skills

If this matches your use case, these are close alternatives in the same category.