web-search-plus-plugin 1.4.0 → 2.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "web-search-plus-plugin",
3
3
  "name": "Web Search Plus",
4
- "version": "1.4.0",
4
+ "version": "2.0.1",
5
5
  "description": "Multi-provider web search (Serper/Google, Tavily, Querit/Multilingual AI Search, Exa/Neural+Deep, Perplexity, You.com, SearXNG) with intelligent auto-routing",
6
6
  "configSchema": {
7
7
  "type": "object",
@@ -21,7 +21,6 @@
21
21
  "serperApiKey": { "label": "Serper API Key", "placeholder": "sk-...", "sensitive": true },
22
22
  "tavilyApiKey": { "label": "Tavily API Key", "placeholder": "tvly-...", "sensitive": true },
23
23
  "queritApiKey": { "label": "Querit API Key", "placeholder": "querit-sk-...", "sensitive": true },
24
- "queritApiKey": { "label": "Querit API Key", "placeholder": "querit-sk-...", "sensitive": true },
25
24
  "exaApiKey": { "label": "Exa API Key", "placeholder": "exa-...", "sensitive": true },
26
25
  "perplexityApiKey": { "label": "Perplexity API Key", "placeholder": "pplx-...", "sensitive": true },
27
26
  "kilocodeApiKey": { "label": "Kilo Gateway API Key", "placeholder": "...", "sensitive": true },
package/package.json CHANGED
@@ -1,21 +1,50 @@
1
1
  {
2
2
  "name": "web-search-plus-plugin",
3
- "version": "1.4.0",
3
+ "version": "2.0.4",
4
4
  "description": "OpenClaw plugin: multi-provider web search (Serper/Google, Tavily, Querit/Multilingual AI Search, Exa/Neural+Deep, Perplexity, You.com, SearXNG) with intelligent auto-routing",
5
5
  "type": "module",
6
6
  "main": "index.ts",
7
7
  "openclaw": {
8
- "extensions": ["./index.ts"]
8
+ "extensions": [
9
+ "./index.ts"
10
+ ],
11
+ "compat": {
12
+ "pluginApi": ">=2026.3.22"
13
+ },
14
+ "env": {
15
+ "SERPER_API_KEY": "optional \u2014 Serper/Google search API key",
16
+ "TAVILY_API_KEY": "optional \u2014 Tavily research search API key",
17
+ "EXA_API_KEY": "optional \u2014 Exa neural search API key",
18
+ "QUERIT_API_KEY": "optional \u2014 Querit multilingual search API key",
19
+ "PERPLEXITY_API_KEY": "optional \u2014 Perplexity AI search API key",
20
+ "KILOCODE_API_KEY": "optional \u2014 Kilo.ai gateway API key",
21
+ "YOU_API_KEY": "optional \u2014 You.com search API key",
22
+ "SEARXNG_INSTANCE_URL": "optional \u2014 SearXNG self-hosted instance URL",
23
+ "SEARXNG_ALLOW_PRIVATE": "optional \u2014 set true to allow private IPs for SearXNG (disables SSRF protection)"
24
+ }
9
25
  },
10
26
  "files": [
11
27
  "index.ts",
12
28
  "openclaw.plugin.json",
13
- "scripts/*.py",
14
29
  ".env.template",
15
30
  "README.md",
16
31
  "LICENSE"
17
32
  ],
18
- "keywords": ["openclaw", "plugin", "search", "serper", "tavily", "querit", "exa", "exa-deep", "perplexity", "you", "searxng", "web-search", "auto-routing"],
33
+ "keywords": [
34
+ "openclaw",
35
+ "plugin",
36
+ "search",
37
+ "serper",
38
+ "tavily",
39
+ "querit",
40
+ "exa",
41
+ "exa-deep",
42
+ "perplexity",
43
+ "you",
44
+ "searxng",
45
+ "web-search",
46
+ "auto-routing"
47
+ ],
19
48
  "peerDependencies": {
20
49
  "openclaw": ">=2026.3.22"
21
50
  },