Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

restaurant-booking-opentable餐厅预订 opentable

Agent Skill

restaurant-booking-opentable 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,777

周安装

236

GitHub Stars

公开资料未说明

下载量

1,850
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:restaurant-booking-opentable(餐厅预订 opentable)
来源仓库:https://github.com/eeshita-pande/restaurant-booking-opentable
安装命令:
openclaw skills install restaurant-booking-opentable
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install restaurant-booking-opentable

简介

restaurant-booking-opentable 用于在 OpenTable 平台上自动预订餐厅餐桌。

  • 适用于已登录用户,利用浏览器工具模拟操作并处理隐藏字段。
  • 支持时间段选择与条款勾选,提升订位成功率。
  • 使用前需确认账号权限与地区可用性,避免触发反爬机制。
  • 建议遵守平台规则,勿高频请求以免账户受限。

SKILL.md

name
opentable-booking
description
Book restaurant tables on OpenTable via the browser tool. Handles hidden time slots and terms checkboxes with JS evaluate fallbacks. Works with a logged-in session and card on file — no manual card entry needed.
version
1.0.0
metadata
openclaw
emoji
🍽️
requires
config

OpenTable Booking (Browser Tool)

Use the OpenClaw browser tool to book restaurants via OpenTable.

Why this skill exists: OpenTable's widget hides critical UI elements (time-slot links, terms checkboxes) from the accessibility/aria tree. This skill encodes the JS evaluation patterns that reliably find them. See browser-snippets.md for the full snippet reference.

When to Use

  • Any request to book or reserve a restaurant table on OpenTable.
  • Works globally — opentable.com, opentable.co.uk, opentable.de, and all other OpenTable domains.

Do not use for SevenRooms, Resy, Tock, TheFork, or other booking platforms.

Prerequisites

  1. OpenClaw browser is running with profile="openclaw" (headed, not headless — Cloudflare blocks headless on OpenTable).
  2. User is already logged into OpenTable (session cookie present).
  3. A payment card is on file in the OpenTable account (auto-loaded at checkout).

First-time setup: If not yet logged in, navigate to the OpenTable sign-in page manually, authenticate via email + verification code, and ensure a card is saved. This only needs to be done once — the session persists.

Core Loop (MANDATORY)

  1. browser.navigate to target URL.
  2. browser.snapshot (interactive).
  3. Decide action using refs from snapshot.
  4. browser.act (click/fill).
  5. Re-snapshot after every significant action.

Never guess selectors. Never reuse old refs after navigation.

Booking Flow

1) Parse request

Extract from the user's message:

  • Restaurant name (required).
  • Date (required).
  • Time (default: 20:30).
  • Party size (default: 2).
  • Location (default: London).
  • OpenTable domain (default: opentable.co.uk — use opentable.com for US, opentable.de for Germany, etc.).
  • Seating preference (default: standard).
  • Special request (default: none).

2) Navigate to restaurant page

Use slug URL:

https://www.{domain}/r/{restaurant-slug}-{location}?covers={partySize}&dateTime={YYYY-MM-DD}T{HH:MM}

If you don't know the slug, use search:

https://www.{domain}/s?covers={party_size}&dateTime={date}T{time}&term={restaurant}+{location}

Where {domain} is the appropriate OpenTable domain (e.g. opentable.co.uk, opentable.com).

3) Dismiss cookie banner

If a cookie banner appears, click the Accept/Close button by ref. Re-snapshot.

browser.act(click ref for "Accept" / "Accept All" / close button)
browser.snapshot(interactive=true)

4) Confirm/Set date, time, party size

Check the widget bar at the top of the restaurant page. If the pre-filled values don't match the request, click the relevant widget and update:

  • Date picker: click the date field ref → navigate to correct month → click day.
  • Time picker: click time dropdown ref → select correct time.
  • Covers: click covers dropdown ref → select number.

Re-snapshot after each change. Then click "Find a Table" / "Search" if needed.

5) Select time slot (⚠️ JS required)

The time-slot buttons are NOT reliably in the aria tree. Run this JS evaluation to find them:

(() => {
  const links = [...document.querySelectorAll('a')];
  const timeSlots = links.filter(a => {
    const text = a.textContent.trim();
    return /^\d{1,2}:\d{2}$/.test(text) && a.offsetParent !== null;
  });
  return timeSlots.map(a => ({
    time: a.textContent.trim(),
    id: a.id || '',
    href: a.href || '',
    rect: a.getBoundingClientRect().toJSON()
  }));
})()

This returns visible <a> elements whose text matches HH:MM.

To click the desired slot:

(() => {
  const links = [...document.querySelectorAll('a')];
  const target = links.find(a =>
    a.textContent.trim() === '{TARGET_TIME}' && a.offsetParent !== null
  );
  if (target) { target.click(); return 'clicked ' + target.textContent.trim(); }
  return 'not found';
})()

Replace {TARGET_TIME} with the exact HH:MM string (e.g. "20:30").

If the exact time isn't available, pick the nearest available slot. Re-snapshot after clicking.

6) Choose booking type

If options like Standard reservation vs tasting menus appear, select Standard unless user specified otherwise. Click its Select button by ref. Re-snapshot.

7) Verify pre-filled details

Because we're logged in, OpenTable should pre-fill:

  • First name, Last name, Email, Phone number.
  • Card on file (e.g. "Visa ending 0184").

Verify these are present in the snapshot. If guest details are empty, fill them in step 8. If no card on file is shown, stop and inform the user — they need to add a card to their OpenTable account before this skill can complete a booking.

8) Manually fill guest details ONLY if they aren't pre-filled

Use browser.act fill on the fields (from refs):

  • First name, Last name, Email, Phone.

Re-snapshot.

9) Accept terms checkbox (⚠️ JS required)

The terms checkbox is often NOT in the aria tree. Find and check it via JS:

(() => {
  const checkboxes = [...document.querySelectorAll('input[type="checkbox"]')];
  const terms = checkboxes.find(cb => {
    const label = cb.closest('label') || document.querySelector('label[for="' + cb.id + '"]');
    return label && /terms|conditions|policy|agree/i.test(label.textContent);
  });
  if (terms && !terms.checked) {
    terms.click();
    return 'checked terms';
  }
  if (terms && terms.checked) return 'already checked';
  return 'not found';
})()

Re-snapshot to verify it's checked.

10) Complete booking

Find and click the "Complete reservation" / "Confirm" button by ref.

browser.act(click ref={confirm_button_ref})

Re-snapshot.

11) Handle 3DS

If a 3DS authentication iframe or redirect appears:

  • Screenshot the page so the user can see the challenge.
  • Inform the user they need to approve the 3DS challenge on their device / banking app.
  • Wait for user confirmation, then re-snapshot to check for the confirmation page.

12) Report result

Return confirmation number and summary:

  • Restaurant, date, time, party size.
  • Confirmation code (if shown).
  • "Card ending 1234" (never expose full card).

Error Handling

  • If element not found: wait 2–3s, snapshot again (max 3 retries).
  • If redirected to login: stop and ask user.
  • If no card on file: stop and ask user to add a card to their OpenTable account.
  • If timeslots not visible: adjust date/time and retry.

Tooling Constraints

  • Always use browser tool (navigate/snapshot/act/screenshot).
  • One action per step; re-snapshot after each.
  • No CSS/XPath selectors; use refs from snapshot.

External Endpoints

  • opentable.co.uk / opentable.com / other regional OpenTable domains (booking flow only).

Security & Privacy

  • This skill navigates only to OpenTable domains.
  • Card details are never read, logged, or transmitted — they are pre-filled by OpenTable from the user's saved account.
  • No environment variables or API keys are required.
  • This skill does not handle or source payment credentials. Payment relies entirely on the card already saved in the user's OpenTable account.

Trust Statement

By using this skill, your browser navigates to OpenTable and interacts with the page on your behalf. No data is sent to any third party. All booking actions happen within your existing authenticated OpenTable session.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.37%
按下载量换算1,468

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills