@kvasar/openclaw-storyblok-plugin 0.1.31 → 0.1.32

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
@@ -40,8 +40,17 @@ All tools are namespaced with `storyblok_`. See tool descriptions in the agent f
40
40
 
41
41
  ### Components & Space
42
42
  - `storyblok_get_components` – List component definitions (schema)
43
+ - `storyblok_create_component`
44
+ - `storyblok_get_components`
43
45
  - `storyblok_get_space` – Retrieve space information
44
46
 
47
+ ## Asset Folders
48
+
49
+ - `storyblok_create_asset_folder`
50
+ - `storyblok_delete_asset_folder`
51
+ - `storyblok_get_asset_folder`
52
+
53
+
45
54
  ## Development
46
55
 
47
56
  This plugin is written in TypeScript. Build and test:
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-storyblok",
3
3
  "name": "Storyblok Integration",
4
- "version": "0.1.31",
4
+ "version": "0.1.32",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kvasar/openclaw-storyblok-plugin",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "description": "OpenClaw plugin — interact with Storyblok CMS via Management API and Delivery API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/skills/README.md CHANGED
@@ -26,11 +26,17 @@ Or invoke the skill directly and follow the guidance in `SKILL.md`.
26
26
  - `storyblok_get_space`
27
27
  - `storyblok_get_story`
28
28
  - `storyblok_list_stories`
29
- - `storyblok_get_components`
30
29
  - `storyblok_create_story`
31
30
  - `storyblok_update_story`
32
31
  - `storyblok_publish_story`
33
32
  - `storyblok_unpublish_story`
33
+ - `storyblok_create_asset_folder`
34
+ - `storyblok_delete_asset_folder`
35
+ - `storyblok_get_asset_folder`
36
+ - `storyblok_create_component`
37
+ - `storyblok_get_component`
38
+ - `storyblok_get_components`
39
+
34
40
 
35
41
  ## Additional Tools (used by skill)
36
42