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

Portable engineering system for Claude Code with hooks, specialized agents, and self-improvement
A developer built a portable engineering system that lives in ~/.claude/ and applies to every project automatically, featuring a 650-line constitution, deterministic hooks that block dangerous commands, three specialized agents, and a self-improving compound engineering approach.

Open Brain: Open-source MCP server adds persistent memory with auto-graph and semantic search to Claude
Open Brain is an open-source MCP server that gives Claude persistent memory across sessions with automatic entity extraction, semantic deduplication, and auto-graphing of connections between thoughts. It uses Supabase with pgvector and Deno Edge Functions, is self-hostable, and includes 16 MCP tools for graph traversal, entity browsing, and weekly review synthesis.

Two Months with GitHub's Spec-Kit and Claude Code: What Works, What Doesn't
A developer shares practical notes on using GitHub's Spec-Driven Development toolkit with Claude Code, covering the five-phase workflow, drift issues, overhead trade-offs, and setup tips.

Definable AI adds self-hosted observability dashboard with single flag
Definable AI, an open-source Python framework for building AI agents, now includes a built-in observability dashboard that can be enabled with one flag. The dashboard provides real-time event streaming, token accounting, latency metrics, and run replay without external dependencies.