@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
package/README.de.md CHANGED
@@ -39,7 +39,7 @@ VelinStyle ist ein **produktives CSS- + Web-Components-Framework** mit **WCAG-2.
39
39
  **Passung heute:** Marketing-Landings, Docs-Shells, Admin-/SaaS-Starter, Shop- und Community-UIs über Atelier.
40
40
  **Noch nicht:** alleiniger Primary-Stack für große Multipage-Shops + Enterprise-Admin ohne Custom-Arbeit.
41
41
 
42
- > **Release:** **1.2.2** (Production ReleaseProduction Builder + Atelier CLI). VelinStyle **zertifiziert keine Anwendung** — siehe [A11y-Matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
42
+ > **Release:** **1.3.0** (Velin Motion Clips image→clip CLI + optional PixVerse). VelinStyle **zertifiziert keine Anwendung** — siehe [A11y-Matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
43
43
 
44
44
  ---
45
45
 
@@ -113,6 +113,20 @@ Englischer Hub: [atelier/](https://velinstyle.info/atelier/)
113
113
 
114
114
  ---
115
115
 
116
+ ## Neu in 1.3.0
117
+
118
+ **Velin Motion Clips** — Bild→Clip-CLI (lokales HTML/CSS + optional PixVerse AI).
119
+
120
+ ```bash
121
+ npx velinstyle motion create hero.webp --preset cinematic
122
+ npx velinstyle motion providers
123
+ npx velinstyle motion setup pixverse
124
+ ```
125
+
126
+ - Package `@birdapi/velinstyle-motion` · lokale Clip-Engine · Presets · Wizard · optional **PixVerse** (externe Credits + API-Key)
127
+ - PixVerse-Signup **affiliate-first** (`motion setup pixverse`) — kein Direkt-Bypass; [Partnerlink](https://motivaiprivatelimited.sjv.io/c/7581758/3811144/49478) · [Site-Leitfaden](https://velinstyle.info/docs/guides/pixverse-leitfaden.html)
128
+ - Docs: [`docs/guides/velin-motion-clips.md`](docs/guides/velin-motion-clips.md) · [`RELEASE_NOTES_1.3.0.md`](RELEASE_NOTES_1.3.0.md)
129
+
116
130
  ## Neu in 1.2.2
117
131
 
118
132
  **Production Release** — **Build only what your project actually uses.** / Nur bauen, was das Projekt wirklich nutzt.
@@ -167,11 +181,11 @@ bun add @birdapi/velinstyle
167
181
  **CDN** (Version pinnen):
168
182
 
169
183
  ```html
170
- <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle.min.css">
171
- <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle-components.min.js"></script>
184
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle.min.css">
185
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle-components.min.js"></script>
172
186
  ```
173
187
 
174
- > Pin **`@1.2.2`** (oder `@latest` nach Publish). Nach Clone: `npm install && npm run build`.
188
+ > Pin **`@1.3.0`** (oder `@latest` nach Publish). Nach Clone: `npm install && npm run build`.
175
189
 
176
190
  ---
177
191
 
package/README.md CHANGED
@@ -39,7 +39,7 @@ VelinStyle is a **production CSS + Web Components framework** with **WCAG 2.2 AA
39
39
  **Best fit today:** marketing landings, docs shells, admin/SaaS starters, shop & community UIs via Atelier.
40
40
  **Not yet:** sole primary stack for large multipage shop + enterprise admin without custom work.
41
41
 
42
- > **Release:** **1.2.2** (Production ReleaseProduction Builder + Atelier CLI). Using VelinStyle does **not** certify your app — see the [a11y matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
42
+ > **Release:** **1.3.0** (Velin Motion Clips image→clip CLI + optional PixVerse). Using VelinStyle does **not** certify your app — see the [a11y matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
43
43
 
44
44
  ---
45
45
 
@@ -113,6 +113,41 @@ German Atelier hub: [atelier/index.de.html](https://velinstyle.info/atelier/inde
113
113
 
114
114
  ---
115
115
 
116
+ ## What's new in 1.3.0
117
+
118
+ **Velin Motion Clips** — image→clip CLI (local HTML/CSS + optional PixVerse AI).
119
+
120
+ ```bash
121
+ npx velinstyle motion create hero.webp --preset cinematic
122
+ npx velinstyle motion providers
123
+ npx velinstyle motion setup pixverse
124
+ ```
125
+
126
+ - Package `@birdapi/velinstyle-motion` / export `@birdapi/velinstyle/motion-clip`
127
+ - Local clip engine: zoom · pan · rotate · particles · intro/outro · transitions
128
+ - Clip presets · interactive wizard · optional **PixVerse** provider (external credits + API key)
129
+ - PixVerse signup is **affiliate-first** (`motion setup pixverse`) — no bare platform bypass; [partner link](https://motivaiprivatelimited.sjv.io/c/7581758/3811144/49478) · [site guide](https://velinstyle.info/docs/guides/pixverse.html)
130
+ - Docs: [`docs/guides/velin-motion-clips.md`](docs/guides/velin-motion-clips.md) · [`RELEASE_NOTES_1.3.0.md`](RELEASE_NOTES_1.3.0.md)
131
+
132
+ ## What's new in 1.2.5
133
+
134
+ **Velin Experience** — the product layer behind `velinstyle` (1.2.3 Foundation · 1.2.4 Engine · 1.2.5 Product Surface).
135
+
136
+ ```bash
137
+ npx velinstyle doctor .
138
+ npx velinstyle dashboard
139
+ npx velinstyle production . --explain
140
+ npx velinstyle doctor . --record
141
+ npx velinstyle replay .velin/records/<file>.json
142
+ ```
143
+
144
+ - Output Contract · Event Bus · Registry Help · Themes/Modes
145
+ - Content Scanner: **Blade first-class** + Twig / Astro / MDX / Vue / React
146
+ - Production Report breakdown (CSS · Runtime · Icons · Themes · Motion · Components)
147
+ - `dashboard` · `--record` / `replay` · plugin skeleton · local analytics hints
148
+
149
+ See [`RELEASE_NOTES_1.2.5.md`](RELEASE_NOTES_1.2.5.md) · [`docs/guides/velin-experience.md`](docs/guides/velin-experience.md).
150
+
116
151
  ## What's new in 1.2.2
117
152
 
118
153
  **Production Release** — **Build only what your project actually uses.**
@@ -167,11 +202,11 @@ bun add @birdapi/velinstyle
167
202
  **CDN** (pin a version):
168
203
 
169
204
  ```html
170
- <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle.min.css">
171
- <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle-components.min.js"></script>
205
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle.min.css">
206
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle-components.min.js"></script>
172
207
  ```
173
208
 
174
- > Pin **`@1.2.2`** (or `@latest` after publish). Examples above match this package version.
209
+ > Pin **`@1.2.5`** (or `@latest` after publish). Examples above match this package version.
175
210
 
176
211
  | Export | Use |
177
212
  |--------|-----|
@@ -191,8 +226,8 @@ After clone: `npm install && npm run build` — `dist/` is generated, not commit
191
226
  <head>
192
227
  <meta charset="UTF-8">
193
228
  <meta name="viewport" content="width=device-width, initial-scale=1">
194
- <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle.min.css">
195
- <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle-components.min.js"></script>
229
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle.min.css">
230
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle-components.min.js"></script>
196
231
  </head>
197
232
  <body class="velin-p-6">
198
233
  <button type="button" class="velin-btn velin-btn--primary">Ship it</button>
@@ -298,7 +333,7 @@ Docs: [a11y matrix](https://velinstyle.info/docs/getting-started/accessibility.h
298
333
  | Product site | [velinstyle.info/docs](https://velinstyle.info/docs/getting-started/introduction.html) | Guides, demos, reference |
299
334
  | Atelier | [velinstyle.info/atelier](https://velinstyle.info/atelier/) | Template library + product worlds |
300
335
  | Transparency | [Site guide](https://velinstyle.info/docs/guides/transparency.html) · `@birdapi/velinstyle/transparency` | Labeling + provenance |
301
- | Upgrade | [`UPGRADING.md`](UPGRADING.md) | 1.2.1 → 1.2.2 · 1.2.0 → 1.2.1 · 1.1 → 1.2 |
336
+ | Upgrade | [`UPGRADING.md`](UPGRADING.md) | 1.2.x → 1.3.0 · 1.2.2 → 1.2.5 · 1.2.1 → 1.2.2 · 1.2.0 → 1.2.1 · 1.1 → 1.2 |
302
337
  | North star | [`VELINSTYLE_2030.md`](VELINSTYLE_2030.md) | Long-term vision |
303
338
 
304
339
  ---