@birdapi/velinstyle 1.2.2 → 1.3.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 (109) hide show
  1. package/README.de.md +18 -4
  2. package/README.md +42 -7
  3. package/cli/cli-manifest.json +441 -174
  4. package/cli/docgen/extract-cli.js +2 -1
  5. package/cli/docs-generate.js +9 -0
  6. package/cli/experience.js +173 -0
  7. package/cli/index.js +1294 -417
  8. package/cli/motion.js +738 -0
  9. package/cli/production/extract.js +46 -6
  10. package/cli/production/report.js +104 -14
  11. package/cli/production/run.js +44 -1
  12. package/cli/security.js +190 -0
  13. package/cli/skills.js +53 -10
  14. package/cli/transparency.js +140 -41
  15. package/cli/workflow.js +32 -17
  16. package/components/velin-theme-toggle.js +15 -1
  17. package/core/a11y/component-contracts.json +391 -274
  18. package/core/attributes/registry.js +1 -1
  19. package/core/motion/analyze.js +38 -0
  20. package/core/motion/blueprint.js +51 -0
  21. package/core/motion/composer.js +114 -0
  22. package/core/motion/data/registry.json +352 -0
  23. package/core/motion/effects.js +17 -1
  24. package/core/motion/index.js +112 -9
  25. package/core/motion/optimize.js +44 -0
  26. package/core/motion/policy.js +77 -0
  27. package/core/motion/registry.js +131 -0
  28. package/core/motion/review.js +59 -0
  29. package/core/motion/scan.js +150 -0
  30. package/core/motion/timeline.js +68 -0
  31. package/core/motion/transitions.js +49 -0
  32. package/core/motion/triggers.js +168 -0
  33. package/core/security/checks/fs.js +92 -0
  34. package/core/security/detect.js +35 -0
  35. package/core/security/engine.js +116 -0
  36. package/core/security/index.js +18 -0
  37. package/core/security/registry.js +85 -0
  38. package/core/security/report/report.js +113 -0
  39. package/core/security/rules/ci/index.js +146 -0
  40. package/core/security/rules/consumer/index.js +174 -0
  41. package/core/security/rules/deps/index.js +182 -0
  42. package/core/security/rules/index.js +24 -0
  43. package/core/security/rules/publish/index.js +230 -0
  44. package/core/security/rules/repo/index.js +143 -0
  45. package/core/security/rules/secrets/index.js +133 -0
  46. package/core/security/score/dependency-health.js +53 -0
  47. package/core/security/score/release-health.js +66 -0
  48. package/core/security/score/score.js +102 -0
  49. package/core/security/timeline/timeline.js +76 -0
  50. package/dist/chunks/attributes-HK7VIOLA.js +1080 -0
  51. package/dist/chunks/attributes-VRHHVNDO.js +1080 -0
  52. package/dist/chunks/chunk-MYKUI364.js +116 -0
  53. package/dist/chunks/chunk-NEVBPD5T.js +116 -0
  54. package/dist/chunks/runtime-entry.js +1 -1
  55. package/dist/chunks/velin-theme-toggle-J2NHC7IM.js +304 -0
  56. package/dist/llms.txt +2 -2
  57. package/dist/search-index.json +166 -2
  58. package/dist/velin-agent.json +156 -32
  59. package/dist/velinstyle-components.iife.js +862 -17
  60. package/dist/velinstyle-components.js +862 -17
  61. package/dist/velinstyle-components.min.js +126 -126
  62. package/dist/velinstyle.css +42 -7
  63. package/dist/velinstyle.min.css +1 -1
  64. package/package.json +158 -143
  65. package/packages/velinstyle-cli-core/package.json +11 -0
  66. package/packages/velinstyle-cli-core/src/config.js +84 -0
  67. package/packages/velinstyle-cli-core/src/contract.js +56 -0
  68. package/packages/velinstyle-cli-core/src/event-bus.js +50 -0
  69. package/packages/velinstyle-cli-core/src/index.js +18 -0
  70. package/packages/velinstyle-cli-core/src/lifecycle.js +33 -0
  71. package/packages/velinstyle-cli-core/src/runner.js +129 -0
  72. package/packages/velinstyle-cli-registry/data/commands.json +1216 -0
  73. package/packages/velinstyle-cli-registry/data/layouts.json +33 -0
  74. package/packages/velinstyle-cli-registry/data/widgets.json +35 -0
  75. package/packages/velinstyle-cli-registry/package.json +13 -0
  76. package/packages/velinstyle-cli-registry/src/index.js +88 -0
  77. package/packages/velinstyle-cli-renderer/package.json +8 -0
  78. package/packages/velinstyle-cli-renderer/src/index.js +286 -0
  79. package/packages/velinstyle-cli-theme/package.json +8 -0
  80. package/packages/velinstyle-cli-theme/src/index.js +84 -0
  81. package/packages/velinstyle-cli-ui/package.json +8 -0
  82. package/packages/velinstyle-cli-ui/src/index.js +34 -0
  83. package/packages/velinstyle-motion/README.md +81 -0
  84. package/packages/velinstyle-motion/package.json +37 -0
  85. package/packages/velinstyle-motion/src/ai/mini-prompt.js +119 -0
  86. package/packages/velinstyle-motion/src/ai/provider.js +59 -0
  87. package/packages/velinstyle-motion/src/ai/providers/pixverse-setup.js +402 -0
  88. package/packages/velinstyle-motion/src/ai/providers/pixverse.js +245 -0
  89. package/packages/velinstyle-motion/src/config.js +257 -0
  90. package/packages/velinstyle-motion/src/export/html-clip.js +141 -0
  91. package/packages/velinstyle-motion/src/index.js +304 -0
  92. package/packages/velinstyle-motion/src/jobs/cache.js +30 -0
  93. package/packages/velinstyle-motion/src/jobs/queue.js +69 -0
  94. package/packages/velinstyle-motion/src/jobs/usage.js +53 -0
  95. package/packages/velinstyle-motion/src/local/effects.js +139 -0
  96. package/packages/velinstyle-motion/src/local/engine.js +96 -0
  97. package/packages/velinstyle-motion/src/providers-catalog.js +44 -0
  98. package/packages/velinstyle-motion/src/registry/presets.js +25 -0
  99. package/packages/velinstyle-motion/src/registry/presets.json +85 -0
  100. package/packages/velinstyle-motion/src/ux/cost-gate.js +37 -0
  101. package/packages/velinstyle-motion/src/ux/pixverse-gate.js +153 -0
  102. package/packages/velinstyle-motion/src/ux/wizard.js +171 -0
  103. package/packages/velinstyle-motion/src/validate-image.js +91 -0
  104. package/packages/velinstyle-skills/catalog.json +1 -1
  105. package/packages/velinstyle-skills/registry.json +1 -142
  106. package/packages/velinstyle-skills/skills/velin-motion-reduced-safe/SKILL.md +1 -1
  107. package/packages/velinstyle-skills/skills/velin-motion-reveal-feedback/SKILL.md +1 -1
  108. package/src/tokens/motion.css +7 -0
  109. package/src/utilities/scroll-animation.css +66 -0
@@ -0,0 +1,1216 @@
1
+ {
2
+ "version": "1.3.0",
3
+ "commands": [
4
+ {
5
+ "id": "init",
6
+ "category": "setup",
7
+ "title": "Init",
8
+ "description": "Create velinstyle.config.js, optional vendor copy, and starter HTML with reveal/sprite defaults",
9
+ "icon": "spark",
10
+ "maturity": "stable",
11
+ "since": "1.2.0",
12
+ "aliases": [],
13
+ "tags": [
14
+ "setup"
15
+ ],
16
+ "supports": [
17
+ "standard",
18
+ "compact",
19
+ "dashboard",
20
+ "verbose",
21
+ "debug",
22
+ "json",
23
+ "markdown"
24
+ ],
25
+ "widgets": [
26
+ "stats"
27
+ ],
28
+ "layout": "standard",
29
+ "flags": [],
30
+ "examples": [
31
+ "velinstyle init"
32
+ ],
33
+ "subcommands": []
34
+ },
35
+ {
36
+ "id": "build",
37
+ "category": "build",
38
+ "title": "Build",
39
+ "description": "Build custom CSS with selected layers from config, or production output with --production",
40
+ "icon": "spark",
41
+ "maturity": "stable",
42
+ "since": "1.2.0",
43
+ "aliases": [],
44
+ "tags": [
45
+ "build"
46
+ ],
47
+ "supports": [
48
+ "standard",
49
+ "compact",
50
+ "dashboard",
51
+ "verbose",
52
+ "debug",
53
+ "json",
54
+ "markdown"
55
+ ],
56
+ "widgets": [
57
+ "stats"
58
+ ],
59
+ "layout": "build",
60
+ "flags": [
61
+ "--output",
62
+ "-o",
63
+ "--out",
64
+ "--minify",
65
+ "--preset",
66
+ "--production",
67
+ "--explain",
68
+ "--watch",
69
+ "--report",
70
+ "--safelist"
71
+ ],
72
+ "examples": [
73
+ "velinstyle build --production --explain -o ./dist/velin-production"
74
+ ],
75
+ "subcommands": []
76
+ },
77
+ {
78
+ "id": "production",
79
+ "category": "build",
80
+ "title": "Production Builder",
81
+ "description": "Content-aware production builder (CSS/JS/themes/icons/fonts/motion + report)",
82
+ "icon": "rocket",
83
+ "maturity": "stable",
84
+ "since": "1.2.0",
85
+ "aliases": [
86
+ "build --production"
87
+ ],
88
+ "tags": [
89
+ "build"
90
+ ],
91
+ "supports": [
92
+ "standard",
93
+ "compact",
94
+ "dashboard",
95
+ "verbose",
96
+ "debug",
97
+ "json",
98
+ "markdown"
99
+ ],
100
+ "widgets": [
101
+ "bundle",
102
+ "progress",
103
+ "stats",
104
+ "savings"
105
+ ],
106
+ "layout": "build",
107
+ "flags": [
108
+ "--out",
109
+ "-o",
110
+ "--explain",
111
+ "--watch",
112
+ "--report",
113
+ "--safelist",
114
+ "--no-js",
115
+ "--no-icons",
116
+ "--no-themes",
117
+ "--no-motion",
118
+ "--no-minify"
119
+ ],
120
+ "examples": [
121
+ "velinstyle production . --explain --report ./report.json"
122
+ ],
123
+ "subcommands": []
124
+ },
125
+ {
126
+ "id": "themes",
127
+ "category": "setup",
128
+ "title": "Themes",
129
+ "description": "List available built-in themes",
130
+ "icon": "spark",
131
+ "maturity": "stable",
132
+ "since": "1.2.0",
133
+ "aliases": [],
134
+ "tags": [
135
+ "setup"
136
+ ],
137
+ "supports": [
138
+ "standard",
139
+ "compact",
140
+ "dashboard",
141
+ "verbose",
142
+ "debug",
143
+ "json",
144
+ "markdown"
145
+ ],
146
+ "widgets": [
147
+ "stats"
148
+ ],
149
+ "layout": "standard",
150
+ "flags": [],
151
+ "examples": [
152
+ "velinstyle themes"
153
+ ],
154
+ "subcommands": []
155
+ },
156
+ {
157
+ "id": "add",
158
+ "category": "setup",
159
+ "title": "Add",
160
+ "description": "Add a single component CSS file to your project",
161
+ "icon": "spark",
162
+ "maturity": "stable",
163
+ "since": "1.2.0",
164
+ "aliases": [],
165
+ "tags": [
166
+ "setup"
167
+ ],
168
+ "supports": [
169
+ "standard",
170
+ "compact",
171
+ "dashboard",
172
+ "verbose",
173
+ "debug",
174
+ "json",
175
+ "markdown"
176
+ ],
177
+ "widgets": [
178
+ "stats"
179
+ ],
180
+ "layout": "standard",
181
+ "flags": [],
182
+ "examples": [
183
+ "velinstyle add button"
184
+ ],
185
+ "subcommands": []
186
+ },
187
+ {
188
+ "id": "icons",
189
+ "category": "setup",
190
+ "title": "Icons",
191
+ "description": "Manage icon providers (list, add, remove, build)",
192
+ "icon": "spark",
193
+ "maturity": "stable",
194
+ "since": "1.2.0",
195
+ "aliases": [],
196
+ "tags": [
197
+ "setup"
198
+ ],
199
+ "supports": [
200
+ "standard",
201
+ "compact",
202
+ "dashboard",
203
+ "verbose",
204
+ "debug",
205
+ "json",
206
+ "markdown"
207
+ ],
208
+ "widgets": [
209
+ "stats"
210
+ ],
211
+ "layout": "standard",
212
+ "flags": [
213
+ "--icons",
214
+ "--variant"
215
+ ],
216
+ "examples": [
217
+ "velinstyle icons add lucide --icons menu,search"
218
+ ],
219
+ "subcommands": [
220
+ "list",
221
+ "add",
222
+ "remove",
223
+ "build"
224
+ ]
225
+ },
226
+ {
227
+ "id": "scan",
228
+ "category": "audit",
229
+ "title": "Scan",
230
+ "description": "Security, accessibility, CSS, and PII scanner (directory or single file)",
231
+ "icon": "spark",
232
+ "maturity": "stable",
233
+ "since": "1.2.0",
234
+ "aliases": [],
235
+ "tags": [
236
+ "audit"
237
+ ],
238
+ "supports": [
239
+ "standard",
240
+ "compact",
241
+ "dashboard",
242
+ "verbose",
243
+ "debug",
244
+ "json",
245
+ "markdown"
246
+ ],
247
+ "widgets": [
248
+ "stats"
249
+ ],
250
+ "layout": "audit",
251
+ "flags": [
252
+ "--format",
253
+ "--severity",
254
+ "--only",
255
+ "--fix",
256
+ "--fix-dry-run",
257
+ "--fix-lang"
258
+ ],
259
+ "examples": [
260
+ "velinstyle scan index.html"
261
+ ],
262
+ "subcommands": []
263
+ },
264
+ {
265
+ "id": "prefix",
266
+ "category": "setup",
267
+ "title": "Prefix",
268
+ "description": "Add missing velin- prefix to classes (dry-run; use --write)",
269
+ "icon": "spark",
270
+ "maturity": "stable",
271
+ "since": "1.2.0",
272
+ "aliases": [],
273
+ "tags": [
274
+ "setup"
275
+ ],
276
+ "supports": [
277
+ "standard",
278
+ "compact",
279
+ "dashboard",
280
+ "verbose",
281
+ "debug",
282
+ "json",
283
+ "markdown"
284
+ ],
285
+ "widgets": [
286
+ "stats"
287
+ ],
288
+ "layout": "standard",
289
+ "flags": [
290
+ "--write",
291
+ "--map",
292
+ "--bootstrap-display"
293
+ ],
294
+ "examples": [
295
+ "velinstyle prefix src/ --write"
296
+ ],
297
+ "subcommands": []
298
+ },
299
+ {
300
+ "id": "blueprint",
301
+ "category": "setup",
302
+ "title": "Blueprint",
303
+ "description": "Print HTML blueprint snippets; --strict fails on classes missing from CSS",
304
+ "icon": "spark",
305
+ "maturity": "stable",
306
+ "since": "1.2.0",
307
+ "aliases": [],
308
+ "tags": [
309
+ "setup"
310
+ ],
311
+ "supports": [
312
+ "standard",
313
+ "compact",
314
+ "dashboard",
315
+ "verbose",
316
+ "debug",
317
+ "json",
318
+ "markdown"
319
+ ],
320
+ "widgets": [
321
+ "stats"
322
+ ],
323
+ "layout": "standard",
324
+ "flags": [
325
+ "--output",
326
+ "-o",
327
+ "--strict"
328
+ ],
329
+ "examples": [
330
+ "velinstyle blueprint modal -o snippet.html --strict"
331
+ ],
332
+ "subcommands": [
333
+ "list"
334
+ ]
335
+ },
336
+ {
337
+ "id": "create",
338
+ "category": "setup",
339
+ "title": "Create",
340
+ "description": "Scaffold a runnable project: landing | dashboard | docs | auth",
341
+ "icon": "spark",
342
+ "maturity": "stable",
343
+ "since": "1.2.0",
344
+ "aliases": [],
345
+ "tags": [
346
+ "setup"
347
+ ],
348
+ "supports": [
349
+ "standard",
350
+ "compact",
351
+ "dashboard",
352
+ "verbose",
353
+ "debug",
354
+ "json",
355
+ "markdown"
356
+ ],
357
+ "widgets": [
358
+ "stats"
359
+ ],
360
+ "layout": "wizard",
361
+ "flags": [
362
+ "--theme",
363
+ "--no-copy"
364
+ ],
365
+ "examples": [
366
+ "velinstyle create landing ./my-site --theme earth"
367
+ ],
368
+ "subcommands": [
369
+ "landing",
370
+ "dashboard",
371
+ "docs",
372
+ "auth"
373
+ ]
374
+ },
375
+ {
376
+ "id": "serve",
377
+ "category": "setup",
378
+ "title": "Serve",
379
+ "description": "Serve a directory over HTTP (default port 4173)",
380
+ "icon": "spark",
381
+ "maturity": "stable",
382
+ "since": "1.2.0",
383
+ "aliases": [],
384
+ "tags": [
385
+ "setup"
386
+ ],
387
+ "supports": [
388
+ "standard",
389
+ "compact",
390
+ "dashboard",
391
+ "verbose",
392
+ "debug",
393
+ "json",
394
+ "markdown"
395
+ ],
396
+ "widgets": [
397
+ "stats"
398
+ ],
399
+ "layout": "standard",
400
+ "flags": [
401
+ "--port"
402
+ ],
403
+ "examples": [
404
+ "velinstyle serve . --port 4173"
405
+ ],
406
+ "subcommands": []
407
+ },
408
+ {
409
+ "id": "doctor",
410
+ "category": "health",
411
+ "title": "Doctor",
412
+ "description": "Check dist assets, themes, config, icons, and Windows ESM import hints",
413
+ "icon": "health",
414
+ "maturity": "stable",
415
+ "since": "1.2.0",
416
+ "aliases": [],
417
+ "tags": [
418
+ "health"
419
+ ],
420
+ "supports": [
421
+ "standard",
422
+ "compact",
423
+ "dashboard",
424
+ "verbose",
425
+ "debug",
426
+ "json",
427
+ "markdown"
428
+ ],
429
+ "widgets": [
430
+ "health",
431
+ "stats"
432
+ ],
433
+ "layout": "doctor",
434
+ "flags": [],
435
+ "examples": [
436
+ "velinstyle doctor"
437
+ ],
438
+ "subcommands": []
439
+ },
440
+ {
441
+ "id": "check",
442
+ "category": "health",
443
+ "title": "Check",
444
+ "description": "Aggregate gate: doctor + blueprint --strict + scan + review (alias: validate)",
445
+ "icon": "spark",
446
+ "maturity": "stable",
447
+ "since": "1.2.0",
448
+ "aliases": [],
449
+ "tags": [
450
+ "health"
451
+ ],
452
+ "supports": [
453
+ "standard",
454
+ "compact",
455
+ "dashboard",
456
+ "verbose",
457
+ "debug",
458
+ "json",
459
+ "markdown"
460
+ ],
461
+ "widgets": [
462
+ "stats"
463
+ ],
464
+ "layout": "dashboard",
465
+ "flags": [
466
+ "--json",
467
+ "--sarif",
468
+ "--profile"
469
+ ],
470
+ "examples": [
471
+ "velinstyle check . --profile marketing"
472
+ ],
473
+ "subcommands": []
474
+ },
475
+ {
476
+ "id": "scaffold",
477
+ "category": "ai",
478
+ "title": "Scaffold",
479
+ "description": "Plan-first page HTML, recipe fragment, or Atelier Library compose (--atelier, beta)",
480
+ "icon": "spark",
481
+ "maturity": "beta",
482
+ "since": "1.2.0",
483
+ "aliases": [],
484
+ "tags": [
485
+ "ai"
486
+ ],
487
+ "supports": [
488
+ "standard",
489
+ "compact",
490
+ "dashboard",
491
+ "verbose",
492
+ "debug",
493
+ "json",
494
+ "markdown"
495
+ ],
496
+ "widgets": [
497
+ "stats"
498
+ ],
499
+ "layout": "wizard",
500
+ "flags": [
501
+ "--output",
502
+ "-o",
503
+ "--json",
504
+ "--atelier",
505
+ "--from",
506
+ "--base-url"
507
+ ],
508
+ "examples": [
509
+ "velinstyle scaffold --atelier 04,07 -o compose.html --from ./atelier/library"
510
+ ],
511
+ "subcommands": [
512
+ "list-intents"
513
+ ]
514
+ },
515
+ {
516
+ "id": "plan",
517
+ "category": "ai",
518
+ "title": "Plan",
519
+ "description": "Emit page plan JSON from a prompt or --atelier Library ids (beta)",
520
+ "icon": "spark",
521
+ "maturity": "beta",
522
+ "since": "1.2.0",
523
+ "aliases": [],
524
+ "tags": [
525
+ "ai"
526
+ ],
527
+ "supports": [
528
+ "standard",
529
+ "compact",
530
+ "dashboard",
531
+ "verbose",
532
+ "debug",
533
+ "json",
534
+ "markdown"
535
+ ],
536
+ "widgets": [
537
+ "stats"
538
+ ],
539
+ "layout": "wizard",
540
+ "flags": [
541
+ "--output",
542
+ "-o",
543
+ "--json",
544
+ "--atelier"
545
+ ],
546
+ "examples": [
547
+ "velinstyle plan --atelier 04,07"
548
+ ],
549
+ "subcommands": []
550
+ },
551
+ {
552
+ "id": "atelier",
553
+ "category": "build",
554
+ "title": "Atelier",
555
+ "description": "Pull curated Atelier Library showcase by number/id; blade/vue/react = wrappers only",
556
+ "icon": "spark",
557
+ "maturity": "beta",
558
+ "since": "1.2.0",
559
+ "aliases": [],
560
+ "tags": [
561
+ "build"
562
+ ],
563
+ "supports": [
564
+ "standard",
565
+ "compact",
566
+ "dashboard",
567
+ "verbose",
568
+ "debug",
569
+ "json",
570
+ "markdown"
571
+ ],
572
+ "widgets": [
573
+ "stats"
574
+ ],
575
+ "layout": "standard",
576
+ "flags": [
577
+ "--output",
578
+ "-o",
579
+ "--format",
580
+ "--from",
581
+ "--base-url",
582
+ "--rewrite-vendor"
583
+ ],
584
+ "examples": [
585
+ "velinstyle atelier 36 -o ./velin-atelier/36-calendar --format html"
586
+ ],
587
+ "subcommands": [
588
+ "list"
589
+ ]
590
+ },
591
+ {
592
+ "id": "review",
593
+ "category": "audit",
594
+ "title": "Review",
595
+ "description": "Design / a11y / SEO / performance / conversion review gate",
596
+ "icon": "spark",
597
+ "maturity": "stable",
598
+ "since": "1.2.0",
599
+ "aliases": [],
600
+ "tags": [
601
+ "audit"
602
+ ],
603
+ "supports": [
604
+ "standard",
605
+ "compact",
606
+ "dashboard",
607
+ "verbose",
608
+ "debug",
609
+ "json",
610
+ "markdown"
611
+ ],
612
+ "widgets": [
613
+ "score",
614
+ "stats"
615
+ ],
616
+ "layout": "review",
617
+ "flags": [
618
+ "--json",
619
+ "--prompt",
620
+ "--profile"
621
+ ],
622
+ "examples": [
623
+ "velinstyle review out.html --profile marketing"
624
+ ],
625
+ "subcommands": []
626
+ },
627
+ {
628
+ "id": "wc",
629
+ "category": "dev",
630
+ "title": "Wc",
631
+ "description": "Inspect Web Component APIs from source",
632
+ "icon": "spark",
633
+ "maturity": "stable",
634
+ "since": "1.2.0",
635
+ "aliases": [],
636
+ "tags": [
637
+ "dev"
638
+ ],
639
+ "supports": [
640
+ "standard",
641
+ "compact",
642
+ "dashboard",
643
+ "verbose",
644
+ "debug",
645
+ "json",
646
+ "markdown"
647
+ ],
648
+ "widgets": [
649
+ "stats"
650
+ ],
651
+ "layout": "standard",
652
+ "flags": [],
653
+ "examples": [
654
+ "velinstyle wc api velin-toast"
655
+ ],
656
+ "subcommands": [
657
+ "api"
658
+ ]
659
+ },
660
+ {
661
+ "id": "layout",
662
+ "category": "audit",
663
+ "title": "Layout",
664
+ "description": "Responsive layout audit (flex, grid, viewport)",
665
+ "icon": "spark",
666
+ "maturity": "stable",
667
+ "since": "1.2.0",
668
+ "aliases": [],
669
+ "tags": [
670
+ "audit"
671
+ ],
672
+ "supports": [
673
+ "standard",
674
+ "compact",
675
+ "dashboard",
676
+ "verbose",
677
+ "debug",
678
+ "json",
679
+ "markdown"
680
+ ],
681
+ "widgets": [
682
+ "stats"
683
+ ],
684
+ "layout": "audit",
685
+ "flags": [
686
+ "--json",
687
+ "--write",
688
+ "--dry-run"
689
+ ],
690
+ "examples": [
691
+ "velinstyle layout suggest index.html"
692
+ ],
693
+ "subcommands": [
694
+ "audit",
695
+ "suggest",
696
+ "fix"
697
+ ]
698
+ },
699
+ {
700
+ "id": "perf",
701
+ "category": "audit",
702
+ "title": "Perf",
703
+ "description": "Performance audit for images and scripts (directory or .html file)",
704
+ "icon": "spark",
705
+ "maturity": "stable",
706
+ "since": "1.2.0",
707
+ "aliases": [],
708
+ "tags": [
709
+ "audit"
710
+ ],
711
+ "supports": [
712
+ "standard",
713
+ "compact",
714
+ "dashboard",
715
+ "verbose",
716
+ "debug",
717
+ "json",
718
+ "markdown"
719
+ ],
720
+ "widgets": [
721
+ "stats"
722
+ ],
723
+ "layout": "audit",
724
+ "flags": [
725
+ "--json",
726
+ "--write",
727
+ "--dry-run"
728
+ ],
729
+ "examples": [
730
+ "velinstyle perf audit index.html"
731
+ ],
732
+ "subcommands": [
733
+ "audit",
734
+ "suggest",
735
+ "fix"
736
+ ]
737
+ },
738
+ {
739
+ "id": "tokens",
740
+ "category": "dev",
741
+ "title": "Tokens",
742
+ "description": "Build or validate design tokens JSON",
743
+ "icon": "spark",
744
+ "maturity": "stable",
745
+ "since": "1.2.0",
746
+ "aliases": [],
747
+ "tags": [
748
+ "dev"
749
+ ],
750
+ "supports": [
751
+ "standard",
752
+ "compact",
753
+ "dashboard",
754
+ "verbose",
755
+ "debug",
756
+ "json",
757
+ "markdown"
758
+ ],
759
+ "widgets": [
760
+ "stats"
761
+ ],
762
+ "layout": "standard",
763
+ "flags": [
764
+ "--input",
765
+ "--output",
766
+ "-o"
767
+ ],
768
+ "examples": [
769
+ "velinstyle tokens validate --input examples/tokens.full.json"
770
+ ],
771
+ "subcommands": [
772
+ "build",
773
+ "validate"
774
+ ]
775
+ },
776
+ {
777
+ "id": "docs",
778
+ "category": "dev",
779
+ "title": "Docs",
780
+ "description": "Generate developer reference Markdown (alias: documentation)",
781
+ "icon": "spark",
782
+ "maturity": "stable",
783
+ "since": "1.2.0",
784
+ "aliases": [],
785
+ "tags": [
786
+ "dev"
787
+ ],
788
+ "supports": [
789
+ "standard",
790
+ "compact",
791
+ "dashboard",
792
+ "verbose",
793
+ "debug",
794
+ "json",
795
+ "markdown"
796
+ ],
797
+ "widgets": [
798
+ "stats"
799
+ ],
800
+ "layout": "standard",
801
+ "flags": [
802
+ "--scope",
803
+ "--out"
804
+ ],
805
+ "examples": [
806
+ "velinstyle docs generate --scope all"
807
+ ],
808
+ "subcommands": [
809
+ "generate"
810
+ ]
811
+ },
812
+ {
813
+ "id": "meta",
814
+ "category": "dev",
815
+ "title": "Meta",
816
+ "description": "Build Velin-Meta agent bundle; page --write merges curated goals/intent",
817
+ "icon": "spark",
818
+ "maturity": "beta",
819
+ "since": "1.2.0",
820
+ "aliases": [],
821
+ "tags": [
822
+ "dev"
823
+ ],
824
+ "supports": [
825
+ "standard",
826
+ "compact",
827
+ "dashboard",
828
+ "verbose",
829
+ "debug",
830
+ "json",
831
+ "markdown"
832
+ ],
833
+ "widgets": [
834
+ "stats"
835
+ ],
836
+ "layout": "standard",
837
+ "flags": [
838
+ "--out",
839
+ "--llms-out",
840
+ "--base-url",
841
+ "--no-llms",
842
+ "--write"
843
+ ],
844
+ "examples": [
845
+ "velinstyle meta page index.html --write"
846
+ ],
847
+ "subcommands": [
848
+ "page"
849
+ ]
850
+ },
851
+ {
852
+ "id": "search",
853
+ "category": "dev",
854
+ "title": "Search",
855
+ "description": "Build JSON search index for VelinSearch",
856
+ "icon": "spark",
857
+ "maturity": "stable",
858
+ "since": "1.2.0",
859
+ "aliases": [],
860
+ "tags": [
861
+ "dev"
862
+ ],
863
+ "supports": [
864
+ "standard",
865
+ "compact",
866
+ "dashboard",
867
+ "verbose",
868
+ "debug",
869
+ "json",
870
+ "markdown"
871
+ ],
872
+ "widgets": [
873
+ "stats"
874
+ ],
875
+ "layout": "standard",
876
+ "flags": [
877
+ "--out",
878
+ "--extra-html"
879
+ ],
880
+ "examples": [
881
+ "velinstyle search index --out dist/search-index.json"
882
+ ],
883
+ "subcommands": [
884
+ "index"
885
+ ]
886
+ },
887
+ {
888
+ "id": "skills",
889
+ "category": "ai",
890
+ "title": "Skills",
891
+ "description": "Registry-first AI skill catalog and install runner",
892
+ "icon": "spark",
893
+ "maturity": "beta",
894
+ "since": "1.2.0",
895
+ "aliases": [],
896
+ "tags": [
897
+ "ai"
898
+ ],
899
+ "supports": [
900
+ "standard",
901
+ "compact",
902
+ "dashboard",
903
+ "verbose",
904
+ "debug",
905
+ "json",
906
+ "markdown"
907
+ ],
908
+ "widgets": [
909
+ "stats"
910
+ ],
911
+ "layout": "standard",
912
+ "flags": [
913
+ "--capability",
914
+ "--status",
915
+ "--priority",
916
+ "--origin",
917
+ "--category",
918
+ "--target",
919
+ "--no-deps",
920
+ "--json",
921
+ "--human"
922
+ ],
923
+ "examples": [
924
+ "velinstyle skills show scaffold.landing --human"
925
+ ],
926
+ "subcommands": [
927
+ "list",
928
+ "show",
929
+ "install",
930
+ "run",
931
+ "validate",
932
+ "doctor",
933
+ "packs",
934
+ "bundles",
935
+ "templates",
936
+ "projects",
937
+ "graphs"
938
+ ]
939
+ },
940
+ {
941
+ "id": "workflow",
942
+ "category": "ai",
943
+ "title": "Workflow",
944
+ "description": "Resolve workflow graph or project workflow steps",
945
+ "icon": "spark",
946
+ "maturity": "beta",
947
+ "since": "1.2.0",
948
+ "aliases": [],
949
+ "tags": [
950
+ "ai"
951
+ ],
952
+ "supports": [
953
+ "standard",
954
+ "compact",
955
+ "dashboard",
956
+ "verbose",
957
+ "debug",
958
+ "json",
959
+ "markdown"
960
+ ],
961
+ "widgets": [
962
+ "stats"
963
+ ],
964
+ "layout": "standard",
965
+ "flags": [
966
+ "--json",
967
+ "--dry-run",
968
+ "--step"
969
+ ],
970
+ "examples": [
971
+ "velinstyle workflow landingpage --json"
972
+ ],
973
+ "subcommands": []
974
+ },
975
+ {
976
+ "id": "dashboard",
977
+ "category": "health",
978
+ "title": "Project Dashboard",
979
+ "description": "Aggregate Production, Review, Accessibility, Transparency, Performance, Security",
980
+ "icon": "dashboard",
981
+ "maturity": "beta",
982
+ "since": "1.2.5",
983
+ "aliases": [],
984
+ "tags": [
985
+ "health",
986
+ "dashboard"
987
+ ],
988
+ "supports": [
989
+ "dashboard",
990
+ "standard",
991
+ "json",
992
+ "markdown"
993
+ ],
994
+ "widgets": [
995
+ "score",
996
+ "stats",
997
+ "bundle",
998
+ "health"
999
+ ],
1000
+ "layout": "dashboard",
1001
+ "flags": [],
1002
+ "examples": [
1003
+ "velinstyle dashboard"
1004
+ ],
1005
+ "subcommands": []
1006
+ },
1007
+ {
1008
+ "id": "replay",
1009
+ "category": "dev",
1010
+ "title": "Replay Recording",
1011
+ "description": "Replay a Velin Experience record.json through the same renderer",
1012
+ "icon": "replay",
1013
+ "maturity": "beta",
1014
+ "since": "1.2.5",
1015
+ "aliases": [],
1016
+ "tags": [
1017
+ "recording"
1018
+ ],
1019
+ "supports": [
1020
+ "standard",
1021
+ "json",
1022
+ "markdown"
1023
+ ],
1024
+ "widgets": [],
1025
+ "layout": "standard",
1026
+ "flags": [],
1027
+ "examples": [
1028
+ "velinstyle replay record.json"
1029
+ ],
1030
+ "subcommands": []
1031
+ },
1032
+ {
1033
+ "id": "transparency",
1034
+ "category": "audit",
1035
+ "title": "Transparency",
1036
+ "description": "Transparency Framework doctor, validate, report, export, migrate",
1037
+ "icon": "shield",
1038
+ "maturity": "beta",
1039
+ "since": "1.2.1",
1040
+ "aliases": [],
1041
+ "tags": [
1042
+ "transparency",
1043
+ "trust"
1044
+ ],
1045
+ "supports": [
1046
+ "standard",
1047
+ "json",
1048
+ "markdown"
1049
+ ],
1050
+ "widgets": [
1051
+ "score",
1052
+ "stats"
1053
+ ],
1054
+ "layout": "audit",
1055
+ "flags": [
1056
+ "--policy",
1057
+ "--json"
1058
+ ],
1059
+ "examples": [
1060
+ "velinstyle transparency doctor ."
1061
+ ],
1062
+ "subcommands": [
1063
+ "doctor",
1064
+ "validate",
1065
+ "report",
1066
+ "export",
1067
+ "migrate"
1068
+ ]
1069
+ },
1070
+ {
1071
+ "id": "motion",
1072
+ "category": "design",
1073
+ "title": "Motion",
1074
+ "description": "Velin Motion — page registry + clip pipeline (create, atelier, AI providers)",
1075
+ "icon": "sparkles",
1076
+ "maturity": "beta",
1077
+ "since": "1.2.6",
1078
+ "aliases": [],
1079
+ "tags": [
1080
+ "motion",
1081
+ "animation",
1082
+ "experience",
1083
+ "clips"
1084
+ ],
1085
+ "supports": [
1086
+ "standard",
1087
+ "json",
1088
+ "markdown"
1089
+ ],
1090
+ "widgets": [
1091
+ "hero",
1092
+ "stats",
1093
+ "table",
1094
+ "score"
1095
+ ],
1096
+ "layout": "audit",
1097
+ "flags": [
1098
+ "--json",
1099
+ "--write",
1100
+ "--out",
1101
+ "--output",
1102
+ "-o",
1103
+ "--policy",
1104
+ "--preset",
1105
+ "--ai",
1106
+ "--yes",
1107
+ "-y",
1108
+ "--provider",
1109
+ "--model",
1110
+ "--quality",
1111
+ "--duration",
1112
+ "--style",
1113
+ "--prompt",
1114
+ "--count",
1115
+ "--dry-run",
1116
+ "--clips"
1117
+ ],
1118
+ "examples": [
1119
+ "velinstyle motion create atelier.webp",
1120
+ "velinstyle motion create hero.png --preset cinematic --yes",
1121
+ "velinstyle motion providers",
1122
+ "velinstyle motion setup pixverse",
1123
+ "velinstyle motion atelier ./assets --count 10 --yes",
1124
+ "velinstyle motion presets --clips",
1125
+ "velinstyle motion doctor .",
1126
+ "velinstyle motion blueprint landing -o motion.html"
1127
+ ],
1128
+ "subcommands": [
1129
+ "list",
1130
+ "presets",
1131
+ "create",
1132
+ "atelier",
1133
+ "transition",
1134
+ "sequence",
1135
+ "export",
1136
+ "usage",
1137
+ "providers",
1138
+ "setup",
1139
+ "zoom",
1140
+ "pan",
1141
+ "rotate",
1142
+ "particles",
1143
+ "intro",
1144
+ "outro",
1145
+ "doctor",
1146
+ "scan",
1147
+ "policy",
1148
+ "demo",
1149
+ "analyze",
1150
+ "review",
1151
+ "report",
1152
+ "optimize",
1153
+ "blueprint"
1154
+ ],
1155
+ "subcommandDescriptions": {
1156
+ "list": "Catalog summary of all Motion Registry namespaces",
1157
+ "presets": "List page motion presets; --clips for clip presets",
1158
+ "create": "Image → clip (interactive wizard or flags)",
1159
+ "atelier": "Batch animate atelier / folder images",
1160
+ "transition": "Two-frame transition (local or AI)",
1161
+ "sequence": "Multi-keyframe sequence (AI multiTransition)",
1162
+ "export": "Hints for re-exporting clip outputs",
1163
+ "usage": "Motion usage / AI credit hints",
1164
+ "providers": "List local + AI providers (PixVerse)",
1165
+ "setup": "Provider setup (pixverse) — affiliate onboarding + API key",
1166
+ "zoom": "Local zoom clip shortcut",
1167
+ "pan": "Local pan clip shortcut",
1168
+ "rotate": "Local rotate clip shortcut",
1169
+ "particles": "Local particle reveal shortcut",
1170
+ "intro": "Local intro clip shortcut",
1171
+ "outro": "Local outro clip shortcut",
1172
+ "doctor": "Find motion a11y/perf issues in HTML",
1173
+ "scan": "Inventory motion usage (presets, triggers, attrs)",
1174
+ "policy": "List or validate motion policies (safe, reduced, …)",
1175
+ "demo": "Open / print path to Motion Gallery playground",
1176
+ "analyze": "Motion metrics: count, duration, reduced-motion, layout risk",
1177
+ "review": "Motion review gate scores for check/CI",
1178
+ "report": "Write motion doctor+analyze report files",
1179
+ "optimize": "Cap long durations / suggest safer motion (--write)",
1180
+ "blueprint": "Emit atelier-fit motion HTML for landing|dashboard|…"
1181
+ }
1182
+ },
1183
+ {
1184
+ "id": "security",
1185
+ "category": "audit",
1186
+ "title": "Security",
1187
+ "description": "Velin Security Suite — Security Engine: doctor, scan, audit, publish, ci, deps, secrets, report",
1188
+ "icon": "shield",
1189
+ "maturity": "beta",
1190
+ "since": "1.2.3",
1191
+ "aliases": [],
1192
+ "tags": ["security", "supply-chain", "experience"],
1193
+ "supports": ["standard", "json", "markdown"],
1194
+ "widgets": ["hero", "stats", "table", "score"],
1195
+ "layout": "audit",
1196
+ "flags": ["--json", "--strict", "--repo", "--consumer", "--ci", "--publish", "--deps", "--secrets", "--out", "--output", "-o"],
1197
+ "examples": [
1198
+ "velinstyle security doctor .",
1199
+ "velinstyle security deps .",
1200
+ "velinstyle security publish",
1201
+ "velinstyle security report --out ./.velin/security/report"
1202
+ ],
1203
+ "subcommands": ["doctor", "scan", "audit", "publish", "ci", "deps", "secrets", "report"],
1204
+ "subcommandDescriptions": {
1205
+ "doctor": "Auto-detect repo/consumer and run Security Engine",
1206
+ "scan": "Path scan (consumer HTML + secrets heuristics)",
1207
+ "audit": "Full aggregate scores across categories",
1208
+ "publish": "Release Health / READY FOR PUBLISH gate",
1209
+ "ci": "GitHub Actions / workflow rules only",
1210
+ "deps": "Dependency Health only",
1211
+ "secrets": "Secret-scan rules only",
1212
+ "report": "Write JSON/Markdown report + update timeline"
1213
+ }
1214
+ }
1215
+ ]
1216
+ }