@openclaw/brave-plugin 2026.5.28-beta.3 → 2026.5.28-beta.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.
- package/README.md +36 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +6 -5
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @openclaw/brave-plugin
|
|
2
|
+
|
|
3
|
+
Official Brave Search provider plugin for OpenClaw.
|
|
4
|
+
|
|
5
|
+
This plugin registers Brave as a `web_search` provider. It supports normal Brave web search and Brave LLM Context API mode.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
openclaw plugins install @openclaw/brave-plugin
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Restart the Gateway after installing or updating the plugin.
|
|
14
|
+
|
|
15
|
+
## Configure
|
|
16
|
+
|
|
17
|
+
Store a Brave Search API key in plugin config or expose `BRAVE_API_KEY` to the Gateway:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
openclaw config set plugins.entries.brave.enabled true
|
|
21
|
+
openclaw config set tools.web.search.provider brave
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Provider-specific options live under `plugins.entries.brave.config.webSearch.*`.
|
|
25
|
+
|
|
26
|
+
## Docs
|
|
27
|
+
|
|
28
|
+
Full setup, config examples, search modes, and tool parameters:
|
|
29
|
+
|
|
30
|
+
- https://docs.openclaw.ai/tools/brave-search
|
|
31
|
+
|
|
32
|
+
## Package
|
|
33
|
+
|
|
34
|
+
- Plugin id: `brave`
|
|
35
|
+
- Package: `@openclaw/brave-plugin`
|
|
36
|
+
- Minimum OpenClaw host: `2026.4.10`
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/brave-plugin",
|
|
3
|
-
"version": "2026.5.28-beta.
|
|
3
|
+
"version": "2026.5.28-beta.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/brave-plugin",
|
|
9
|
-
"version": "2026.5.28-beta.
|
|
9
|
+
"version": "2026.5.28-beta.4"
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/brave-plugin",
|
|
3
|
-
"version": "2026.5.28-beta.
|
|
3
|
+
"version": "2026.5.28-beta.4",
|
|
4
4
|
"description": "OpenClaw Brave Search provider plugin for web search.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"allowInvalidConfigRecovery": true
|
|
19
19
|
},
|
|
20
20
|
"compat": {
|
|
21
|
-
"pluginApi": ">=2026.5.28-beta.
|
|
21
|
+
"pluginApi": ">=2026.5.28-beta.4"
|
|
22
22
|
},
|
|
23
23
|
"build": {
|
|
24
|
-
"openclawVersion": "2026.5.28-beta.
|
|
24
|
+
"openclawVersion": "2026.5.28-beta.4"
|
|
25
25
|
},
|
|
26
26
|
"release": {
|
|
27
27
|
"publishToClawHub": true,
|
|
@@ -34,10 +34,11 @@
|
|
|
34
34
|
"files": [
|
|
35
35
|
"dist/**",
|
|
36
36
|
"openclaw.plugin.json",
|
|
37
|
-
"npm-shrinkwrap.json"
|
|
37
|
+
"npm-shrinkwrap.json",
|
|
38
|
+
"README.md"
|
|
38
39
|
],
|
|
39
40
|
"peerDependencies": {
|
|
40
|
-
"openclaw": ">=2026.5.28-beta.
|
|
41
|
+
"openclaw": ">=2026.5.28-beta.4"
|
|
41
42
|
},
|
|
42
43
|
"peerDependenciesMeta": {
|
|
43
44
|
"openclaw": {
|