@jaimevalasek/aioson 1.4.0 → 1.5.1

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 (199) hide show
  1. package/CHANGELOG.md +31 -1
  2. package/LICENSE +661 -21
  3. package/README.md +3 -1
  4. package/docs/en/squad-dashboard.md +372 -0
  5. package/docs/openclaw-bridge.md +308 -0
  6. package/docs/pt/agentes.md +124 -10
  7. package/docs/pt/cenarios.md +46 -2
  8. package/docs/pt/comandos-cli.md +60 -1
  9. package/docs/pt/inicio-rapido.md +18 -2
  10. package/docs/pt/squad-dashboard.md +373 -0
  11. package/docs/testing/genome-2.0-matrix.md +5 -5
  12. package/docs/testing/genome-2.0-rollout.md +9 -9
  13. package/package.json +2 -2
  14. package/src/backup-local.js +74 -0
  15. package/src/cli.js +98 -0
  16. package/src/commands/backup-local-cmd.js +25 -0
  17. package/src/commands/runtime.js +242 -0
  18. package/src/commands/setup-context.js +7 -2
  19. package/src/commands/squad-daemon.js +209 -0
  20. package/src/commands/squad-dashboard.js +39 -0
  21. package/src/commands/squad-deploy.js +64 -0
  22. package/src/commands/squad-doctor.js +52 -0
  23. package/src/commands/squad-mcp.js +270 -0
  24. package/src/commands/squad-processes.js +56 -0
  25. package/src/commands/squad-recovery.js +42 -0
  26. package/src/commands/squad-roi.js +291 -0
  27. package/src/commands/squad-score.js +250 -0
  28. package/src/commands/squad-status.js +37 -1
  29. package/src/commands/squad-validate.js +62 -1
  30. package/src/commands/squad-webhook.js +160 -0
  31. package/src/commands/squad-worker.js +191 -0
  32. package/src/commands/squad-worktrees.js +75 -0
  33. package/src/commands/web-map.js +70 -0
  34. package/src/commands/web-scrape.js +71 -0
  35. package/src/constants.js +8 -0
  36. package/src/context-writer.js +45 -1
  37. package/src/i18n/messages/en.js +127 -1
  38. package/src/i18n/messages/es.js +117 -0
  39. package/src/i18n/messages/fr.js +117 -0
  40. package/src/i18n/messages/pt-BR.js +126 -1
  41. package/src/lib/webhook-server.js +328 -0
  42. package/src/mcp-connectors/registry.js +602 -0
  43. package/src/runtime-store.js +259 -2
  44. package/src/squad/external-session.js +180 -0
  45. package/src/squad/inter-squad.js +74 -0
  46. package/src/squad/recovery-context.js +201 -0
  47. package/src/squad/worktree-manager.js +114 -0
  48. package/src/squad-daemon.js +490 -0
  49. package/src/squad-dashboard/api.js +223 -0
  50. package/src/squad-dashboard/attachment-handler.js +93 -0
  51. package/src/squad-dashboard/context-monitor.js +157 -0
  52. package/src/squad-dashboard/execution-logs.js +115 -0
  53. package/src/squad-dashboard/hunk-review.js +209 -0
  54. package/src/squad-dashboard/metrics.js +133 -0
  55. package/src/squad-dashboard/process-monitor.js +125 -0
  56. package/src/squad-dashboard/renderer.js +858 -0
  57. package/src/squad-dashboard/server.js +232 -0
  58. package/src/squad-dashboard/styles.js +525 -0
  59. package/src/squad-dashboard/token-tracker.js +99 -0
  60. package/src/web.js +284 -0
  61. package/src/worker-runner.js +339 -0
  62. package/template/.aioson/agents/analyst.md +4 -0
  63. package/template/.aioson/agents/architect.md +4 -0
  64. package/template/.aioson/agents/dev.md +120 -11
  65. package/template/.aioson/agents/deyvin.md +8 -0
  66. package/template/.aioson/agents/neo.md +152 -0
  67. package/template/.aioson/agents/orache.md +17 -0
  68. package/template/.aioson/agents/orchestrator.md +26 -0
  69. package/template/.aioson/agents/product.md +60 -12
  70. package/template/.aioson/agents/qa.md +1 -0
  71. package/template/.aioson/agents/setup.md +63 -19
  72. package/template/.aioson/agents/sheldon.md +603 -0
  73. package/template/.aioson/agents/squad.md +191 -0
  74. package/template/.aioson/agents/tester.md +254 -0
  75. package/template/.aioson/agents/ux-ui.md +12 -0
  76. package/template/.aioson/config.md +6 -0
  77. package/template/.aioson/locales/en/agents/analyst.md +8 -0
  78. package/template/.aioson/locales/en/agents/architect.md +8 -0
  79. package/template/.aioson/locales/en/agents/dev.md +66 -7
  80. package/template/.aioson/locales/en/agents/deyvin.md +8 -0
  81. package/template/.aioson/locales/en/agents/neo.md +8 -0
  82. package/template/.aioson/locales/en/agents/orchestrator.md +26 -0
  83. package/template/.aioson/locales/en/agents/qa.md +49 -0
  84. package/template/.aioson/locales/en/agents/setup.md +2 -1
  85. package/template/.aioson/locales/en/agents/sheldon.md +340 -0
  86. package/template/.aioson/locales/en/agents/ux-ui.md +8 -0
  87. package/template/.aioson/locales/es/agents/analyst.md +8 -0
  88. package/template/.aioson/locales/es/agents/architect.md +8 -0
  89. package/template/.aioson/locales/es/agents/dev.md +66 -7
  90. package/template/.aioson/locales/es/agents/deyvin.md +8 -0
  91. package/template/.aioson/locales/es/agents/neo.md +48 -0
  92. package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
  93. package/template/.aioson/locales/es/agents/qa.md +26 -0
  94. package/template/.aioson/locales/es/agents/setup.md +2 -1
  95. package/template/.aioson/locales/es/agents/sheldon.md +192 -0
  96. package/template/.aioson/locales/es/agents/squad.md +63 -0
  97. package/template/.aioson/locales/es/agents/ux-ui.md +8 -0
  98. package/template/.aioson/locales/fr/agents/analyst.md +8 -0
  99. package/template/.aioson/locales/fr/agents/architect.md +8 -0
  100. package/template/.aioson/locales/fr/agents/dev.md +66 -7
  101. package/template/.aioson/locales/fr/agents/deyvin.md +8 -0
  102. package/template/.aioson/locales/fr/agents/neo.md +48 -0
  103. package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
  104. package/template/.aioson/locales/fr/agents/qa.md +26 -0
  105. package/template/.aioson/locales/fr/agents/setup.md +2 -1
  106. package/template/.aioson/locales/fr/agents/sheldon.md +192 -0
  107. package/template/.aioson/locales/fr/agents/squad.md +63 -0
  108. package/template/.aioson/locales/fr/agents/ux-ui.md +8 -0
  109. package/template/.aioson/locales/pt-BR/agents/analyst.md +19 -0
  110. package/template/.aioson/locales/pt-BR/agents/architect.md +19 -0
  111. package/template/.aioson/locales/pt-BR/agents/dev.md +75 -12
  112. package/template/.aioson/locales/pt-BR/agents/deyvin.md +8 -0
  113. package/template/.aioson/locales/pt-BR/agents/neo.md +147 -0
  114. package/template/.aioson/locales/pt-BR/agents/orchestrator.md +26 -0
  115. package/template/.aioson/locales/pt-BR/agents/product.md +8 -3
  116. package/template/.aioson/locales/pt-BR/agents/qa.md +60 -0
  117. package/template/.aioson/locales/pt-BR/agents/setup.md +2 -1
  118. package/template/.aioson/locales/pt-BR/agents/sheldon.md +192 -0
  119. package/template/.aioson/locales/pt-BR/agents/squad.md +105 -0
  120. package/template/.aioson/locales/pt-BR/agents/ux-ui.md +8 -0
  121. package/template/.aioson/schemas/squad-blueprint.schema.json +21 -0
  122. package/template/.aioson/schemas/squad-manifest.schema.json +178 -1
  123. package/template/.aioson/skills/design/bold-editorial-ui/SKILL.md +205 -0
  124. package/template/.aioson/skills/design/bold-editorial-ui/references/art-direction.md +338 -0
  125. package/template/.aioson/skills/design/bold-editorial-ui/references/components.md +977 -0
  126. package/template/.aioson/skills/design/bold-editorial-ui/references/dashboards.md +218 -0
  127. package/template/.aioson/skills/design/bold-editorial-ui/references/design-tokens.md +326 -0
  128. package/template/.aioson/skills/design/bold-editorial-ui/references/motion.md +461 -0
  129. package/template/.aioson/skills/design/bold-editorial-ui/references/patterns.md +293 -0
  130. package/template/.aioson/skills/design/bold-editorial-ui/references/websites.md +352 -0
  131. package/template/.aioson/skills/design/clean-saas-ui/SKILL.md +210 -0
  132. package/template/.aioson/skills/design/clean-saas-ui/references/art-direction.md +319 -0
  133. package/template/.aioson/skills/design/clean-saas-ui/references/components.md +365 -0
  134. package/template/.aioson/skills/design/clean-saas-ui/references/dashboards.md +196 -0
  135. package/template/.aioson/skills/design/clean-saas-ui/references/design-tokens.md +244 -0
  136. package/template/.aioson/skills/design/clean-saas-ui/references/motion.md +235 -0
  137. package/template/.aioson/skills/design/clean-saas-ui/references/patterns.md +215 -0
  138. package/template/.aioson/skills/design/clean-saas-ui/references/websites.md +295 -0
  139. package/template/.aioson/skills/design/cognitive-core-ui/SKILL.md +55 -9
  140. package/template/.aioson/skills/design/cognitive-core-ui/references/art-direction.md +339 -0
  141. package/template/.aioson/skills/design/cognitive-core-ui/references/components.md +1 -1
  142. package/template/.aioson/skills/design/cognitive-core-ui/references/dashboards.md +100 -0
  143. package/template/.aioson/skills/design/cognitive-core-ui/references/design-tokens.md +43 -9
  144. package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +40 -0
  145. package/template/.aioson/skills/design/cognitive-core-ui/references/patterns.md +1 -1
  146. package/template/.aioson/skills/design/cognitive-core-ui/references/websites.md +99 -12
  147. package/template/.aioson/skills/design/warm-craft-ui/SKILL.md +209 -0
  148. package/template/.aioson/skills/design/warm-craft-ui/references/art-direction.md +324 -0
  149. package/template/.aioson/skills/design/warm-craft-ui/references/components.md +508 -0
  150. package/template/.aioson/skills/design/warm-craft-ui/references/dashboards.md +223 -0
  151. package/template/.aioson/skills/design/warm-craft-ui/references/design-tokens.md +374 -0
  152. package/template/.aioson/skills/design/warm-craft-ui/references/motion.md +356 -0
  153. package/template/.aioson/skills/design/warm-craft-ui/references/patterns.md +288 -0
  154. package/template/.aioson/skills/design/warm-craft-ui/references/websites.md +289 -0
  155. package/template/.aioson/skills/premium-visual-design/SKILL.md +83 -0
  156. package/template/.aioson/skills/premium-visual-design/components/agent-badge.md +92 -0
  157. package/template/.aioson/skills/premium-visual-design/components/dependency-node.md +102 -0
  158. package/template/.aioson/skills/premium-visual-design/components/mention-autocomplete.md +136 -0
  159. package/template/.aioson/skills/premium-visual-design/components/notification-center.md +136 -0
  160. package/template/.aioson/skills/premium-visual-design/components/review-action-bar.md +188 -0
  161. package/template/.aioson/skills/premium-visual-design/components/team-switcher.md +131 -0
  162. package/template/.aioson/skills/premium-visual-design/patterns/agent-message-thread.md +198 -0
  163. package/template/.aioson/skills/premium-visual-design/patterns/notification-panel.md +275 -0
  164. package/template/.aioson/skills/premium-visual-design/patterns/review-workflow-ui.md +234 -0
  165. package/template/.aioson/skills/premium-visual-design/patterns/task-dependency-graph.md +147 -0
  166. package/template/.aioson/skills/premium-visual-design/tokens/status-extended.md +142 -0
  167. package/template/.aioson/skills/squad/formats/catalog.json +15 -0
  168. package/template/.aioson/skills/squad/formats/content/blog-post.md +47 -0
  169. package/template/.aioson/skills/squad/formats/content/newsletter.md +47 -0
  170. package/template/.aioson/skills/squad/formats/creative/podcast-script.md +43 -0
  171. package/template/.aioson/skills/squad/formats/creative/video-script.md +41 -0
  172. package/template/.aioson/skills/squad/formats/social/instagram-feed.md +42 -0
  173. package/template/.aioson/skills/squad/formats/social/linkedin-post.md +42 -0
  174. package/template/.aioson/skills/squad/formats/social/tiktok.md +39 -0
  175. package/template/.aioson/skills/squad/formats/social/twitter-thread.md +39 -0
  176. package/template/.aioson/skills/squad/formats/social/youtube-long.md +47 -0
  177. package/template/.aioson/skills/squad/formats/social/youtube-shorts.md +39 -0
  178. package/template/.aioson/skills/squad/patterns/multi-platform-pattern.md +108 -0
  179. package/template/.aioson/skills/squad/patterns/persona-based-pattern.md +98 -0
  180. package/template/.aioson/skills/squad/patterns/pipeline-pattern.md +106 -0
  181. package/template/.aioson/skills/squad/patterns/review-loop-pattern.md +81 -0
  182. package/template/.aioson/skills/squad/references/checklist-templates.md +122 -0
  183. package/template/.aioson/skills/squad/references/executor-archetypes.md +123 -0
  184. package/template/.aioson/skills/squad/references/workflow-templates.md +169 -0
  185. package/template/.aioson/skills/static/debugging-protocol.md +42 -0
  186. package/template/.aioson/skills/static/git-worktrees.md +36 -0
  187. package/template/.aioson/tasks/implementation-plan.md +19 -0
  188. package/template/.aioson/tasks/squad-design.md +28 -0
  189. package/template/.aioson/tasks/squad-profile.md +48 -0
  190. package/template/.aioson/tasks/squad-review.md +61 -0
  191. package/template/.aioson/tasks/squad-task-decompose.md +66 -0
  192. package/template/.claude/commands/aioson/agent/neo.md +5 -0
  193. package/template/.claude/commands/aioson/agent/tester.md +5 -0
  194. package/template/.gemini/GEMINI.md +1 -0
  195. package/template/.gemini/commands/aios-neo.toml +4 -0
  196. package/template/.gemini/commands/aios-tester.toml +6 -0
  197. package/template/AGENTS.md +3 -0
  198. package/template/CLAUDE.md +5 -2
  199. package/template/OPENCODE.md +2 -0
@@ -0,0 +1,324 @@
1
+ # Art Direction — Warm Craft UI
2
+
3
+ Read this file for any page-level work where differentiation matters: apps, dashboards, landing pages, websites, profile pages, and major flows.
4
+
5
+ This file exists to stop Warm Craft from collapsing into the same light rounded-card layout every time.
6
+
7
+ The system stays coherent, but the expression must change with the product, the user, and the dominant task.
8
+
9
+ ---
10
+
11
+ ## Core Rule
12
+
13
+ **Same warmth, different character.**
14
+
15
+ Keep the Warm Craft DNA:
16
+ - warm-toned surfaces and soft depth
17
+ - humanist typography with serif headings
18
+ - generous whitespace as a design principle
19
+ - rounded, approachable forms
20
+
21
+ But do **not** keep the exact same composition, hero, card rhythm, or visual emphasis from project to project.
22
+
23
+ ---
24
+
25
+ ## Mandatory Pre-Build Outputs
26
+
27
+ Before designing a full page, produce all of these:
28
+
29
+ 1. **Human**
30
+ The real person using this page right now.
31
+
32
+ 2. **Main action**
33
+ The one decision, action, or question that matters most on this screen.
34
+
35
+ 3. **Felt quality**
36
+ Concrete emotional words such as `warm`, `spacious`, `trustworthy`, `crafted`, `calm`, `inviting`, `focused`, `playful`, `gentle`, `grounded`.
37
+ Never use empty labels like `clean`, `modern`, or `beautiful`.
38
+
39
+ 4. **Domain vocabulary**
40
+ At least 5 concepts from the product's world.
41
+ Example for a learning app: `lesson`, `streak`, `milestone`, `practice`, `mastery`.
42
+
43
+ 5. **Material world**
44
+ At least 5 materials or textures that belong to that product world.
45
+ Example: warm paper, natural wood, linen cloth, clay, dried flowers, leather notebook, morning sunlight.
46
+
47
+ 6. **Defaults to avoid**
48
+ Name 3 obvious UI choices that would make the result generic.
49
+
50
+ 7. **Signature move**
51
+ One memorable design move that can appear in at least 5 places on the page.
52
+
53
+ If you cannot do these seven, you are not ready to compose the page.
54
+
55
+ ---
56
+
57
+ ## Expression Modes
58
+
59
+ Choose **one primary mode** per screen. You may borrow a small amount from a secondary mode only after the main expression is clear.
60
+
61
+ ### 1. Morning Desk
62
+
63
+ Use for:
64
+ - productivity apps
65
+ - task managers
66
+ - personal dashboards
67
+ - note-taking tools
68
+ - CRM for small teams
69
+
70
+ Feel:
71
+ - organized
72
+ - spacious
73
+ - focused
74
+ - like opening a clean notebook
75
+
76
+ Composition:
77
+ - clear content zones with generous breathing room
78
+ - one dominant action area above the fold
79
+ - sidebar as quiet companion, not attention-grabber
80
+ - cards as containers, not decoration
81
+
82
+ Visual cues:
83
+ - warm white backgrounds with barely-there warm tint
84
+ - soft card shadows that suggest depth without shouting
85
+ - serif headings that ground the hierarchy
86
+ - accent used only on the primary action
87
+
88
+ Signature ideas:
89
+ - oversized greeting header with user context ("Good morning, Sarah. 3 tasks today.")
90
+ - card with subtle left border accent for priority items
91
+ - inline progress indicator with warm fill animation
92
+
93
+ ### 2. Sunlit Studio
94
+
95
+ Use for:
96
+ - creative tools
97
+ - design platforms
98
+ - portfolio builders
99
+ - content creation apps
100
+ - media management
101
+
102
+ Feel:
103
+ - inspiring
104
+ - creative
105
+ - warm but vibrant
106
+ - like a well-lit art studio
107
+
108
+ Composition:
109
+ - larger visual elements and media previews
110
+ - asymmetric layouts that feel curated, not random
111
+ - generous negative space around focal content
112
+ - playful grid that rewards browsing
113
+
114
+ Visual cues:
115
+ - accent color used more expressively (subtle background washes, not just buttons)
116
+ - more pronounced shadow depth for media cards
117
+ - type mixing as creative expression: serif titles, sans body, occasional italic
118
+ - rounded containers that feel like frames
119
+
120
+ Signature ideas:
121
+ - gallery grid with hover-reveal metadata
122
+ - hero media card with editorial caption treatment
123
+ - floating toolbar with pill-shaped rounded actions
124
+
125
+ ### 3. Garden Path
126
+
127
+ Use for:
128
+ - onboarding flows
129
+ - education apps
130
+ - health and wellness
131
+ - meditation and mindfulness
132
+ - guided experiences
133
+
134
+ Feel:
135
+ - gentle
136
+ - progressive
137
+ - encouraging
138
+ - like a guided walk through a garden
139
+
140
+ Composition:
141
+ - linear narrative flow
142
+ - one step at a time, generous vertical rhythm
143
+ - progress indicators that feel rewarding
144
+ - illustrations or organic shapes as wayfinding
145
+
146
+ Visual cues:
147
+ - softer accent palette (muted terracotta, sage green, warm amber)
148
+ - more rounded everything (pill buttons, oval badges, circular avatars)
149
+ - gentle background gradients that shift with progress
150
+ - decorative organic shapes (circles, blobs) in background — always subtle
151
+
152
+ Signature ideas:
153
+ - step indicator as garden path (dots connected by a curved line)
154
+ - celebration moment with warm radial burst
155
+ - floating encouragement card after milestones
156
+
157
+ ### 4. Reading Room
158
+
159
+ Use for:
160
+ - documentation platforms
161
+ - knowledge bases
162
+ - blog platforms
163
+ - long-form content
164
+ - journal apps
165
+
166
+ Feel:
167
+ - intellectual
168
+ - measured
169
+ - unhurried
170
+ - like a quiet library with warm light
171
+
172
+ Composition:
173
+ - narrow, readable content column (max 680px)
174
+ - generous margins
175
+ - strong typographic hierarchy with minimal decoration
176
+ - sidebar as table of contents, not feature list
177
+
178
+ Visual cues:
179
+ - serif dominance (headings AND body can be serif here)
180
+ - book-like margins and line spacing
181
+ - footnotes, pull quotes, and editorial details
182
+ - minimal chrome — the content IS the interface
183
+
184
+ Signature ideas:
185
+ - pull quote with oversized serif and warm accent bar
186
+ - chapter-style section breaks with ornamental divider
187
+ - reading progress bar integrated into the top bar
188
+
189
+ ### 5. Warm Dashboard
190
+
191
+ Use for:
192
+ - analytics overview
193
+ - admin panels
194
+ - project management dashboards
195
+ - finance overview
196
+ - reporting tools
197
+
198
+ Feel:
199
+ - clear
200
+ - trustworthy
201
+ - comprehensive but not overwhelming
202
+ - like a well-organized desk with everything in reach
203
+
204
+ Composition:
205
+ - stat cards as opening, but NOT four equal boxes
206
+ - one hero metric or insight above the fold
207
+ - tables and charts below, organized by priority
208
+ - sidebar for navigation, content area for data
209
+
210
+ Visual cues:
211
+ - warm-toned chart colors (terracotta, amber, sage, slate — never neon)
212
+ - card depth hierarchy: elevated stats > flat lists > subtle backgrounds
213
+ - serif for stat numbers and section titles, sans for data labels
214
+ - accent sparingly: one chart highlight color, not rainbow
215
+
216
+ Signature ideas:
217
+ - hero insight card with large serif number + trend context
218
+ - warm-toned donut/bar chart with hand-picked palette
219
+ - activity timeline with avatar bubbles and warm connecting line
220
+
221
+ ---
222
+
223
+ ## Signature Move Library
224
+
225
+ Pick one and commit. Do not apply three weak gestures when one strong one would do.
226
+
227
+ ### Apps
228
+ - greeting card with personalized context and warm illustration
229
+ - soft left-accent border on priority items (3px rounded, warm coral)
230
+ - inline milestone celebration with subtle confetti or warm burst
231
+
232
+ ### Dashboards
233
+ - one hero insight with large serif number instead of four equal KPI cards
234
+ - warm-toned chart palette that feels intentional, not default
235
+ - activity feed with avatar timeline and connecting warm line
236
+
237
+ ### Landing Pages
238
+ - split hero with product shot on warm gradient background
239
+ - testimonial as editorial pull quote with serif and warm accent
240
+ - feature sections with alternating illustration/text rhythm — never a grid of icons
241
+
242
+ ### Websites
243
+ - editorial section headers with serif overline and warm divider
244
+ - case-study cards with generous media and warm caption treatment
245
+ - organic background shapes (circles, waves) that add warmth without distraction
246
+
247
+ Rule:
248
+ - your signature move must appear in at least 5 concrete places, or it is not a real signature
249
+
250
+ ---
251
+
252
+ ## Anti-Generic Tests
253
+
254
+ Run these before presenting:
255
+
256
+ ### Swap Test
257
+
258
+ If you swapped:
259
+ - the serif headings for Inter or system sans
260
+ - the warm colors for gray and blue
261
+ - the rounded corners for sharp rectangles
262
+
263
+ and the page still feels mostly the same, it is too generic.
264
+
265
+ ### Squint Test
266
+
267
+ Blur your eyes:
268
+ - can you still see hierarchy?
269
+ - is there one dominant idea?
270
+ - do the warm tones feel intentional or just tinted?
271
+
272
+ Warmth should feel embedded, not painted on.
273
+
274
+ ### Signature Test
275
+
276
+ Point to 5 exact places where the chosen signature appears.
277
+ If you cannot name them, you do not have a signature.
278
+
279
+ ### Domain Test
280
+
281
+ Hide the product name.
282
+ Would the page still feel like it belongs to this specific product world?
283
+ If not, you are decorating a template.
284
+
285
+ ### Coldness Test (unique to Warm Craft)
286
+
287
+ Does any part of the page feel clinical, cold, or sterile?
288
+ Check: gray cards without warm tint, sharp shadows, blue/purple accents, dense tables without breathing room.
289
+ Fix: warm the tone, round the edges, add spacing.
290
+
291
+ ---
292
+
293
+ ## Variation Rules By Surface Type
294
+
295
+ ### Apps
296
+ - Do not always start with a greeting card. Sometimes the primary content IS the greeting.
297
+ - Sidebar should feel like furniture, not like a spreadsheet navigation.
298
+ - Dense is never the goal — clarity through structure, not compression.
299
+
300
+ ### Dashboards
301
+ - Avoid four equal KPI cards as the only opening move.
302
+ - Prefer one insight story above the fold: a trend, a warning, a celebration.
303
+ - Charts should use warm palette colors, never default library colors.
304
+
305
+ ### Landing Pages
306
+ - Do not default to centered hero + three feature cards + testimonials + CTA.
307
+ - Use editorial rhythm: alternating layouts, visual breaks, narrative pacing.
308
+ - Illustrations should feel warm and hand-crafted, never cold and geometric.
309
+
310
+ ### Websites
311
+ - Not every page needs to be light. Consider warm dark for dramatic sections.
312
+ - Institutional does not mean boring — let typography, whitespace, and warmth carry the experience.
313
+ - Let proof and narrative carry trust before using effects.
314
+
315
+ ---
316
+
317
+ ## Non-Negotiable Expression Rules
318
+
319
+ 1. One accent family, one expression mode, one signature move.
320
+ 2. The page must feel designed for a domain, not for a prompt category.
321
+ 3. Typography must carry personality before decoration does — serif headings are the anchor.
322
+ 4. Background warmth must feel natural, never tinted as an afterthought.
323
+ 5. If the design feels familiar, push the composition, not the gimmicks.
324
+ 6. Whitespace is not wasted space — it is the most important design element in this system.