@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.
- package/README.de.md +18 -4
- package/README.md +42 -7
- package/cli/cli-manifest.json +441 -174
- package/cli/docgen/extract-cli.js +2 -1
- package/cli/docs-generate.js +9 -0
- package/cli/experience.js +173 -0
- package/cli/index.js +1294 -417
- package/cli/motion.js +738 -0
- package/cli/production/extract.js +46 -6
- package/cli/production/report.js +104 -14
- package/cli/production/run.js +44 -1
- package/cli/security.js +190 -0
- package/cli/skills.js +53 -10
- package/cli/transparency.js +140 -41
- package/cli/workflow.js +32 -17
- package/components/velin-theme-toggle.js +15 -1
- package/core/a11y/component-contracts.json +391 -274
- package/core/attributes/registry.js +1 -1
- package/core/motion/analyze.js +38 -0
- package/core/motion/blueprint.js +51 -0
- package/core/motion/composer.js +114 -0
- package/core/motion/data/registry.json +352 -0
- package/core/motion/effects.js +17 -1
- package/core/motion/index.js +112 -9
- package/core/motion/optimize.js +44 -0
- package/core/motion/policy.js +77 -0
- package/core/motion/registry.js +131 -0
- package/core/motion/review.js +59 -0
- package/core/motion/scan.js +150 -0
- package/core/motion/timeline.js +68 -0
- package/core/motion/transitions.js +49 -0
- package/core/motion/triggers.js +168 -0
- package/core/security/checks/fs.js +92 -0
- package/core/security/detect.js +35 -0
- package/core/security/engine.js +116 -0
- package/core/security/index.js +18 -0
- package/core/security/registry.js +85 -0
- package/core/security/report/report.js +113 -0
- package/core/security/rules/ci/index.js +146 -0
- package/core/security/rules/consumer/index.js +174 -0
- package/core/security/rules/deps/index.js +182 -0
- package/core/security/rules/index.js +24 -0
- package/core/security/rules/publish/index.js +230 -0
- package/core/security/rules/repo/index.js +143 -0
- package/core/security/rules/secrets/index.js +133 -0
- package/core/security/score/dependency-health.js +53 -0
- package/core/security/score/release-health.js +66 -0
- package/core/security/score/score.js +102 -0
- package/core/security/timeline/timeline.js +76 -0
- package/dist/chunks/attributes-HK7VIOLA.js +1080 -0
- package/dist/chunks/attributes-VRHHVNDO.js +1080 -0
- package/dist/chunks/chunk-MYKUI364.js +116 -0
- package/dist/chunks/chunk-NEVBPD5T.js +116 -0
- package/dist/chunks/runtime-entry.js +1 -1
- package/dist/chunks/velin-theme-toggle-J2NHC7IM.js +304 -0
- package/dist/llms.txt +2 -2
- package/dist/search-index.json +166 -2
- package/dist/velin-agent.json +156 -32
- package/dist/velinstyle-components.iife.js +862 -17
- package/dist/velinstyle-components.js +862 -17
- package/dist/velinstyle-components.min.js +126 -126
- package/dist/velinstyle.css +42 -7
- package/dist/velinstyle.min.css +1 -1
- package/package.json +158 -143
- package/packages/velinstyle-cli-core/package.json +11 -0
- package/packages/velinstyle-cli-core/src/config.js +84 -0
- package/packages/velinstyle-cli-core/src/contract.js +56 -0
- package/packages/velinstyle-cli-core/src/event-bus.js +50 -0
- package/packages/velinstyle-cli-core/src/index.js +18 -0
- package/packages/velinstyle-cli-core/src/lifecycle.js +33 -0
- package/packages/velinstyle-cli-core/src/runner.js +129 -0
- package/packages/velinstyle-cli-registry/data/commands.json +1216 -0
- package/packages/velinstyle-cli-registry/data/layouts.json +33 -0
- package/packages/velinstyle-cli-registry/data/widgets.json +35 -0
- package/packages/velinstyle-cli-registry/package.json +13 -0
- package/packages/velinstyle-cli-registry/src/index.js +88 -0
- package/packages/velinstyle-cli-renderer/package.json +8 -0
- package/packages/velinstyle-cli-renderer/src/index.js +286 -0
- package/packages/velinstyle-cli-theme/package.json +8 -0
- package/packages/velinstyle-cli-theme/src/index.js +84 -0
- package/packages/velinstyle-cli-ui/package.json +8 -0
- package/packages/velinstyle-cli-ui/src/index.js +34 -0
- package/packages/velinstyle-motion/README.md +81 -0
- package/packages/velinstyle-motion/package.json +37 -0
- package/packages/velinstyle-motion/src/ai/mini-prompt.js +119 -0
- package/packages/velinstyle-motion/src/ai/provider.js +59 -0
- package/packages/velinstyle-motion/src/ai/providers/pixverse-setup.js +402 -0
- package/packages/velinstyle-motion/src/ai/providers/pixverse.js +245 -0
- package/packages/velinstyle-motion/src/config.js +257 -0
- package/packages/velinstyle-motion/src/export/html-clip.js +141 -0
- package/packages/velinstyle-motion/src/index.js +304 -0
- package/packages/velinstyle-motion/src/jobs/cache.js +30 -0
- package/packages/velinstyle-motion/src/jobs/queue.js +69 -0
- package/packages/velinstyle-motion/src/jobs/usage.js +53 -0
- package/packages/velinstyle-motion/src/local/effects.js +139 -0
- package/packages/velinstyle-motion/src/local/engine.js +96 -0
- package/packages/velinstyle-motion/src/providers-catalog.js +44 -0
- package/packages/velinstyle-motion/src/registry/presets.js +25 -0
- package/packages/velinstyle-motion/src/registry/presets.json +85 -0
- package/packages/velinstyle-motion/src/ux/cost-gate.js +37 -0
- package/packages/velinstyle-motion/src/ux/pixverse-gate.js +153 -0
- package/packages/velinstyle-motion/src/ux/wizard.js +171 -0
- package/packages/velinstyle-motion/src/validate-image.js +91 -0
- package/packages/velinstyle-skills/catalog.json +1 -1
- package/packages/velinstyle-skills/registry.json +1 -142
- package/packages/velinstyle-skills/skills/velin-motion-reduced-safe/SKILL.md +1 -1
- package/packages/velinstyle-skills/skills/velin-motion-reveal-feedback/SKILL.md +1 -1
- package/src/tokens/motion.css +7 -0
- package/src/utilities/scroll-animation.css +66 -0
package/dist/search-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-09T18:36:19.641Z",
|
|
4
4
|
"entries": [
|
|
5
5
|
{
|
|
6
6
|
"id": "examples:samples/a11y-patterns.html",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
{
|
|
58
58
|
"id": "api:commands",
|
|
59
59
|
"title": "CLI commands",
|
|
60
|
-
"excerpt": "VelinStyle CLI v1.
|
|
60
|
+
"excerpt": "VelinStyle CLI v1.3.0. Run velinstyle --help for full usage.",
|
|
61
61
|
"url": "docs/generated/cli/commands.html",
|
|
62
62
|
"category": "api",
|
|
63
63
|
"keywords": [
|
|
@@ -139,6 +139,18 @@
|
|
|
139
139
|
],
|
|
140
140
|
"weight": 1.1
|
|
141
141
|
},
|
|
142
|
+
{
|
|
143
|
+
"id": "api:dashboard",
|
|
144
|
+
"title": "CLI: dashboard",
|
|
145
|
+
"excerpt": "Aggregate Production, Review, Accessibility, Transparency, Performance, Security",
|
|
146
|
+
"url": "docs/generated/cli/commands.html#dashboard",
|
|
147
|
+
"category": "api",
|
|
148
|
+
"keywords": [
|
|
149
|
+
"cli",
|
|
150
|
+
"dashboard"
|
|
151
|
+
],
|
|
152
|
+
"weight": 1.1
|
|
153
|
+
},
|
|
142
154
|
{
|
|
143
155
|
"id": "api:docs",
|
|
144
156
|
"title": "CLI: docs",
|
|
@@ -211,6 +223,18 @@
|
|
|
211
223
|
],
|
|
212
224
|
"weight": 1.1
|
|
213
225
|
},
|
|
226
|
+
{
|
|
227
|
+
"id": "api:motion",
|
|
228
|
+
"title": "CLI: motion",
|
|
229
|
+
"excerpt": "Velin Motion — page registry + clip pipeline (create, atelier, AI providers)",
|
|
230
|
+
"url": "docs/generated/cli/commands.html#motion",
|
|
231
|
+
"category": "api",
|
|
232
|
+
"keywords": [
|
|
233
|
+
"cli",
|
|
234
|
+
"motion"
|
|
235
|
+
],
|
|
236
|
+
"weight": 1.1
|
|
237
|
+
},
|
|
214
238
|
{
|
|
215
239
|
"id": "api:perf",
|
|
216
240
|
"title": "CLI: perf",
|
|
@@ -259,6 +283,18 @@
|
|
|
259
283
|
],
|
|
260
284
|
"weight": 1.1
|
|
261
285
|
},
|
|
286
|
+
{
|
|
287
|
+
"id": "api:replay",
|
|
288
|
+
"title": "CLI: replay",
|
|
289
|
+
"excerpt": "Replay a Velin Experience record.json through the same renderer",
|
|
290
|
+
"url": "docs/generated/cli/commands.html#replay",
|
|
291
|
+
"category": "api",
|
|
292
|
+
"keywords": [
|
|
293
|
+
"cli",
|
|
294
|
+
"replay"
|
|
295
|
+
],
|
|
296
|
+
"weight": 1.1
|
|
297
|
+
},
|
|
262
298
|
{
|
|
263
299
|
"id": "api:review",
|
|
264
300
|
"title": "CLI: review",
|
|
@@ -307,6 +343,18 @@
|
|
|
307
343
|
],
|
|
308
344
|
"weight": 1.1
|
|
309
345
|
},
|
|
346
|
+
{
|
|
347
|
+
"id": "api:security",
|
|
348
|
+
"title": "CLI: security",
|
|
349
|
+
"excerpt": "Velin Security Suite — Security Engine: doctor, scan, audit, publish, ci, deps, secrets, report",
|
|
350
|
+
"url": "docs/generated/cli/commands.html#security",
|
|
351
|
+
"category": "api",
|
|
352
|
+
"keywords": [
|
|
353
|
+
"cli",
|
|
354
|
+
"security"
|
|
355
|
+
],
|
|
356
|
+
"weight": 1.1
|
|
357
|
+
},
|
|
310
358
|
{
|
|
311
359
|
"id": "api:serve",
|
|
312
360
|
"title": "CLI: serve",
|
|
@@ -355,6 +403,18 @@
|
|
|
355
403
|
],
|
|
356
404
|
"weight": 1.1
|
|
357
405
|
},
|
|
406
|
+
{
|
|
407
|
+
"id": "api:transparency",
|
|
408
|
+
"title": "CLI: transparency",
|
|
409
|
+
"excerpt": "Transparency Framework doctor, validate, report, export, migrate",
|
|
410
|
+
"url": "docs/generated/cli/commands.html#transparency",
|
|
411
|
+
"category": "api",
|
|
412
|
+
"keywords": [
|
|
413
|
+
"cli",
|
|
414
|
+
"transparency"
|
|
415
|
+
],
|
|
416
|
+
"weight": 1.1
|
|
417
|
+
},
|
|
358
418
|
{
|
|
359
419
|
"id": "api:wc",
|
|
360
420
|
"title": "CLI: wc",
|
|
@@ -431,6 +491,19 @@
|
|
|
431
491
|
],
|
|
432
492
|
"weight": 0.85
|
|
433
493
|
},
|
|
494
|
+
{
|
|
495
|
+
"id": "examples:samples/motion-gallery.html",
|
|
496
|
+
"title": "Motion Gallery",
|
|
497
|
+
"excerpt": "samples/motion-gallery.html",
|
|
498
|
+
"url": "samples/motion-gallery.html",
|
|
499
|
+
"category": "examples",
|
|
500
|
+
"keywords": [
|
|
501
|
+
"motion-gallery.html",
|
|
502
|
+
"sample",
|
|
503
|
+
"example"
|
|
504
|
+
],
|
|
505
|
+
"weight": 0.85
|
|
506
|
+
},
|
|
434
507
|
{
|
|
435
508
|
"id": "examples:samples/email.html",
|
|
436
509
|
"title": "Q3 Strategy Review — Action Items",
|
|
@@ -1211,6 +1284,19 @@
|
|
|
1211
1284
|
],
|
|
1212
1285
|
"weight": 1.3
|
|
1213
1286
|
},
|
|
1287
|
+
{
|
|
1288
|
+
"id": "docs:velin-delay",
|
|
1289
|
+
"title": "velin-delay",
|
|
1290
|
+
"excerpt": "Velin HTML attribute extension.",
|
|
1291
|
+
"url": "docs/generated/attributes/velin-delay.html",
|
|
1292
|
+
"category": "docs",
|
|
1293
|
+
"keywords": [
|
|
1294
|
+
"velin-delay",
|
|
1295
|
+
"docs",
|
|
1296
|
+
"velin-delay"
|
|
1297
|
+
],
|
|
1298
|
+
"weight": 1.2
|
|
1299
|
+
},
|
|
1214
1300
|
{
|
|
1215
1301
|
"id": "components:velin-dialog",
|
|
1216
1302
|
"title": "velin-dialog",
|
|
@@ -1263,6 +1349,32 @@
|
|
|
1263
1349
|
],
|
|
1264
1350
|
"weight": 1.3
|
|
1265
1351
|
},
|
|
1352
|
+
{
|
|
1353
|
+
"id": "docs:velin-duration",
|
|
1354
|
+
"title": "velin-duration",
|
|
1355
|
+
"excerpt": "Velin HTML attribute extension.",
|
|
1356
|
+
"url": "docs/generated/attributes/velin-duration.html",
|
|
1357
|
+
"category": "docs",
|
|
1358
|
+
"keywords": [
|
|
1359
|
+
"velin-duration",
|
|
1360
|
+
"docs",
|
|
1361
|
+
"velin-duration"
|
|
1362
|
+
],
|
|
1363
|
+
"weight": 1.2
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"id": "docs:velin-ease",
|
|
1367
|
+
"title": "velin-ease",
|
|
1368
|
+
"excerpt": "Velin HTML attribute extension.",
|
|
1369
|
+
"url": "docs/generated/attributes/velin-ease.html",
|
|
1370
|
+
"category": "docs",
|
|
1371
|
+
"keywords": [
|
|
1372
|
+
"velin-ease",
|
|
1373
|
+
"docs",
|
|
1374
|
+
"velin-ease"
|
|
1375
|
+
],
|
|
1376
|
+
"weight": 1.2
|
|
1377
|
+
},
|
|
1266
1378
|
{
|
|
1267
1379
|
"id": "components:velin-email",
|
|
1268
1380
|
"title": "velin-email",
|
|
@@ -1497,6 +1609,32 @@
|
|
|
1497
1609
|
],
|
|
1498
1610
|
"weight": 1.2
|
|
1499
1611
|
},
|
|
1612
|
+
{
|
|
1613
|
+
"id": "docs:velin-motion",
|
|
1614
|
+
"title": "velin-motion",
|
|
1615
|
+
"excerpt": "Velin HTML attribute extension.",
|
|
1616
|
+
"url": "docs/generated/attributes/velin-motion.html",
|
|
1617
|
+
"category": "docs",
|
|
1618
|
+
"keywords": [
|
|
1619
|
+
"velin-motion",
|
|
1620
|
+
"docs",
|
|
1621
|
+
"velin-motion"
|
|
1622
|
+
],
|
|
1623
|
+
"weight": 1.2
|
|
1624
|
+
},
|
|
1625
|
+
{
|
|
1626
|
+
"id": "docs:velin-motion-sequence",
|
|
1627
|
+
"title": "velin-motion-sequence",
|
|
1628
|
+
"excerpt": "Velin HTML attribute extension.",
|
|
1629
|
+
"url": "docs/generated/attributes/velin-motion-sequence.html",
|
|
1630
|
+
"category": "docs",
|
|
1631
|
+
"keywords": [
|
|
1632
|
+
"velin-motion-sequence",
|
|
1633
|
+
"docs",
|
|
1634
|
+
"velin-motion-sequence"
|
|
1635
|
+
],
|
|
1636
|
+
"weight": 1.2
|
|
1637
|
+
},
|
|
1500
1638
|
{
|
|
1501
1639
|
"id": "docs:velin-notify",
|
|
1502
1640
|
"title": "velin-notify",
|
|
@@ -1900,6 +2038,19 @@
|
|
|
1900
2038
|
],
|
|
1901
2039
|
"weight": 1.3
|
|
1902
2040
|
},
|
|
2041
|
+
{
|
|
2042
|
+
"id": "docs:velin-timeline",
|
|
2043
|
+
"title": "velin-timeline",
|
|
2044
|
+
"excerpt": "Velin HTML attribute extension.",
|
|
2045
|
+
"url": "docs/generated/attributes/velin-timeline.html",
|
|
2046
|
+
"category": "docs",
|
|
2047
|
+
"keywords": [
|
|
2048
|
+
"velin-timeline",
|
|
2049
|
+
"docs",
|
|
2050
|
+
"velin-timeline"
|
|
2051
|
+
],
|
|
2052
|
+
"weight": 1.2
|
|
2053
|
+
},
|
|
1903
2054
|
{
|
|
1904
2055
|
"id": "components:velin-toast",
|
|
1905
2056
|
"title": "velin-toast",
|
|
@@ -1952,6 +2103,19 @@
|
|
|
1952
2103
|
],
|
|
1953
2104
|
"weight": 1.2
|
|
1954
2105
|
},
|
|
2106
|
+
{
|
|
2107
|
+
"id": "docs:velin-trigger",
|
|
2108
|
+
"title": "velin-trigger",
|
|
2109
|
+
"excerpt": "Velin HTML attribute extension.",
|
|
2110
|
+
"url": "docs/generated/attributes/velin-trigger.html",
|
|
2111
|
+
"category": "docs",
|
|
2112
|
+
"keywords": [
|
|
2113
|
+
"velin-trigger",
|
|
2114
|
+
"docs",
|
|
2115
|
+
"velin-trigger"
|
|
2116
|
+
],
|
|
2117
|
+
"weight": 1.2
|
|
2118
|
+
},
|
|
1955
2119
|
{
|
|
1956
2120
|
"id": "examples:samples/velin-search.html",
|
|
1957
2121
|
"title": "VelinSearch",
|
package/dist/velin-agent.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"mime": "application/vnd.velinstyle.meta+json",
|
|
4
|
-
"generatedAt": "2026-08-
|
|
4
|
+
"generatedAt": "2026-08-09T18:36:22.648Z",
|
|
5
5
|
"framework": {
|
|
6
6
|
"name": "@birdapi/velinstyle",
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.3.0",
|
|
8
8
|
"homepage": "https://velinstyle.info",
|
|
9
9
|
"repository": "https://github.com/SkyliteDesign/velinstyle.git",
|
|
10
10
|
"tagline": "VelinStyle is a CSS framework with WCAG 2.2 AAA-oriented defaults, native JavaScript runtime, and Web Components.",
|
|
@@ -20,12 +20,20 @@
|
|
|
20
20
|
"./email",
|
|
21
21
|
"./search",
|
|
22
22
|
"./motion",
|
|
23
|
+
"./motion-clip",
|
|
23
24
|
"./attributes",
|
|
24
25
|
"./highlight",
|
|
25
26
|
"./meta",
|
|
26
27
|
"./transparency",
|
|
28
|
+
"./security",
|
|
27
29
|
"./a11y",
|
|
28
|
-
"./skills-registry"
|
|
30
|
+
"./skills-registry",
|
|
31
|
+
"./experience",
|
|
32
|
+
"./cli-core",
|
|
33
|
+
"./cli-registry",
|
|
34
|
+
"./cli-theme",
|
|
35
|
+
"./cli-ui",
|
|
36
|
+
"./cli-renderer"
|
|
29
37
|
],
|
|
30
38
|
"release": {
|
|
31
39
|
"breaking": [
|
|
@@ -4117,7 +4125,10 @@
|
|
|
4117
4125
|
"velin-code",
|
|
4118
4126
|
"velin-copy",
|
|
4119
4127
|
"velin-counter",
|
|
4128
|
+
"velin-delay",
|
|
4120
4129
|
"velin-disclosure",
|
|
4130
|
+
"velin-duration",
|
|
4131
|
+
"velin-ease",
|
|
4121
4132
|
"velin-fade",
|
|
4122
4133
|
"velin-grid",
|
|
4123
4134
|
"velin-highlight",
|
|
@@ -4125,6 +4136,8 @@
|
|
|
4125
4136
|
"velin-lazy",
|
|
4126
4137
|
"velin-loading",
|
|
4127
4138
|
"velin-modal",
|
|
4139
|
+
"velin-motion",
|
|
4140
|
+
"velin-motion-sequence",
|
|
4128
4141
|
"velin-notify",
|
|
4129
4142
|
"velin-parallax",
|
|
4130
4143
|
"velin-progress",
|
|
@@ -4139,10 +4152,12 @@
|
|
|
4139
4152
|
"velin-stagger",
|
|
4140
4153
|
"velin-tabs",
|
|
4141
4154
|
"velin-theme",
|
|
4155
|
+
"velin-timeline",
|
|
4142
4156
|
"velin-tooltip",
|
|
4143
|
-
"velin-transparency"
|
|
4157
|
+
"velin-transparency",
|
|
4158
|
+
"velin-trigger"
|
|
4144
4159
|
],
|
|
4145
|
-
"count":
|
|
4160
|
+
"count": 36
|
|
4146
4161
|
},
|
|
4147
4162
|
"cli": {
|
|
4148
4163
|
"commands": [
|
|
@@ -4206,13 +4221,13 @@
|
|
|
4206
4221
|
"--icons",
|
|
4207
4222
|
"--variant"
|
|
4208
4223
|
],
|
|
4224
|
+
"example": "velinstyle icons add lucide --icons menu,search",
|
|
4209
4225
|
"subcommands": [
|
|
4210
4226
|
"list",
|
|
4211
4227
|
"add",
|
|
4212
4228
|
"remove",
|
|
4213
4229
|
"build"
|
|
4214
|
-
]
|
|
4215
|
-
"example": "velinstyle icons add lucide --icons menu,search"
|
|
4230
|
+
]
|
|
4216
4231
|
},
|
|
4217
4232
|
{
|
|
4218
4233
|
"name": "scan",
|
|
@@ -4245,10 +4260,10 @@
|
|
|
4245
4260
|
"-o",
|
|
4246
4261
|
"--strict"
|
|
4247
4262
|
],
|
|
4263
|
+
"example": "velinstyle blueprint modal -o snippet.html --strict",
|
|
4248
4264
|
"subcommands": [
|
|
4249
4265
|
"list"
|
|
4250
|
-
]
|
|
4251
|
-
"example": "velinstyle blueprint modal -o snippet.html --strict"
|
|
4266
|
+
]
|
|
4252
4267
|
},
|
|
4253
4268
|
{
|
|
4254
4269
|
"name": "create",
|
|
@@ -4257,13 +4272,13 @@
|
|
|
4257
4272
|
"--theme",
|
|
4258
4273
|
"--no-copy"
|
|
4259
4274
|
],
|
|
4275
|
+
"example": "velinstyle create landing ./my-site --theme earth",
|
|
4260
4276
|
"subcommands": [
|
|
4261
4277
|
"landing",
|
|
4262
4278
|
"dashboard",
|
|
4263
4279
|
"docs",
|
|
4264
4280
|
"auth"
|
|
4265
|
-
]
|
|
4266
|
-
"example": "velinstyle create landing ./my-site --theme earth"
|
|
4281
|
+
]
|
|
4267
4282
|
},
|
|
4268
4283
|
{
|
|
4269
4284
|
"name": "serve",
|
|
@@ -4300,10 +4315,10 @@
|
|
|
4300
4315
|
"--from",
|
|
4301
4316
|
"--base-url"
|
|
4302
4317
|
],
|
|
4318
|
+
"example": "velinstyle scaffold --atelier 04,07 -o compose.html --from ./atelier/library",
|
|
4303
4319
|
"subcommands": [
|
|
4304
4320
|
"list-intents"
|
|
4305
|
-
]
|
|
4306
|
-
"example": "velinstyle scaffold --atelier 04,07 -o compose.html --from ./atelier/library"
|
|
4321
|
+
]
|
|
4307
4322
|
},
|
|
4308
4323
|
{
|
|
4309
4324
|
"name": "plan",
|
|
@@ -4327,10 +4342,10 @@
|
|
|
4327
4342
|
"--base-url",
|
|
4328
4343
|
"--rewrite-vendor"
|
|
4329
4344
|
],
|
|
4345
|
+
"example": "velinstyle atelier 36 -o ./velin-atelier/36-calendar --format html",
|
|
4330
4346
|
"subcommands": [
|
|
4331
4347
|
"list"
|
|
4332
|
-
]
|
|
4333
|
-
"example": "velinstyle atelier 36 -o ./velin-atelier/36-calendar --format html"
|
|
4348
|
+
]
|
|
4334
4349
|
},
|
|
4335
4350
|
{
|
|
4336
4351
|
"name": "review",
|
|
@@ -4346,10 +4361,10 @@
|
|
|
4346
4361
|
"name": "wc",
|
|
4347
4362
|
"summary": "Inspect Web Component APIs from source",
|
|
4348
4363
|
"flags": [],
|
|
4364
|
+
"example": "velinstyle wc api velin-toast",
|
|
4349
4365
|
"subcommands": [
|
|
4350
4366
|
"api"
|
|
4351
|
-
]
|
|
4352
|
-
"example": "velinstyle wc api velin-toast"
|
|
4367
|
+
]
|
|
4353
4368
|
},
|
|
4354
4369
|
{
|
|
4355
4370
|
"name": "layout",
|
|
@@ -4359,12 +4374,12 @@
|
|
|
4359
4374
|
"--write",
|
|
4360
4375
|
"--dry-run"
|
|
4361
4376
|
],
|
|
4377
|
+
"example": "velinstyle layout suggest index.html",
|
|
4362
4378
|
"subcommands": [
|
|
4363
4379
|
"audit",
|
|
4364
4380
|
"suggest",
|
|
4365
4381
|
"fix"
|
|
4366
|
-
]
|
|
4367
|
-
"example": "velinstyle layout suggest index.html"
|
|
4382
|
+
]
|
|
4368
4383
|
},
|
|
4369
4384
|
{
|
|
4370
4385
|
"name": "perf",
|
|
@@ -4374,12 +4389,12 @@
|
|
|
4374
4389
|
"--write",
|
|
4375
4390
|
"--dry-run"
|
|
4376
4391
|
],
|
|
4392
|
+
"example": "velinstyle perf audit index.html",
|
|
4377
4393
|
"subcommands": [
|
|
4378
4394
|
"audit",
|
|
4379
4395
|
"suggest",
|
|
4380
4396
|
"fix"
|
|
4381
|
-
]
|
|
4382
|
-
"example": "velinstyle perf audit index.html"
|
|
4397
|
+
]
|
|
4383
4398
|
},
|
|
4384
4399
|
{
|
|
4385
4400
|
"name": "tokens",
|
|
@@ -4389,11 +4404,11 @@
|
|
|
4389
4404
|
"--output",
|
|
4390
4405
|
"-o"
|
|
4391
4406
|
],
|
|
4407
|
+
"example": "velinstyle tokens validate --input examples/tokens.full.json",
|
|
4392
4408
|
"subcommands": [
|
|
4393
4409
|
"build",
|
|
4394
4410
|
"validate"
|
|
4395
|
-
]
|
|
4396
|
-
"example": "velinstyle tokens validate --input examples/tokens.full.json"
|
|
4411
|
+
]
|
|
4397
4412
|
},
|
|
4398
4413
|
{
|
|
4399
4414
|
"name": "docs",
|
|
@@ -4402,10 +4417,10 @@
|
|
|
4402
4417
|
"--scope",
|
|
4403
4418
|
"--out"
|
|
4404
4419
|
],
|
|
4420
|
+
"example": "velinstyle docs generate --scope all",
|
|
4405
4421
|
"subcommands": [
|
|
4406
4422
|
"generate"
|
|
4407
|
-
]
|
|
4408
|
-
"example": "velinstyle docs generate --scope all"
|
|
4423
|
+
]
|
|
4409
4424
|
},
|
|
4410
4425
|
{
|
|
4411
4426
|
"name": "meta",
|
|
@@ -4417,10 +4432,10 @@
|
|
|
4417
4432
|
"--no-llms",
|
|
4418
4433
|
"--write"
|
|
4419
4434
|
],
|
|
4435
|
+
"example": "velinstyle meta page index.html --write",
|
|
4420
4436
|
"subcommands": [
|
|
4421
4437
|
"page"
|
|
4422
|
-
]
|
|
4423
|
-
"example": "velinstyle meta page index.html --write"
|
|
4438
|
+
]
|
|
4424
4439
|
},
|
|
4425
4440
|
{
|
|
4426
4441
|
"name": "search",
|
|
@@ -4429,10 +4444,10 @@
|
|
|
4429
4444
|
"--out",
|
|
4430
4445
|
"--extra-html"
|
|
4431
4446
|
],
|
|
4447
|
+
"example": "velinstyle search index --out dist/search-index.json",
|
|
4432
4448
|
"subcommands": [
|
|
4433
4449
|
"index"
|
|
4434
|
-
]
|
|
4435
|
-
"example": "velinstyle search index --out dist/search-index.json"
|
|
4450
|
+
]
|
|
4436
4451
|
},
|
|
4437
4452
|
{
|
|
4438
4453
|
"name": "skills",
|
|
@@ -4448,6 +4463,7 @@
|
|
|
4448
4463
|
"--json",
|
|
4449
4464
|
"--human"
|
|
4450
4465
|
],
|
|
4466
|
+
"example": "velinstyle skills show scaffold.landing --human",
|
|
4451
4467
|
"subcommands": [
|
|
4452
4468
|
"list",
|
|
4453
4469
|
"show",
|
|
@@ -4460,8 +4476,7 @@
|
|
|
4460
4476
|
"templates",
|
|
4461
4477
|
"projects",
|
|
4462
4478
|
"graphs"
|
|
4463
|
-
]
|
|
4464
|
-
"example": "velinstyle skills show scaffold.landing --human"
|
|
4479
|
+
]
|
|
4465
4480
|
},
|
|
4466
4481
|
{
|
|
4467
4482
|
"name": "workflow",
|
|
@@ -4472,6 +4487,115 @@
|
|
|
4472
4487
|
"--step"
|
|
4473
4488
|
],
|
|
4474
4489
|
"example": "velinstyle workflow landingpage --json"
|
|
4490
|
+
},
|
|
4491
|
+
{
|
|
4492
|
+
"name": "dashboard",
|
|
4493
|
+
"summary": "Aggregate Production, Review, Accessibility, Transparency, Performance, Security",
|
|
4494
|
+
"flags": [],
|
|
4495
|
+
"example": "velinstyle dashboard"
|
|
4496
|
+
},
|
|
4497
|
+
{
|
|
4498
|
+
"name": "replay",
|
|
4499
|
+
"summary": "Replay a Velin Experience record.json through the same renderer",
|
|
4500
|
+
"flags": [],
|
|
4501
|
+
"example": "velinstyle replay record.json"
|
|
4502
|
+
},
|
|
4503
|
+
{
|
|
4504
|
+
"name": "transparency",
|
|
4505
|
+
"summary": "Transparency Framework doctor, validate, report, export, migrate",
|
|
4506
|
+
"flags": [
|
|
4507
|
+
"--policy",
|
|
4508
|
+
"--json"
|
|
4509
|
+
],
|
|
4510
|
+
"example": "velinstyle transparency doctor .",
|
|
4511
|
+
"subcommands": [
|
|
4512
|
+
"doctor",
|
|
4513
|
+
"validate",
|
|
4514
|
+
"report",
|
|
4515
|
+
"export",
|
|
4516
|
+
"migrate"
|
|
4517
|
+
]
|
|
4518
|
+
},
|
|
4519
|
+
{
|
|
4520
|
+
"name": "motion",
|
|
4521
|
+
"summary": "Velin Motion — page registry + clip pipeline (create, atelier, AI providers)",
|
|
4522
|
+
"flags": [
|
|
4523
|
+
"--json",
|
|
4524
|
+
"--write",
|
|
4525
|
+
"--out",
|
|
4526
|
+
"--output",
|
|
4527
|
+
"-o",
|
|
4528
|
+
"--policy",
|
|
4529
|
+
"--preset",
|
|
4530
|
+
"--ai",
|
|
4531
|
+
"--yes",
|
|
4532
|
+
"-y",
|
|
4533
|
+
"--provider",
|
|
4534
|
+
"--model",
|
|
4535
|
+
"--quality",
|
|
4536
|
+
"--duration",
|
|
4537
|
+
"--style",
|
|
4538
|
+
"--prompt",
|
|
4539
|
+
"--count",
|
|
4540
|
+
"--dry-run",
|
|
4541
|
+
"--clips"
|
|
4542
|
+
],
|
|
4543
|
+
"example": "velinstyle motion create atelier.webp",
|
|
4544
|
+
"subcommands": [
|
|
4545
|
+
"list",
|
|
4546
|
+
"presets",
|
|
4547
|
+
"create",
|
|
4548
|
+
"atelier",
|
|
4549
|
+
"transition",
|
|
4550
|
+
"sequence",
|
|
4551
|
+
"export",
|
|
4552
|
+
"usage",
|
|
4553
|
+
"providers",
|
|
4554
|
+
"setup",
|
|
4555
|
+
"zoom",
|
|
4556
|
+
"pan",
|
|
4557
|
+
"rotate",
|
|
4558
|
+
"particles",
|
|
4559
|
+
"intro",
|
|
4560
|
+
"outro",
|
|
4561
|
+
"doctor",
|
|
4562
|
+
"scan",
|
|
4563
|
+
"policy",
|
|
4564
|
+
"demo",
|
|
4565
|
+
"analyze",
|
|
4566
|
+
"review",
|
|
4567
|
+
"report",
|
|
4568
|
+
"optimize",
|
|
4569
|
+
"blueprint"
|
|
4570
|
+
]
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"name": "security",
|
|
4574
|
+
"summary": "Velin Security Suite — Security Engine: doctor, scan, audit, publish, ci, deps, secrets, report",
|
|
4575
|
+
"flags": [
|
|
4576
|
+
"--json",
|
|
4577
|
+
"--strict",
|
|
4578
|
+
"--repo",
|
|
4579
|
+
"--consumer",
|
|
4580
|
+
"--ci",
|
|
4581
|
+
"--publish",
|
|
4582
|
+
"--deps",
|
|
4583
|
+
"--secrets",
|
|
4584
|
+
"--out",
|
|
4585
|
+
"--output",
|
|
4586
|
+
"-o"
|
|
4587
|
+
],
|
|
4588
|
+
"example": "velinstyle security doctor .",
|
|
4589
|
+
"subcommands": [
|
|
4590
|
+
"doctor",
|
|
4591
|
+
"scan",
|
|
4592
|
+
"audit",
|
|
4593
|
+
"publish",
|
|
4594
|
+
"ci",
|
|
4595
|
+
"deps",
|
|
4596
|
+
"secrets",
|
|
4597
|
+
"report"
|
|
4598
|
+
]
|
|
4475
4599
|
}
|
|
4476
4600
|
]
|
|
4477
4601
|
},
|
|
@@ -4886,7 +5010,7 @@
|
|
|
4886
5010
|
},
|
|
4887
5011
|
"searchIndex": {
|
|
4888
5012
|
"path": "dist/search-index.json",
|
|
4889
|
-
"entryCount":
|
|
5013
|
+
"entryCount": 171
|
|
4890
5014
|
},
|
|
4891
5015
|
"documentation": {
|
|
4892
5016
|
"generated": "docs/generated/",
|