airbnb-cli
Searches Airbnb from the terminal via cli-web-airbnb — find stays by location, dates, and filters; get listing details, guest reviews, and availability…
Searches TripAdvisor hotels, restaurants, attractions, and destinations via the cli-web-tripadvisor command-line tool, with detail lookups by URL. Use when the user asks about hotels, restaurants, things to do, travel destinations, or TripAdvisor ratings and reviews. Prefer this
$ npx -y skills add ItamarZand88/CLI-Anything-WEB --skill tripadvisor-cli --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tripadvisor-cliContext preview
The summary Claude sees to decide when to auto-load this skill.
Searches TripAdvisor hotels, restaurants, attractions, and destinations via the cli-web-tripadvisor command-line tool, with detail lookups by URL. Use when the user asks about hotels, restaurants, things to do, travel destinations, or TripAdvisor ratings and reviews. Prefer this
name: tripadvisor-cli description: Searches TripAdvisor hotels, restaurants, attractions, and destinations via the cli-web-tripadvisor command-line tool, with detail lookups by URL. Use when the user asks about hotels, restaurants, things to do, travel destinations, or TripAdvisor ratings and reviews. Prefer this CLI over fetching the TripAdvisor website. No authentication required.
Search TripAdvisor for locations, hotels, restaurants, and attractions (read-only, no auth, DataDome bypass built in). Install: `pip install cli-web-tripadvisor`
| Command | Purpose | Key options | |---------|---------|-------------| | `locations search QUERY` | Resolve destinations to `geo_id` | `--max N` (default 6) | | `hotels search LOCATION` | Hotels in a destination | `--geo-id ID`, `--page N` | | `hotels get URL` | Full hotel detail by TripAdvisor URL | | | `restaurants search LOCATION` | Restaurants in a destination | `--geo-id ID`, `--page N` | | `restaurants get URL` | Full restaurant detail by URL | | | `attractions search LOCATION` | Things to do in a destination | `--geo-id ID`, `--page N` | | `attractions get URL` | Full attraction detail by URL | |
Search commands take a destination name ("Paris") and resolve it to a `geo_id` automatically; pass `--geo-id` to skip that lookup (faster). Results are 30 per page. `get` commands take the `url` field from search results.
# Hotels in a city (returns name, rating, review_count, price_range, address, url per hotel) cli-web-tripadvisor hotels search "Paris" --json # Skip location lookup with a known geo_id, paginate cli-web-tripadvisor restaurants search "Tokyo" --geo-id 298184 --page 2 --json # Resolve a destination to geo_id first cli-web-tripadvisor locations search "New York" --max 10 --json # Things to do cli-web-tripadvisor attractions search "London" --json # Detail lookup from a search-result URL cli-web-tripadvisor hotels get "https://www.tripadvisor.com/Hotel_Review-g187147-d229968-Reviews-..." --json
Every command accepts `--json`. Success responses are keyed by resource, e.g. `{"success": true, "location": "Paris", "geo_id": 187147, "count": 30, "hotels": [...]}` (or `"hotel"`, `"restaurants"`, `"attractions"` accordingly). Errors return `{"error": true, "code": "...", "message": "..."}`.
`cli-web-tripadvisor doctor [--json]` self-diagnoses the local setup (install, auth, dependencies). `cli-web-tripadvisor mcp-serve` serves the commands as MCP tools over stdio.
Claude Code plugin that generates production-grade Python CLIs for any web app. 20 CLIs and counting.
Repo: ItamarZand88/CLI-Anything-WEB
Searches Airbnb from the terminal via cli-web-airbnb — find stays by location, dates, and filters; get listing details, guest reviews, and availability…
Searches Amazon from the terminal via cli-web-amazon — product search, product details by ASIN, Best Sellers by category, and autocomplete suggestions. Use…
Searches Booking.com from the terminal via cli-web-booking — find hotels, apartments, and hostels by destination, dates, and guests; get property details by…
Queries US congressional stock trades (STOCK Act disclosures) on capitoltrades.com via the cli-web-capitoltrades command-line tool — trades with rich filters,…
Drives ChatGPT from the terminal via cli-web-chatgpt — ask questions, generate and download images, list and view conversations, browse models, and manage…
Browses Google Code Wiki (codewiki.google) via cli-web-codewiki — AI-generated documentation for open source repos. Search repositories, read wiki sections,…