@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,291 @@
1
+ # Output Contract — design-hybrid-forge
2
+
3
+ Load when running Phases 4 and 5 (skill generation + preview generation).
4
+
5
+ Defines exactly what each file must contain and the minimum quality bar.
6
+
7
+ ---
8
+
9
+ ## File generation order
10
+
11
+ Write in this order — each file informs the next:
12
+
13
+ 1. `SKILL.md` — identity + rules (uses crossover spec from phase 3)
14
+ 2. `references/design-tokens.md` — all CSS variables (uses accent + substrate from phase 2)
15
+ 3. `references/art-direction.md` — expression modes + signature library (uses pillars from phase 2)
16
+ 4. `references/components.md` — component library (uses tokens + art direction)
17
+ 5. `references/patterns.md` — page layouts (uses components)
18
+ 6. `references/dashboards.md` — dashboard presets (uses patterns + tokens)
19
+ 7. `references/websites.md` — landing patterns (uses components + art direction)
20
+ 8. `references/motion.md` — animations (uses tokens + components)
21
+ 9. `.skill-meta.json` — author, parentage, generator, install/distribution metadata
22
+ 10. `previews/{name}.html` — dashboard preview (uses all above)
23
+ 11. `previews/{name}-website.html` — landing preview (uses all above)
24
+ 12. `AGENTS.md` — register the installed skill section when that file exists
25
+
26
+ ---
27
+
28
+ ## File-by-file requirements
29
+
30
+ ### SKILL.md
31
+
32
+ Required sections (must all be present):
33
+ - Frontmatter: `name`, `description` (includes activation keywords)
34
+ - One-paragraph system description
35
+ - `## Package structure` (directory tree)
36
+ - `## Activation rules` (when to load / when not to)
37
+ - `## Responsibility boundary` (defines / does not decide)
38
+ - `## Loading guide` (table: task → which references to load)
39
+ - `## Visual signature — three pillars` (the three from phase 2)
40
+ - `## Hybrid DNA` (from A / from B / new in hybrid — explicit)
41
+ - `## Modifier DNA` (only if modifiers were used)
42
+ - `## Variation Overlay` (only if a variation preset / overlay was selected)
43
+ - `## Theme system` (default theme + optional, HTML data-theme snippet)
44
+ - `## Visual DNA` (complete CSS color specs for dark + light, including hex values)
45
+ - `## Layout structure` (ASCII diagram of the main app shell)
46
+ - `## Signature details` (list of specific CSS rules for the signature moves)
47
+ - `## Application rules` (7–10 binding rules)
48
+ - `## Intent before visuals` (3 questions + bad/good examples)
49
+ - `## Workflow discipline` (7-step checklist)
50
+ - `## Non-negotiable quality gates` (8–12 gates)
51
+ - `## Positioning vs parent skills` (comparison table vs both parents)
52
+ - `## Delivery modes` (greenfield + brownfield)
53
+
54
+ The file must state clearly that the hybrid is selected as one design skill and must not be blended live with other active design skills.
55
+
56
+ ### references/design-tokens.md
57
+
58
+ Required content:
59
+ - Typography strategy (system vs Google Fonts decision)
60
+ - Complete `:root` block: typography tokens, spacing (4px rhythm), radius, transitions, z-index
61
+ - `[data-theme="dark"]` block: ALL color tokens
62
+ - `[data-theme="light"]` block: ALL color tokens
63
+ - **Hybrid glass/surface tokens** (unique to this hybrid — the new surface system)
64
+ - Shadow tokens (tinted with hybrid accent — never plain black)
65
+ - Layout tokens (sidebar width, nav height, content widths)
66
+ - Breakpoints
67
+ - Interaction guardrails (at least 4 rules)
68
+ - Token scope guardrails (rule 1–4 with safe/unsafe examples)
69
+ - Admin compact density scale (if structure parent = cognitive-core or clean-saas)
70
+
71
+ If modifiers were used, token changes must stay inside their allowed lane. Example: a motion modifier must not redefine layout width tokens.
72
+ If a variation overlay exists, reflect it in tokens only where it changes expression without violating the parent-owned structure/substrate rules.
73
+
74
+ Minimum: dark theme has at least 8 bg/surface tokens, 6 accent tokens, 6 semantic tokens, 4 shadow tokens.
75
+
76
+ ### references/art-direction.md
77
+
78
+ Required content:
79
+ - Core rule ("same system, different expressions")
80
+ - Mandatory pre-build outputs (7 items)
81
+ - **5 expression modes** — each with: for/feel/composition/visual cues/signature ideas
82
+ - Signature library (table with ≥10 reusable details)
83
+ - Anti-generic tests (≥4 tests, at least one unique to this hybrid)
84
+ - What makes each mode distinct (table contrasting the 5 modes)
85
+
86
+ If modifiers exist, call out exactly where they are allowed to appear and where they are forbidden.
87
+ If a variation overlay exists, describe how it changes the expression modes without turning them into unrelated themes.
88
+
89
+ ### references/components.md
90
+
91
+ Required: ≥20 named components, each with:
92
+ - Name and purpose
93
+ - Key CSS properties (using tokens, never hardcoded values)
94
+ - Hover/active/focus states
95
+ - The hybrid-specific surface treatment (glass/texture/depth)
96
+
97
+ Must include: top bar, sidebar, stat card, section header, data table, badge/chip, modal, button variants (primary gradient + secondary + ghost), form input, dropdown, at least one hybrid-specific component that doesn't exist in either parent.
98
+
99
+ ### references/patterns.md
100
+
101
+ Required: ≥6 page layout patterns, each with:
102
+ - ASCII diagram of the layout
103
+ - CSS skeleton (grid/flex, sizing, overflow)
104
+ - Fallback rules
105
+ - Use case (when to choose this pattern)
106
+
107
+ Must include: main app shell, dashboard shell (≥1 operational variant), auth page, settings page.
108
+
109
+ ### references/dashboards.md
110
+
111
+ Required:
112
+ - General rules section (≥6 rules)
113
+ - Chart color palette (CSS variables)
114
+ - Chart rendering rules (one per chart type)
115
+ - **5 dashboard presets**, each with:
116
+ - Expression mode
117
+ - Feel (concrete words)
118
+ - Domain vocabulary
119
+ - Full layout description (stat row + main panels + table/feed)
120
+ - Signature move
121
+
122
+ ### references/websites.md
123
+
124
+ Required:
125
+ - General rules section
126
+ - Page shell CSS
127
+ - ≥2 hero variants (at least one split layout, one centered/atmospheric)
128
+ - ≥4 section patterns (feature grid, proof rail, pricing, testimonials/CTA)
129
+ - Footer pattern
130
+ - Anti-patterns list (≥5)
131
+
132
+ ### references/motion.md
133
+
134
+ Required:
135
+ - Timing philosophy (3–4 sentences)
136
+ - Core easing functions (CSS custom properties)
137
+ - ≥8 named animations, each with CSS keyframes + usage context
138
+ - Reduced motion block (`@media (prefers-reduced-motion: reduce)`)
139
+ - Performance rules (≥4)
140
+
141
+ ### .skill-meta.json
142
+
143
+ Required content:
144
+ - `source: "generated"`
145
+ - `generation_mode: "project-local"`
146
+ - `installedAt`
147
+ - `author.name` when the user provided one
148
+ - `generator.skill: "design-hybrid-forge"`
149
+ - `generator.model` when the runtime/tool exposes it
150
+ - `generator.tool` when known (`claude`, `codex`, etc.)
151
+ - `parents.primary` with exactly 2 entries
152
+ - `parents.modifiers` with 0–2 entries by default, or 0–3 only when advanced mode was enabled
153
+ - `promotion.status` (`local`, `candidate`, `promoted`)
154
+ - `variation_profile` when a preset/overlay was selected
155
+ - `variation_profile.modifier_policy` when the active preset declared it
156
+
157
+ Recommended shape:
158
+
159
+ ```json
160
+ {
161
+ "source": "generated",
162
+ "generation_mode": "project-local",
163
+ "installedAt": "2026-03-30T00:00:00.000Z",
164
+ "author": {
165
+ "name": "ACME Design Team"
166
+ },
167
+ "generator": {
168
+ "skill": "design-hybrid-forge",
169
+ "tool": "codex",
170
+ "model": "gpt-5.x"
171
+ },
172
+ "parents": {
173
+ "primary": ["cognitive-core-ui", "glassmorphism-ui"],
174
+ "modifiers": ["bold-editorial-ui"]
175
+ },
176
+ "variation_profile": {
177
+ "modifier_policy": "up_to_2_modifiers",
178
+ "style_modes": ["cinematic-immersive"],
179
+ "motion_system": ["scroll-driven-scenes"],
180
+ "advanced_css": ["scroll-driven-animations", "view-transition-api"]
181
+ },
182
+ "promotion": {
183
+ "status": "local"
184
+ }
185
+ }
186
+ ```
187
+
188
+ ### AGENTS.md registration
189
+
190
+ When `AGENTS.md` exists in the project, update the "Installed skills" section so Codex can invoke the new hybrid via `@{slug}`.
191
+
192
+ If `.aioson/context/design-variation-preset.md` was consumed for the generation:
193
+ - preserve the history snapshot under `.aioson/context/history/design-variation-presets/`
194
+ - remove or archive the active preset from `.aioson/context/` after the hybrid files are finished
195
+ - do not treat that preset as the permanent visual configuration of the project
196
+
197
+ Required row format:
198
+
199
+ ```markdown
200
+ | @{slug} | `.aioson/installed-skills/{slug}/SKILL.md` | {short description} |
201
+ ```
202
+
203
+ ---
204
+
205
+ ## Preview requirements
206
+
207
+ ### Dashboard preview (`previews/{name}.html`)
208
+
209
+ Must show:
210
+ - The aurora/substrate background visible through glass panels
211
+ - Command strip with live dots (if structure parent = cognitive-core)
212
+ - Top bar with logo + tab nav + actions
213
+ - Sidebar with section labels + nav items
214
+ - Stat row (4 cards minimum)
215
+ - At least one chart (can be SVG simulation)
216
+ - At least one feed or alert panel
217
+ - Full data table (with header + 3–5 rows)
218
+ - All glass surfaces with `::before` reflection
219
+ - Hybrid accent gradient on at least 3 visible elements
220
+ - AIOSON badge (fixed, top-right)
221
+ - Must render correctly with no external dependencies beyond Google Fonts
222
+
223
+ ### Landing page preview (`previews/{name}-website.html`)
224
+
225
+ Must show:
226
+ - Full-page substrate background (fixed, aurora gradient or equivalent)
227
+ - Glass navigation bar (fixed, scroll-opaque behavior via CSS class)
228
+ - Hero section (split or centered — not a plain two-column with no visual punch)
229
+ - At least one decorative atmosphere element (orb, gradient blob, etc.)
230
+ - Proof rail / social proof strip
231
+ - Feature cards section (≥6 cards, 3-column grid)
232
+ - Pricing section (3 tiers, featured card visually distinct with gradient border)
233
+ - Footer with glass treatment
234
+ - Hybrid accent gradient on hero heading or CTA
235
+ - AIOSON badge
236
+
237
+ ### Technical requirements (both previews)
238
+
239
+ - Single `.html` file (no external CSS or JS files)
240
+ - Google Fonts loaded via `<link>` (Inter + JetBrains Mono)
241
+ - All CSS in `<style>` tag in `<head>`
242
+ - All design tokens as CSS custom properties in `:root`
243
+ - Glass elements use `@supports (backdrop-filter: blur(1px))` fallback or document that they don't need it
244
+ - No JavaScript required for visual display (JS only for optional interactions)
245
+ - Renders at 1440px wide (the preview standard)
246
+
247
+ ---
248
+
249
+ ## Optional promotion requirements
250
+
251
+ Only for explicit core-promotion mode:
252
+ - prepare a gallery card for `docs/design-previews/index.html`
253
+ - prepare the hybrid for `.aioson/skills/design/{name}/`
254
+ - update naming/registry files only in the AIOSON core repo
255
+
256
+ ### Gallery card requirements
257
+
258
+ When adding to `index.html` in core-promotion mode:
259
+
260
+ ```html
261
+ <!-- Hybrid card structure -->
262
+ <div class="skill-card">
263
+ <div class="preview-thumb thumb-{name}">
264
+ <span class="preview-label">{3-word vibe description}</span>
265
+ </div>
266
+ <div class="card-body">
267
+ <div class="card-header">
268
+ <span class="card-name accent-{name}">{Display Name}</span>
269
+ <span class="hybrid-badge">✦ Hybrid</span> <!-- REQUIRED for hybrids -->
270
+ </div>
271
+ <p class="card-description">
272
+ {Parent A} × {Parent B}. {2–3 sentence description of the hybrid identity.}
273
+ </p>
274
+ <div class="card-meta">
275
+ <!-- 4 use case pills -->
276
+ </div>
277
+ <div class="card-links">
278
+ <a href="{name}.html">Dashboard</a>
279
+ <a href="{name}-website.html">Landing page</a>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ ```
284
+
285
+ Thumbnail CSS must:
286
+ - Use the hybrid's substrate as background
287
+ - Include a `::before` pseudo-element showing the glass surface treatment
288
+ - Include an atmospheric `::after` showing the accent glow
289
+ - Be visually distinct from both parent thumbnails in the gallery
290
+
291
+ Update the skill count in `hero-meta` and `footer`.
@@ -0,0 +1,117 @@
1
+ # Pair Compatibility — design-hybrid-forge
2
+
3
+ Load when choosing which two base skills to combine this week.
4
+
5
+ ---
6
+
7
+ ## The tension principle
8
+
9
+ The best hybrid pairs have **creative tension** — they pull in different directions, and the hybrid resolves the tension into something neither parent could be alone.
10
+
11
+ Two skills that are too similar produce a redundant hybrid. Two skills that are completely incompatible (same aesthetic, same structure, same depth model) produce noise, not synthesis.
12
+
13
+ **Rule:** choose pairs where one skill is structure-dominant and the other is aesthetic-dominant, OR where they share a dimension but differ radically in another.
14
+
15
+ ---
16
+
17
+ ## Skill taxonomy
18
+
19
+ Each base skill has a primary role:
20
+
21
+ | Skill | Role | Structure model | Aesthetic model | Default theme |
22
+ |---|---|---|---|---|
23
+ | `cognitive-core-ui` | Structure | Command center, dense, mono rails | Solid dark surfaces, teal accent | Dark |
24
+ | `clean-saas-ui` | Structure | Systematic B2B, medium density | Neutral solid surfaces, blue accent | Light |
25
+ | `neo-brutalist-ui` | Structure | Raw grid, brutal honesty | Hard borders, yellow accent, zero blur | Light |
26
+ | `bold-editorial-ui` | Structure + Aesthetic | Editorial rhythm, section contrast | Dark cinematic, red-orange accent | Dark |
27
+ | `glassmorphism-ui` | Aesthetic | Glass layers, gradient substrate | Transparent surfaces, violet-blue | Light |
28
+ | `warm-craft-ui` | Aesthetic | Breathable, serif-driven | Warm solid surfaces, terracotta | Light |
29
+ | `premium-command-center-ui` | Structure + Aesthetic | Tri-rail, operational | Aurora-glass, graphite | Dark |
30
+ | `interface-design` | Neutral | Flexible | Flexible | Adaptive |
31
+
32
+ ---
33
+
34
+ ## Compatibility matrix
35
+
36
+ `✦` = High tension, strong hybrid potential
37
+ `◈` = Medium tension, viable
38
+ `○` = Low tension, too similar or too incompatible
39
+ `✕` = Avoid, redundant (same family)
40
+
41
+ | | cognitive-core | clean-saas | neo-brutalist | bold-editorial | glassmorphism | warm-craft | premium-command | interface-design |
42
+ |---|---|---|---|---|---|---|---|---|
43
+ | **cognitive-core** | — | ◈ | ✦ | ✦ | ✦ | ✦ | ✕ | ◈ |
44
+ | **clean-saas** | ◈ | — | ✦ | ◈ | ✦ | ✦ | ◈ | ○ |
45
+ | **neo-brutalist** | ✦ | ✦ | — | ✦ | ✦ | ✦ | ◈ | ◈ |
46
+ | **bold-editorial** | ✦ | ◈ | ✦ | — | ✦ | ◈ | ◈ | ◈ |
47
+ | **glassmorphism** | ✦ | ✦ | ✦ | ✦ | — | ✦ | ✕ | ◈ |
48
+ | **warm-craft** | ✦ | ✦ | ✦ | ◈ | ✦ | — | ◈ | ◈ |
49
+ | **premium-command** | ✕ | ◈ | ◈ | ◈ | ✕ | ◈ | — | ○ |
50
+ | **interface-design** | ◈ | ○ | ◈ | ◈ | ◈ | ◈ | ○ | — |
51
+
52
+ ---
53
+
54
+ ## Completed hybrids (do not repeat)
55
+
56
+ | Pair | Hybrid name | Shipped |
57
+ |---|---|---|
58
+ | cognitive-core-ui × glassmorphism-ui | `aurora-command-ui` | 2026-03-29 |
59
+
60
+ ---
61
+
62
+ ## Recommended next pairs (high tension, not yet done)
63
+
64
+ **Tier 1 — Maximum tension, clear identity:**
65
+
66
+ | Pair | Anticipated identity | Best for |
67
+ |---|---|---|
68
+ | `neo-brutalist-ui` × `glassmorphism-ui` | Raw structural grid over a frosted aurora — brutal honesty made luminous | Indie dev tools, open source dashboards |
69
+ | `warm-craft-ui` × `cognitive-core-ui` | Earthy command center — serifs + mono rails, terracotta + teal tension | AI agent platforms with human focus, productivity SaaS |
70
+ | `neo-brutalist-ui` × `cognitive-core-ui` | Cold data brutalism — raw borders, dense mono, no decoration, only signal | Infrastructure monitoring, CLI-adjacent tools |
71
+ | `bold-editorial-ui` × `glassmorphism-ui` | Dark glass editorial — cinematic depth through transparency, editorial scale | SaaS marketing, product launches, AI platforms |
72
+ | `warm-craft-ui` × `glassmorphism-ui` | Warm aurora — soft glass over warm gradients, terracotta glow, humanized depth | Wellness, productivity, note-taking, B2C SaaS |
73
+ | `clean-saas-ui` × `glassmorphism-ui` | Crystalline enterprise — minimal glass, disciplined structure, enterprise-grade glass | B2B SaaS with premium feel, enterprise admin |
74
+
75
+ **Tier 2 — Strong but more constrained:**
76
+
77
+ | Pair | Anticipated identity |
78
+ |---|---|
79
+ | `bold-editorial-ui` × `cognitive-core-ui` | Dark editorial command — large display type + mono rails, red-orange × teal tension |
80
+ | `neo-brutalist-ui` × `warm-craft-ui` | Crafted brutalism — raw structure + handmade warmth, artisan dev aesthetic |
81
+ | `clean-saas-ui` × `bold-editorial-ui` | Enterprise editorial — clean precision + cinematic moments, professional drama |
82
+
83
+ ---
84
+
85
+ ## Pair selection questions
86
+
87
+ Before committing to a pair, answer:
88
+
89
+ 1. **Can you name the creative tension in one sentence?** If not, the pair may be too similar.
90
+ 2. **Which skill wins the substrate?** One parent's background model must dominate — it cannot be 50/50.
91
+ 3. **What is genuinely new?** Name one element that exists in neither parent and will only exist in the hybrid.
92
+ 4. **Who uses this?** If the target user is identical to both parent skills, the hybrid is redundant.
93
+ 5. **Does the name suggest a third thing?** The hybrid's name must not sound like "A + B" but like a new concept.
94
+
95
+ ---
96
+
97
+ ## Optional modifier lane
98
+
99
+ After the core pair is chosen, you may optionally add up to 2 modifier skills. A 3rd modifier is allowed only when the user explicitly enables advanced mode or the active variation preset carries `modifier_policy: "up_to_3_modifiers"`.
100
+
101
+ Modifier rules:
102
+ - Modifiers are optional. The hybrid must still stand on the 2 primary parents alone.
103
+ - Modifiers cannot own substrate, layout system, navigation model, or density baseline.
104
+ - Modifiers may influence only accent refinement, motion, website narrative patterns, or one small component family.
105
+ - If a modifier makes the identity harder to describe in one sentence, remove it.
106
+ - `interface-design` is allowed as a modifier, but is too neutral to be a primary parent.
107
+
108
+ ---
109
+
110
+ ## Anti-pairs
111
+
112
+ Avoid these regardless of aesthetic appeal:
113
+
114
+ - `cognitive-core-ui` × `premium-command-center-ui` — same domain, same depth model, redundant
115
+ - `glassmorphism-ui` × `premium-command-center-ui` — too similar (both glass + aurora)
116
+ - `interface-design` × any skill — interface-design is a neutral craft package, hybrids require distinct DNA poles
117
+ - Any skill with itself — obvious
@@ -0,0 +1,188 @@
1
+ # Quality Gates — design-hybrid-forge
2
+
3
+ Load when validating a hybrid before shipping (Phase 6).
4
+
5
+ Run all gates in order. A hybrid that fails any gate is not done — return to the phase indicated.
6
+
7
+ ---
8
+
9
+ ## Gate A — Identity clarity
10
+
11
+ **Question:** Can you describe this hybrid in one sentence without naming its parents?
12
+
13
+ Pass: The sentence names a specific vibe, specific user, specific use case.
14
+ > "A dark glass command center where operational precision lives inside an aurora gradient — for teams running security operations or AI platforms."
15
+
16
+ Fail: The sentence is vague, generic, or only makes sense by referencing the parents.
17
+ > "It combines dark dashboard style with glass effects."
18
+
19
+ **If fail:** Return to Phase 2 (crossover spec) — the identity is not clear enough.
20
+
21
+ ---
22
+
23
+ ## Gate B — The third thing test
24
+
25
+ **Question:** Name 3 elements in the hybrid that exist in NEITHER parent.
26
+
27
+ Pass: You can name 3 specific CSS values, interaction patterns, or composition rules that are genuinely new.
28
+
29
+ Fail: Every element in the hybrid can be traced back to parent A or parent B — the hybrid is a mashup, not a synthesis.
30
+
31
+ **If fail:** Return to Phase 3 — identify at minimum 3 new elements before writing files.
32
+
33
+ ---
34
+
35
+ ## Gate C — Accent fusion test
36
+
37
+ **Question:** Is the accent gradient a genuine fusion, or is it just parent A's color + parent B's color next to each other?
38
+
39
+ Run this test: Cover the gradient label. Show only the gradient swatch to someone who knows both parents. Would they say "oh, that's just A and B stacked"?
40
+
41
+ Pass: The gradient produces a new color perception. The transition between the two endpoints creates a third color that is the hybrid's identity.
42
+
43
+ Fail: The gradient is jarring or reads as "two separate accents." No new color emerges.
44
+
45
+ **If fail:** Adjust the gradient angle, midpoint color, or one endpoint. The goal is a gradient that reads as one accent, not two.
46
+
47
+ ---
48
+
49
+ ## Gate D — Substrate visibility test
50
+
51
+ **Question:** Is the substrate visible through the glass/surface panels?
52
+
53
+ Test procedure:
54
+ 1. Open the dashboard preview.
55
+ 2. Look at the glass stat cards. Can you see the background gradient through them?
56
+ 3. Look at the sidebar. Can you see the gradient?
57
+
58
+ Pass: The aurora/gradient is clearly visible through at least 60% of glass surfaces. The interface "lives inside" the background.
59
+
60
+ Fail: The glass panels are too opaque — the background looks like a solid dark or light color behind the panels, not a visible gradient.
61
+
62
+ **If fail:** Reduce glass surface opacity. For dark glass: stay at or below `rgba(r,g,b,0.75)`. For white glass: stay at or below `rgba(255,255,255,0.70)`. Do not "solidify" the panels.
63
+
64
+ ---
65
+
66
+ ## Gate E — Structure legibility test
67
+
68
+ **Question:** Does the command/layout structure read clearly, or does the aesthetic overwhelm the hierarchy?
69
+
70
+ Test procedure:
71
+ 1. Open the dashboard preview.
72
+ 2. Blur your eyes. Can you still see: top bar / sidebar / content area / section headers?
73
+ 3. Without reading text, can you identify which element is the stat number vs body copy vs section label?
74
+
75
+ Pass: The layout structure is clear at a glance, even through the glass/aesthetic treatment.
76
+
77
+ Fail: The blur/gradient/texture treatment makes sections bleed into each other. Hierarchy is lost.
78
+
79
+ **If fail:** Increase contrast between structure-defining elements (top bar, sidebar, section headers) and content areas. The glass treatment must respect structure, not obscure it.
80
+
81
+ ---
82
+
83
+ ## Gate F — Sameness test
84
+
85
+ **Question:** Could this hybrid be mistaken for a default AI dashboard, a Tailwind UI starter, or a generic dark theme?
86
+
87
+ Test procedure:
88
+ 1. Remove all brand names from the preview.
89
+ 2. Show it alongside 3 other dark UI screenshots.
90
+ 3. Does it have at least one immediately distinctive visual element?
91
+
92
+ Pass: There is one element that could not exist in a generic dashboard — something that is clearly the result of this specific hybrid pairing.
93
+
94
+ Fail: The design looks like "dark + blur" with no further identity.
95
+
96
+ **If fail:** Identify the signature move and amplify it. Make it appear in at least 5 places. The signature should be the first thing you notice.
97
+
98
+ ---
99
+
100
+ ## Gate G — Parent distinction test
101
+
102
+ **Question:** Is the hybrid visually distinct from BOTH parents?
103
+
104
+ Test procedure:
105
+ 1. Open the dashboard preview alongside `cognitive-core-ui.html` and `glassmorphism-ui.html` (or the two actual parents).
106
+ 2. Does the hybrid look like parent A? If yes — the aesthetic from parent B was not applied strongly enough.
107
+ 3. Does the hybrid look like parent B? If yes — the structure from parent A was not applied strongly enough.
108
+
109
+ Pass: Looking at all three side by side, the hybrid is clearly different from both parents while sharing DNA with each.
110
+
111
+ Fail: The hybrid looks like a minor variant of one parent.
112
+
113
+ **If fail:** Identify which parent is dominant and push the contribution from the other parent harder. Usually this means making the new elements (Gate B) more prominent.
114
+
115
+ ---
116
+
117
+ ## Gate H — Preview completeness
118
+
119
+ **Question:** Do both HTML previews satisfy all requirements from `output-contract.md`?
120
+
121
+ Checklist (dashboard preview):
122
+ - [ ] Substrate background visible through glass panels
123
+ - [ ] Command strip or equivalent live indicator (if structure parent warrants it)
124
+ - [ ] Top bar + sidebar + stat row + chart + feed/alert + data table
125
+ - [ ] Hybrid accent gradient on ≥3 visible elements
126
+ - [ ] `::before` reflection on glass cards
127
+ - [ ] AIOSON badge with hybrid accent
128
+
129
+ Checklist (landing preview):
130
+ - [ ] Full-page substrate background
131
+ - [ ] Glass navigation bar
132
+ - [ ] Hero section (not a generic centered CTA)
133
+ - [ ] Atmospheric element (orb, gradient blob)
134
+ - [ ] Proof rail + feature grid + pricing (3 tiers, featured card distinct)
135
+ - [ ] Footer with glass treatment
136
+ - [ ] AIOSON badge
137
+
138
+ Pass: All items checked.
139
+ Fail: Return to Phase 5 and complete the missing elements.
140
+
141
+ ---
142
+
143
+ ## Gate I — Metadata integrity
144
+
145
+ **Question:** Does `.skill-meta.json` accurately describe the hybrid?
146
+
147
+ Checklist:
148
+ - [ ] `source` is `generated`
149
+ - [ ] `generation_mode` is `project-local`
150
+ - [ ] `parents.primary` contains exactly 2 skills
151
+ - [ ] `parents.modifiers` contains at most 2 skills by default, or at most 3 only when advanced mode was explicitly enabled
152
+ - [ ] `author.name` is filled when the user provided it
153
+ - [ ] `generator.skill` is `design-hybrid-forge`
154
+ - [ ] `generator.model` is recorded when the runtime exposed it
155
+ - [ ] `variation_profile.modifier_policy` matches the generation mode when a preset was used
156
+
157
+ Pass: The metadata is present and matches the generated skill.
158
+ Fail: Return to Phase 4 and fix the metadata before distribution.
159
+
160
+ ---
161
+
162
+ ## Final ship checklist — project-local mode
163
+
164
+ Before marking the project-local hybrid as done:
165
+
166
+ - [ ] All 8 skill files written (SKILL.md + 7 references)
167
+ - [ ] `.skill-meta.json` written
168
+ - [ ] Both HTML previews written inside `previews/`
169
+ - [ ] Variation overlay reflected in previews and metadata when one was selected
170
+ - [ ] Active preset removed or archived from `.aioson/context/design-variation-preset.md` after successful generation
171
+ - [ ] History snapshot preserved in `.aioson/context/history/design-variation-presets/`
172
+ - [ ] `AGENTS.md` updated when it exists
173
+ - [ ] Tool-native mirrors updated if the directories exist
174
+ - [ ] All quality gates A through I passed
175
+
176
+ When all are checked: the project-local hybrid is shipped.
177
+
178
+ ## Final ship checklist — core-promotion mode
179
+
180
+ Only for explicit promotion back to AIOSON core:
181
+
182
+ - [ ] Project-local checklist already passed
183
+ - [ ] `.aioson/skills/design/{slug}/` prepared in the core repo
184
+ - [ ] `docs/design-previews/index.html` updated with `✦ Hybrid` badge
185
+ - [ ] `naming-registry.md` updated with the new hybrid entry
186
+ - [ ] `pair-compatibility.md` updated (add pair to completed list)
187
+
188
+ When all are checked: the hybrid is ready for PR / marketplace curation.