Claude Code plugin that generates production-grade Python CLIs for any web app. 20 CLIs and counting.
> /plugin marketplace add ItamarZand88/CLI-Anything-WEB> /plugin install cli-anything-web@cli-anything-web
Repo: ItamarZand88/CLI-Anything-WEB
What's inside
CLI-Anything-Web is a Claude Code plugin that generates production-grade Python CLIs for any web application by capturing its live HTTP traffic. Point it at a URL, and get a fully working CLI on your PATH โ with auth, REPL mode, --json output, and tests.
[!WARNING] Experimental Project โ Use Responsibly
This project uses undocumented web APIs reverse-engineered from live HTTP traffic. These APIs can change without notice.
- Not affiliated with any website โ This is an independent open-source project
- APIs may break โ Websites can change their internal endpoints, HTML structure, or add protections at any time
- Respect rate limits โ Generated CLIs include exponential backoff, but heavy usage may be throttled
- For personal use โ Best suited for prototyping, automation, research, and personal productivity
Generated CLIs interact with real production services. Use them responsibly and in accordance with each website's terms of service.
Most web apps don't have public APIs. CLI-Anything-Web changes that:
No API docs needed. No reverse-engineering by hand. Just point and generate.
| Requirement | Version | Why |
|---|---|---|
| Claude Code | With plugin support | Runs the generation pipeline |
| Node.js | 18+ | For playwright traffic capture |
| Python | 3.10+ | Generated CLIs are Python |
# Inside Claude Code
/plugin marketplace add ItamarZand88/CLI-Anything-WEB
/plugin install cli-anything-web
/reload-plugins
/cli-anything-web https://your-favorite-website.com
The agent opens a browser, asks you to log in if needed, captures traffic, and generates a complete CLI. That's it.
20 real CLIs generated by the plugin โ shipped as reference implementations:
| CLI | Website | Protocol | Auth | Skill | Description |
|---|---|---|---|---|---|
cli-web-futbin | FUTBIN | HTML + JSON API | None | ๐ Skill | EA FC player database โ search, compare, prices, market analysis, arbitrage, trading signals |
cli-web-notebooklm | Google NotebookLM | batchexecute RPC | Google SSO | ๐ Skill | Notebooks, sources, chat, 9 artifact types (audio, video, slides, quiz, mindmap) |
cli-web-gh-trending | GitHub Trending | HTML scraping | None | ๐ Skill | Trending repos & developers with language/time filters |
cli-web-producthunt | Product Hunt | Next.js RSC flight (curl_cffi) | None | ๐ Skill | Today's launches, leaderboards, product details |
cli-web-unsplash | Unsplash | REST JSON (camoufox browser) | None | ๐ Skill | Photo search, download, topics, collections, profiles |
cli-web-booking | Booking.com | GraphQL + HTML (curl_cffi) | WAF cookies | ๐ Skill | Hotel search, property details, destination resolution |
cli-web-stitch | Google Stitch | batchexecute RPC | Google SSO | ๐ Skill | AI UI design โ generate mobile/web app mockups from text prompts |
cli-web-pexels | Pexels | SSR + NEXT_DATA (curl_cffi) | None | ๐ Skill | Free stock photos & videos โ search, download, collections, profiles |
cli-web-reddit | REST JSON API (curl_cffi) | Required (OAuth via token_v2) | ๐ Skill | Feeds, subreddits, search, vote, comment, submit, save, inbox | |
cli-web-gai | Google AI Mode | Browser-rendered (Playwright) | None | ๐ Skill | AI-powered search with source references |
cli-web-youtube | YouTube | InnerTube REST API (httpx) | None | ๐ Skill | Search videos, video details, trending, channel info |
cli-web-hackernews | Hacker News | REST API โ Firebase + Algolia (httpx) | Cookie (optional) | ๐ Skill | Stories, search, comments, users, upvote, submit, comment, favorite |
cli-web-codewiki | Google Code Wiki | batchexecute RPC | None | ๐ Skill | AI-generated repo docs, wiki sections, Gemini chat, download as .md |
cli-web-chatgpt | ChatGPT | REST API + Camoufox browser | Browser (OpenAI SSO) | ๐ Skill | Ask questions, generate/download images, conversations, models |
cli-web-airbnb | Airbnb | SSR HTML + niobeClientData (curl_cffi) | None | ๐ Skill | Search stays, listing details, amenities, host info, autocomplete locations |
cli-web-amazon | amazon.com | SSR HTML + REST JSON (curl_cffi) | None | ๐ Skill | Search products, view details, browse bestsellers |
cli-web-tripadvisor | TripAdvisor | SSR HTML + JSON-LD (curl_cffi) | None | ๐ Skill | Search locations, hotels, restaurants, and attractions |
cli-web-linkedin | GraphQL + Voyager REST (curl_cffi) | Cookie | ๐ Skill | Search, feed, profiles, jobs, posts, reactions, comments, network, and messaging | |
cli-web-capitoltrades | Capitol Trades | SSR HTML + BFF JSON (curl_cffi) | None | ๐ Skill | US congressional stock trades (STOCK Act) โ trades, politicians, issuers, price history |
cli-web-worldcup | ESPN / FIFA World Cup 2026 | REST JSON (ESPN + The Odds API) | None | ๐ Skill | FIFA World Cup 2026 โ fixtures, nations, squads, group standings, and bookmaker odds (read-only) |
# Install the entire fleet (every CLI) in one command:
pip install cli-anything-web # or: uv tool install cli-anything-web
# ...or install only the CLIs you want, by name (see the table above):
pip install cli-web-futbin
uvx cli-web-futbin --help # or run it once, no install, via uvx
Working from a clone instead? Install a CLI editable with
pip install -e <app>/agent-harness(see QUICKSTART).
# Required browsers
playwright install chromium # for CLIs that require browser-based auth or rendering
python -m camoufox fetch # for CLIs that use stealth browser (anti-bot bypass)
GitHub Trending โ no auth, great first test
pip install cli-web-gh-trending
cli-web-gh-trending repos list --language python --since weekly --json
FUTBIN โ search EA FC players
pip install cli-web-futbin
cli-web-futbin players search --name "Messi" --json
NotebookLM โ requires Google login
pip install "cli-web-notebooklm[auth]"
cli-web-notebooklm auth login
cli-web-notebooklm notebooks list --json
Product Hunt โ no auth, bypasses Cloudflare
pip install cli-web-producthunt
cli-web-producthunt posts list --json
Unsplash โ photo search
pip install cli-web-unsplash
cli-web-unsplash photos search "mountains" --json
Booking.com โ hotel search
pip install "cli-web-booking[auth]"
cli-web-booking auth login # required โ fetches WAF browser cookies
cli-web-booking search find "Paris" --json
Google Stitch โ requires Google SSO login
pip install "cli-web-stitch[auth]"
cli-web-stitch auth login
cli-web-stitch projects list --json
Pexels โ free stock photos & videos
pip install cli-web-pexels
cli-web-pexels photos search "mountains" --json
Reddit โ feeds, search, vote, comment, submit
pip install cli-web-reddit
cli-web-reddit auth login # required by Reddit for all current API reads
cli-web-reddit feed hot --limit 5 --json
Hacker News โ stories, search, upvote, submit
pip install cli-web-hackernews
cli-web-hackernews auth login # optional โ required for upvoting, submitting, commenting
cli-web-hackernews stories top -n 5 --json
Google Code Wiki โ AI-generated repo docs + Gemini chat
pip install cli-web-codewiki
cli-web-codewiki wiki sections excalidraw/excalidraw --json
cli-web-codewiki chat ask "How does rendering work?" --repo excalidraw/excalidraw --json
Airbnb โ search stays, get listing details
pip install cli-web-airbnb
cli-web-airbnb search stays "London, UK" --checkin 2024-06-01 --checkout 2024-06-05 --adults 2 --json
cli-web-airbnb listings get 770993223449115417 --json
cli-web-airbnb autocomplete locations "New Yor" --json
TripAdvisor โ search hotels, restaurants, and attractions (no auth, DataDome bypass)
pip install cli-web-tripadvisor
cli-web-tripadvisor hotels search "Paris" --json
cli-web-tripadvisor attractions search "London" --json
ChatGPT โ ask questions, generate images
FAQ
cli-anything-web is a Claude Code plugin with 27 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes airbnb-cli, amazon-cli, booking-cli. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Is this plugin yours?
Claim it with GitHubSubmit a pluginPromote it