@jaimevalasek/aioson 1.5.1 → 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 (131) hide show
  1. package/README.md +6 -0
  2. package/docs/design-previews/aurora-command-ui-website.html +884 -0
  3. package/docs/design-previews/aurora-command-ui.html +682 -0
  4. package/docs/design-previews/bold-editorial-ui-website.html +658 -0
  5. package/docs/design-previews/bold-editorial-ui.html +717 -0
  6. package/docs/design-previews/clean-saas-ui-website.html +1202 -0
  7. package/docs/design-previews/clean-saas-ui.html +549 -0
  8. package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
  9. package/docs/design-previews/cognitive-core-ui.html +463 -0
  10. package/docs/design-previews/glassmorphism-ui-website.html +572 -0
  11. package/docs/design-previews/glassmorphism-ui.html +886 -0
  12. package/docs/design-previews/index.html +699 -0
  13. package/docs/design-previews/interface-design-website.html +1187 -0
  14. package/docs/design-previews/interface-design.html +513 -0
  15. package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
  16. package/docs/design-previews/neo-brutalist-ui.html +797 -0
  17. package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
  18. package/docs/design-previews/premium-command-center-ui.html +552 -0
  19. package/docs/design-previews/warm-craft-ui-website.html +684 -0
  20. package/docs/design-previews/warm-craft-ui.html +739 -0
  21. package/docs/en/cli-reference.md +20 -9
  22. package/docs/pt/README.md +7 -0
  23. package/docs/pt/agent-sharding.md +132 -0
  24. package/docs/pt/agentes.md +8 -2
  25. package/docs/pt/busca-de-contexto.md +129 -0
  26. package/docs/pt/cache-de-contexto.md +156 -0
  27. package/docs/pt/comandos-cli.md +28 -0
  28. package/docs/pt/design-hybrid-forge.md +107 -0
  29. package/docs/pt/inicio-rapido.md +54 -3
  30. package/docs/pt/inteligencia-adaptativa.md +324 -0
  31. package/docs/pt/monitor-de-contexto.md +104 -0
  32. package/docs/pt/recuperacao-de-sessao.md +125 -0
  33. package/docs/pt/sandbox.md +125 -0
  34. package/docs/pt/skills.md +98 -6
  35. package/package.json +1 -1
  36. package/src/agent-loader.js +280 -0
  37. package/src/cli.js +94 -0
  38. package/src/commands/agent-loader.js +85 -0
  39. package/src/commands/context-cache.js +90 -0
  40. package/src/commands/context-monitor.js +92 -0
  41. package/src/commands/context-search.js +66 -0
  42. package/src/commands/design-hybrid-options.js +385 -0
  43. package/src/commands/health.js +214 -0
  44. package/src/commands/init.js +54 -13
  45. package/src/commands/install.js +52 -13
  46. package/src/commands/learning-evolve.js +355 -0
  47. package/src/commands/live.js +34 -0
  48. package/src/commands/recovery.js +43 -0
  49. package/src/commands/sandbox.js +37 -0
  50. package/src/commands/setup-context.js +22 -2
  51. package/src/commands/setup.js +178 -0
  52. package/src/commands/skill.js +79 -32
  53. package/src/commands/tool-registry-cmd.js +232 -0
  54. package/src/commands/update.js +7 -0
  55. package/src/constants.js +9 -0
  56. package/src/context-cache.js +159 -0
  57. package/src/context-search.js +326 -0
  58. package/src/design-variation-catalog.js +503 -0
  59. package/src/i18n/messages/en.js +32 -2
  60. package/src/i18n/messages/es.js +30 -2
  61. package/src/i18n/messages/fr.js +30 -2
  62. package/src/i18n/messages/pt-BR.js +32 -2
  63. package/src/install-animation.js +260 -0
  64. package/src/install-profile.js +143 -0
  65. package/src/install-wizard.js +474 -0
  66. package/src/installer.js +38 -10
  67. package/src/parser.js +7 -1
  68. package/src/recovery-context-session.js +154 -0
  69. package/src/runtime-store.js +97 -1
  70. package/src/sandbox.js +177 -0
  71. package/src/tool-executor.js +94 -0
  72. package/src/updater.js +11 -3
  73. package/template/.aioson/agents/analyst.md +58 -3
  74. package/template/.aioson/agents/architect.md +38 -0
  75. package/template/.aioson/agents/design-hybrid-forge.md +127 -0
  76. package/template/.aioson/agents/dev.md +103 -0
  77. package/template/.aioson/agents/deyvin.md +57 -0
  78. package/template/.aioson/agents/pm.md +58 -0
  79. package/template/.aioson/agents/product.md +28 -0
  80. package/template/.aioson/agents/qa.md +79 -0
  81. package/template/.aioson/agents/setup.md +65 -3
  82. package/template/.aioson/agents/sheldon.md +107 -6
  83. package/template/.aioson/agents/tester.md +156 -0
  84. package/template/.aioson/config.md +15 -0
  85. package/template/.aioson/context/forensics/.gitkeep +0 -0
  86. package/template/.aioson/context/seeds/seed-example.md +27 -0
  87. package/template/.aioson/context/user-profile.md +42 -0
  88. package/template/.aioson/locales/en/agents/setup.md +33 -1
  89. package/template/.aioson/locales/es/agents/setup.md +33 -1
  90. package/template/.aioson/locales/fr/agents/setup.md +33 -1
  91. package/template/.aioson/locales/pt-BR/agents/setup.md +33 -1
  92. package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
  93. package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
  94. package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
  95. package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
  96. package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
  97. package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
  98. package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
  99. package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
  100. package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
  101. package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
  102. package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
  103. package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
  104. package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
  105. package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
  106. package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
  107. package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
  108. package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
  109. package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
  110. package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
  111. package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
  112. package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
  113. package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
  114. package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
  115. package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
  116. package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +45 -0
  117. package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
  118. package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
  119. package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
  120. package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
  121. package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +66 -0
  122. package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
  123. package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +144 -0
  124. package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
  125. package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
  126. package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +291 -0
  127. package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +117 -0
  128. package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +188 -0
  129. package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
  130. package/template/AGENTS.md +23 -1
  131. package/template/CLAUDE.md +1 -0
@@ -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.
@@ -0,0 +1,125 @@
1
+ # Variation Library — design-hybrid-forge
2
+
3
+ Load when the user wants the hybrid to feel more unique, extravagant, classic, animated, CSS-forward, or otherwise less "default SaaS".
4
+
5
+ Updated from a current web scan on **March 30, 2026**. Use these directions as overlays on top of the hybrid's core DNA, never as a replacement for the 2 primary parents.
6
+
7
+ ---
8
+
9
+ ## How to use this file
10
+
11
+ 1. Choose **1–2 style modes**
12
+ 2. Choose **0–2 layout moves**
13
+ 3. Choose **0–2 motion directions**
14
+ 4. Choose **0–2 material / texture signals**
15
+ 5. Choose **1–2 typography moves**
16
+ 6. Choose **0–3 advanced CSS techniques**
17
+ 7. Choose **2 anti-sameness guardrails**
18
+
19
+ If you choose too many items from every category, the result becomes a moodboard instead of a skill.
20
+
21
+ ---
22
+
23
+ ## Style modes
24
+
25
+ | Mode | Use when | Core signal |
26
+ |---|---|---|
27
+ | **Classic editorial** | The user wants timeless, cultured, authoritative UI | Serif-forward hierarchy, measured spacing, mature rhythm |
28
+ | **Extravagant / maximalist** | The user wants a bold, high-personality result | Layered color, dense composition, deliberate abundance |
29
+ | **Cinematic / immersive** | The site should feel like a scene or story world | Atmospheric contrast, chapter-based sections, dramatic reveals |
30
+ | **Playful / dopamine** | The brand benefits from joy and energy | Saturated accents, elastic details, expressive components |
31
+ | **Neo-brutalist / anti-design** | The user wants structure with edge and friction | Hard borders, visible hierarchy, unapologetic layout honesty |
32
+ | **Retrofuturist** | The user wants nostalgic future energy | Chrome, glow, arcade optimism, sci-fi nostalgia |
33
+ | **Luxury modern** | The product needs premium restraint | Selective ornament, wide spacing, exact finishing |
34
+ | **Collage / handmade** | The user wants warmth and irregularity | Mixed media rhythm, visible craft, controlled imperfection |
35
+
36
+ ## Layout moves
37
+
38
+ | Move | What it changes |
39
+ |---|---|
40
+ | **Asymmetric composition** | Breaks center-aligned sameness with controlled tension |
41
+ | **Narrative scroll scenes** | Turns long pages into chapters instead of repeated sections |
42
+ | **Experimental navigation** | Allows map-like, layered, or unconventional entry patterns |
43
+ | **Dense mosaic** | Uses varied card scales and collage logic for dashboards or showcases |
44
+ | **Split-screen contrast** | Maintains tension between two persistent visual zones |
45
+ | **Signature hero structure** | Forces a memorable opening move instead of a generic hero |
46
+
47
+ ## Motion directions
48
+
49
+ | Direction | Best for |
50
+ |---|---|
51
+ | **Restrained microinteractions** | Mature B2B, precise tools, classic systems |
52
+ | **Kinetic typography** | Editorial, launch pages, cinematic brands |
53
+ | **Scroll-driven scenes** | Storytelling pages, showcases, immersive marketing |
54
+ | **View transitions** | App-like navigation continuity, single-page polish |
55
+ | **Cursor-reactive motion** | Experimental / premium interactions with pointer-rich UX |
56
+ | **Gamified feedback** | Playful products, onboarding, consumer-facing experiences |
57
+
58
+ ## Material / texture signals
59
+
60
+ | Signal | Effect |
61
+ |---|---|
62
+ | **Glass layers** | Depth through substrate and translucency |
63
+ | **Grain / noise** | Breaks sterile smoothness and adds tactility |
64
+ | **Paper / editorial tactility** | Print-inspired warmth and cultural depth |
65
+ | **Chrome / metallic** | Reflective future-luxury finish |
66
+ | **Soft tactile UI** | More touchable, product-like controls |
67
+ | **Collage / cutout** | Handmade, layered, artsy expression |
68
+
69
+ ## Typography moves
70
+
71
+ | Move | Why it helps |
72
+ |---|---|
73
+ | **Bold display type** | Establishes identity fast |
74
+ | **Variable font axes** | Makes typography itself part of the motion/shape system |
75
+ | **Serif revival** | Adds warmth, authority, or cultural depth |
76
+ | **Mono rails** | Adds technical rhythm and operational precision |
77
+ | **Compressed headlines** | Creates cinematic or editorial drama |
78
+ | **Mixed type system** | Distinguishes roles across hero/body/meta layers |
79
+
80
+ ## Advanced CSS techniques
81
+
82
+ Use only when they reinforce the chosen identity:
83
+
84
+ - **Scroll-driven animations** — scene logic tied to progress, not generic reveal-once behavior
85
+ - **View Transition API** — continuity between states/routes
86
+ - **Masks / clip-path** — non-rectangular reveals, ornamental cuts, unusual framing
87
+ - **SVG filters / noise** — texture, distortion, displacement, controlled grit
88
+ - **Backdrop filters** — glass depth and layered translucency
89
+ - **3D transforms** — perspective, stacked depth, immersive hero moments
90
+ - **Sticky storytelling** — pinned chapters and staged reveals
91
+
92
+ ## Anti-sameness guardrails
93
+
94
+ Pick at least 2 and enforce them:
95
+
96
+ - No generic centered SaaS hero
97
+ - At least one uneven rhythm move
98
+ - At least one domain-specific ornament or motif
99
+ - At least one unmistakable surface treatment
100
+ - Motion must communicate meaning, not filler
101
+ - Typography must do more than label content
102
+
103
+ ---
104
+
105
+ ## Implementation rule
106
+
107
+ The variation overlay modifies the hybrid's **expression**, not its **core DNA**.
108
+
109
+ Priority order:
110
+ 1. Primary parents define substrate and structure
111
+ 2. Variation overlay defines expression and anti-sameness pressure
112
+ 3. Modifiers, if any, stay inside their narrow lane
113
+
114
+ ---
115
+
116
+ ## Current source scan
117
+
118
+ - Figma resource library on current web design directions:
119
+ https://www.figma.com/resource-library/web-design-trends/
120
+ - Webflow on variable fonts as active web typography tooling:
121
+ https://help.webflow.com/hc/en-us/articles/33961307448979-Variable-fonts
122
+ - web.dev on same-document view transitions entering Baseline on October 16, 2025:
123
+ https://web.dev/blog/same-document-view-transitions-are-now-baseline-newly-available
124
+ - web.dev coverage of Interop 2026, including scroll-driven animations:
125
+ https://web.dev/blog/interop-2026?hl=en
@@ -16,7 +16,7 @@ Type `@agent-name` in the prompt. Codex will find the agent file and include its
16
16
  The agent activates automatically — begin executing its instructions immediately.
17
17
  Do not treat the included file as something to quote, summarize, or display back to the user unless the user explicitly asked to inspect the file itself.
18
18
 
19
- Examples: `@setup`, `@deyvin`, `@dev`, `@squad`, `@genome`, `@profiler-researcher`
19
+ Examples: `@setup`, `@deyvin`, `@dev`, `@squad`, `@genome`, `@profiler-researcher`, `@design-hybrid-forge`
20
20
 
21
21
  **Option 2 — Natural language:**
22
22
  Describe your intent. The agent system will match and execute.
@@ -40,6 +40,7 @@ Describe your intent. The agent system will match and execute.
40
40
  | @profiler-researcher | "start the profiler research", "profile this person", "pesquisar DNA mental" |
41
41
  | @profiler-enricher | "enrich this profile", "analyze this person's cognition", "consolidar perfil cognitivo" |
42
42
  | @profiler-forge | "generate the advisor", "forge the genome 3.0", "gerar advisor da persona" |
43
+ | @design-hybrid-forge | "create hybrid design skill", "combine two design skills", "use the design-hybrid-forge agent" |
43
44
 
44
45
  When an agent file is included via @ or described via natural language, read the corresponding file and execute its instructions immediately from the first step.
45
46
  Do not answer with "I will open/read/show the file" unless the user explicitly asked to inspect that file.
@@ -90,6 +91,27 @@ When running Codex directly (without `aioson workflow:next`), these rules apply:
90
91
  - @profiler-researcher → `.aioson/agents/profiler-researcher.md`
91
92
  - @profiler-enricher → `.aioson/agents/profiler-enricher.md`
92
93
  - @profiler-forge → `.aioson/agents/profiler-forge.md`
94
+ - @design-hybrid-forge → `.aioson/agents/design-hybrid-forge.md`
95
+
96
+ ## Process skill: aioson-spec-driven
97
+
98
+ Located at: `.aioson/skills/process/aioson-spec-driven/SKILL.md`
99
+
100
+ This is a first-party process skill. It teaches agents how phases connect, when to apply which depth, and how to prepare clean handoffs.
101
+
102
+ Agents that load it: @product, @analyst, @architect, @sheldon, @dev, @deyvin
103
+ When to load: at the start of any spec work (PRD, requirements, architecture, implementation)
104
+ What to load: `SKILL.md` first, then only the `references/` file relevant to the current phase
105
+
106
+ ## Process skill: design-hybrid-forge
107
+
108
+ Located at: `.aioson/skills/process/design-hybrid-forge/SKILL.md`
109
+
110
+ This is a first-party process skill for generating project-local hybrid design skills from 2 primary design parents.
111
+
112
+ Activated by: @design-hybrid-forge
113
+ Default output: `.aioson/installed-skills/{hybrid-name}/`
114
+ What to load: `SKILL.md` first, then only the `references/` file relevant to the current phase
93
115
 
94
116
  ## Session protocol
95
117
  If `.aioson/context/spec.md` exists, read it at session start and update it at session end.
@@ -31,6 +31,7 @@ You operate as AIOSON.
31
31
  - /profiler-researcher -> `.aioson/agents/profiler-researcher.md`
32
32
  - /profiler-enricher -> `.aioson/agents/profiler-enricher.md`
33
33
  - /profiler-forge -> `.aioson/agents/profiler-forge.md`
34
+ - /design-hybrid-forge -> `.aioson/agents/design-hybrid-forge.md`
34
35
 
35
36
  ## Workflow enforcement
36
37