@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,338 @@
1
+ # Art Direction — Bold Editorial UI
2
+
3
+ Read this file for any page-level work where differentiation matters: landing pages, apps, dashboards, portfolios, and major marketing flows.
4
+
5
+ This file exists to stop Bold Editorial from collapsing into the same dark card layout with big white type every time.
6
+
7
+ The system stays coherent, but the expression must change with the product, the audience, and the dominant message.
8
+
9
+ ---
10
+
11
+ ## Core Rule
12
+
13
+ **Same drama, different character.**
14
+
15
+ Keep the Bold Editorial DNA:
16
+ - extreme typographic scale as the primary design tool
17
+ - cinematic dark/light contrast
18
+ - editorial rhythm and intentional grid-breaking
19
+ - mono captions as structural connective tissue
20
+
21
+ But do **not** keep the exact same composition, hero treatment, or typographic moment 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 arriving at this page right now — their mindset, context, what they just came from.
31
+
32
+ 2. **Main action**
33
+ The one impression, decision, or action that must land on this screen.
34
+
35
+ 3. **Felt quality**
36
+ Concrete visceral words: `cinematic`, `authoritative`, `electric`, `precise`, `confident`, `intense`, `premium`, `editorial`, `stark`, `magnetic`.
37
+ Never use empty labels like `bold and modern` or `premium feel`.
38
+
39
+ 4. **Domain vocabulary**
40
+ At least 5 concepts from the product's world.
41
+ Example for a developer tool: `pipeline`, `deploy`, `latency`, `incident`, `artifact`.
42
+
43
+ 5. **Material world**
44
+ At least 5 materials or textures belonging to that product world.
45
+ Example: brushed metal, matte black cardstock, cinema screen, exposed concrete, carbon fiber, architect's blueprint, overexposed film.
46
+
47
+ 6. **Defaults to avoid**
48
+ Name 3 obvious choices that would make this feel like a generic AI-generated dark landing page.
49
+
50
+ 7. **Signature move**
51
+ One memorable typographic or compositional move that appears in at least 5 places on the page.
52
+
53
+ If you cannot produce 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 established.
60
+
61
+ ### 1. Manifesto
62
+
63
+ Use for:
64
+ - brand pages
65
+ - about/mission pages
66
+ - vision statements
67
+ - advocacy products
68
+ - philosophical software (tools that believe in something)
69
+
70
+ Feel:
71
+ - powerful
72
+ - intentional
73
+ - confident
74
+ - philosophical — every word was chosen
75
+
76
+ Composition:
77
+ - typography at extreme scale dominates full sections
78
+ - statements as compositional blocks — each section IS a statement
79
+ - negative space used as punctuation between ideas
80
+ - one color only; images minimal or absent
81
+ - reader must scroll through the argument
82
+
83
+ Visual cues:
84
+ - display font at `text-5xl` to `text-6xl`
85
+ - zero decorative elements — the typography is decoration
86
+ - wide tracking on overlines (`tracking-widest`, mono, uppercase)
87
+ - accent used only once per scroll viewport, as a highlight or underline
88
+
89
+ Signature ideas:
90
+ - full-section statement in `text-6xl` that spans 3–4 lines
91
+ - scroll-triggered word reveal (each word appears sequentially)
92
+ - single accent underline beneath the most important phrase per section
93
+ - quote wall: alternating large and small quotes, dark and light backgrounds
94
+
95
+ ---
96
+
97
+ ### 2. Product Theater
98
+
99
+ Use for:
100
+ - SaaS marketing pages
101
+ - developer tool launches
102
+ - infrastructure products
103
+ - API or platform announcements
104
+
105
+ Feel:
106
+ - premium
107
+ - technical
108
+ - precise
109
+ - exciting — something important is happening
110
+
111
+ Composition:
112
+ - hero with oversized product screenshot or terminal output as the visual centerpiece
113
+ - headline frames the product, not the other way around
114
+ - feature sections use product shots as the primary visual — code blocks as decoration
115
+ - dark background makes the product interface feel illuminated
116
+
117
+ Visual cues:
118
+ - dark near-black background with product UI "glowing" on top
119
+ - subtle grid lines or dot-grid decorative elements
120
+ - badge/chip accents in mono (`[v2.1.0]`, `[BETA]`, `[OPEN SOURCE]`)
121
+ - metric counters that animate on scroll entry
122
+
123
+ Signature ideas:
124
+ - floating product frame with 1–2deg tilt and `shadow-glow`
125
+ - code block used as a visual element (syntax-highlighted, framed in mono)
126
+ - animated counter reveal for key metrics (e.g., "4,000ms → 120ms")
127
+ - gradient radial centered on the product visual — subtle spotlight
128
+
129
+ ---
130
+
131
+ ### 3. Gallery Editorial
132
+
133
+ Use for:
134
+ - portfolios
135
+ - creative agencies
136
+ - fashion or lifestyle brands
137
+ - architecture studios
138
+ - photography platforms
139
+
140
+ Feel:
141
+ - curated
142
+ - sophisticated
143
+ - dramatic
144
+ - confident silence — the work speaks
145
+
146
+ Composition:
147
+ - images occupy large portions; type acts as editorial annotation
148
+ - grid breaks intentionally — asymmetric layouts, deliberate overlaps
149
+ - alternating full-bleed and contained sections
150
+ - hover reveals editorial metadata (year, category, client)
151
+
152
+ Visual cues:
153
+ - images in high-contrast, possibly treated to black-and-white with accent highlights
154
+ - intentional typographic overlaps on images (caption over corner of image)
155
+ - mono captions in small size — stark contrast against large imagery
156
+ - accent color used only for link underlines or hover-reveal text
157
+
158
+ Signature ideas:
159
+ - image reveal on scroll entry (clip-path wipe from bottom to top, 800ms)
160
+ - split-screen project showcase (image left, title + details right)
161
+ - hover-tilt media cards with subtle perspective transform
162
+ - project number counter in mono (`01 / 08`) as navigation
163
+
164
+ ---
165
+
166
+ ### 4. Data Story
167
+
168
+ Use for:
169
+ - annual reports
170
+ - case study pages
171
+ - research presentations
172
+ - impact pages
173
+ - before/after narrative
174
+
175
+ Feel:
176
+ - authoritative
177
+ - intelligent
178
+ - compelling
179
+ - structured — the argument builds section by section
180
+
181
+ Composition:
182
+ - large statistical numbers as heroes for each section
183
+ - charts integrated into the narrative (not after it)
184
+ - horizontal scroll or sticky-section technique for timelines
185
+ - prose and data interleaved — not separate blocks
186
+
187
+ Visual cues:
188
+ - display font for dramatic numbers (metric, counter, percentage)
189
+ - mono font for all data labels, axis text, timestamps
190
+ - accent color highlights single critical data point per chart
191
+ - horizontal dividers as section transitions
192
+
193
+ Signature ideas:
194
+ - animated counter on scroll entry (0 → final value, 1200ms)
195
+ - horizontal scroll data story with sticky headline
196
+ - infographic section with subtle grid overlay
197
+ - pull-out stat in `text-5xl` display font flanked by explanatory body
198
+
199
+ ---
200
+
201
+ ### 5. Cinematic Dark
202
+
203
+ Use for:
204
+ - gaming products
205
+ - entertainment platforms
206
+ - premium subscriptions
207
+ - luxury products
208
+ - streaming or media services
209
+
210
+ Feel:
211
+ - immersive
212
+ - atmospheric
213
+ - intense
214
+ - cinematic — like entering a film
215
+
216
+ Composition:
217
+ - full-screen sections, video or image as background with overlay
218
+ - minimal UI, maximal atmosphere
219
+ - type floats over imagery with gradient masks
220
+ - each section a scene, not a content block
221
+
222
+ Visual cues:
223
+ - gradient overlays using near-black (not pure black) — preserves depth in imagery
224
+ - grain/noise texture at 3% opacity over everything
225
+ - accent as flash or highlight — single word, CTA, one key object
226
+ - typography ultra-bold, often all-caps for section titles
227
+ - scroll reveals each section as a curtain rising
228
+
229
+ Signature ideas:
230
+ - video hero with text overlay and gradient mask at bottom (text legible, video atmospheric)
231
+ - grain texture background applied globally at very low opacity
232
+ - cinematic color grade feel — desaturated mid-tones, preserved highlights
233
+ - section transitions as hard cuts (instant background swap, no fade)
234
+
235
+ ---
236
+
237
+ ## Signature Move Library
238
+
239
+ Pick one and commit. Do not apply three weak gestures when one strong one would do.
240
+
241
+ ### Apps
242
+ - stat counters in `text-4xl` display font — the number IS the content, not decoration
243
+ - mono badge strips along the top of sections (`[LIVE]`, `[v1.0]`, `[2024]`)
244
+ - dark command/search bar as primary interaction — keyboard-first, editorial
245
+
246
+ ### Dashboards
247
+ - key metric in display font at `text-5xl` — one number that defines the page
248
+ - horizontal metric strip with mono labels and no card borders — raw data aesthetic
249
+ - accent used only on the single most important chart line or bar
250
+
251
+ ### Landing Pages
252
+ - opening section with headline at `text-5xl` or larger, no accompanying image — the type is enough
253
+ - alternating dark-and-light sections as cinematic scene cuts
254
+ - metric counter strip that animates on scroll — numbers are the proof
255
+
256
+ ### Websites
257
+ - quote or statement section in display italic at `text-2xl`+, no decoration needed
258
+ - case study cards with image overlay + hover-reveal full title
259
+ - footer as minimalist manifesto — a single closing statement in large type, then links
260
+
261
+ Rule:
262
+ - your signature move must appear in at least 5 concrete places, or it is not a real signature.
263
+
264
+ ---
265
+
266
+ ## Anti-Generic Tests
267
+
268
+ Run these before presenting:
269
+
270
+ ### Swap Test
271
+ If you replaced:
272
+ - the display font with Inter or Roboto
273
+ - the red-orange accent with generic blue
274
+ - the near-black backgrounds with dark gray `#1F2937`
275
+
276
+ and the page still felt mostly the same — the typography is not working hard enough. The font, the scale, and the contrast ARE the differentiator.
277
+
278
+ ### Squint Test
279
+ Blur your eyes:
280
+ - Is there one unmistakable typographic anchor per section?
281
+ - Does the dark/light rhythm feel like a deliberate sequence?
282
+ - Does any section feel generic without squinting?
283
+
284
+ The editorial rhythm must be legible at blurred vision.
285
+
286
+ ### Signature Test
287
+ Point to 5 exact places where the chosen signature appears.
288
+ If you cannot name them, you do not have a signature.
289
+
290
+ ### Magazine Test (unique to Bold Editorial)
291
+ If you printed this page, would it look compelling in a premium print magazine?
292
+ - Is the type large and intentional enough?
293
+ - Does the layout have editorial pacing — not everything the same size?
294
+ - Would a creative director approve it?
295
+
296
+ If no: the typographic scale is not aggressive enough. Push harder.
297
+
298
+ ### Drift Test
299
+ Does any element feel like it belongs to Warm Craft (rounded, warm, soft) or Clean SaaS (neutral, gray, business)?
300
+ - Check: rounded corners above `radius-xl` → reduce
301
+ - Check: serif headings → replace with display font
302
+ - Check: warm beige backgrounds → make them near-black or pure white
303
+ - Check: soft blue accents → replace with red-orange
304
+
305
+ ---
306
+
307
+ ## Variation Rules By Surface Type
308
+
309
+ ### Apps
310
+ - Dark shell, not warm shell. The app should feel like a professional tool, not a productivity diary.
311
+ - Navigation: minimal chrome. Top bar transparent or near-transparent. Sidebar slim and labeled in mono.
312
+ - Content area: generous, breathing, but not soft. Sharp edges, dark cards.
313
+
314
+ ### Dashboards
315
+ - Stat numbers are the hero — `text-4xl` display font minimum, no decorative frames around them.
316
+ - Charts: accent color highlights one line/bar. The rest in muted tones. No rainbow palettes.
317
+ - Avoid equal-size KPI card rows — find the hero insight and give it disproportionate size.
318
+
319
+ ### Landing Pages
320
+ - The hero headline must be uncomfortable to shrink. If reducing type size feels "fine," it's too small.
321
+ - Section rhythm is non-negotiable: dense → white space → impact → pause. Never four identical sections.
322
+ - No stock illustrations. No warm hand-drawn graphics. No blue. No rounded pill buttons everywhere.
323
+
324
+ ### Websites
325
+ - Not every page needs to be dark. Light sections inside dark pages are the drama.
326
+ - Institutional does not mean boring — extreme typography can make a boring subject feel significant.
327
+ - Let typography and composition carry authority before reaching for photography or illustrations.
328
+
329
+ ---
330
+
331
+ ## Non-Negotiable Expression Rules
332
+
333
+ 1. One accent color, one expression mode, one signature move per page.
334
+ 2. Typography must establish hierarchy before layout does — if the type scale is weak, nothing fixes it.
335
+ 3. Every section must earn its existence: is this denser than the last? More spacious? More intense?
336
+ 4. The grid can break, but every break must be intentional. Random asymmetry is not editorial.
337
+ 5. If the design feels "good," push it until it feels "authored." Good is the enemy of editorial.
338
+ 6. Mono captions are the connective tissue — every overline, label, category, and metadata uses mono.