CLI-Anything-WEB: Open-source plugin that reverse-engineers any website into a Python CLI for Claude Code

CLI-Anything-WEB is a new open-source plugin for Claude Code that automatically turns any website into a Python CLI. The plugin monitors your browser traffic as you interact with a site, captures all HTTP requests/responses, reverse-engineers the protocol, and generates a complete CLI tool — including authentication handling, test generation, and --json output everywhere.
Once generated, each CLI includes a SKILL.md file so Claude can invoke the tool autonomously without extra prompting. For example, you can ask Claude "find me a hotel in Paris under 200" and it will run the generated Booking.com CLI on its own.
Key technical details
- Protocol extraction: Captures HTTP traffic from your browser, deduces the underlying API protocol, and generates a Python CLI from it.
- Auth handling: Manages cookie refresh without user interaction — a hard problem the author had to solve.
- Bypass challenges: The plugin handles Cloudflare and AWS WAF challenges, and can decode Google's
batchexecuteRPC protocol. - 19 sample CLIs: The repo ships with working CLIs for Reddit, NotebookLM, Booking, Airbnb, ChatGPT, Stitch, Capitol Trades, LinkedIn, and others — so you can see how different protocols are handled.
The project is MIT-licensed, open source, and unaffiliated with any of the target websites. Repository: https://github.com/ItamarZand88/CLI-Anything-WEB
The author is actively seeking feedback on which sites to target next.
📖 Read the full source: r/ClaudeAI
👀 See Also

GoModel: A Lightweight Open-Source AI Gateway Written in Go
GoModel is an open-source AI gateway that provides a unified OpenAI-compatible API for multiple providers including OpenAI, Anthropic, Gemini, Groq, xAI, and Ollama. It features a 17MB Docker image, 44x smaller than LiteLLM, with environment-variable-first configuration and built-in observability.

Rift: A Better Alternative to Git Worktrees with Instant Copy-on-Write Snapshots
Rift uses btrfs or APFS snapshots to create instant, space-efficient copies of Git repositories. Initialization, creation, and listing via CLI or JavaScript FFI.

Heren Godot MCP: Persistent WebSocket Daemon Cuts AI–Godot Interaction Latency to ~20ms
Heren is a new MCP server for Godot that keeps a lightweight WebSocket daemon alive, achieving ~20ms operations instead of waiting for full engine cold starts. It provides 15 tools for scene management, debugging, GPU‑accelerated screenshots, and automatic shutdown after 3 minutes of inactivity.

Bespoke AI v0.8.1: VS Code Autocomplete Extension for Code and Text
Bespoke AI v0.8.1 is a VS Code extension providing autocomplete for both code and text, leveraging Claude Code subscriptions via Anthropic's Agent SDK to avoid API charges while supporting multiple backends including Ollama.