TopRank Skills

Home / Claw Skills / API Integration / irish-takeaway
Official OpenClaw rules 36%

irish-takeaway

Find nearby takeaways in Ireland and browse menus via Deliveroo/Just Eat. Uses Google Places API for discovery and browser automation for menu scraping.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 irish-takeaway 技能。 若已安装,则直接安装 irish-takeaway 技能。

Overview

Skill Key
cotyledonlab/irish-takeaway
Author
cotyledonlab
Source Repo
openclaw/skills
Version
-
Source Path
skills/cotyledonlab/irish-takeaway
Latest Commit SHA
009c930e080bc296bdaa6c8119e3f8e30ecc99c2

Extracted Content

SKILL.md excerpt

# Irish Takeaway Finder 🍕🇮🇪

Find nearby takeaways and get their menus from Deliveroo or Just Eat.

## Prerequisites

- `goplaces` CLI installed (`brew install steipete/tap/goplaces`)
- `GOOGLE_PLACES_API_KEY` environment variable set
- Browser tool available

## Workflow

### Step 1: Find Nearby Takeaways

Use goplaces to search for restaurants near a location:

```bash
# Search by coordinates (negative longitude needs = syntax)
goplaces search "takeaway" --lat=53.7179 --lng=-6.3561 --radius-m=3000 --limit=10

# Search by cuisine
goplaces search "chinese takeaway" --lat=53.7179 --lng=-6.3561 --radius-m=2000

# Filter by rating
goplaces search "pizza" --lat=53.7179 --lng=-6.3561 --min-rating=4 --open-now
```

Common location coordinates for Ireland:
- **Drogheda**: 53.7179, -6.3561
- **Dublin City**: 53.3498, -6.2603
- **Cork**: 51.8985, -8.4756
- **Galway**: 53.2707, -9.0568

### Step 2: Get Deliveroo Menu (Browser Automation)

1. Start browser and navigate to Deliveroo:
```
browser action=start target=host
browser action=navigate targetUrl="https://deliveroo.ie/" target=host
```

2. Accept cookies if prompted (look for "Accept all" button)

3. Enter location in address search box:
```
browser action=act request={"kind": "type", "ref": "<textbox-ref>", "text": "Drogheda, Co. Louth"}
```

4. Select location from autocomplete dropdown

5. Find and click on restaurant from list

6. Take snapshot to extract menu items - look for:
   - Category headings (h2)
   - Item buttons with name, description, price
   - Allergen info in item descriptions

### Step 3: Parse Menu Data

Menu items typically appear as buttons with structure:
- **Name**: In paragraph element
- **Description**: In text content
- **Price**: Usually "€X.XX" format
- **Allergens**: Listed after description (Gluten, Milk, etc.)

### Example Conversation Flow

User: "What takeaways are near me in Drogheda?"
→ Run goplaces search, present top 5-10 results with ratings

User: "Show me the menu for Mizzoni's"...

README excerpt

# 🍕 Irish Takeaway Finder

A Clawdbot skill for finding nearby takeaways in Ireland and browsing their menus.

## Features

- 🔍 **Find nearby takeaways** using Google Places API
- 📋 **Browse menus** via Deliveroo/Just Eat browser automation
- 🇮🇪 **Irish-focused** with pre-configured town coordinates
- ⭐ **Filter by rating**, cuisine type, and open status

## Setup

1. Install goplaces: `brew install steipete/tap/goplaces`
2. Set API key: `export GOOGLE_PLACES_API_KEY="your-key"`

## Quick Search

```bash
# Find takeaways in Drogheda
./search-takeaways.sh drogheda

# Find pizza places in Dublin
./search-takeaways.sh dublin pizza

# Find Chinese food in Cork within 2km
./search-takeaways.sh cork chinese 2000
```

## Supported Locations

- Drogheda, Dublin, Cork, Galway, Limerick
- Waterford, Dundalk, Swords, Navan, Bray

## Menu Browsing

The skill uses browser automation to:
1. Navigate to Deliveroo.ie or Just-Eat.ie
2. Enter your location
3. Find and select the restaurant
4. Extract the full menu with prices

See SKILL.md for detailed browser automation workflow.

## Roadmap

- [ ] Twilio voice ordering integration
- [ ] Price comparison across platforms
- [ ] Order favorites/history
- [ ] Direct ordering support

---

Made with 👻 by OhMyClawd

Related Claw Skills