@ekai/contexto 0.1.3 → 0.1.5

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 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 plugins config @ekai/contexto apiKey your-api-key-here
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
- "slots": {
36
- "contextEngine": "@ekai/contexto"
37
- },
38
- "allow": ["@ekai/contexto"],
36
+ "allow": ["contexto"],
39
37
  "entries": {
40
- "@ekai/contexto": {
38
+ "contexto": {
41
39
  "enabled": true,
42
40
  "config": {
43
41
  "apiKey": "your-api-key-here"
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "@ekai/contexto",
2
+ "id": "contexto",
3
3
  "configSchema": {
4
4
  "type": "object",
5
5
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ekai/contexto",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "OpenClaw plugin — sends all events to a webhook API",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
@@ -58,7 +58,7 @@ function buildPayload(
58
58
  }
59
59
 
60
60
  const webhookPlugin = {
61
- id: '@ekai/contexto',
61
+ id: 'contexto',
62
62
  name: 'Mind Map',
63
63
  description: 'Sends OpenClaw conversation events to a webhook API',
64
64