@kvasar/openclaw-storyblok-plugin 0.2.12 → 0.2.14
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 +31 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,13 +18,20 @@ This plugin integrates OpenClaw with Storyblok CMS, exposing tools to manage sto
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
# 1. Install the plugin
|
|
21
|
-
openclaw plugins install @kvasar/openclaw-storyblok
|
|
21
|
+
openclaw plugins install @kvasar/openclaw-storyblok-plugin
|
|
22
22
|
|
|
23
23
|
# 2. Restart the gateway
|
|
24
24
|
openclaw gateway restart
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# 3. Update the plugin
|
|
28
|
+
|
|
29
|
+
openclaw plugins update openclaw-storyblok
|
|
25
30
|
```
|
|
26
31
|
|
|
27
32
|
|
|
33
|
+
|
|
34
|
+
|
|
28
35
|
## Configuration
|
|
29
36
|
|
|
30
37
|
When adding this plugin to an OpenClaw agent, provide the following configuration:
|
|
@@ -36,6 +43,23 @@ When adding this plugin to an OpenClaw agent, provide the following configuratio
|
|
|
36
43
|
| `managementToken` | Management API token for write operations |
|
|
37
44
|
|
|
38
45
|
|
|
46
|
+
```json
|
|
47
|
+
{
|
|
48
|
+
"plugins": {
|
|
49
|
+
"entries": {
|
|
50
|
+
"openclaw-figma": {
|
|
51
|
+
"config": {
|
|
52
|
+
"baseUrl": "${STORYBLOK_BASEURL}",
|
|
53
|
+
"spaceId": "${STORYBLOK_SPACEID}",
|
|
54
|
+
"managementToken": "${STORYBLOK_MANAGEMENT_TOKEN}"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
|
|
39
63
|
Tokens can be generated in your Storyblok dashboard under **Settings > API**.
|
|
40
64
|
|
|
41
65
|
## Tools
|
|
@@ -90,4 +114,9 @@ All tools are namespaced with `storyblok_`. See tool descriptions in the agent f
|
|
|
90
114
|
|
|
91
115
|
---
|
|
92
116
|
|
|
93
|
-
|
|
117
|
+
|
|
118
|
+
_Brought with ❤️ by [Kvasar Technologies](https://landing.kvasar.tech)_
|
|
119
|
+
|
|
120
|
+
## License
|
|
121
|
+
|
|
122
|
+
MIT © KVASAR Technologies
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-storyblok",
|
|
3
3
|
"name": "Storyblok Integration",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.14",
|
|
5
5
|
"description": "Provides tools to interact with Storyblok CMS via Management API and Delivery API. Supports stories, components, and space management.",
|
|
6
6
|
"activation": {
|
|
7
7
|
"onStartup": false
|
package/package.json
CHANGED