Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
← Back to list

AI Search Hub (Multi-AI Chat Automation)

A Playwright automation skill that sends one prompt to Yuanbao, LongCat, Doubao, Qwen, Gemini, Grok, or MiniMax through a single wrapper command.

AutomationIntermediate★ 1,270⑂ 109AI score 7/10Last updated: Apr 27, 2026

What it does

  • Normalizes seven AI chat sites (Yuanbao, LongCat, Doubao, Qwen, Gemini, Grok, MiniMax) behind one wrapper: scripts/run_web_chat.py.
  • Reuses an existing Chrome DevTools endpoint on 127.0.0.1:9222, or auto-detects Chrome/Edge/Brave/Chromium and launches it with a remote-debugging port.
  • Seeds an isolated debug profile from your local browser data (skipping lock files) so logged-in sessions work while your normal browser stays open.
  • Detects login walls, prints a prompt, waits until you finish signing in, then continues sending the question automatically.
  • Ships a routing table (ROUTING.md) so questions go to the platform whose data world fits best — real-time social to Grok, WeChat articles to Yuanbao, Chinese local-life queries to LongCat, and so on.

Who it's for

  • Researchers comparing answers across Chinese and global AI assistants.
  • Automation engineers who must scrape replies from web-only chatbots with no public API.
  • Intermediate users already comfortable with Playwright, CDP, and the terminal.

Examples

  1. python3 scripts/run_web_chat.py --site doubao --prompt "Give me a short Hangzhou food guide." and read the saved output file.
  2. Route real-time X/Twitter sentiment questions with --site grok, and WeChat public-account research with --site yuanbao.
  3. Already running a debug browser? Attach with --cdp-http http://127.0.0.1:9222 to skip the login flow entirely.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/minsight-ai-info/AI-Search-Hub/HEAD/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
↓ Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the SKILL.m folder from the GitHub repo minsight-ai-info/AI-Search-Hub into my ~/.claude/skills/ai-search-hub/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/minsight-ai-info/AI-Search-Hub.git ~/.claude/skills/ai-search-hub

⚠ This is a third-party skill. Check the source repository before installing.

  1. Confirm Python 3.10+ and pip are available: python3 --version.
  2. Clone the repository: git clone https://github.com/minsight-ai-info/AI-Search-Hub.git
  3. Place it where Claude Code loads skills: cp -r AI-Search-Hub ~/.claude/skills/ai-search-hub (a symlink also works).
  4. Install dependencies: pip install playwright then playwright install chromium.
  5. Skim INSTALL.md and ROUTING.md in the repo and verify your Chrome/Edge/Brave binary is auto-detected.
  6. Restart Claude Code, then ask something like "send this prompt to Doubao" to trigger the skill.
  7. If a login prompt appears, sign in inside the launched debug browser window; the script resumes on its own.