@kvasar/openclaw-storyblok-plugin 0.1.9 → 0.1.11
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 +4 -1
- package/package.json +1 -1
- package/skills/SKILL.md +62 -0
package/openclaw.plugin.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "openclaw-storyblok",
|
|
3
3
|
"name": "Storyblok Integration",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.11",
|
|
5
5
|
"description": "Provides tools to interact with Storyblok CMS via Management API and Delivery API. Supports stories, components, and space management.",
|
|
6
|
+
"activation": {
|
|
7
|
+
"onStartup": false
|
|
8
|
+
},
|
|
6
9
|
"skills": ["skills"],
|
|
7
10
|
"configSchema": {
|
|
8
11
|
"type": "object",
|
package/package.json
CHANGED
package/skills/SKILL.md
CHANGED
|
@@ -31,6 +31,68 @@ This skill package provides agents with the ability to work with **Storyblok CMS
|
|
|
31
31
|
|
|
32
32
|
## Core Concepts
|
|
33
33
|
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Storyblok Block Types
|
|
37
|
+
|
|
38
|
+
Storyblok components can be organized into three structural categories:
|
|
39
|
+
|
|
40
|
+
#### Nestable Block
|
|
41
|
+
|
|
42
|
+
Reusable blocks that are inserted **inside other blocks or pages**.
|
|
43
|
+
|
|
44
|
+
Examples:
|
|
45
|
+
|
|
46
|
+
- Hero
|
|
47
|
+
- Grid
|
|
48
|
+
- Section
|
|
49
|
+
- Newsletter Section
|
|
50
|
+
- Chapter
|
|
51
|
+
- Full Width Image
|
|
52
|
+
- Slider
|
|
53
|
+
- CTA Banner
|
|
54
|
+
- Feature Grid
|
|
55
|
+
|
|
56
|
+
Use these when building modular page layouts.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
#### Content Type Block
|
|
61
|
+
|
|
62
|
+
Top-level content models representing an entry/page/document.
|
|
63
|
+
|
|
64
|
+
Examples:
|
|
65
|
+
|
|
66
|
+
- Landing Page
|
|
67
|
+
- Post
|
|
68
|
+
- Authors
|
|
69
|
+
- Product
|
|
70
|
+
- Page
|
|
71
|
+
- Team Members
|
|
72
|
+
- FAQ Article
|
|
73
|
+
- Case Study
|
|
74
|
+
|
|
75
|
+
Use these as standalone entries in Storyblok.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
#### Universal Block
|
|
80
|
+
|
|
81
|
+
A block that can be used **both as a content type and nested block**.
|
|
82
|
+
|
|
83
|
+
Examples:
|
|
84
|
+
|
|
85
|
+
- FAQ Section
|
|
86
|
+
- Testimonials
|
|
87
|
+
- Rich Text Section
|
|
88
|
+
- Gallery
|
|
89
|
+
- Reusable Promo Page
|
|
90
|
+
- Contact Section
|
|
91
|
+
|
|
92
|
+
Use when flexibility is needed across multiple content structures.
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
34
96
|
### Tools
|
|
35
97
|
|
|
36
98
|
All tools are provided by the `openclaw-storyblok` plugin:
|