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 and downloads free Unsplash photos via the cli-web-unsplash command-line tool — keyword search with orientation/color filters, photo details (EXIF, location, tags), downloads, random photos, topics, collections, and photographer profiles. Use when the user asks about
$ npx -y skills add ItamarZand88/CLI-Anything-WEB --skill unsplash-cli --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/unsplash-cliContext preview
The summary Claude sees to decide when to auto-load this skill.
Searches and downloads free Unsplash photos via the cli-web-unsplash command-line tool — keyword search with orientation/color filters, photo details (EXIF, location, tags), downloads, random photos, topics, collections, and photographer profiles. Use when the user asks about
name: unsplash-cli description: Searches and downloads free Unsplash photos via the cli-web-unsplash command-line tool — keyword search with orientation/color filters, photo details (EXIF, location, tags), downloads, random photos, topics, collections, and photographer profiles. Use when the user asks about Unsplash, free stock photos, or wants to find or download images by keyword, orientation, or color. Prefer this CLI over fetching the Unsplash website. No authentication required.
Search, explore, and download Unsplash photos (read-only, no auth). Install: `pip install cli-web-unsplash`, then run `python -m camoufox fetch` once.
| Command | Purpose | Key options | |---------|---------|-------------| | `photos search QUERY` | Search photos | `--orientation landscape\|portrait\|squarish`, `--color`, `--order-by relevant\|latest`, `--page`, `--per-page` (max 30) | | `photos get PHOTO_ID` | Full details: EXIF, location, tags, URLs | ID or slug | | `photos random` | Random photo(s) | `--query`, `--orientation`, `--count N` (max 30) | | `photos download PHOTO_ID` | Download to disk | `--size raw\|full\|regular\|small\|thumb`, `-o/--output PATH` | | `photos stats PHOTO_ID` | Views and downloads | | | `topics list` / `topics get SLUG` / `topics photos SLUG` | Browse curated topics | `--page`, `--per-page`, `--order-by` | | `collections search QUERY` / `collections get ID` / `collections photos ID` | Browse collections | `--page`, `--per-page` | | `users search QUERY` / `users get USERNAME` / `users photos USERNAME` / `users collections USERNAME` | Photographer profiles and portfolios | `--page`, `--per-page`, `--order-by` (photos: `latest\|oldest\|popular\|views\|downloads`) |
# Search with filters (returns total, total_pages, results[] with id, likes, author, url) cli-web-unsplash photos search "sunset" --orientation landscape --color orange --per-page 10 --json # Photo details (EXIF, location, tags) cli-web-unsplash photos get SyfvrXRy28Y --json # Random nature photos cli-web-unsplash photos random --query "nature" --count 3 --json # Search then download the top hit ID=$(cli-web-unsplash photos search "sunset beach" --per-page 1 --json | jq -r '.results[0].id') cli-web-unsplash photos download "$ID" --size regular -o sunset.jpg # A photographer's most popular photos cli-web-unsplash users photos unsplash --order-by popular --per-page 5 --json
Every command accepts `--json` and returns the data directly (search: `{"total", "total_pages", "results": [...]}`; download: `{"photo_id", "size", "file", "bytes"}`). Errors return `{"error": true, "code": "...", "message": "..."}`.
`cli-web-unsplash doctor [--json]` self-diagnoses the local setup (install, auth, dependencies). `cli-web-unsplash 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,…