@jaimevalasek/aioson 1.4.0 → 1.6.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 (301) hide show
  1. package/CHANGELOG.md +31 -1
  2. package/LICENSE +661 -21
  3. package/README.md +9 -1
  4. package/docs/design-previews/aurora-command-ui-website.html +884 -0
  5. package/docs/design-previews/aurora-command-ui.html +682 -0
  6. package/docs/design-previews/bold-editorial-ui-website.html +658 -0
  7. package/docs/design-previews/bold-editorial-ui.html +717 -0
  8. package/docs/design-previews/clean-saas-ui-website.html +1202 -0
  9. package/docs/design-previews/clean-saas-ui.html +549 -0
  10. package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
  11. package/docs/design-previews/cognitive-core-ui.html +463 -0
  12. package/docs/design-previews/glassmorphism-ui-website.html +572 -0
  13. package/docs/design-previews/glassmorphism-ui.html +886 -0
  14. package/docs/design-previews/index.html +699 -0
  15. package/docs/design-previews/interface-design-website.html +1187 -0
  16. package/docs/design-previews/interface-design.html +513 -0
  17. package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
  18. package/docs/design-previews/neo-brutalist-ui.html +797 -0
  19. package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
  20. package/docs/design-previews/premium-command-center-ui.html +552 -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/en/squad-dashboard.md +372 -0
  25. package/docs/openclaw-bridge.md +308 -0
  26. package/docs/pt/README.md +7 -0
  27. package/docs/pt/agent-sharding.md +132 -0
  28. package/docs/pt/agentes.md +131 -11
  29. package/docs/pt/busca-de-contexto.md +129 -0
  30. package/docs/pt/cache-de-contexto.md +156 -0
  31. package/docs/pt/cenarios.md +46 -2
  32. package/docs/pt/comandos-cli.md +88 -1
  33. package/docs/pt/design-hybrid-forge.md +107 -0
  34. package/docs/pt/inicio-rapido.md +72 -5
  35. package/docs/pt/inteligencia-adaptativa.md +324 -0
  36. package/docs/pt/monitor-de-contexto.md +104 -0
  37. package/docs/pt/recuperacao-de-sessao.md +125 -0
  38. package/docs/pt/sandbox.md +125 -0
  39. package/docs/pt/skills.md +98 -6
  40. package/docs/pt/squad-dashboard.md +373 -0
  41. package/docs/testing/genome-2.0-matrix.md +5 -5
  42. package/docs/testing/genome-2.0-rollout.md +9 -9
  43. package/package.json +2 -2
  44. package/src/agent-loader.js +280 -0
  45. package/src/backup-local.js +74 -0
  46. package/src/cli.js +192 -0
  47. package/src/commands/agent-loader.js +85 -0
  48. package/src/commands/backup-local-cmd.js +25 -0
  49. package/src/commands/context-cache.js +90 -0
  50. package/src/commands/context-monitor.js +92 -0
  51. package/src/commands/context-search.js +66 -0
  52. package/src/commands/design-hybrid-options.js +385 -0
  53. package/src/commands/health.js +214 -0
  54. package/src/commands/init.js +54 -13
  55. package/src/commands/install.js +52 -13
  56. package/src/commands/learning-evolve.js +355 -0
  57. package/src/commands/live.js +34 -0
  58. package/src/commands/recovery.js +43 -0
  59. package/src/commands/runtime.js +242 -0
  60. package/src/commands/sandbox.js +37 -0
  61. package/src/commands/setup-context.js +29 -4
  62. package/src/commands/setup.js +178 -0
  63. package/src/commands/skill.js +79 -32
  64. package/src/commands/squad-daemon.js +209 -0
  65. package/src/commands/squad-dashboard.js +39 -0
  66. package/src/commands/squad-deploy.js +64 -0
  67. package/src/commands/squad-doctor.js +52 -0
  68. package/src/commands/squad-mcp.js +270 -0
  69. package/src/commands/squad-processes.js +56 -0
  70. package/src/commands/squad-recovery.js +42 -0
  71. package/src/commands/squad-roi.js +291 -0
  72. package/src/commands/squad-score.js +250 -0
  73. package/src/commands/squad-status.js +37 -1
  74. package/src/commands/squad-validate.js +62 -1
  75. package/src/commands/squad-webhook.js +160 -0
  76. package/src/commands/squad-worker.js +191 -0
  77. package/src/commands/squad-worktrees.js +75 -0
  78. package/src/commands/tool-registry-cmd.js +232 -0
  79. package/src/commands/update.js +7 -0
  80. package/src/commands/web-map.js +70 -0
  81. package/src/commands/web-scrape.js +71 -0
  82. package/src/constants.js +17 -0
  83. package/src/context-cache.js +159 -0
  84. package/src/context-search.js +326 -0
  85. package/src/context-writer.js +45 -1
  86. package/src/design-variation-catalog.js +503 -0
  87. package/src/i18n/messages/en.js +159 -3
  88. package/src/i18n/messages/es.js +147 -2
  89. package/src/i18n/messages/fr.js +147 -2
  90. package/src/i18n/messages/pt-BR.js +158 -3
  91. package/src/install-animation.js +260 -0
  92. package/src/install-profile.js +143 -0
  93. package/src/install-wizard.js +474 -0
  94. package/src/installer.js +38 -10
  95. package/src/lib/webhook-server.js +328 -0
  96. package/src/mcp-connectors/registry.js +602 -0
  97. package/src/parser.js +7 -1
  98. package/src/recovery-context-session.js +154 -0
  99. package/src/runtime-store.js +355 -2
  100. package/src/sandbox.js +177 -0
  101. package/src/squad/external-session.js +180 -0
  102. package/src/squad/inter-squad.js +74 -0
  103. package/src/squad/recovery-context.js +201 -0
  104. package/src/squad/worktree-manager.js +114 -0
  105. package/src/squad-daemon.js +490 -0
  106. package/src/squad-dashboard/api.js +223 -0
  107. package/src/squad-dashboard/attachment-handler.js +93 -0
  108. package/src/squad-dashboard/context-monitor.js +157 -0
  109. package/src/squad-dashboard/execution-logs.js +115 -0
  110. package/src/squad-dashboard/hunk-review.js +209 -0
  111. package/src/squad-dashboard/metrics.js +133 -0
  112. package/src/squad-dashboard/process-monitor.js +125 -0
  113. package/src/squad-dashboard/renderer.js +858 -0
  114. package/src/squad-dashboard/server.js +232 -0
  115. package/src/squad-dashboard/styles.js +525 -0
  116. package/src/squad-dashboard/token-tracker.js +99 -0
  117. package/src/tool-executor.js +94 -0
  118. package/src/updater.js +11 -3
  119. package/src/web.js +284 -0
  120. package/src/worker-runner.js +339 -0
  121. package/template/.aioson/agents/analyst.md +62 -3
  122. package/template/.aioson/agents/architect.md +42 -0
  123. package/template/.aioson/agents/design-hybrid-forge.md +127 -0
  124. package/template/.aioson/agents/dev.md +223 -11
  125. package/template/.aioson/agents/deyvin.md +65 -0
  126. package/template/.aioson/agents/neo.md +152 -0
  127. package/template/.aioson/agents/orache.md +17 -0
  128. package/template/.aioson/agents/orchestrator.md +26 -0
  129. package/template/.aioson/agents/pm.md +58 -0
  130. package/template/.aioson/agents/product.md +88 -12
  131. package/template/.aioson/agents/qa.md +80 -0
  132. package/template/.aioson/agents/setup.md +128 -22
  133. package/template/.aioson/agents/sheldon.md +704 -0
  134. package/template/.aioson/agents/squad.md +191 -0
  135. package/template/.aioson/agents/tester.md +410 -0
  136. package/template/.aioson/agents/ux-ui.md +12 -0
  137. package/template/.aioson/config.md +21 -0
  138. package/template/.aioson/context/forensics/.gitkeep +0 -0
  139. package/template/.aioson/context/seeds/seed-example.md +27 -0
  140. package/template/.aioson/context/user-profile.md +42 -0
  141. package/template/.aioson/locales/en/agents/analyst.md +8 -0
  142. package/template/.aioson/locales/en/agents/architect.md +8 -0
  143. package/template/.aioson/locales/en/agents/dev.md +66 -7
  144. package/template/.aioson/locales/en/agents/deyvin.md +8 -0
  145. package/template/.aioson/locales/en/agents/neo.md +8 -0
  146. package/template/.aioson/locales/en/agents/orchestrator.md +26 -0
  147. package/template/.aioson/locales/en/agents/qa.md +49 -0
  148. package/template/.aioson/locales/en/agents/setup.md +35 -2
  149. package/template/.aioson/locales/en/agents/sheldon.md +340 -0
  150. package/template/.aioson/locales/en/agents/ux-ui.md +8 -0
  151. package/template/.aioson/locales/es/agents/analyst.md +8 -0
  152. package/template/.aioson/locales/es/agents/architect.md +8 -0
  153. package/template/.aioson/locales/es/agents/dev.md +66 -7
  154. package/template/.aioson/locales/es/agents/deyvin.md +8 -0
  155. package/template/.aioson/locales/es/agents/neo.md +48 -0
  156. package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
  157. package/template/.aioson/locales/es/agents/qa.md +26 -0
  158. package/template/.aioson/locales/es/agents/setup.md +35 -2
  159. package/template/.aioson/locales/es/agents/sheldon.md +192 -0
  160. package/template/.aioson/locales/es/agents/squad.md +63 -0
  161. package/template/.aioson/locales/es/agents/ux-ui.md +8 -0
  162. package/template/.aioson/locales/fr/agents/analyst.md +8 -0
  163. package/template/.aioson/locales/fr/agents/architect.md +8 -0
  164. package/template/.aioson/locales/fr/agents/dev.md +66 -7
  165. package/template/.aioson/locales/fr/agents/deyvin.md +8 -0
  166. package/template/.aioson/locales/fr/agents/neo.md +48 -0
  167. package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
  168. package/template/.aioson/locales/fr/agents/qa.md +26 -0
  169. package/template/.aioson/locales/fr/agents/setup.md +35 -2
  170. package/template/.aioson/locales/fr/agents/sheldon.md +192 -0
  171. package/template/.aioson/locales/fr/agents/squad.md +63 -0
  172. package/template/.aioson/locales/fr/agents/ux-ui.md +8 -0
  173. package/template/.aioson/locales/pt-BR/agents/analyst.md +19 -0
  174. package/template/.aioson/locales/pt-BR/agents/architect.md +19 -0
  175. package/template/.aioson/locales/pt-BR/agents/dev.md +75 -12
  176. package/template/.aioson/locales/pt-BR/agents/deyvin.md +8 -0
  177. package/template/.aioson/locales/pt-BR/agents/neo.md +147 -0
  178. package/template/.aioson/locales/pt-BR/agents/orchestrator.md +26 -0
  179. package/template/.aioson/locales/pt-BR/agents/product.md +8 -3
  180. package/template/.aioson/locales/pt-BR/agents/qa.md +60 -0
  181. package/template/.aioson/locales/pt-BR/agents/setup.md +35 -2
  182. package/template/.aioson/locales/pt-BR/agents/sheldon.md +192 -0
  183. package/template/.aioson/locales/pt-BR/agents/squad.md +105 -0
  184. package/template/.aioson/locales/pt-BR/agents/ux-ui.md +8 -0
  185. package/template/.aioson/schemas/squad-blueprint.schema.json +21 -0
  186. package/template/.aioson/schemas/squad-manifest.schema.json +178 -1
  187. package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
  188. package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
  189. package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
  190. package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
  191. package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
  192. package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
  193. package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
  194. package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
  195. package/template/.aioson/skills/design/bold-editorial-ui/SKILL.md +205 -0
  196. package/template/.aioson/skills/design/bold-editorial-ui/references/art-direction.md +338 -0
  197. package/template/.aioson/skills/design/bold-editorial-ui/references/components.md +977 -0
  198. package/template/.aioson/skills/design/bold-editorial-ui/references/dashboards.md +218 -0
  199. package/template/.aioson/skills/design/bold-editorial-ui/references/design-tokens.md +326 -0
  200. package/template/.aioson/skills/design/bold-editorial-ui/references/motion.md +461 -0
  201. package/template/.aioson/skills/design/bold-editorial-ui/references/patterns.md +293 -0
  202. package/template/.aioson/skills/design/bold-editorial-ui/references/websites.md +352 -0
  203. package/template/.aioson/skills/design/clean-saas-ui/SKILL.md +210 -0
  204. package/template/.aioson/skills/design/clean-saas-ui/references/art-direction.md +319 -0
  205. package/template/.aioson/skills/design/clean-saas-ui/references/components.md +365 -0
  206. package/template/.aioson/skills/design/clean-saas-ui/references/dashboards.md +196 -0
  207. package/template/.aioson/skills/design/clean-saas-ui/references/design-tokens.md +244 -0
  208. package/template/.aioson/skills/design/clean-saas-ui/references/motion.md +235 -0
  209. package/template/.aioson/skills/design/clean-saas-ui/references/patterns.md +215 -0
  210. package/template/.aioson/skills/design/clean-saas-ui/references/websites.md +295 -0
  211. package/template/.aioson/skills/design/cognitive-core-ui/SKILL.md +55 -9
  212. package/template/.aioson/skills/design/cognitive-core-ui/references/art-direction.md +339 -0
  213. package/template/.aioson/skills/design/cognitive-core-ui/references/components.md +1 -1
  214. package/template/.aioson/skills/design/cognitive-core-ui/references/dashboards.md +100 -0
  215. package/template/.aioson/skills/design/cognitive-core-ui/references/design-tokens.md +43 -9
  216. package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +40 -0
  217. package/template/.aioson/skills/design/cognitive-core-ui/references/patterns.md +1 -1
  218. package/template/.aioson/skills/design/cognitive-core-ui/references/websites.md +99 -12
  219. package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
  220. package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
  221. package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
  222. package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
  223. package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
  224. package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
  225. package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
  226. package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
  227. package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
  228. package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
  229. package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
  230. package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
  231. package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
  232. package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
  233. package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
  234. package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
  235. package/template/.aioson/skills/design/warm-craft-ui/SKILL.md +209 -0
  236. package/template/.aioson/skills/design/warm-craft-ui/references/art-direction.md +324 -0
  237. package/template/.aioson/skills/design/warm-craft-ui/references/components.md +508 -0
  238. package/template/.aioson/skills/design/warm-craft-ui/references/dashboards.md +223 -0
  239. package/template/.aioson/skills/design/warm-craft-ui/references/design-tokens.md +374 -0
  240. package/template/.aioson/skills/design/warm-craft-ui/references/motion.md +356 -0
  241. package/template/.aioson/skills/design/warm-craft-ui/references/patterns.md +288 -0
  242. package/template/.aioson/skills/design/warm-craft-ui/references/websites.md +289 -0
  243. package/template/.aioson/skills/premium-visual-design/SKILL.md +83 -0
  244. package/template/.aioson/skills/premium-visual-design/components/agent-badge.md +92 -0
  245. package/template/.aioson/skills/premium-visual-design/components/dependency-node.md +102 -0
  246. package/template/.aioson/skills/premium-visual-design/components/mention-autocomplete.md +136 -0
  247. package/template/.aioson/skills/premium-visual-design/components/notification-center.md +136 -0
  248. package/template/.aioson/skills/premium-visual-design/components/review-action-bar.md +188 -0
  249. package/template/.aioson/skills/premium-visual-design/components/team-switcher.md +131 -0
  250. package/template/.aioson/skills/premium-visual-design/patterns/agent-message-thread.md +198 -0
  251. package/template/.aioson/skills/premium-visual-design/patterns/notification-panel.md +275 -0
  252. package/template/.aioson/skills/premium-visual-design/patterns/review-workflow-ui.md +234 -0
  253. package/template/.aioson/skills/premium-visual-design/patterns/task-dependency-graph.md +147 -0
  254. package/template/.aioson/skills/premium-visual-design/tokens/status-extended.md +142 -0
  255. package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +45 -0
  256. package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
  257. package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
  258. package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
  259. package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
  260. package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +66 -0
  261. package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
  262. package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +144 -0
  263. package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
  264. package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
  265. package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +291 -0
  266. package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +117 -0
  267. package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +188 -0
  268. package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
  269. package/template/.aioson/skills/squad/formats/catalog.json +15 -0
  270. package/template/.aioson/skills/squad/formats/content/blog-post.md +47 -0
  271. package/template/.aioson/skills/squad/formats/content/newsletter.md +47 -0
  272. package/template/.aioson/skills/squad/formats/creative/podcast-script.md +43 -0
  273. package/template/.aioson/skills/squad/formats/creative/video-script.md +41 -0
  274. package/template/.aioson/skills/squad/formats/social/instagram-feed.md +42 -0
  275. package/template/.aioson/skills/squad/formats/social/linkedin-post.md +42 -0
  276. package/template/.aioson/skills/squad/formats/social/tiktok.md +39 -0
  277. package/template/.aioson/skills/squad/formats/social/twitter-thread.md +39 -0
  278. package/template/.aioson/skills/squad/formats/social/youtube-long.md +47 -0
  279. package/template/.aioson/skills/squad/formats/social/youtube-shorts.md +39 -0
  280. package/template/.aioson/skills/squad/patterns/multi-platform-pattern.md +108 -0
  281. package/template/.aioson/skills/squad/patterns/persona-based-pattern.md +98 -0
  282. package/template/.aioson/skills/squad/patterns/pipeline-pattern.md +106 -0
  283. package/template/.aioson/skills/squad/patterns/review-loop-pattern.md +81 -0
  284. package/template/.aioson/skills/squad/references/checklist-templates.md +122 -0
  285. package/template/.aioson/skills/squad/references/executor-archetypes.md +123 -0
  286. package/template/.aioson/skills/squad/references/workflow-templates.md +169 -0
  287. package/template/.aioson/skills/static/debugging-protocol.md +42 -0
  288. package/template/.aioson/skills/static/git-worktrees.md +36 -0
  289. package/template/.aioson/tasks/implementation-plan.md +19 -0
  290. package/template/.aioson/tasks/squad-design.md +28 -0
  291. package/template/.aioson/tasks/squad-profile.md +48 -0
  292. package/template/.aioson/tasks/squad-review.md +61 -0
  293. package/template/.aioson/tasks/squad-task-decompose.md +66 -0
  294. package/template/.claude/commands/aioson/agent/neo.md +5 -0
  295. package/template/.claude/commands/aioson/agent/tester.md +5 -0
  296. package/template/.gemini/GEMINI.md +1 -0
  297. package/template/.gemini/commands/aios-neo.toml +4 -0
  298. package/template/.gemini/commands/aios-tester.toml +6 -0
  299. package/template/AGENTS.md +26 -1
  300. package/template/CLAUDE.md +6 -2
  301. package/template/OPENCODE.md +2 -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,205 @@
1
+ ---
2
+ name: bold-editorial-ui
3
+ description: Bold Editorial UI is a design system for high-impact, typographically-driven interfaces inspired by premium editorial design, fashion magazines, and creative agency portfolios. Use it when `design_skill: bold-editorial-ui` is set in project.context.md OR when the user explicitly asks for "bold", "editorial", "dramatic typography", "magazine style", "Stripe-like", "Vercel-like", "premium marketing", "cinematic", "agency portfolio", or similar. Ideal for landing pages, product marketing, creative portfolios, SaaS marketing sites, and any product where visual impact and storytelling matter more than density. Supports websites, landing pages, and apps — dark by default with a light variant. Do NOT use this skill unless explicitly selected.
4
+ ---
5
+
6
+ # Bold Editorial UI
7
+
8
+ A design system where **typography is the architecture and contrast is the material**. Bold Editorial sits at the intersection of premium magazine design and modern digital craft — interfaces that feel authored, cinematic, and unforgettable.
9
+
10
+ **This is one visual system.** Never combine it with another design skill.
11
+
12
+ ## Package structure
13
+
14
+ ```text
15
+ .aioson/skills/design/bold-editorial-ui/
16
+ SKILL.md <- you are here (load this first)
17
+ references/
18
+ art-direction.md <- intent, expression modes, signature moves, anti-generic tests
19
+ design-tokens.md <- CSS variables dark + light, typography, token guardrails
20
+ components.md <- All reusable components (display headings, buttons, cards, inputs, etc.)
21
+ patterns.md <- Page layouts: app shell, marketing, documentation, dashboard, auth
22
+ dashboards.md <- Dashboard presets: marketing, developer, analytics, content, executive
23
+ websites.md <- Landing page, product page layouts + hero patterns + anti-patterns
24
+ motion.md <- Animations: cinematic entrances, scroll-driven, hover, page transitions
25
+ ```
26
+
27
+ ## Activation rules
28
+
29
+ - Apply this package **only** when `project.context.md` contains `design_skill: "bold-editorial-ui"` or the user explicitly chooses it.
30
+ - If another design skill is selected, do **not** load this package.
31
+ - Never auto-select this skill — always require explicit confirmation.
32
+ - If no skill is set yet, the active agent must ask or confirm before applying.
33
+
34
+ ## Responsibility boundary
35
+
36
+ This skill defines:
37
+ - Visual direction and aesthetic DNA
38
+ - Design tokens (colors, typography, spacing, radius, shadows)
39
+ - Component vocabulary and anatomy
40
+ - Page composition patterns
41
+ - Theme switching behavior (dark/light)
42
+
43
+ This skill does **not** decide:
44
+ - Stack (React, Vue, Blade, HTML, etc.)
45
+ - Output format (single file, multi-file, CSS modules, Tailwind, etc.)
46
+ - Icon library choice
47
+ - Whether a theme toggle exists in the product (the agent decides)
48
+
49
+ ## Loading guide
50
+
51
+ Always load only what the current task needs:
52
+
53
+ | Task | Load |
54
+ |---|---|
55
+ | Any UI work | `references/design-tokens.md` |
56
+ | Reusable components | `references/design-tokens.md` + `references/components.md` |
57
+ | Dashboard or admin panel | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/patterns.md` + `references/dashboards.md` |
58
+ | Detail / settings page | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/patterns.md` |
59
+ | Landing page or website | `references/art-direction.md` + `references/design-tokens.md` + `references/components.md` + `references/websites.md` |
60
+ | Motion / animation | add `references/motion.md` when animation materially improves the result |
61
+ | Full UI build | all seven reference files |
62
+
63
+ ## Visual signature — three pillars
64
+
65
+ 1. **Typographic drama** — Typography oversized as the primary design element. Display fonts with personality. Lettering as architecture. Headlines that occupy 40–60% of the viewport. The type IS the visual — not decoration supporting a layout, but the layout itself. Sizes go up to 128px. Tracking tight. Weight bold to black.
66
+ 2. **Cinematic contrast** — Extreme contrast between light and dark. Sections that alternate between deep near-black and pure white. Color transitions like film cuts. Nothing in the middle — every surface either commits to dark or light. The drama of film stills, not the comfort of day-to-day.
67
+ 3. **Editorial rhythm** — A grid that breaks intentionally. Asymmetry as principle. Sections with different cadences — dense → breathing → impact → pause. Each scroll should feel like turning the page of a premium magazine. Hierarchy through scale, not color.
68
+
69
+ ## Theme system
70
+
71
+ ```html
72
+ <div data-theme="dark"> <!-- or data-theme="light" -->
73
+ ```
74
+
75
+ - **Dark (default)**: Landing pages, portfolios, product marketing, premium experiences, SaaS marketing sites
76
+ - **Light**: Institutional, documentation, content-heavy editorial, case study pages
77
+ - **Both with toggle**: When the product spans both contexts or user preference is required
78
+
79
+ If the user does not specify: default to **dark with a light variant** available.
80
+
81
+ ## Visual DNA
82
+
83
+ ### Colors — dark theme (default)
84
+ - Background void: `#050505` (near-black, not navy)
85
+ - Background base: `#0A0A0A` (main background)
86
+ - Surface: `#141414` (cards, panels)
87
+ - Elevated: `#1E1E1E` (hover, nested, modals)
88
+ - Primary accent: `#FF4D2A` (energetic red-orange) — CTAs, highlights, key moments
89
+ - Text heading: `#FFFFFF` (pure white — maximum contrast)
90
+ - Text primary: `#B8B8B8`
91
+ - Text secondary: `#787878`
92
+ - Text muted: `#484848`
93
+
94
+ ### Colors — light theme
95
+ - Background void: `#F5F5F0` (off-white, slightly warm)
96
+ - Background base: `#FAFAF7`
97
+ - Surface: `#FFFFFF`
98
+ - Elevated: `#EFEFEA`
99
+ - Primary accent: `#E03A18` (deeper red-orange for light backgrounds)
100
+ - Text heading: `#0A0A0A` (near-black)
101
+ - Text primary: `#3A3A3A`
102
+ - Text secondary: `#7A7A7A`
103
+ - Text muted: `#AAAAAA`
104
+
105
+ ### Typography
106
+ - Display headings: `Clash Display`, `Impact` fallback — weight 700, tracking `-0.04em`, line-height `0.9` at large sizes
107
+ - Body: `Inter`, `weight-regular (400)`, `line-height: 1.65`
108
+ - Metadata/captions: `JetBrains Mono`, `weight-500`, `uppercase`, `tracking-widest`, `font-size: 0.75rem`
109
+ - Stats/numbers: `Clash Display`, `weight-bold (700)`, sizes `text-3xl` and up
110
+
111
+ ### Layout structure (marketing sites)
112
+ ```
113
+ +-----------------------------------------------------------+
114
+ | TOP BAR: [Logo] [Nav — minimal] [CTA] |
115
+ +-----------------------------------------------------------+
116
+ | |
117
+ | HERO — full-viewport or near-full |
118
+ | Headline dominates: 60–80% of hero height |
119
+ | One CTA, one subtitle max |
120
+ | |
121
+ +-----------------------------------------------------------+
122
+ | SECTION — alternating rhythm |
123
+ | Dense feature → white breathing → impact counter |
124
+ | → pause with testimonial → dark CTA |
125
+ | |
126
+ +-----------------------------------------------------------+
127
+ | FOOTER — bg-void, minimal |
128
+ +-----------------------------------------------------------+
129
+ ```
130
+
131
+ ### Signature details
132
+ - **Minimal radius**: cards `radius-lg` (8px), buttons `radius-md` (6px) — sharp and adult, not bubbly
133
+ - **Dramatic shadows**: `0 8px 24px rgba(0,0,0,0.35)` — deep, cinematic drops
134
+ - **Accent glow**: `0 0 60px rgba(255, 77, 42, 0.15)` — used only on featured/hero elements
135
+ - **Mono captions**: Every category, date, overline, and metadata uses JetBrains Mono + uppercase + wide tracking
136
+ - **Display-only font for impact numbers**: stat counters, big headlines, manifesto text
137
+ - **White sections as dramatic counterpoint**: light sections inside dark pages feel like spotlight moments
138
+
139
+ ## Application rules
140
+
141
+ - Treat `references/design-tokens.md` as the source of truth for ALL tokens.
142
+ - Treat `references/art-direction.md` as the source of truth for expression, signature moves, and anti-generic decisions.
143
+ - Resolve the page variant before composing: marketing/landing pages use narrative editorial pacing; apps use structured dark shell with focused hierarchy.
144
+ - Never combine this package with `warm-craft-ui`, `clean-saas-ui`, `glassmorphism-ui`, `neo-brutalist-ui`, or any other design skill in the same task.
145
+ - Reuse the project's component library if one exists — map Bold Editorial tokens onto it instead of rebuilding primitives.
146
+ - Adapt code examples to the active stack. Reference snippets are design specifications, not copy-paste code.
147
+ - Accessibility, responsiveness, and production semantics are the agent's responsibility (not this skill).
148
+
149
+ ## Intent before visuals
150
+
151
+ Before choosing layout, answer all three:
152
+
153
+ 1. Who is the human arriving at this page right now?
154
+ 2. What is the single impression or action that must land?
155
+ 3. How should this interface feel — in concrete, visceral words, not generic labels?
156
+
157
+ Bad answers:
158
+ - "for users"
159
+ - "show features"
160
+ - "bold and modern"
161
+
162
+ Good answers:
163
+ - "developer evaluating a new infrastructure product at 11pm"
164
+ - "creative director deciding whether to shortlist an agency"
165
+ - "cinematic, authoritative, like a product launch trailer"
166
+
167
+ ## Workflow discipline
168
+
169
+ 1. Audit the current page or existing UI before changing visuals.
170
+ 2. Explore the product domain and choose one expression mode from `references/art-direction.md`.
171
+ 3. Name one signature move and repeat it intentionally across the page.
172
+ 4. Consolidate repeating patterns instead of inventing new card/button variants per screen.
173
+ 5. Build from tokens first, then components, then page composition.
174
+ 6. Validate state parity before finishing: default, hover, active, focus, disabled.
175
+ 7. Validate contrast: white text on dark surfaces must exceed WCAG AA. Light sections must re-verify independently.
176
+
177
+ ## Non-negotiable quality gates
178
+
179
+ - Never use a generic dark theme — `#0A0A0A` is near-black, intentionally chosen, not "dark mode gray".
180
+ - Never use blue, teal, or purple as the primary accent — this is red-orange or nothing.
181
+ - Display font is non-negotiable — if Clash Display is unavailable, use Cabinet Grotesk or Syne, not Inter.
182
+ - Typography must carry the hierarchy before color does — if the type scale is wrong, no color fix will help.
183
+ - The grid must break intentionally at least once per page — a fully regular grid is anti-editorial.
184
+ - Mono captions are the connective tissue — overlines, categories, and metadata must use `font-mono`.
185
+ - Never add a warm tint, rounded corners above `radius-xl` (16px), or serif fonts — these belong to Warm Craft.
186
+ - Accent glow (`shadow-glow`) is reserved for one element per viewport — the hero CTA or the featured card.
187
+ - Every section alternation (dark → light → dark) must feel like a deliberate cut, not an accident.
188
+ - Sameness is failure. If the result could be a generic dark SaaS landing page, iterate before presenting.
189
+ - Every full page must have one typographic statement that could stand alone as a poster.
190
+
191
+ ## Delivery modes
192
+
193
+ ### Greenfield
194
+ 1. Choose page variant (marketing, app, dashboard, documentation)
195
+ 2. Load relevant references
196
+ 3. Apply token scope from `design-tokens.md`
197
+ 4. Compose layout from `patterns.md` or `websites.md`
198
+ 5. Build components from `components.md`
199
+
200
+ ### Brownfield
201
+ 1. Audit existing UI before rewriting
202
+ 2. Map Bold Editorial tokens onto the existing component library
203
+ 3. Fix token scope issues (font/color variables must be on the correct container)
204
+ 4. Consolidate duplicate variants before introducing new ones
205
+ 5. Prefer targeted upgrades over full rewrites unless the user asks for a redesign