$npx -y skills add szsip239/teamclaw --skill multi-search-engineMulti search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and WolframAlpha knowledge queries. No API keys required.
| 1 | # Multi Search Engine v2.0.1 |
| 2 | |
| 3 | Integration of 17 search engines for web crawling without API keys. |
| 4 | |
| 5 | ## Search Engines |
| 6 | |
| 7 | ### Domestic (8) |
| 8 | - **Baidu**: `https://www.baidu.com/s?wd={keyword}` |
| 9 | - **Bing CN**: `https://cn.bing.com/search?q={keyword}&ensearch=0` |
| 10 | - **Bing INT**: `https://cn.bing.com/search?q={keyword}&ensearch=1` |
| 11 | - **360**: `https://www.so.com/s?q={keyword}` |
| 12 | - **Sogou**: `https://sogou.com/web?query={keyword}` |
| 13 | - **WeChat**: `https://wx.sogou.com/weixin?type=2&query={keyword}` |
| 14 | - **Toutiao**: `https://so.toutiao.com/search?keyword={keyword}` |
| 15 | - **Jisilu**: `https://www.jisilu.cn/explore/?keyword={keyword}` |
| 16 | |
| 17 | ### International (9) |
| 18 | - **Google**: `https://www.google.com/search?q={keyword}` |
| 19 | - **Google HK**: `https://www.google.com.hk/search?q={keyword}` |
| 20 | - **DuckDuckGo**: `https://duckduckgo.com/html/?q={keyword}` |
| 21 | - **Yahoo**: `https://search.yahoo.com/search?p={keyword}` |
| 22 | - **Startpage**: `https://www.startpage.com/sp/search?query={keyword}` |
| 23 | - **Brave**: `https://search.brave.com/search?q={keyword}` |
| 24 | - **Ecosia**: `https://www.ecosia.org/search?q={keyword}` |
| 25 | - **Qwant**: `https://www.qwant.com/?q={keyword}` |
| 26 | - **WolframAlpha**: `https://www.wolframalpha.com/input?i={keyword}` |
| 27 | |
| 28 | ## Quick Examples |
| 29 | |
| 30 | ```javascript |
| 31 | // Basic search |
| 32 | web_fetch({"url": "https://www.google.com/search?q=python+tutorial"}) |
| 33 | |
| 34 | // Site-specific |
| 35 | web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"}) |
| 36 | |
| 37 | // File type |
| 38 | web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"}) |
| 39 | |
| 40 | // Time filter (past week) |
| 41 | web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"}) |
| 42 | |
| 43 | // Privacy search |
| 44 | web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"}) |
| 45 | |
| 46 | // DuckDuckGo Bangs |
| 47 | web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"}) |
| 48 | |
| 49 | // Knowledge calculation |
| 50 | web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"}) |
| 51 | ``` |
| 52 | |
| 53 | ## Advanced Operators |
| 54 | |
| 55 | | Operator | Example | Description | |
| 56 | |----------|---------|-------------| |
| 57 | | `site:` | `site:github.com python` | Search within site | |
| 58 | | `filetype:` | `filetype:pdf report` | Specific file type | |
| 59 | | `""` | `"machine learning"` | Exact match | |
| 60 | | `-` | `python -snake` | Exclude term | |
| 61 | | `OR` | `cat OR dog` | Either term | |
| 62 | |
| 63 | ## Time Filters |
| 64 | |
| 65 | | Parameter | Description | |
| 66 | |-----------|-------------| |
| 67 | | `tbs=qdr:h` | Past hour | |
| 68 | | `tbs=qdr:d` | Past day | |
| 69 | | `tbs=qdr:w` | Past week | |
| 70 | | `tbs=qdr:m` | Past month | |
| 71 | | `tbs=qdr:y` | Past year | |
| 72 | |
| 73 | ## Privacy Engines |
| 74 | |
| 75 | - **DuckDuckGo**: No tracking |
| 76 | - **Startpage**: Google results + privacy |
| 77 | - **Brave**: Independent index |
| 78 | - **Qwant**: EU GDPR compliant |
| 79 | |
| 80 | ## Bangs Shortcuts (DuckDuckGo) |
| 81 | |
| 82 | | Bang | Destination | |
| 83 | |------|-------------| |
| 84 | | `!g` | Google | |
| 85 | | `!gh` | GitHub | |
| 86 | | `!so` | Stack Overflow | |
| 87 | | `!w` | Wikipedia | |
| 88 | | `!yt` | YouTube | |
| 89 | |
| 90 | ## WolframAlpha Queries |
| 91 | |
| 92 | - Math: `integrate x^2 dx` |
| 93 | - Conversion: `100 USD to CNY` |
| 94 | - Stocks: `AAPL stock` |
| 95 | - Weather: `weather in Beijing` |
| 96 | |
| 97 | ## Documentation |
| 98 | |
| 99 | - `references/advanced-search.md` - Domestic search guide |
| 100 | - `references/international-search.md` - International search guide |
| 101 | - `CHANGELOG.md` - Version history |
| 102 | |
| 103 | ## License |
| 104 | |
| 105 | MIT |