@indreamai/openclaw-plugin 0.1.0

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.
Files changed (31) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +6 -0
  3. package/dist/chunk-ENGUNMFI.js +196 -0
  4. package/dist/index.d.ts +11 -0
  5. package/dist/index.js +781 -0
  6. package/dist/setup-entry.d.ts +11 -0
  7. package/dist/setup-entry.js +20 -0
  8. package/openclaw.plugin.json +98 -0
  9. package/package.json +58 -0
  10. package/skills/indream-editor-json/SKILL.md +157 -0
  11. package/skills/indream-editor-json/references/asset-mapping.md +147 -0
  12. package/skills/indream-editor-json/references/common-items.md +280 -0
  13. package/skills/indream-editor-json/references/editor-state.v1.schema.json +1491 -0
  14. package/skills/indream-editor-json/references/keyframes.md +102 -0
  15. package/skills/indream-editor-json/references/material-libraries.md +97 -0
  16. package/skills/indream-editor-json/references/minimal-editor-state.json +36 -0
  17. package/skills/indream-editor-json/references/motion-effects-and-transitions.md +235 -0
  18. package/skills/indream-editor-json/references/recipes.md +122 -0
  19. package/skills/indream-editor-json/references/structure-and-principles.md +159 -0
  20. package/skills/indream-editor-json/references/template-catalog.md +45 -0
  21. package/skills/indream-editor-json/references/templates/chart-showcase.json +654 -0
  22. package/skills/indream-editor-json/references/templates/gallery-carousel.json +538 -0
  23. package/skills/indream-editor-json/references/templates/hello-world.json +212 -0
  24. package/skills/indream-editor-json/references/templates/illustration-board.json +480 -0
  25. package/skills/indream-editor-json/references/templates/keyframe-motion-lab.json +362 -0
  26. package/skills/indream-editor-json/references/templates/product-intro.json +614 -0
  27. package/skills/indream-editor-json/references/templates/subtitle-promo.json +341 -0
  28. package/skills/indream-editor-json/references/text-and-captions.md +211 -0
  29. package/skills/indream-editor-json/references/validation-repair.md +134 -0
  30. package/skills/indream-render-workflow/SKILL.md +57 -0
  31. package/skills/indream-render-workflow/references/workflow.md +19 -0
@@ -0,0 +1,362 @@
1
+ {
2
+ "compositionWidth": 1280,
3
+ "compositionHeight": 720,
4
+ "timebaseTicksPerSecond": 240000,
5
+ "outputRatio": "16:9",
6
+ "tracks": [
7
+ {
8
+ "id": "track-background",
9
+ "hidden": false,
10
+ "muted": false,
11
+ "items": [
12
+ "item-bg"
13
+ ]
14
+ },
15
+ {
16
+ "id": "track-panels",
17
+ "hidden": false,
18
+ "muted": false,
19
+ "items": [
20
+ "item-panel",
21
+ "item-badge"
22
+ ]
23
+ },
24
+ {
25
+ "id": "track-copy",
26
+ "hidden": false,
27
+ "muted": false,
28
+ "items": [
29
+ "item-headline",
30
+ "item-subtext"
31
+ ]
32
+ },
33
+ {
34
+ "id": "track-fx",
35
+ "hidden": false,
36
+ "muted": false,
37
+ "items": [
38
+ "item-effect",
39
+ "item-filter"
40
+ ]
41
+ }
42
+ ],
43
+ "assets": {},
44
+ "items": {
45
+ "item-bg": {
46
+ "id": "item-bg",
47
+ "type": "solid",
48
+ "startTicks": 0,
49
+ "durationTicks": 960000,
50
+ "top": {
51
+ "value": 0,
52
+ "keyframes": []
53
+ },
54
+ "left": {
55
+ "value": 0,
56
+ "keyframes": []
57
+ },
58
+ "width": {
59
+ "value": 1280,
60
+ "keyframes": []
61
+ },
62
+ "height": {
63
+ "value": 720,
64
+ "keyframes": []
65
+ },
66
+ "scaleX": {
67
+ "value": 1,
68
+ "keyframes": [
69
+ {
70
+ "timeTicks": 0,
71
+ "value": 0.55
72
+ }
73
+ ]
74
+ },
75
+ "scaleY": {
76
+ "value": 1,
77
+ "keyframes": [
78
+ {
79
+ "timeTicks": 0,
80
+ "value": 0.55
81
+ }
82
+ ]
83
+ },
84
+ "opacity": {
85
+ "value": 1,
86
+ "keyframes": []
87
+ },
88
+ "isDraggingInTimeline": false,
89
+ "color": "#111827",
90
+ "shape": "rectangle",
91
+ "keepAspectRatio": false,
92
+ "borderRadius": {
93
+ "value": 0,
94
+ "keyframes": []
95
+ },
96
+ "rotation": {
97
+ "value": 0,
98
+ "keyframes": []
99
+ }
100
+ },
101
+ "item-panel": {
102
+ "id": "item-panel",
103
+ "type": "solid",
104
+ "startTicks": 0,
105
+ "durationTicks": 960000,
106
+ "top": {
107
+ "value": 110,
108
+ "keyframes": []
109
+ },
110
+ "left": {
111
+ "value": 120,
112
+ "keyframes": [
113
+ {
114
+ "timeTicks": 0,
115
+ "value": -260
116
+ }
117
+ ]
118
+ },
119
+ "width": {
120
+ "value": 430,
121
+ "keyframes": []
122
+ },
123
+ "height": {
124
+ "value": 230,
125
+ "keyframes": []
126
+ },
127
+ "scaleX": {
128
+ "value": 1,
129
+ "keyframes": []
130
+ },
131
+ "scaleY": {
132
+ "value": 1,
133
+ "keyframes": []
134
+ },
135
+ "opacity": {
136
+ "value": 1,
137
+ "keyframes": []
138
+ },
139
+ "isDraggingInTimeline": false,
140
+ "color": "#2563eb",
141
+ "shape": "rectangle",
142
+ "keepAspectRatio": false,
143
+ "borderRadius": {
144
+ "value": 32,
145
+ "keyframes": []
146
+ },
147
+ "rotation": {
148
+ "value": 0,
149
+ "keyframes": []
150
+ },
151
+ "animations": {
152
+ "out": {
153
+ "type": "fade",
154
+ "durationTicks": 80000,
155
+ "easing": "ease-in"
156
+ }
157
+ }
158
+ },
159
+ "item-badge": {
160
+ "id": "item-badge",
161
+ "type": "solid",
162
+ "startTicks": 0,
163
+ "durationTicks": 960000,
164
+ "top": {
165
+ "value": 104,
166
+ "keyframes": [
167
+ {
168
+ "timeTicks": 0,
169
+ "value": 24
170
+ }
171
+ ]
172
+ },
173
+ "left": {
174
+ "value": 910,
175
+ "keyframes": []
176
+ },
177
+ "width": {
178
+ "value": 180,
179
+ "keyframes": []
180
+ },
181
+ "height": {
182
+ "value": 180,
183
+ "keyframes": []
184
+ },
185
+ "scaleX": {
186
+ "value": 1,
187
+ "keyframes": []
188
+ },
189
+ "scaleY": {
190
+ "value": 1,
191
+ "keyframes": []
192
+ },
193
+ "opacity": {
194
+ "value": 1,
195
+ "keyframes": []
196
+ },
197
+ "isDraggingInTimeline": false,
198
+ "color": "#f97316",
199
+ "shape": "circle",
200
+ "keepAspectRatio": true,
201
+ "borderRadius": {
202
+ "value": 0,
203
+ "keyframes": []
204
+ },
205
+ "rotation": {
206
+ "value": 0,
207
+ "keyframes": []
208
+ }
209
+ },
210
+ "item-headline": {
211
+ "id": "item-headline",
212
+ "type": "text",
213
+ "startTicks": 0,
214
+ "durationTicks": 960000,
215
+ "top": {
216
+ "value": 390,
217
+ "keyframes": []
218
+ },
219
+ "left": {
220
+ "value": 120,
221
+ "keyframes": [
222
+ {
223
+ "timeTicks": 0,
224
+ "value": 40
225
+ }
226
+ ]
227
+ },
228
+ "width": {
229
+ "value": 1040,
230
+ "keyframes": []
231
+ },
232
+ "height": {
233
+ "value": 100,
234
+ "keyframes": []
235
+ },
236
+ "scaleX": {
237
+ "value": 1,
238
+ "keyframes": []
239
+ },
240
+ "scaleY": {
241
+ "value": 1,
242
+ "keyframes": []
243
+ },
244
+ "opacity": {
245
+ "value": 1,
246
+ "keyframes": [
247
+ {
248
+ "timeTicks": 0,
249
+ "value": 0
250
+ }
251
+ ]
252
+ },
253
+ "isDraggingInTimeline": false,
254
+ "text": "Single-Keyframe Motion Lab",
255
+ "color": "#ffffff",
256
+ "align": "left",
257
+ "fontFamily": "TikTok Sans",
258
+ "fontStyle": {
259
+ "variant": "normal",
260
+ "weight": "700"
261
+ },
262
+ "fontSize": 56,
263
+ "lineHeight": 1.1,
264
+ "letterSpacing": 0,
265
+ "resizeOnEdit": true,
266
+ "direction": "ltr",
267
+ "strokeWidth": 0,
268
+ "strokeColor": "#000000",
269
+ "background": null,
270
+ "rotation": {
271
+ "value": 0,
272
+ "keyframes": []
273
+ }
274
+ },
275
+ "item-subtext": {
276
+ "id": "item-subtext",
277
+ "type": "text",
278
+ "startTicks": 64000,
279
+ "durationTicks": 832000,
280
+ "top": {
281
+ "value": 500,
282
+ "keyframes": []
283
+ },
284
+ "left": {
285
+ "value": 120,
286
+ "keyframes": []
287
+ },
288
+ "width": {
289
+ "value": 930,
290
+ "keyframes": []
291
+ },
292
+ "height": {
293
+ "value": 90,
294
+ "keyframes": []
295
+ },
296
+ "scaleX": {
297
+ "value": 1,
298
+ "keyframes": []
299
+ },
300
+ "scaleY": {
301
+ "value": 1,
302
+ "keyframes": []
303
+ },
304
+ "opacity": {
305
+ "value": 1,
306
+ "keyframes": []
307
+ },
308
+ "isDraggingInTimeline": false,
309
+ "text": "Base values define the resting state. One keyframe can define the entry state.",
310
+ "color": "#cbd5e1",
311
+ "align": "left",
312
+ "fontFamily": "TikTok Sans",
313
+ "fontStyle": {
314
+ "variant": "normal",
315
+ "weight": "500"
316
+ },
317
+ "fontSize": 24,
318
+ "lineHeight": 1.1,
319
+ "letterSpacing": 0,
320
+ "resizeOnEdit": true,
321
+ "direction": "ltr",
322
+ "strokeWidth": 0,
323
+ "strokeColor": "#000000",
324
+ "background": {
325
+ "color": "#00000066",
326
+ "horizontalPadding": 16,
327
+ "borderRadius": 18
328
+ },
329
+ "rotation": {
330
+ "value": 0,
331
+ "keyframes": []
332
+ }
333
+ },
334
+ "item-effect": {
335
+ "id": "item-effect",
336
+ "type": "effect",
337
+ "effectType": "blur",
338
+ "intensity": 1,
339
+ "startTicks": 288000,
340
+ "durationTicks": 144000,
341
+ "isDraggingInTimeline": false
342
+ },
343
+ "item-filter": {
344
+ "id": "item-filter",
345
+ "type": "filter",
346
+ "filterType": "absolute-red",
347
+ "intensity": 1,
348
+ "startTicks": 480000,
349
+ "durationTicks": 288000,
350
+ "isDraggingInTimeline": false,
351
+ "params": {
352
+ "blend": 0.86
353
+ }
354
+ }
355
+ },
356
+ "transitions": {},
357
+ "globalBackground": {
358
+ "type": "color",
359
+ "color": "#111827",
360
+ "gradient": "linear-gradient(135deg, #111827 0%, #1f2937 100%)"
361
+ }
362
+ }