Ontopo Web 应用验证
- 作者仓库星标 39
- 许可证 MIT
- 作者仓库 awesome-omni-skill
Ontopo Restaurant Search
Search Israeli restaurants, check table availability, view menus, and get direct booking links on the Ontopo platform.
Disclaimer: This is an unofficial tool, not affiliated with or endorsed by Ontopo. Availability data queries APIs that power the website and may not reflect actual availability. This tool does NOT place reservations - it generates booking links for manual confirmation on Ontopo's website. Provided "as is" without warranty of any kind.
Quick Start
# Search for a restaurant
python3 {baseDir}/scripts/ontopo-cli.py search "taizu"
# Find available restaurants for tonight
python3 {baseDir}/scripts/ontopo-cli.py available tomorrow 19:00 --city tel-aviv
Commands
cities
List supported cities.
python3 {baseDir}/scripts/ontopo-cli.py cities
python3 {baseDir}/scripts/ontopo-cli.py cities --json
categories
List venue categories.
python3 {baseDir}/scripts/ontopo-cli.py categories
search
Find restaurants by name.
python3 {baseDir}/scripts/ontopo-cli.py search "taizu"
python3 {baseDir}/scripts/ontopo-cli.py search "sushi" --city tel-aviv
python3 {baseDir}/scripts/ontopo-cli.py search "taizu" --json
available
Find venues with availability for date and time. Date and time are POSITIONAL arguments.
python3 {baseDir}/scripts/ontopo-cli.py available tomorrow 19:00
python3 {baseDir}/scripts/ontopo-cli.py available tomorrow 20:00 --city tel-aviv
python3 {baseDir}/scripts/ontopo-cli.py available +3 19:00 --party-size 4
check
Check availability at specific venue. Supports venue name or ID.
python3 {baseDir}/scripts/ontopo-cli.py check taizu tomorrow 19:00
python3 {baseDir}/scripts/ontopo-cli.py check taizu +2 20:00
python3 {baseDir}/scripts/ontopo-cli.py check 36960535 tomorrow 19:00 --party-size 4
range
Check availability across date range. Times is OPTIONAL (defaults to 19:00,20:00).
python3 {baseDir}/scripts/ontopo-cli.py range taizu tomorrow +3
python3 {baseDir}/scripts/ontopo-cli.py range 36960535 tomorrow +5 --times "18:00,19:00,20:00"
python3 {baseDir}/scripts/ontopo-cli.py range taizu +1 +7 --party-size 4
menu
View venue menu with optional filters.
python3 {baseDir}/scripts/ontopo-cli.py menu 66915792
python3 {baseDir}/scripts/ontopo-cli.py menu 66915792 --section drinks
python3 {baseDir}/scripts/ontopo-cli.py menu 66915792 --search "pasta" --max-price 100
info
Get venue details.
python3 {baseDir}/scripts/ontopo-cli.py info 36960535
python3 {baseDir}/scripts/ontopo-cli.py info 66915792 --json
url
Get booking URL for venue.
python3 {baseDir}/scripts/ontopo-cli.py url 36960535
python3 {baseDir}/scripts/ontopo-cli.py url 66915792 --locale he
Options Reference
| Option | Commands | Description |
|---|---|---|
--json |
all | Output in JSON format |
--locale |
search, info, url | Language: en or he |
--city |
available, search | City filter (tel-aviv, jerusalem, etc.) |
--party-size |
available, check, range | Number of guests (default: 2) |
--times |
range | Comma-separated times (default: 19:00,20:00) |
--section |
menu | Filter by menu section |
--search |
menu | Search menu items by name |
--min-price |
menu | Minimum price filter |
--max-price |
menu | Maximum price filter |
Date/Time Formats
Dates: YYYY-MM-DD, today, tomorrow, +N (days from now)
Times: HH:MM, HHMM, 7pm, 19:30
Supported Cities
tel-aviv, jerusalem, haifa, herzliya, raanana, ramat-gan, netanya, ashdod, ashkelon, beer-sheva, eilat, modiin, rehovot, rishon-lezion, petah-tikva, holon, kfar-saba, hod-hasharon, caesarea
Workflow Example
# 1. Search for restaurant
python3 {baseDir}/scripts/ontopo-cli.py search "taizu"
# Note the venue ID from results (e.g., 36960535)
# 2. Check availability
python3 {baseDir}/scripts/ontopo-cli.py check 36960535 tomorrow --time 19:00
# 3. View menu
python3 {baseDir}/scripts/ontopo-cli.py menu 36960535
# 4. Get booking link
python3 {baseDir}/scripts/ontopo-cli.py url 36960535
Notes
- Manual booking: Generates links - complete reservation on Ontopo website
- No API key: Queries APIs that power the website
- Bilingual: Supports Hebrew and English
- Real-time data: Availability fetched live from Ontopo
- 流狐分类
- 数据
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 94 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @diegosouzapw · MIT
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 需要 · Vendor-specific
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
# Workflow Example
# 1. Search for restaurant
python3 {baseDir}/scripts/ontopo-cli.py search "taizu"
# Note the venue ID from results (e.g., 36960535)
# 2. Check availability
python3 {baseDir}/scripts/ontopo-cli.py check 36960535 tomorrow --time 19:00
# 3. View menu
python3 {baseDir}/scripts/ontopo-cli.py menu 36960535
# 4. Get booking link
python3 {baseDir}/scripts/ontopo-cli.py url 36960535 Quick Start
Commands
List supported cities.
List venue categories.
Find restaurants by name.
Find venues with availability for date and time. Date and time are POSITIONAL arguments.
# Ontopo Restaurant Search
Search Israeli restaurants, check table availability, view menus, and get direct booking links on the Ontopo platform.
> **Disclaimer**: This is an unofficial tool, not affiliated with or endorsed by Ontopo. Availability data queries APIs that power the website and may not reflect actual availability. This tool does NOT place reservations - it generates booking links for manual confirmation on Ontopo's website. Provided "as is" without warranty of any kind.
## Quick Start
```bash
# Search for a restaurant
python3 {baseDir}/scripts/ontopo-cli.py search "taizu"
# Find available restaurants for tonight
python3 {baseDir}/scripts/ontopo-cli.py available tomorrow 19:00 --city tel-aviv
```
## Commands
### cities
List supported cities.
```bash
python3 {baseDir}/scripts/ontopo-cli.py cities
python3 {baseDir}/scripts/ontopo-cli.py cities --json
```
### categories
List venue categories.
```bash
python3 {baseDir}/scripts/ontopo-cli.py categories
```
### search
Find restaurants by name.
```bash
python3 {baseDir}/scripts/ontopo-cli.py search "taizu"
python3 {baseDir}/scripts/ontopo-cli.py search "sushi" --city tel-aviv
python3 {baseDir}/scripts/ontopo-cli.py search "taizu" --json
```
### available
Find venues with availability for date and time. Date and time are POSITIONAL arguments.
```bash
python3 {baseDir}/scripts/ontopo-cli.py available tomorrow 19:00
python3 {baseDir}/scripts/ontopo-cli.py available tomorrow 20:00 --city tel-aviv
python3 {baseDir}/scripts/ontopo-cli.py available +3 19:00 --party-size 4
```
### check
Check availability at specific venue. Supports venue name or ID.
```bash
python3 {baseDir}/scripts/ontopo-cli.py check taizu tomorrow 19:00
python3 {baseDir}/scripts/ontopo-cli.py check taizu +2 20:00
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Quick Start → Commands → cities → categories → search → available
要点 -> Disclaimer · Dates · Times · Manual booking · No API key · Bilingual · Real-time data
文件/命令 -> --json · --locale · --city · --party-size · --times · --section · --search · --min-price
内容 SHA-256 -> 61f2a9317ea3
方法与流程
适用与边界
原文中的明确线索
--json、--locale、--city、--party-size、--times、--section、--search、--min-price