You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -21,6 +21,7 @@ By the end of this tutorial, you are be able to:
21
21
- Pair and connect the OpenClaw CLI and the Control UI.
22
22
- Configure OpenClaw to use the local AI model Ollama.
23
23
- Integrate OpenClaw with Discord.
24
+
- Manage skills and plug-ins.
24
25
- Enable the web search capability using Brave Search.
25
26
26
27
## Prerequisites
@@ -61,7 +62,8 @@ Run a quick setup for the agent in the OpenClaw CLI.
61
62
3. The wizard guides you through a series of steps. Use the arrow keys to navigate and press Enter to confirm.
62
63
63
64
:::tip Note on configurations
64
-
To get you started quickly, this tutorial skips several advanced settings in the wizard. You can configure or modify them later.
65
+
- To get you started quickly, this tutorial skips several advanced settings in the wizard. You can configure or modify them later.
66
+
- Do not configure skills here, because the Olares security environment prevents the wizard from automatically installing skills. You need to install them manually. For more information, see [Manage skills and plugins](#manage-skills-and-plugins).
65
67
:::
66
68
67
69
| Settings | Option |
@@ -73,17 +75,17 @@ Run a quick setup for the agent in the OpenClaw CLI.
73
75
| Filter models by provider | All providers |
74
76
| Default model | Keep current |
75
77
| Select channel | Skip for now |
76
-
| Configure skills now | No |
78
+
| Configure skills now | No<br>(Manual installation required)|
77
79
| How do you want to hatch your bot | Do this later |
78
80
79
-
4. After you complete the wizard, restart OpenClaw CLI.
80
-
5. Enter the following command to view and copy the gateway token displayed:
81
+
4. After you complete the wizard, close OpenClaw CLI and open it again.
82
+
5. Enter the following command to obtain the gateway token:
81
83
82
84
```bash
83
85
openclaw config get gateway.auth.token
84
86
```
85
87
86
-
6. Keep the OpenClaw CLI window open for the next step.
88
+
6. Copy the token and keep the OpenClaw CLI window open for the next step.
87
89
88
90
## Pair device
89
91
@@ -164,7 +166,7 @@ To chat with your agent remotely, connect it to a Discord bot.
3. Once approved, you can start chatting with your agent in Discord.
226
230
227
-
## (Optional) Enable web search
231
+
## Optional: Enable web search
228
232
229
233
By default, OpenClaw answers questions only based on its training data, which means it doesn't know about current events or real-time news. To give your agent access to the live internet, you can enable the web search tool.
230
234
@@ -238,12 +242,12 @@ OpenClaw officially recommends Brave Search. It uses an independent web index op
238
242
```
239
243
3. Configure the basic settings as follows:
240
244
241
-
|Settings|Option|
245
+
|Settings | Option|
242
246
|:-------|:-----|
243
-
|Where will the Gateway run|Local (this machine)|
244
-
|Enable web_search (Brave Search)|Yes|
245
-
|Brave Search API key| Your `BraveSearchAPIkey` |
246
-
|Enable web_fetch (keyless HTTP <br>fetch) |Yes|
247
+
|Where will the Gateway run | Local (this machine)|
248
+
|Enable web_search (Brave Search) | Yes|
249
+
|Brave Search API key| Your `BraveSearchAPIkey` |
250
+
|Enable web_fetch (keyless HTTP <br>fetch) |Yes|
247
251
248
252
4. Finalize the configuration in Control UI.
249
253
@@ -273,11 +277,106 @@ OpenClaw officially recommends Brave Search. It uses an independent web index op
273
277
274
278
5. Now you can ask the agent in Discord to answer questions that require real-time internet data.
275
279
276
-
## FAQ
280
+
## Manage skills and plugins
281
+
282
+
OpenClaw can be extended using skills and plugins:
283
+
- Skills add new capabilities to the AI. For example, managing Model Context Protocol servers.
284
+
- Plugins extend the system to support additional channels or community features. For example, adding iMessage via BlueBubbles.
285
+
286
+
:::info Why manual installation required
287
+
To protect your device, OpenClaw runs in a restricted, non-root environment without administrative privileges. This prevents the agent from modifying your system or self-installing software.
288
+
:::
289
+
290
+
### Step 1: Install ClawHub
291
+
292
+
To manage skills and plugins, install ClawHub. It is the package manager for OpenClaw.
293
+
294
+
1. Open the OpenClaw CLI.
295
+
2. Enter the following command:
296
+
297
+
```bash
298
+
npx clawhub
299
+
```
300
+
301
+
3. When prompted to proceed, press Y.
302
+
303
+
### Step 2: Install and enable skills
304
+
305
+
1. Check the list of available skills by entering the following command:
0 commit comments