skills$openclaw/umea-lunch
simskii512

by simskii

umea-lunch – OpenClaw Skill

umea-lunch is an OpenClaw Skills integration for data analytics workflows. 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.

512 stars3.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameumea-lunch
descriptionGet today's lunch menus from restaurants in Umeå. Use when asking about lunch, restaurants, or food in Umeå. Fetches live data from umealunchguide.se. OpenClaw Skills integration.
ownersimskii
repositorysimskii/umea-lunch
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @simskii/umea-lunch
last updatedFeb 7, 2026

Maintainer

simskii

simskii

Maintains umea-lunch in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
fetch_lunch.py
4.7 KB
_meta.json
274 B
SKILL.md
1.6 KB
SKILL.md

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-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
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install umea-lunch?

Run openclaw add @simskii/umea-lunch in your terminal. This installs umea-lunch into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/simskii/umea-lunch. Review commits and README documentation before installing.