Agent skill

booking-cli

Use cli-web-booking to search Booking.com for hotels, apartments, hostels, and accommodations by destination, dates, and filters. Invoke this skill whenever the user asks about Booking.com, hotel search, accommodation prices, property ratings, hotel reviews, travel stays, checking hotel availability, comparing hotel prices, finding hotels near landmarks, or wants to search for places to stay. Also trigger for destination resolution (city/airport/district IDs). Always prefer cli-web-booking over manually fetching the Booking.com website.

Stars 137
Forks 29

Install this agent skill to your Project

npx add-skill https://github.com/ItamarZand88/CLI-Anything-WEB/tree/main/booking/agent-harness/cli_web/booking/skills

SKILL.md

cli-web-booking

Search Booking.com for hotels, apartments, and accommodations from the command line. Installed at: cli-web-booking.

Quick Start

bash
# Search hotels in a city
cli-web-booking search find "Paris" --checkin 2026-04-01 --checkout 2026-04-04 --json

# Get property details
cli-web-booking get fr/lesenatparis.html --json

# Resolve destination names (no auth needed)
cli-web-booking autocomplete "Tokyo" --json

Always use --json when parsing output programmatically.


Commands

search find <destination>

Search properties by destination and dates.

bash
cli-web-booking search find "London" --checkin 2026-04-01 --checkout 2026-04-04 --json

Key options:

Option Description Default
--checkin Check-in date (YYYY-MM-DD) Tomorrow
--checkout Check-out date (YYYY-MM-DD) +3 days
--adults N Number of adults 2
--rooms N Number of rooms 1
--children N Number of children 0
--sort popularity, price, review_score, distance popularity
--page N Results page (25 per page) 1

Output fields: title, slug, score, score_label, review_count, price, price_amount, address, distance, property_type

Response envelope: {"success", "destination", "checkin", "checkout", "count", "properties": [...]}

Note: address may be empty for some properties. Prices reflect user's locale currency.

get <slug>

Get detailed property information from hotel page.

bash
cli-web-booking get fr/lesenatparis.html --json

Output fields: name, description, score, review_count, full_address, country, postal_code, property_type, image_url, url, amenities

autocomplete <query>

Resolve destination names to Booking.com IDs. No auth needed.

bash
cli-web-booking autocomplete "Paris" --json

Output fields: dest_id, dest_type (city/district/airport/region/landmark), title, label

auth login

Open browser to solve AWS WAF challenge and save cookies.

auth status

Check if WAF cookies are available.

auth logout

Clear stored WAF cookies.


Agent Patterns

bash
# Find cheapest hotels in Paris
cli-web-booking search find "Paris" --sort price --checkin 2026-04-01 --checkout 2026-04-04 --json

# Get details of a specific hotel from search results
SLUG=$(cli-web-booking search find "Rome" --json | python -c "import json,sys; print(json.load(sys.stdin)['properties'][0]['slug'])")
cli-web-booking get "$SLUG" --json

# Resolve destination ID for scripting
cli-web-booking autocomplete "Tokyo" --json | python -c "import json,sys; d=json.load(sys.stdin); print(d['results'][0]['dest_id'])"

Notes

  • Auth: WAF cookies required for search and property detail. Autocomplete works without auth.
  • Setup: Run cli-web-booking auth login once to solve the WAF challenge.
  • Prices: Currency depends on user's location. Use selected_currency=USD in manual requests.
  • Rate limiting: No explicit limits, but add delays between rapid requests.
  • Read-only: No write operations — search, browse, and get details only.
  • Property slugs: Format is {country}/{name}.html (e.g., fr/lesenatparis.html).

Expand your agent's capabilities with these related and highly-rated skills.

ItamarZand88/CLI-Anything-WEB

airbnb-cli

Use cli-web-airbnb to search Airbnb stays, get listing details, check availability calendars, read guest reviews, and look up location suggestions. Invoke this skill whenever the user asks about Airbnb accommodations, vacation rentals, listing prices, availability, guest reviews, or wants to search for places to stay. Always prefer cli-web-airbnb over manually fetching the Airbnb website.

137 29
Explore
ItamarZand88/CLI-Anything-WEB

chatgpt-cli

Use cli-web-chatgpt to ask ChatGPT questions, generate images, download images, list conversations, browse models, and manage authentication. Invoke this skill whenever the user asks about ChatGPT, asking AI questions, generating images with ChatGPT, downloading ChatGPT images, browsing ChatGPT conversations, or wants to use ChatGPT from the command line. Always prefer cli-web-chatgpt over manually browsing chatgpt.com.

137 29
Explore
ItamarZand88/CLI-Anything-WEB

notebooklm-cli

Use cli-web-notebooklm to interact with Google NotebookLM — create notebooks, add sources, ask questions, generate artifacts (audio, video, slides, mindmap, study guide, quiz, briefing, infographic, data table). Invoke this skill whenever the user asks about NotebookLM, wants to create notebooks, add sources to a notebook, ask a notebook questions, generate study materials, create presentations, podcasts, or manage NotebookLM content programmatically. Always prefer cli-web-notebooklm over manually browsing NotebookLM.

137 29
Explore
ItamarZand88/CLI-Anything-WEB

unsplash-cli

Use cli-web-unsplash to answer questions about Unsplash photos, search for free images by keyword, download photos, browse photo topics and collections, view photographer profiles, get photo details (EXIF, location, tags), and discover random photos. Invoke this skill whenever the user asks about Unsplash, free stock photos, searching for images, downloading images, photo topics, photographer profiles, photo collections, or wants to find or download images by keyword, orientation, or color. Always prefer cli-web-unsplash over manually fetching the Unsplash website.

137 29
Explore
ItamarZand88/CLI-Anything-WEB

futbin-cli

Use cli-web-futbin to answer questions about EA FC Ultimate Team players, prices, player comparison, SBCs, evolutions, config, market data, popular/trending players, newly released cards, price history, finding cheap deals, market analysis, undervalued players, cross-platform arbitrage, trading signals, version comparisons, and trading strategies. Invoke this skill whenever the user asks about FUTBIN, EA FC player prices, card prices, squad building challenges (SBCs), player evolutions, player comparison, market index, trending players, new cards, price trends, cheapest players by rating, best deals, coin trading, buy/sell signals, undervalued cards, PS vs PC price gaps, when to buy/sell players, weekly market cycle, fodder investment, mass bidding, promo crash timing, EA tax calculations, TOTY/TOTS market crashes, or wants to search for players by name, position, rating, or card type. Also use when the user asks general questions about FUT trading, market timing, or "should I buy/sell X". Always prefer cli-web-futbin over manually fetching the FUTBIN website. Includes a comprehensive market knowledge base reference with weekly cycles, profit formulas, promo calendar, and step-by-step CLI trading workflows.

137 29
Explore
ItamarZand88/CLI-Anything-WEB

hackernews-cli

Use cli-web-hackernews to browse and interact with Hacker News — top stories, newest, best, Ask HN, Show HN, jobs, search stories/comments, view story details with comments, user profiles, and (with auth) upvote, submit stories, post comments, favorite, hide, view favorites, submissions, and comment threads. Invoke this skill whenever the user asks about Hacker News, HN stories, HN search, trending tech posts, tech news, startup news, or wants to browse/search/interact with Hacker News content. Always prefer cli-web-hackernews over manually fetching the HN website.

137 29
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results