@ekai/contexto 0.1.4 → 0.1.6
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 +4 -6
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,7 @@ Mind Map is an improved **context engine** for OpenClaw that solves **context ro
|
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
openclaw plugins install @ekai/contexto
|
|
20
|
+
openclaw plugins enable contexto
|
|
20
21
|
```
|
|
21
22
|
|
|
22
23
|
### 2. Enable and configure the plugin
|
|
@@ -24,7 +25,7 @@ openclaw plugins install @ekai/contexto
|
|
|
24
25
|
Set your API key via CLI:
|
|
25
26
|
|
|
26
27
|
```bash
|
|
27
|
-
openclaw
|
|
28
|
+
openclaw config set plugins.entries.contexto.config.apiKey your-api-key-here
|
|
28
29
|
```
|
|
29
30
|
|
|
30
31
|
Or add to your OpenClaw config:
|
|
@@ -32,12 +33,9 @@ Or add to your OpenClaw config:
|
|
|
32
33
|
```json
|
|
33
34
|
{
|
|
34
35
|
"plugins": {
|
|
35
|
-
"
|
|
36
|
-
"contextEngine": "@ekai/contexto"
|
|
37
|
-
},
|
|
38
|
-
"allow": ["@ekai/contexto"],
|
|
36
|
+
"allow": ["contexto"],
|
|
39
37
|
"entries": {
|
|
40
|
-
"
|
|
38
|
+
"contexto": {
|
|
41
39
|
"enabled": true,
|
|
42
40
|
"config": {
|
|
43
41
|
"apiKey": "your-api-key-here"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ekai/contexto",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "Openclaw plugin for smart context management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"publishConfig": {
|