@kvasar/openclaw-storyblok-plugin 0.1.34 → 0.1.35
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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/storyblok/SKILL.md +17 -4
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-storyblok",
|
|
3
3
|
"name": "Storyblok Integration",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.35",
|
|
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
|
@@ -198,10 +198,23 @@ Use when flexibility is needed across multiple content structures.
|
|
|
198
198
|
- For `storyblok_get_story`, you can specify `version` (draft/published) and `language`.
|
|
199
199
|
- For `storyblok_list_stories`, you can filter by `folder_id`, `parent_id`, `status`, `tag`, `per_page`, `page`, `sort_by`, `direction`.
|
|
200
200
|
- For management tools, `story_id` can be numeric ID or UUID.
|
|
201
|
-
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
- `
|
|
201
|
+
- When constructing content objects, pass them as structured objects — never as JSON strings or stringified blobs.
|
|
202
|
+
|
|
203
|
+
#### `storyblok_get_story`
|
|
204
|
+
- `version`: `draft` or `published`. Defaults to `published`.
|
|
205
|
+
- `language`: optional language code to retrieve a specific translation.
|
|
206
|
+
|
|
207
|
+
#### `storyblok_list_stories`
|
|
208
|
+
- Filter options: `folder_id`, `parent_id`, `status`, `tag`, `per_page`, `page`, `sort_by`, `direction`.
|
|
209
|
+
- `story_id` can be a numeric ID or UUID.
|
|
210
|
+
|
|
211
|
+
#### `storyblok_update_story`
|
|
212
|
+
|
|
213
|
+
- `publish=true` publishes the story. `publish=false` saves as draft — it does **not** unpublish. Use `storyblok_unpublish_story` to unpublish.
|
|
214
|
+
- `force_update="1"` forces an update even if the story is locked by another user (causes a content conflict — use with caution). Has no effect if the story is locked as part of a workflow stage.
|
|
215
|
+
- `group_id`: UUID shared between stories defined as alternates (used for internationalization/variants).
|
|
216
|
+
- `lang`: publishes a specific language version individually (must be enabled in space internationalization settings).
|
|
217
|
+
- `content`: must be a structured object — never pass it as a JSON string or serialized value.
|
|
205
218
|
|
|
206
219
|
## Workflow Guides
|
|
207
220
|
|