# Send ontopo to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ontopo",
    "name": "ontopo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/alexpolonsky/ontopo",
    "canonicalUrl": "https://clawhub.ai/alexpolonsky/ontopo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ontopo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ontopo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/ontopo-cli.py",
      "tests/test_commands.sh",
      "tests/test_edge_cases.sh",
      "tests/test_skill_selection.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ontopo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T10:08:08.419Z",
      "expiresAt": "2026-05-19T10:08:08.419Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ontopo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ontopo",
        "contentDisposition": "attachment; filename=\"ontopo-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ontopo"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ontopo"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ontopo",
    "downloadUrl": "https://openagent3.xyz/downloads/ontopo",
    "agentUrl": "https://openagent3.xyz/skills/ontopo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ontopo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ontopo/agent.md"
  }
}
```
## Documentation

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

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

OptionCommandsDescription--jsonallOutput in JSON format--localesearch, info, urlLanguage: en or he--cityavailable, searchCity filter (tel-aviv, jerusalem, etc.)--party-sizeavailable, check, rangeNumber of guests (default: 2)--timesrangeComma-separated times (default: 19:00,20:00)--sectionmenuFilter by menu section--searchmenuSearch menu items by name--min-pricemenuMinimum price filter--max-pricemenuMaximum 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: alexpolonsky
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T10:08:08.419Z
- Expires at: 2026-05-19T10:08:08.419Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ontopo)
- [Send to Agent page](https://openagent3.xyz/skills/ontopo/agent)
- [JSON manifest](https://openagent3.xyz/skills/ontopo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ontopo/agent.md)
- [Download page](https://openagent3.xyz/downloads/ontopo)