@jaimevalasek/aioson 1.5.1 → 1.7.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 (341) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/README.md +729 -226
  3. package/docs/design-previews/aurora-command-ui-website.html +884 -0
  4. package/docs/design-previews/aurora-command-ui.html +682 -0
  5. package/docs/design-previews/bold-editorial-ui-website.html +658 -0
  6. package/docs/design-previews/bold-editorial-ui.html +717 -0
  7. package/docs/design-previews/clean-saas-ui-website.html +1202 -0
  8. package/docs/design-previews/clean-saas-ui.html +549 -0
  9. package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
  10. package/docs/design-previews/cognitive-core-ui.html +463 -0
  11. package/docs/design-previews/glassmorphism-ui-website.html +572 -0
  12. package/docs/design-previews/glassmorphism-ui.html +886 -0
  13. package/docs/design-previews/index.html +699 -0
  14. package/docs/design-previews/interface-design-website.html +1187 -0
  15. package/docs/design-previews/interface-design.html +513 -0
  16. package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
  17. package/docs/design-previews/neo-brutalist-ui.html +797 -0
  18. package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
  19. package/docs/design-previews/premium-command-center-ui.html +552 -0
  20. package/docs/design-previews/pt.squarespace.com-homepage.html +889 -0
  21. package/docs/design-previews/warm-craft-ui-website.html +684 -0
  22. package/docs/design-previews/warm-craft-ui.html +739 -0
  23. package/docs/en/cli-reference.md +20 -9
  24. package/docs/integrations/sdlc-genius-boundary.md +76 -0
  25. package/docs/integrations/sdlc-genius-eval-matrix.md +75 -0
  26. package/docs/integrations/sdlc-genius-install-checklist.md +93 -0
  27. package/docs/integrations/sdlc-genius-review-samples.md +86 -0
  28. package/docs/pt/README.md +10 -0
  29. package/docs/pt/agent-sharding.md +132 -0
  30. package/docs/pt/agentes.md +9 -2
  31. package/docs/pt/busca-de-contexto.md +129 -0
  32. package/docs/pt/cache-de-contexto.md +156 -0
  33. package/docs/pt/comandos-cli.md +915 -1
  34. package/docs/pt/design-hybrid-forge.md +356 -0
  35. package/docs/pt/devlog-pipeline.md +270 -0
  36. package/docs/pt/fluxo-artefatos.md +178 -0
  37. package/docs/pt/hooks-session-guard.md +454 -0
  38. package/docs/pt/inicio-rapido.md +54 -3
  39. package/docs/pt/inteligencia-adaptativa.md +324 -0
  40. package/docs/pt/monitor-de-contexto.md +158 -0
  41. package/docs/pt/recuperacao-de-sessao.md +125 -0
  42. package/docs/pt/sandbox.md +125 -0
  43. package/docs/pt/sdd-automation-scripts.md +557 -0
  44. package/docs/pt/site-forge.md +309 -0
  45. package/docs/pt/skills.md +98 -6
  46. package/docs/pt/spec-learnings-pipeline.md +265 -0
  47. package/package.json +1 -1
  48. package/src/a2a/client.js +165 -0
  49. package/src/a2a/server.js +223 -0
  50. package/src/agent-loader.js +280 -0
  51. package/src/cli.js +329 -1
  52. package/src/commands/agent-audit.js +397 -0
  53. package/src/commands/agent-export-skill.js +229 -0
  54. package/src/commands/agent-loader.js +85 -0
  55. package/src/commands/artifact-validate.js +189 -0
  56. package/src/commands/brief-gen.js +405 -0
  57. package/src/commands/brief-validate.js +65 -0
  58. package/src/commands/classify.js +256 -0
  59. package/src/commands/context-cache.js +90 -0
  60. package/src/commands/context-compact.js +49 -0
  61. package/src/commands/context-health.js +175 -0
  62. package/src/commands/context-monitor.js +163 -0
  63. package/src/commands/context-search.js +66 -0
  64. package/src/commands/context-trim.js +177 -0
  65. package/src/commands/design-hybrid-options.js +385 -0
  66. package/src/commands/detect-test-runner.js +55 -0
  67. package/src/commands/devlog-export-brains.js +27 -0
  68. package/src/commands/devlog-process.js +292 -0
  69. package/src/commands/devlog-watch.js +131 -0
  70. package/src/commands/feature-close.js +165 -0
  71. package/src/commands/gate-check.js +228 -0
  72. package/src/commands/health.js +214 -0
  73. package/src/commands/hooks-emit.js +253 -0
  74. package/src/commands/hooks-install.js +347 -0
  75. package/src/commands/init.js +54 -13
  76. package/src/commands/install.js +52 -13
  77. package/src/commands/learning-auto-promote.js +195 -0
  78. package/src/commands/learning-evolve.js +364 -0
  79. package/src/commands/learning-export.js +103 -0
  80. package/src/commands/learning-rollback.js +164 -0
  81. package/src/commands/live.js +59 -1
  82. package/src/commands/pattern-detect.js +33 -0
  83. package/src/commands/preflight-context.js +30 -0
  84. package/src/commands/preflight.js +208 -0
  85. package/src/commands/pulse-update.js +130 -0
  86. package/src/commands/recovery.js +43 -0
  87. package/src/commands/runner-daemon.js +274 -0
  88. package/src/commands/runner-plan.js +70 -0
  89. package/src/commands/runner-queue-from-plan.js +166 -0
  90. package/src/commands/runner-queue.js +189 -0
  91. package/src/commands/runner-run.js +129 -0
  92. package/src/commands/runtime.js +47 -1
  93. package/src/commands/sandbox.js +37 -0
  94. package/src/commands/self-implement-loop.js +256 -0
  95. package/src/commands/session-guard.js +218 -0
  96. package/src/commands/setup-context.js +22 -2
  97. package/src/commands/setup.js +178 -0
  98. package/src/commands/sizing.js +165 -0
  99. package/src/commands/skill.js +144 -32
  100. package/src/commands/spec-checkpoint.js +177 -0
  101. package/src/commands/spec-status.js +79 -0
  102. package/src/commands/spec-sync.js +190 -0
  103. package/src/commands/spec-tasks.js +288 -0
  104. package/src/commands/squad-autorun.js +1220 -0
  105. package/src/commands/squad-bus.js +217 -0
  106. package/src/commands/squad-card.js +149 -0
  107. package/src/commands/squad-daemon.js +134 -0
  108. package/src/commands/squad-dependency-graph.js +164 -0
  109. package/src/commands/squad-review.js +106 -0
  110. package/src/commands/squad-scaffold.js +55 -0
  111. package/src/commands/squad-tool-register.js +157 -0
  112. package/src/commands/state-save.js +122 -0
  113. package/src/commands/tool-registry-cmd.js +232 -0
  114. package/src/commands/update.js +9 -0
  115. package/src/commands/verify-gate.js +572 -0
  116. package/src/commands/workflow-execute.js +241 -0
  117. package/src/constants.js +18 -0
  118. package/src/context-cache.js +159 -0
  119. package/src/context-search.js +326 -0
  120. package/src/design-variation-catalog.js +503 -0
  121. package/src/i18n/messages/en.js +32 -2
  122. package/src/i18n/messages/es.js +30 -2
  123. package/src/i18n/messages/fr.js +30 -2
  124. package/src/i18n/messages/pt-BR.js +32 -2
  125. package/src/install-animation.js +260 -0
  126. package/src/install-profile.js +143 -0
  127. package/src/install-wizard.js +475 -0
  128. package/src/installer.js +44 -10
  129. package/src/lib/health-check.js +158 -0
  130. package/src/lib/hook-protocol.js +76 -0
  131. package/src/mcp/apps/squad-dashboard/app.js +163 -0
  132. package/src/mcp/apps/squad-dashboard/index.html +261 -0
  133. package/src/mcp/apps/squad-dashboard/mcp-manifest.json +23 -0
  134. package/src/mcp/resources/squad-state.js +130 -0
  135. package/src/parser.js +7 -1
  136. package/src/preflight-engine.js +443 -0
  137. package/src/recovery-context-session.js +154 -0
  138. package/src/runner/cascade.js +97 -0
  139. package/src/runner/cli-launcher.js +109 -0
  140. package/src/runner/plan-importer.js +63 -0
  141. package/src/runner/queue-store.js +159 -0
  142. package/src/runtime-store.js +158 -4
  143. package/src/sandbox.js +177 -0
  144. package/src/squad/agent-teams-adapter.js +264 -0
  145. package/src/squad/brief-validator.js +350 -0
  146. package/src/squad/bus-bridge.js +140 -0
  147. package/src/squad/context-compactor.js +265 -0
  148. package/src/squad/cross-ai-synthesizer.js +250 -0
  149. package/src/squad/hooks-generator.js +196 -0
  150. package/src/squad/inter-squad-events.js +175 -0
  151. package/src/squad/intra-bus.js +345 -0
  152. package/src/squad/learning-extractor.js +213 -0
  153. package/src/squad/pattern-detector.js +365 -0
  154. package/src/squad/preflight-context.js +296 -0
  155. package/src/squad/recovery-context.js +242 -71
  156. package/src/squad/reflection.js +365 -0
  157. package/src/squad/squad-scaffold.js +177 -0
  158. package/src/squad/state-manager.js +310 -0
  159. package/src/squad/task-decomposer.js +652 -0
  160. package/src/squad/verify-gate.js +303 -0
  161. package/src/tool-executor.js +94 -0
  162. package/src/updater.js +10 -3
  163. package/src/worker-runner.js +186 -1
  164. package/template/.aioson/agents/analyst.md +119 -3
  165. package/template/.aioson/agents/architect.md +98 -0
  166. package/template/.aioson/agents/design-hybrid-forge.md +141 -0
  167. package/template/.aioson/agents/dev.md +335 -14
  168. package/template/.aioson/agents/deyvin.md +117 -2
  169. package/template/.aioson/agents/discovery-design-doc.md +44 -0
  170. package/template/.aioson/agents/genome.md +14 -0
  171. package/template/.aioson/agents/neo.md +78 -1
  172. package/template/.aioson/agents/orache.md +50 -4
  173. package/template/.aioson/agents/orchestrator.md +197 -1
  174. package/template/.aioson/agents/pm.md +93 -0
  175. package/template/.aioson/agents/product.md +77 -4
  176. package/template/.aioson/agents/profiler-enricher.md +14 -0
  177. package/template/.aioson/agents/profiler-forge.md +14 -0
  178. package/template/.aioson/agents/profiler-researcher.md +14 -0
  179. package/template/.aioson/agents/qa.md +249 -19
  180. package/template/.aioson/agents/setup.md +144 -12
  181. package/template/.aioson/agents/sheldon.md +237 -11
  182. package/template/.aioson/agents/site-forge.md +1753 -0
  183. package/template/.aioson/agents/squad.md +162 -0
  184. package/template/.aioson/agents/tester.md +209 -0
  185. package/template/.aioson/agents/ux-ui.md +34 -1
  186. package/template/.aioson/brains/README.md +128 -0
  187. package/template/.aioson/brains/_index.json +16 -0
  188. package/template/.aioson/brains/scripts/query.js +103 -0
  189. package/template/.aioson/brains/site-forge/visual-patterns.brain.json +205 -0
  190. package/template/.aioson/config.md +158 -13
  191. package/template/.aioson/constitution.md +33 -0
  192. package/template/.aioson/context/forensics/.gitkeep +0 -0
  193. package/template/.aioson/context/project-pulse.md +34 -0
  194. package/template/.aioson/context/seeds/seed-example.md +27 -0
  195. package/template/.aioson/context/user-profile.md +42 -0
  196. package/template/.aioson/docs/LAYERS.md +79 -0
  197. package/template/.aioson/docs/README.md +76 -0
  198. package/template/.aioson/docs/example-external-api-context.md +72 -0
  199. package/template/.aioson/locales/en/agents/architect.md +17 -0
  200. package/template/.aioson/locales/en/agents/dev.md +79 -13
  201. package/template/.aioson/locales/en/agents/orache.md +6 -0
  202. package/template/.aioson/locales/en/agents/orchestrator.md +24 -0
  203. package/template/.aioson/locales/en/agents/product.md +50 -0
  204. package/template/.aioson/locales/en/agents/setup.md +33 -1
  205. package/template/.aioson/locales/en/agents/sheldon.md +115 -0
  206. package/template/.aioson/locales/en/agents/squad.md +14 -0
  207. package/template/.aioson/locales/en/agents/tester.md +6 -0
  208. package/template/.aioson/locales/es/agents/analyst.md +2 -0
  209. package/template/.aioson/locales/es/agents/architect.md +19 -0
  210. package/template/.aioson/locales/es/agents/dev.md +64 -4
  211. package/template/.aioson/locales/es/agents/deyvin.md +2 -0
  212. package/template/.aioson/locales/es/agents/discovery-design-doc.md +2 -0
  213. package/template/.aioson/locales/es/agents/genome.md +2 -0
  214. package/template/.aioson/locales/es/agents/neo.md +2 -0
  215. package/template/.aioson/locales/es/agents/orache.md +2 -0
  216. package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
  217. package/template/.aioson/locales/es/agents/pair.md +2 -0
  218. package/template/.aioson/locales/es/agents/pm.md +2 -0
  219. package/template/.aioson/locales/es/agents/product.md +52 -0
  220. package/template/.aioson/locales/es/agents/profiler-enricher.md +2 -0
  221. package/template/.aioson/locales/es/agents/profiler-forge.md +2 -0
  222. package/template/.aioson/locales/es/agents/profiler-researcher.md +2 -0
  223. package/template/.aioson/locales/es/agents/qa.md +2 -0
  224. package/template/.aioson/locales/es/agents/setup.md +35 -1
  225. package/template/.aioson/locales/es/agents/sheldon.md +117 -0
  226. package/template/.aioson/locales/es/agents/squad.md +16 -0
  227. package/template/.aioson/locales/es/agents/tester.md +9 -0
  228. package/template/.aioson/locales/es/agents/ux-ui.md +2 -0
  229. package/template/.aioson/locales/fr/agents/analyst.md +2 -0
  230. package/template/.aioson/locales/fr/agents/architect.md +19 -0
  231. package/template/.aioson/locales/fr/agents/dev.md +64 -4
  232. package/template/.aioson/locales/fr/agents/deyvin.md +2 -0
  233. package/template/.aioson/locales/fr/agents/discovery-design-doc.md +2 -0
  234. package/template/.aioson/locales/fr/agents/genome.md +2 -0
  235. package/template/.aioson/locales/fr/agents/neo.md +2 -0
  236. package/template/.aioson/locales/fr/agents/orache.md +2 -0
  237. package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
  238. package/template/.aioson/locales/fr/agents/pair.md +2 -0
  239. package/template/.aioson/locales/fr/agents/pm.md +2 -0
  240. package/template/.aioson/locales/fr/agents/product.md +52 -0
  241. package/template/.aioson/locales/fr/agents/profiler-enricher.md +2 -0
  242. package/template/.aioson/locales/fr/agents/profiler-forge.md +2 -0
  243. package/template/.aioson/locales/fr/agents/profiler-researcher.md +2 -0
  244. package/template/.aioson/locales/fr/agents/qa.md +2 -0
  245. package/template/.aioson/locales/fr/agents/setup.md +35 -1
  246. package/template/.aioson/locales/fr/agents/sheldon.md +117 -0
  247. package/template/.aioson/locales/fr/agents/squad.md +16 -0
  248. package/template/.aioson/locales/fr/agents/tester.md +9 -0
  249. package/template/.aioson/locales/fr/agents/ux-ui.md +2 -0
  250. package/template/.aioson/locales/pt-BR/agents/analyst.md +64 -3
  251. package/template/.aioson/locales/pt-BR/agents/architect.md +42 -0
  252. package/template/.aioson/locales/pt-BR/agents/dev.md +147 -14
  253. package/template/.aioson/locales/pt-BR/agents/deyvin.md +47 -0
  254. package/template/.aioson/locales/pt-BR/agents/neo.md +62 -1
  255. package/template/.aioson/locales/pt-BR/agents/orchestrator.md +158 -2
  256. package/template/.aioson/locales/pt-BR/agents/pm.md +95 -1
  257. package/template/.aioson/locales/pt-BR/agents/product.md +145 -18
  258. package/template/.aioson/locales/pt-BR/agents/qa.md +16 -0
  259. package/template/.aioson/locales/pt-BR/agents/setup.md +134 -19
  260. package/template/.aioson/locales/pt-BR/agents/sheldon.md +132 -1
  261. package/template/.aioson/locales/pt-BR/agents/squad.md +14 -0
  262. package/template/.aioson/locales/pt-BR/agents/tester.md +449 -0
  263. package/template/.aioson/rules/README.md +69 -0
  264. package/template/.aioson/rules/data-format-convention.md +136 -0
  265. package/template/.aioson/rules/example-monetary-values.md +30 -0
  266. package/template/.aioson/schemas/squad-manifest.schema.json +124 -3
  267. package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
  268. package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
  269. package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
  270. package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
  271. package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
  272. package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
  273. package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
  274. package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
  275. package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
  276. package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
  277. package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
  278. package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
  279. package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
  280. package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
  281. package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
  282. package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
  283. package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
  284. package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
  285. package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
  286. package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
  287. package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
  288. package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
  289. package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
  290. package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
  291. package/template/.aioson/skills/design/pt.squarespace.com/.skill-meta.json +31 -0
  292. package/template/.aioson/skills/design/pt.squarespace.com/SKILL.md +66 -0
  293. package/template/.aioson/skills/design/pt.squarespace.com/references/components.md +368 -0
  294. package/template/.aioson/skills/design/pt.squarespace.com/references/design-tokens.md +150 -0
  295. package/template/.aioson/skills/design/pt.squarespace.com/references/motion.md +270 -0
  296. package/template/.aioson/skills/design/pt.squarespace.com/references/patterns.md +189 -0
  297. package/template/.aioson/skills/design/pt.squarespace.com/references/websites.md +165 -0
  298. package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +46 -0
  299. package/template/.aioson/skills/process/aioson-spec-driven/references/analyst.md +30 -0
  300. package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
  301. package/template/.aioson/skills/process/aioson-spec-driven/references/architect.md +23 -0
  302. package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
  303. package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
  304. package/template/.aioson/skills/process/aioson-spec-driven/references/dev.md +47 -0
  305. package/template/.aioson/skills/process/aioson-spec-driven/references/deyvin.md +27 -0
  306. package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
  307. package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +101 -0
  308. package/template/.aioson/skills/process/aioson-spec-driven/references/product.md +25 -0
  309. package/template/.aioson/skills/process/aioson-spec-driven/references/qa.md +30 -0
  310. package/template/.aioson/skills/process/aioson-spec-driven/references/sheldon.md +25 -0
  311. package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
  312. package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +147 -0
  313. package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
  314. package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
  315. package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +306 -0
  316. package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +149 -0
  317. package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +208 -0
  318. package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
  319. package/template/.aioson/skills/process/simplify/SKILL.md +173 -0
  320. package/template/.aioson/skills/static/context-budget-guide.md +46 -0
  321. package/template/.aioson/skills/static/harness-sensors.md +74 -0
  322. package/template/.aioson/skills/static/multi-agent-patterns.md +43 -0
  323. package/template/.aioson/skills/static/react-motion-patterns.md +22 -0
  324. package/template/.aioson/skills/static/static-html-patterns/checklists.md +43 -0
  325. package/template/.aioson/skills/static/static-html-patterns/css-tokens.md +609 -0
  326. package/template/.aioson/skills/static/static-html-patterns/motion.md +193 -0
  327. package/template/.aioson/skills/static/static-html-patterns/premium.md +711 -0
  328. package/template/.aioson/skills/static/static-html-patterns/structure.md +209 -0
  329. package/template/.aioson/skills/static/static-html-patterns/utilities.md +190 -0
  330. package/template/.aioson/skills/static/static-html-patterns.md +58 -1913
  331. package/template/.aioson/skills/static/threejs-patterns.md +929 -0
  332. package/template/.aioson/skills/static/web-research-cache.md +112 -0
  333. package/template/.aioson/tasks/implementation-plan.md +21 -1
  334. package/template/.claude/commands/aioson/agent/design-hybrid-forge.md +5 -0
  335. package/template/.claude/commands/aioson/agent/orache.md +5 -0
  336. package/template/.claude/commands/aioson/agent/sheldon.md +5 -0
  337. package/template/.claude/commands/aioson/agent/site-forge.md +5 -0
  338. package/template/AGENTS.md +75 -1
  339. package/template/CLAUDE.md +31 -0
  340. package/template/OPENCODE.md +4 -0
  341. package/template/researchs/.gitkeep +0 -0
@@ -0,0 +1,387 @@
1
+ # Websites & Landing Pages — Aurora Command UI
2
+
3
+ Landing pages, marketing sites, and product websites using the aurora-command-ui system.
4
+
5
+ Requires `design-tokens.md` + `components.md`.
6
+
7
+ ---
8
+
9
+ ## General rules
10
+
11
+ 1. **Aurora gradient spans the full page** — `background-attachment: fixed`, no section resets the background.
12
+ 2. **Glass nav becomes more opaque on scroll** — starts at `glass-blur-md`, opacity increases as user scrolls.
13
+ 3. **Aurora orbs as decorative atmosphere** — large blurred gradient circles anchored to sections. They must be blurred (60px+), never sharp.
14
+ 4. **Mono labels on section eyebrows** — every section starts with a mono uppercase label before the section heading.
15
+ 5. **One gradient CTA per page** — the primary call-to-action button uses the full `--accent-gradient`. Do not overuse it.
16
+ 6. **Section contrast through glass density** — vary glass opacity between sections to create visual rhythm. Not every section at the same blur level.
17
+
18
+ ---
19
+
20
+ ## Page shell (landing)
21
+
22
+ ```css
23
+ .landing-shell {
24
+ min-height: 100vh;
25
+ background: var(--bg-gradient);
26
+ background-attachment: fixed;
27
+ font-family: var(--font-body);
28
+ color: var(--text-primary);
29
+ overflow-x: hidden;
30
+ }
31
+
32
+ /* Glass navigation */
33
+ .landing-nav {
34
+ position: fixed;
35
+ top: 0;
36
+ left: 0;
37
+ right: 0;
38
+ z-index: var(--z-sticky);
39
+ height: 64px;
40
+ display: flex;
41
+ align-items: center;
42
+ justify-content: space-between;
43
+ padding: 0 var(--space-8);
44
+ background: rgba(8, 12, 22, 0.40);
45
+ backdrop-filter: var(--glass-blur-md);
46
+ border-bottom: 1px solid var(--glass-border);
47
+ transition: background 300ms ease, backdrop-filter 300ms ease;
48
+ }
49
+
50
+ /* Nav becomes more opaque on scroll — add via JS */
51
+ .landing-nav.scrolled {
52
+ background: rgba(8, 12, 22, 0.80);
53
+ backdrop-filter: var(--glass-blur-lg);
54
+ }
55
+ ```
56
+
57
+ ---
58
+
59
+ ## 1. Aurora Hero — Split Layout
60
+
61
+ For product launches, platform marketing. Avoids the generic centered hero.
62
+
63
+ ```
64
+ ┌─────────────────────────────────────────────────────────────────┐
65
+ │ GLASS NAV │
66
+ ├─────────────────────────────────────────────────────────────────┤
67
+ │ │
68
+ │ LEFT (text side, 55%): RIGHT (visual side, 45%): │
69
+ │ [MONO: PLATFORM · V2.0 LAUNCH] [Glass product card / UI │
70
+ │ [Heading text-5xl tight] screenshot in glass frame, │
71
+ │ [Subheading text-xl muted] floating over aurora orb] │
72
+ │ [CTA Row: [Gradient Button] [Ghost Button]] │
73
+ │ [Social proof: 4,200+ teams] [Teal glow orb behind frame] │
74
+ │ │
75
+ └─────────────────────────────────────────────────────────────────┘
76
+ ```
77
+
78
+ ```css
79
+ .hero-section {
80
+ min-height: 100vh;
81
+ display: grid;
82
+ grid-template-columns: 55% 45%;
83
+ align-items: center;
84
+ padding: 0 var(--space-16);
85
+ padding-top: 80px; /* account for fixed nav */
86
+ position: relative;
87
+ }
88
+
89
+ .hero-text { padding-right: var(--space-12); }
90
+
91
+ .hero-heading {
92
+ font-size: var(--text-5xl);
93
+ font-weight: var(--weight-black);
94
+ line-height: var(--leading-tight);
95
+ letter-spacing: var(--tracking-tight);
96
+ color: var(--text-heading);
97
+ margin-bottom: var(--space-5);
98
+ }
99
+
100
+ .hero-heading-accent {
101
+ background: var(--accent-gradient);
102
+ -webkit-background-clip: text;
103
+ -webkit-text-fill-color: transparent;
104
+ background-clip: text;
105
+ }
106
+
107
+ .hero-subheading {
108
+ font-size: var(--text-xl);
109
+ color: var(--text-secondary);
110
+ line-height: var(--leading-relaxed);
111
+ margin-bottom: var(--space-8);
112
+ }
113
+
114
+ /* Glass product frame */
115
+ .product-frame {
116
+ background: var(--glass-surface);
117
+ backdrop-filter: var(--glass-blur-md);
118
+ border: 1px solid var(--glass-border);
119
+ border-radius: var(--radius-2xl);
120
+ overflow: hidden;
121
+ position: relative;
122
+ box-shadow: var(--shadow-glow);
123
+ }
124
+
125
+ .product-frame::before {
126
+ content: '';
127
+ position: absolute;
128
+ inset: 0;
129
+ background: var(--glass-highlight);
130
+ pointer-events: none;
131
+ z-index: 1;
132
+ border-radius: inherit;
133
+ }
134
+
135
+ /* Aurora orb behind product frame */
136
+ .hero-orb {
137
+ position: absolute;
138
+ width: 400px;
139
+ height: 400px;
140
+ border-radius: 50%;
141
+ background: radial-gradient(circle, rgba(0,200,232,0.20), rgba(124,58,237,0.15), transparent 70%);
142
+ filter: blur(60px);
143
+ right: 5%;
144
+ top: 30%;
145
+ pointer-events: none;
146
+ }
147
+ ```
148
+
149
+ ---
150
+
151
+ ## 2. Aurora Hero — Centered (atmospheric)
152
+
153
+ For manifesto pages, product teasers, atmospheric launches.
154
+
155
+ ```
156
+ ┌─────────────────────────────────────────────────────────────────┐
157
+ │ [Teal aurora orb — top center, large] │
158
+ │ │
159
+ │ [MONO: BUILT FOR SCALE] │
160
+ │ [Heading — text-5xl, 2–3 lines, center] │
161
+ │ [Subtext — text-xl, max-width 600px, center] │
162
+ │ [CTA Row — centered] │
163
+ │ │
164
+ │ [Glass feature strip — 3 items horizontal, below fold] │
165
+ └─────────────────────────────────────────────────────────────────┘
166
+ ```
167
+
168
+ Use this variant only when the product visual is not available or the focus is the manifesto text. The aurora orb creates the depth.
169
+
170
+ ---
171
+
172
+ ## 3. Feature Section — Glass Cards Grid
173
+
174
+ ```
175
+ MONO EYEBROW: PLATFORM CAPABILITIES
176
+ Heading: The control center you always wanted. (text-4xl, left-aligned)
177
+ Subtext: One line max. (text-lg, muted)
178
+
179
+ GLASS CARDS GRID (3 col):
180
+ ┌─────────────────────────────────────────────────────────────────┐
181
+ │ ┌────────────────┐ ┌────────────────┐ ┌────────────────┐ │
182
+ │ │ [Icon — teal] │ │ [Icon — teal] │ │ [Icon — violet]│ │
183
+ │ │ Feature title │ │ Feature title │ │ Feature title │ │
184
+ │ │ Short desc │ │ Short desc │ │ Short desc │ │
185
+ │ └────────────────┘ └────────────────┘ └────────────────┘ │
186
+ │ ┌────────────────┐ ┌────────────────┐ ┌────────────────┐ │
187
+ │ │ ... │ │ ... │ │ ... │ │
188
+ │ └────────────────┘ └────────────────┘ └────────────────┘ │
189
+ └─────────────────────────────────────────────────────────────────┘
190
+ ```
191
+
192
+ ```css
193
+ .features-section {
194
+ padding: var(--space-24) var(--space-16);
195
+ position: relative;
196
+ }
197
+
198
+ .features-grid {
199
+ display: grid;
200
+ grid-template-columns: repeat(3, 1fr);
201
+ gap: var(--space-4);
202
+ margin-top: var(--space-10);
203
+ }
204
+
205
+ .feature-card {
206
+ background: var(--glass-surface);
207
+ backdrop-filter: var(--glass-blur-sm);
208
+ border: 1px solid var(--glass-border);
209
+ border-radius: var(--radius-xl);
210
+ padding: var(--space-6);
211
+ position: relative;
212
+ transition: background var(--transition-glass), box-shadow var(--transition-base);
213
+ }
214
+
215
+ .feature-card:hover {
216
+ background: var(--glass-elevated);
217
+ box-shadow: var(--shadow-glow);
218
+ }
219
+
220
+ .feature-card::before {
221
+ content: '';
222
+ position: absolute;
223
+ inset: 0;
224
+ border-radius: inherit;
225
+ background: var(--glass-highlight);
226
+ pointer-events: none;
227
+ }
228
+
229
+ .feature-icon {
230
+ width: 40px; height: 40px;
231
+ background: var(--accent-primary-dim);
232
+ border-radius: var(--radius-md);
233
+ display: flex;
234
+ align-items: center;
235
+ justify-content: center;
236
+ margin-bottom: var(--space-4);
237
+ color: var(--accent-primary);
238
+ }
239
+ ```
240
+
241
+ ---
242
+
243
+ ## 4. Stats / Proof Rail
244
+
245
+ A horizontal glass strip showing key social proof numbers.
246
+
247
+ ```
248
+ ┌─────────────────────────────────────────────────────────────────┐
249
+ │ 4,200+ 99.9% <500ms SOC 2 Type II │
250
+ │ Teams using Uptime SLA Avg latency Certified │
251
+ └─────────────────────────────────────────────────────────────────┘
252
+ ```
253
+
254
+ ```css
255
+ .proof-rail {
256
+ background: var(--glass-surface);
257
+ backdrop-filter: var(--glass-blur-md);
258
+ border-top: 1px solid var(--glass-border);
259
+ border-bottom: 1px solid var(--glass-border);
260
+ display: grid;
261
+ grid-template-columns: repeat(4, 1fr);
262
+ padding: var(--space-8) var(--space-16);
263
+ }
264
+
265
+ .proof-item {
266
+ text-align: center;
267
+ padding: var(--space-4);
268
+ border-right: 1px solid var(--glass-border);
269
+ }
270
+
271
+ .proof-item:last-child { border-right: none; }
272
+
273
+ .proof-number {
274
+ font-size: var(--text-3xl);
275
+ font-weight: var(--weight-bold);
276
+ background: var(--accent-gradient);
277
+ -webkit-background-clip: text;
278
+ -webkit-text-fill-color: transparent;
279
+ background-clip: text;
280
+ display: block;
281
+ }
282
+
283
+ .proof-label {
284
+ font-family: var(--font-mono);
285
+ font-size: 0.625rem;
286
+ letter-spacing: 0.10em;
287
+ text-transform: uppercase;
288
+ color: var(--text-muted);
289
+ margin-top: var(--space-1);
290
+ }
291
+ ```
292
+
293
+ ---
294
+
295
+ ## 5. Pricing Section
296
+
297
+ Three glass cards. Center card is elevated/featured with gradient border.
298
+
299
+ ```
300
+ MONO: PRICING PLANS
301
+ Heading: Start free. Scale confidently.
302
+
303
+ ┌──────────────┐ ┌──────────────────┐ ┌──────────────┐
304
+ │ STARTER │ │ PRO (featured) │ │ ENTERPRISE │
305
+ │ $0/mo │ │ $49/mo (grad) │ │ Custom │
306
+ │ Features... │ │ Features... │ │ Features... │
307
+ │ [Ghost btn] │ │ [Gradient btn] │ │ [Ghost btn] │
308
+ └──────────────┘ └──────────────────┘ └──────────────┘
309
+ ```
310
+
311
+ ```css
312
+ .pricing-grid {
313
+ display: grid;
314
+ grid-template-columns: repeat(3, 1fr);
315
+ gap: var(--space-4);
316
+ align-items: start;
317
+ }
318
+
319
+ .pricing-card-featured {
320
+ background: var(--glass-elevated);
321
+ backdrop-filter: var(--glass-blur-lg);
322
+ border-radius: var(--radius-2xl);
323
+ padding: var(--space-8);
324
+ position: relative;
325
+ box-shadow: var(--shadow-glow-strong);
326
+ /* Gradient border */
327
+ background-clip: padding-box;
328
+ border: 1px solid transparent;
329
+ }
330
+
331
+ .pricing-card-featured::after {
332
+ content: '';
333
+ position: absolute;
334
+ inset: 0;
335
+ border-radius: inherit;
336
+ padding: 1px;
337
+ background: var(--accent-gradient);
338
+ -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
339
+ -webkit-mask-composite: xor;
340
+ mask-composite: exclude;
341
+ pointer-events: none;
342
+ }
343
+ ```
344
+
345
+ ---
346
+
347
+ ## 6. Testimonials Section
348
+
349
+ ```
350
+ MONO: TRUSTED BY TEAMS WORLDWIDE
351
+ Heading: The command center that teams rely on.
352
+
353
+ [Glass testimonial cards — masonry or 3-col grid]
354
+ Each card:
355
+ Quote text (italic, text-base)
356
+ Avatar + Name + Role/Company
357
+ Teal-electric accent line at top of card
358
+ ```
359
+
360
+ ---
361
+
362
+ ## 7. Footer
363
+
364
+ Minimal. Glass strip at the bottom of the aurora background.
365
+
366
+ ```css
367
+ .footer {
368
+ background: var(--glass-shell);
369
+ backdrop-filter: var(--glass-blur-md);
370
+ border-top: 1px solid var(--glass-border);
371
+ padding: var(--space-8) var(--space-16);
372
+ display: grid;
373
+ grid-template-columns: 1fr auto;
374
+ align-items: center;
375
+ }
376
+ ```
377
+
378
+ ---
379
+
380
+ ## Anti-patterns
381
+
382
+ - **Do NOT** reset the background in each section — the aurora gradient must flow continuously top to bottom.
383
+ - **Do NOT** use a centered hero with generic "Modern Platform" headline as the only opening move. Use split layout, offset frame, or atmospheric centered with real copy.
384
+ - **Do NOT** repeat the same glass card layout in every section. Vary: glass strip, glass split, proof rail, centered manifesto.
385
+ - **Do NOT** add neon glows or bright aurora orbs with saturation >70%. The orbs are atmospheric, not decorative neon.
386
+ - **Do NOT** use glass pricing cards without the featured-card distinction. The featured card must feel more elevated than the others.
387
+ - **Do NOT** put a plain solid white footer on an aurora background page.
@@ -0,0 +1,222 @@
1
+ ---
2
+ name: glassmorphism-ui
3
+ description: Glassmorphism UI is a design system for modern, layered interfaces that use frosted glass effects, subtle transparency, and light gradients to create depth and elegance. Use it when `design_skill: glassmorphism-ui` is set in project.context.md OR when the user explicitly asks for "glassmorphism", "glass UI", "frosted glass", "blur cards", "translucent", "Apple-like", "iOS-style", "modern fintech", "floating cards", "layered depth", "aurora gradients", or similar. Ideal for fintech apps, crypto dashboards, modern mobile apps, music/media apps, portfolio sites, and any product where visual sophistication and perceived depth matter. Supports apps, dashboards, and marketing sites — light by default with an elegant dark variant. Do NOT use this skill unless explicitly selected.
4
+ ---
5
+
6
+ # Glassmorphism UI
7
+
8
+ Glassmorphism UI is built around **perceived depth through transparency** — a design system where surfaces appear as frosted glass floating over gradient backgrounds. Unlike flat or shadow-depth systems, the UI structure itself is visible through its layers. The background shows through the cards. The cards show through the modals. Depth is real, not simulated.
9
+
10
+ Inspiration: Apple.com product pages, iOS Control Center, Linear marketing site, Raycast.com, Revolut/N26 apps.
11
+
12
+ **This is one visual system.** Never combine it with another design skill.
13
+
14
+ ## Package structure
15
+
16
+ ```text
17
+ .aioson/skills/design/glassmorphism-ui/
18
+ SKILL.md ← you are here (load this first)
19
+ references/
20
+ art-direction.md ← intent, 5 expression modes, signature library, anti-generic tests
21
+ design-tokens.md ← CSS variables light + dark, glass tokens, typography, spacing, radius, shadows
22
+ components.md ← 22 components (all with glass variant), glass rules, fallbacks
23
+ patterns.md ← App shell glass, 6 page patterns, responsive with mobile bottom tab bar
24
+ dashboards.md ← 5 dashboard presets + chart palette + gradient fill rules
25
+ websites.md ← 4 hero patterns, 8 section patterns, glass nav, anti-patterns
26
+ motion.md ← Fluid transitions, 5 entrances with blur, glass-specific animations, reduced motion
27
+ ```
28
+
29
+ ## Activation rules
30
+
31
+ - Apply this package **only** when `project.context.md` contains `design_skill: "glassmorphism-ui"` or the user explicitly chooses it.
32
+ - If another design skill is selected, do **not** load this package.
33
+ - Never auto-select this skill — always require explicit confirmation.
34
+ - If no skill is set yet, the active agent must ask or confirm before applying.
35
+
36
+ ## Responsibility boundary
37
+
38
+ This skill defines:
39
+ - Visual direction and aesthetic DNA (blur layers, transparency, gradient backgrounds)
40
+ - Design tokens (glass surfaces, colors, typography, spacing, radius, shadows)
41
+ - Component vocabulary and anatomy (22 glass-variant components)
42
+ - Page composition patterns (gradient substrate → glass sidebar → glass cards)
43
+ - Theme switching behavior (light default / dark optional)
44
+
45
+ This skill does **not** decide:
46
+ - Stack (React, Vue, Blade, HTML, etc.)
47
+ - Output format (single file, multi-file, CSS modules, Tailwind, etc.)
48
+ - Icon library choice
49
+ - Whether a theme toggle exists in the product (the agent decides)
50
+ - Animation library (CSS or JS — motion.md is stack-agnostic)
51
+
52
+ ## Loading guide
53
+
54
+ Always load only what the current task needs:
55
+
56
+ | Task | Load |
57
+ |---|---|
58
+ | Any UI work | `references/design-tokens.md` |
59
+ | Reusable components | `references/design-tokens.md` + `references/components.md` |
60
+ | Dashboard or admin panel | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/patterns.md` + `references/dashboards.md` |
61
+ | Detail / settings page | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/patterns.md` |
62
+ | Landing page or website | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/websites.md` |
63
+ | Motion / animation | add `references/motion.md` when animation materially improves the result |
64
+ | Full UI build | all seven reference files |
65
+
66
+ ## Visual signature — three pillars
67
+
68
+ 1. **Layered depth** — The interface is built in visible layers: background → substrate → glass cards → elevated elements. Each layer has distinct blur and transparency. Depth does not come from shadows (as in warm-craft) but from real transparency between layers. The user "feels" the layers as stacked glass surfaces.
69
+ 2. **Luminous subtlety** — Soft gradients, luminous borders (1px rgba white), subtle reflections at the top of cards. No neon, no saturation. Light comes from background gradients and edge reflections — like light hitting real glass. Colors are pastel and desaturated.
70
+ 3. **Fluid precision** — Generous radius (more than clean-saas, comparable to warm-craft), fluid transitions, micro-interactions with depth shift. The interface feels liquid but controlled — not gelatinous, not elastic. Movements smooth as a slider on glass.
71
+
72
+ ## Theme system
73
+
74
+ ```html
75
+ <div data-theme="light"> <!-- or data-theme="dark" -->
76
+ ```
77
+
78
+ - **Light (default)**: lavender gradient background, white glass cards with backdrop-blur — bright, elegant, iOS-like
79
+ - **Dark**: deep navy background with dark aurora gradients, dark glass cards — premium, immersive, Raycast-like
80
+ - Toggle always available by default
81
+
82
+ If the user does not specify: default to **light with a theme toggle** in the navigation bar.
83
+
84
+ ## Visual DNA
85
+
86
+ ### Foundation rule: gradient substrate is mandatory
87
+ Glass only works over a gradient background. Never place glass cards over a solid white or solid black background — the blur has nothing to reveal. The gradient substrate is not decoration; it is functional.
88
+
89
+ ### Colors — light theme (default)
90
+ - Background gradient: `linear-gradient(135deg, #F0EEF6 0%, #E0DFF0 30%, #D8E0F0 70%, #EDE8F0 100%)`
91
+ - Glass surface: `rgba(255, 255, 255, 0.60)` — TRANSPARENT
92
+ - Glass elevated: `rgba(255, 255, 255, 0.80)` — hover, nested
93
+ - Primary accent: `#7C3AED` (violet-600)
94
+ - Secondary accent: `#3B82F6` (blue-500) — for gradients
95
+ - Accent gradient: `linear-gradient(135deg, #7C3AED, #3B82F6)` — violet → blue
96
+ - Text heading: `#1A1A2E` (deep navy)
97
+ - Text primary: `#2D2D44`
98
+ - Text secondary: `#6B6B8A`
99
+
100
+ ### Colors — dark theme
101
+ - Background gradient: `linear-gradient(135deg, #141425 0%, #1A1535 30%, #151A30 70%, #1A1425 100%)`
102
+ - Glass surface: `rgba(255, 255, 255, 0.08)` — TRANSPARENT
103
+ - Primary accent: `#8B5CF6` (violet-500 — brighter for dark bg)
104
+ - Secondary accent: `#60A5FA` (blue-400)
105
+ - Text heading: `#F0F0FA`
106
+ - Text primary: `#C8C8E0`
107
+
108
+ ### Typography
109
+ - Headings and body: `Inter`, `-apple-system`, `BlinkMacSystemFont`, `system-ui` — differentiator is the glass effects, not the font family
110
+ - Headings: weight 600–700, letter-spacing -0.02em
111
+ - Body: weight 400, tracking normal
112
+ - System fallback: SF Pro Display/Text (Apple vibe) — use `-apple-system, BlinkMacSystemFont` as first fallback
113
+ - Mono: `JetBrains Mono` for code, IDs, metadata only
114
+
115
+ ### Layout structure (app)
116
+ ```
117
+ ┌──────────────────────────────────────────────────────────────┐
118
+ │ GRADIENT BACKGROUND (substrate) │
119
+ │ ┌────────────────┐ ┌──────────────────────────────────┐ │
120
+ │ │ GLASS SIDEBAR │ │ GLASS TOP BAR (sticky) │ │
121
+ │ │ 256px │ ├──────────────────────────────────┤ │
122
+ │ │ blur-lg │ │ CONTENT AREA │ │
123
+ │ │ border-right │ │ Glass cards floating over │ │
124
+ │ │ glass-border │ │ gradient substrate │ │
125
+ │ └────────────────┘ └──────────────────────────────────┘ │
126
+ └──────────────────────────────────────────────────────────────┘
127
+ ```
128
+
129
+ ### Signature details
130
+ - Glass cards: `backdrop-filter: blur(16px)` + `background: rgba(255,255,255,0.60)` + `border: 1px solid rgba(255,255,255,0.40)`
131
+ - Top reflection pseudo-element `::before`: `linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 50%)`
132
+ - Card hover: opacity increase (0.60 → 0.75) + shadow-sm → shadow-md, 200ms
133
+ - Shadows: colored with violet (not black): `0 8px 24px rgba(124, 58, 237, 0.08)`
134
+ - Accent gradient on CTAs and stat numbers: `linear-gradient(135deg, #7C3AED, #3B82F6)`
135
+ - Active sidebar item: `background: rgba(124,58,237,0.12)` + `border-left: 2px solid var(--accent)`
136
+ - Active tab: `border-bottom: 2px solid` accent gradient underline
137
+ - Buttons: gradient primary (accent-gradient), glass secondary variant
138
+ - Border radius: generous — cards at 16px (radius-xl), hero cards at 24px (radius-3xl)
139
+
140
+ ## Application rules
141
+
142
+ - Treat `references/design-tokens.md` as the source of truth for ALL tokens.
143
+ - Treat `references/art-direction.md` as the source of truth for expression and anti-generic decisions.
144
+ - Never combine this package with `interface-design`, `clean-saas-ui`, `warm-craft-ui`, `bold-editorial-ui`, or any other design skill.
145
+ - Glass requires a gradient background — if the existing project uses a solid background, update it.
146
+ - Reuse the project's component library if one exists — map Glassmorphism tokens onto it instead of rebuilding primitives.
147
+ - Always include `@supports (backdrop-filter: blur(1px))` fallbacks: when unsupported, use solid `bg-surface` at 0.95 opacity.
148
+ - Limit glass nesting to 3 levels max. Each `backdrop-filter` creates a composite layer.
149
+ - Adapt code examples to the active stack. Reference snippets are design specifications, not copy-paste code.
150
+ - Accessibility, responsiveness, and production semantics are the agent's responsibility (not this skill).
151
+
152
+ ## Intent before visuals
153
+
154
+ Before choosing layout, answer all three:
155
+
156
+ 1. Who is the human using this page right now?
157
+ 2. What is the main action or decision they must complete?
158
+ 3. How should this interface feel in concrete words, not generic labels?
159
+
160
+ Bad answers:
161
+ - "for users"
162
+ - "show data"
163
+ - "modern and elegant"
164
+
165
+ Good answers:
166
+ - "crypto trader scanning their portfolio performance at market open"
167
+ - "music listener discovering new artists through their listening history"
168
+ - "premium, focused, immersive — the data feels curated, not dumped"
169
+
170
+ ## Workflow discipline
171
+
172
+ 1. Confirm the gradient substrate is in place before building any component.
173
+ 2. Explore the product domain and choose one expression mode from `references/art-direction.md`.
174
+ 3. Name one signature glass move and repeat it intentionally across the page.
175
+ 4. Run the Glass Test: remove backdrop-blur from all cards — if the UI still looks fine, glass is decorative not structural. Fix it.
176
+ 5. Build from tokens first, then components, then page composition.
177
+ 6. Validate state parity: default, hover, active, focus, disabled — all using glass token transitions.
178
+ 7. Validate contrast: glass surfaces must meet WCAG AA. Increase glass-bg opacity if needed.
179
+
180
+ ## Non-negotiable quality gates
181
+
182
+ - The gradient substrate is non-negotiable. No gradient = no glass system.
183
+ - Never use saturated colors above 70% saturation. Glass is luminous, not neon.
184
+ - Never nest more than 3 glass layers (performance + visual confusion).
185
+ - Never use solid black shadows — always violet-tinted (`rgba(124, 58, 237, ...)`).
186
+ - Fallback without `backdrop-filter` must be tested: use `bg-surface` solid with opacity 0.95.
187
+ - Every glass card must pass WCAG AA for body text.
188
+ - Every page must pass the **Glass Test**: backdrop-blur is structural, not decorative.
189
+ - Every page must pass the **Depth Test**: squinting reveals 3+ visible depth layers.
190
+ - Every page must pass the **Neon Test**: no color at saturation > 80%. Glass ≠ cyberpunk.
191
+ - Sameness is failure. If the result looks like a default Tailwind starter with blur added, iterate.
192
+
193
+ ## Positioning vs other skills
194
+
195
+ | Aspect | glassmorphism-ui | warm-craft-ui | clean-saas-ui | bold-editorial-ui |
196
+ |--------|-----------------|---------------|---------------|-------------------|
197
+ | Accent | Violet-blue (#7C3AED) | Terracotta | Blue | Red-orange |
198
+ | Depth model | Blur layers | Shadow depth | Border/bg | Light/dark contrast |
199
+ | Radius | Large (16px+) | Large (16px+) | Medium (8px) | Minimal (4-6px) |
200
+ | Background | Gradient (required) | Warm solid | Neutral solid | Dark solid |
201
+ | Borders | Luminous (rgba white) | Subtle solid | Solid gray | Minimal |
202
+ | Headings | Sans-serif (Inter/SF) | Serif (Source Serif) | Sans-serif (Inter) | Sans-serif (bold) |
203
+ | Best for | Fintech, mobile, media | B2C, productivity | B2B SaaS, admin | Marketing, portfolio |
204
+ | Default theme | Light (lavender gradient) | Light (warm) | Light (neutral) | Dark |
205
+
206
+ ## Delivery modes
207
+
208
+ ### Greenfield
209
+ 1. Choose page variant (dashboard, mobile app, landing, detail, auth, onboarding)
210
+ 2. Establish gradient background substrate first
211
+ 3. Load relevant references
212
+ 4. Apply token scope from `design-tokens.md` (glass tokens are the foundation)
213
+ 5. Compose layout from `patterns.md` or `websites.md`
214
+ 6. Build components from `components.md`
215
+
216
+ ### Brownfield
217
+ 1. Audit existing UI before rewriting
218
+ 2. Check if a gradient background can be added without breaking existing work
219
+ 3. Map Glassmorphism tokens onto the existing component library
220
+ 4. Fix non-glass surfaces first: add backdrop-blur and transparency progressively
221
+ 5. Consolidate duplicate variants before introducing new ones
222
+ 6. Prefer targeted upgrades over full rewrites unless the user asks for a redesign