zero-slop 2.5.8

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 (81) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +193 -0
  3. package/SKILL.md +803 -0
  4. package/data/corpus/community-register/README.md +14 -0
  5. package/data/corpus/community-register/judgment/communicative-drift.txt +1 -0
  6. package/data/corpus/community-register/judgment/reflexive-agreement.txt +1 -0
  7. package/data/corpus/community-register/judgment/rhetorical-scale-mismatch.txt +1 -0
  8. package/data/corpus/must-not-flag/README.md +49 -0
  9. package/data/corpus/must-not-flag/esl-engineer-email.txt +7 -0
  10. package/data/corpus/must-not-flag/exec-memo.txt +9 -0
  11. package/data/corpus/must-not-flag/federalist.txt +5 -0
  12. package/data/corpus/must-not-flag/gettysburg.txt +1 -0
  13. package/data/corpus/must-not-flag/grant-abstract.txt +5 -0
  14. package/data/corpus/must-not-flag/ml-methods.txt +1 -0
  15. package/data/corpus/must-not-flag/personal-essay.txt +1 -0
  16. package/data/corpus/must-not-flag/press-release.txt +7 -0
  17. package/data/corpus/must-not-flag/recipe.txt +11 -0
  18. package/data/corpus/must-not-flag/sre-runbook.txt +1 -0
  19. package/data/corpus/must-not-flag/technical-postmortem.txt +1 -0
  20. package/data/corpus/must-not-flag/terse-engineer-note.txt +1 -0
  21. package/data/corpus/must-not-flag-shape/README.md +22 -0
  22. package/data/corpus/must-not-flag-shape/aphorism-list.txt +9 -0
  23. package/data/corpus/must-not-flag-shape/changelog.txt +13 -0
  24. package/data/corpus/must-not-flag-shape/dialogue.txt +19 -0
  25. package/data/corpus/must-not-flag-shape/lyrics.txt +15 -0
  26. package/data/corpus/must-not-flag-shape/poem.txt +8 -0
  27. package/data/corpus/must-not-flag-shape/sms-transcript.txt +15 -0
  28. package/data/corpus/performed-register/README.md +38 -0
  29. package/data/corpus/performed-register/judgment/detection-fragile.txt +1 -0
  30. package/data/corpus/performed-register/judgment/draft-cheap-signal.txt +1 -0
  31. package/data/corpus/performed-register/judgment/ear-chiasmus.txt +1 -0
  32. package/data/corpus/performed-register/judgment/fight-against-tagline.txt +1 -0
  33. package/data/corpus/performed-register/judgment/fine-beat.txt +1 -0
  34. package/data/corpus/performed-register/judgment/glow-finishing.txt +1 -0
  35. package/data/corpus/performed-register/judgment/jargon-compression.txt +1 -0
  36. package/data/corpus/performed-register/judgment/not-perfect-honest.txt +1 -0
  37. package/data/corpus/performed-register/judgment/punctuation-convict.txt +1 -0
  38. package/data/corpus/performed-register/judgment/recipe-ingredients.txt +1 -0
  39. package/data/corpus/performed-register/judgment/replay-lands.txt +1 -0
  40. package/data/corpus/performed-register/judgment/rhymes-with.txt +1 -0
  41. package/data/corpus/performed-register/judgment/rhythm-prints.txt +1 -0
  42. package/data/corpus/performed-register/judgment/same-leak.txt +1 -0
  43. package/data/corpus/performed-register/judgment/tools-work.txt +1 -0
  44. package/data/corpus/performed-register/judgment/tuning-gradients.txt +1 -0
  45. package/data/corpus/performed-register/judgment/verdict-arithmetic.txt +1 -0
  46. package/data/corpus/performed-register/judgment/whole-product.txt +1 -0
  47. package/data/corpus/performed-register/judgment/words-cheap.txt +1 -0
  48. package/data/corpus/performed-register/mechanical/argue-with-artifact.txt +1 -0
  49. package/data/corpus/performed-register/mechanical/bill-lands.txt +1 -0
  50. package/data/corpus/performed-register/mechanical/billed-to-reader.txt +1 -0
  51. package/data/corpus/performed-register/mechanical/economics-brutal.txt +1 -0
  52. package/data/corpus/performed-register/mechanical/has-receipts.txt +1 -0
  53. package/data/corpus/performed-register/mechanical/hired-adversary.txt +1 -0
  54. package/data/corpus/performed-register/mechanical/hyperbole-universal.txt +1 -0
  55. package/data/corpus/performed-register/mechanical/metaphor-sender-name.txt +1 -0
  56. package/data/corpus/performed-register/mechanical/minding-own-business.txt +1 -0
  57. package/data/corpus/performed-register/mechanical/on-the-tin.txt +1 -0
  58. package/data/corpus/performed-register/mechanical/opens-the-hood.txt +1 -0
  59. package/data/corpus/performed-register/mechanical/turns-out-payoff.txt +1 -0
  60. package/data/corpus/performed-register/mechanical/vibe-check.txt +1 -0
  61. package/data/corpus/performed-register/mechanical/vibe-isnt-a-vibe.txt +1 -0
  62. package/data/corpus/performed-register/mechanical/vibe-number-attached.txt +1 -0
  63. package/data/corpus/performed-register/mechanical/where-slop-lives.txt +1 -0
  64. package/data/learned-log.md +339 -0
  65. package/data/learned.json +128 -0
  66. package/data/patterns.json +2298 -0
  67. package/package.json +54 -0
  68. package/references/copy-desk.md +87 -0
  69. package/references/evidence.md +382 -0
  70. package/references/overcorrection.md +77 -0
  71. package/references/platforms.md +102 -0
  72. package/references/readalong.md +118 -0
  73. package/references/rewrite-moves.md +177 -0
  74. package/references/tells.md +190 -0
  75. package/scripts/calibrate.py +274 -0
  76. package/scripts/learn.py +1588 -0
  77. package/scripts/predictability.py +227 -0
  78. package/scripts/rerank.py +150 -0
  79. package/scripts/safeio.py +146 -0
  80. package/scripts/slopscore.py +1352 -0
  81. package/scripts/version_check.py +104 -0
@@ -0,0 +1,2298 @@
1
+ {
2
+ "_comment": "zero-slop pattern database. Each pattern: name, cat(egory), rx (Python regex, case-insensitive), w (weight ~ how damning one hit is). Lexicon: LLM-overrepresented terms -> per-hit weight (matched as word prefix). learned.json merges over this at runtime.",
3
+ "patterns": [
4
+ {
5
+ "name": "hedge-stem",
6
+ "cat": "hedging",
7
+ "rx": "\\bit(?:(?:'|\u2019)s| is| has) (?:worth noting|worth mentioning|important to (?:note|remember|understand)|crucial to)\\b|\\bit should be noted\\b|\\bit bears mentioning\\b",
8
+ "w": 4,
9
+ "first_seen": "2026-08-03",
10
+ "last_confirmed": "2026-08-15"
11
+ },
12
+ {
13
+ "name": "hedge-stack",
14
+ "cat": "hedging",
15
+ "rx": "\\b(?:might|may|could)\\s+(?:possibly|potentially|perhaps)\\b",
16
+ "w": 3,
17
+ "first_seen": "2026-08-03",
18
+ "last_confirmed": "2026-08-03"
19
+ },
20
+ {
21
+ "name": "arguably",
22
+ "cat": "hedging",
23
+ "rx": "\\barguably\\b",
24
+ "w": 2,
25
+ "first_seen": "2026-08-03",
26
+ "last_confirmed": "2026-08-03"
27
+ },
28
+ {
29
+ "name": "that-said",
30
+ "cat": "hedging",
31
+ "rx": "(?:^|\\. )That said,",
32
+ "w": 1.5,
33
+ "first_seen": "2026-08-03",
34
+ "last_confirmed": "2026-08-03"
35
+ },
36
+ {
37
+ "name": "listicle-stem",
38
+ "cat": "scaffolding",
39
+ "rx": "\\b(?:there are (?:several|a few|many|numerous) (?:key |important )?(?:factors|things|ways|reasons|considerations|lessons|takeaways)|here are (?:a few|some|three|five|\\d+))\\b",
40
+ "w": 4,
41
+ "first_seen": "2026-08-03",
42
+ "last_confirmed": "2026-08-03"
43
+ },
44
+ {
45
+ "name": "signpost-transition",
46
+ "cat": "scaffolding",
47
+ "rx": "(?:^|\\. )(?:Moreover|Furthermore|Additionally|In addition),",
48
+ "w": 2.5,
49
+ "first_seen": "2026-08-03",
50
+ "last_confirmed": "2026-08-03"
51
+ },
52
+ {
53
+ "name": "conclusion-scaffold",
54
+ "cat": "scaffolding",
55
+ "rx": "\\b(?:in conclusion|in summary|to sum up|ultimately, |overall, |the key takeaway|at the end of the day|all in all|when all is said and done)\\b",
56
+ "w": 4,
57
+ "first_seen": "2026-08-03",
58
+ "last_confirmed": "2026-08-14"
59
+ },
60
+ {
61
+ "name": "meta-commentary",
62
+ "cat": "scaffolding",
63
+ "rx": "\\b(?:let me (?:walk you through|break (?:this|it) down|explain|paint (?:you )?a picture)|in this (?:article|post|piece), (?:we|i)(?:'ll| will)|let(?:(?:'|\u2019)s| us) (?:dive|unpack|explore|take a closer look|break (?:it|this) down))\\b",
64
+ "w": 4,
65
+ "first_seen": "2026-08-03",
66
+ "last_confirmed": "2026-08-14"
67
+ },
68
+ {
69
+ "name": "whether-youre",
70
+ "cat": "scaffolding",
71
+ "rx": "\\bwhether you(?:(?:'|\u2019)re| are) (?:a|an|at|just|new)\\b",
72
+ "w": 3,
73
+ "first_seen": "2026-08-03",
74
+ "last_confirmed": "2026-08-03"
75
+ },
76
+ {
77
+ "name": "lesson-n-stem",
78
+ "cat": "scaffolding",
79
+ "rx": "(?:^|\\n)[ \\t]*(?:lesson|takeaway|tip|step|mistake) #?\\d+[:.]",
80
+ "w": 3,
81
+ "m": true,
82
+ "first_seen": "2026-08-03",
83
+ "last_confirmed": "2026-08-03"
84
+ },
85
+ {
86
+ "name": "placeholder",
87
+ "cat": "artifact",
88
+ "rx": "\\[(?:first name|your name|company(?: name)?|name|date|recipient|sender|topic|subject|salutation|closing|position|department|project name|insert[^\\]]*|fill in[^\\]]*|add[^\\]]*|todo[^\\]]*|tbd[^\\]]*)\\]",
89
+ "w": 7,
90
+ "first_seen": "2026-08-03",
91
+ "last_confirmed": "2026-08-22"
92
+ },
93
+ {
94
+ "name": "walk-away-with",
95
+ "cat": "marketing",
96
+ "rx": "\\b(?:walk away with|actionable (?:insights|takeaways|tips)|practical (?:tips|techniques|takeaways|strategies) you can (?:apply|use))\\b",
97
+ "w": 4,
98
+ "first_seen": "2026-08-03",
99
+ "last_confirmed": "2026-08-03"
100
+ },
101
+ {
102
+ "name": "so-you-dont-have-to",
103
+ "cat": "marketing",
104
+ "rx": "\\bso you do(?:n(?:'|\u2019)t| not) have to\\b|\\bfind out the hard way\\b|\\bskip (?:that|the) (?:part|pain|struggle)\\b",
105
+ "w": 4,
106
+ "first_seen": "2026-08-03",
107
+ "last_confirmed": "2026-08-03"
108
+ },
109
+ {
110
+ "name": "spirit-of-transparency",
111
+ "cat": "puffery",
112
+ "rx": "\\bin the spirit of (?:transparency|openness)\\b|\\ba significant portion of\\b|\\bthe short version is\\b|\\bfull transparency[,:]",
113
+ "w": 3.5,
114
+ "first_seen": "2026-08-03",
115
+ "last_confirmed": "2026-08-15"
116
+ },
117
+ {
118
+ "name": "emotional-labor",
119
+ "cat": "linkedin",
120
+ "rx": "\\b(?:hardest (?:decision|thing) (?:of|i)|poured (?:everything|our hearts?)|i owe it to|writing this (?:post|is)n?(?:'|\u2019)?t? ?(?:is )?(?:painful|hard)|with a heavy heart)\\b",
121
+ "w": 4.5,
122
+ "first_seen": "2026-08-03",
123
+ "last_confirmed": "2026-08-03"
124
+ },
125
+ {
126
+ "name": "aphorism-formula",
127
+ "cat": "drama",
128
+ "rx": "\\b\\w+ is(?:n(?:'|\u2019)t| not) the opposite of \\w+\\b|\\bis(?:n(?:'|\u2019)t| not) (?:a|the) (?:destination|sprint)[,.;] (?:it|but)\\b|\\bit(?:(?:'|\u2019)s| is| has) a marathon\\b",
129
+ "w": 5,
130
+ "first_seen": "2026-08-03",
131
+ "last_confirmed": "2026-08-03"
132
+ },
133
+ {
134
+ "name": "question-hook-opener",
135
+ "cat": "performed",
136
+ "rx": "\\A(?:[^.!?\\n]{0,80}\\?)",
137
+ "w": 2.5,
138
+ "first_seen": "2026-08-03",
139
+ "last_confirmed": "2026-08-03"
140
+ },
141
+ {
142
+ "name": "manufactured-stakes",
143
+ "cat": "stakes",
144
+ "rx": "\\bin today(?:(?:'|\u2019)s| is| has) (?:fast-paced|rapidly (?:evolving|changing)|digital|competitive|ever-changing|modern|world|market|economy|climate|society|business|workplace|environment)\\b|\\bnow more than ever\\b|\\bthe stakes have never been higher\\b|\\bin an era (?:of|where)\\b|\\bin the age of\\b|\\bin this day and age\\b|\\bin the fast-paced world of\\b",
145
+ "w": 5,
146
+ "first_seen": "2026-08-03",
147
+ "last_confirmed": "2026-08-14"
148
+ },
149
+ {
150
+ "name": "ever-evolving",
151
+ "cat": "stakes",
152
+ "rx": "\\bever-(?:evolving|changing|growing)\\b",
153
+ "w": 3,
154
+ "first_seen": "2026-08-03",
155
+ "last_confirmed": "2026-08-03"
156
+ },
157
+ {
158
+ "name": "performed-candor",
159
+ "cat": "performed",
160
+ "rx": "\\b(?:let(?:(?:'|\u2019)s| us) be (?:honest|real|clear)|here(?:(?:'|\u2019)s| is) the (?:thing|truth|kicker|deal|catch)|i(?:'|\u2019)ll be honest|the (?:uncomfortable|hard) truth is|truth be told|no fluff|real talk|not gonna lie|if i(?:'|\u2019)m being honest|let me be (?:crystal |perfectly )?clear)\\b",
161
+ "w": 4,
162
+ "first_seen": "2026-08-03",
163
+ "last_confirmed": "2026-08-15"
164
+ },
165
+ {
166
+ "name": "faux-insight",
167
+ "cat": "performed",
168
+ "rx": "\\b(?:what (?:most people|nobody) (?:get(?:s)? wrong|tells you|misses)|the part everyone misses|most people (?:don't|won't|never) (?:realize|see|notice)|here(?:(?:'|\u2019)s| is| has) what (?:i|we) learned)\\b",
169
+ "w": 4,
170
+ "first_seen": "2026-08-03",
171
+ "last_confirmed": "2026-08-03"
172
+ },
173
+ {
174
+ "name": "rhetorical-opener",
175
+ "cat": "performed",
176
+ "rx": "\\b(?:ever wondered|what if i told you|have you ever (?:wondered|noticed|felt))\\b|\\bplot twist:",
177
+ "w": 4,
178
+ "first_seen": "2026-08-03",
179
+ "last_confirmed": "2026-08-03"
180
+ },
181
+ {
182
+ "name": "read-again",
183
+ "cat": "performed",
184
+ "rx": "\\b(?:read that again|let that (?:sink in|marinate)|sit with that|i(?:'|\u2019)ll wait|you (?:read|heard) that (?:right|correctly))\\b",
185
+ "w": 6,
186
+ "first_seen": "2026-08-03",
187
+ "last_confirmed": "2026-08-14"
188
+ },
189
+ {
190
+ "name": "mic-drop-frag",
191
+ "cat": "performed",
192
+ "rx": "\\bthat(?:(?:'|\u2019)s| is| has) it\\. that(?:(?:'|\u2019)s| is| has) the\\b|\\bmic drop\\b|\\bchef(?:'|\u2019)s kiss\\b|\\*checks notes\\*",
193
+ "w": 5,
194
+ "first_seen": "2026-08-03",
195
+ "last_confirmed": "2026-08-14"
196
+ },
197
+ {
198
+ "name": "not-x-but-y",
199
+ "cat": "contrast",
200
+ "rx": "\\b(?:is|are|was|were)(?:n(?:'|\u2019)t| not) just (?:about )?\\w[\\w '\u2019-]{0,40}[.,;:\\u2014\\u2013-]+\\s*(?:it|they|he|she|we)(?:(?:'|\u2019)s|(?:'|\u2019)re| is| are| was| were)\\b|\\bnot (?:just|only|merely) [\\w '\u2019-]{2,40}[,;:\\u2014\\u2013-]+\\s*but\\b",
201
+ "w": 4,
202
+ "first_seen": "2026-08-03",
203
+ "last_confirmed": "2026-08-14"
204
+ },
205
+ {
206
+ "name": "its-not-its",
207
+ "cat": "contrast",
208
+ "rx": "\\b(?:it|this|that)(?:(?:'|\u2019)s| is| was)(?: really| actually)? not (?:just )?(?:about )?[\\w '\u2019-]{2,40}[.,;:\\u2014\\u2013-]+\\s*(?:it|this|that)(?:(?:'|\u2019)s| is| was)\\b",
209
+ "w": 4.5,
210
+ "first_seen": "2026-08-03",
211
+ "last_confirmed": "2026-08-14"
212
+ },
213
+ {
214
+ "name": "question-isnt",
215
+ "cat": "contrast",
216
+ "rx": "\\bthe (?:real |hard |big |key )?(?:question|answer|problem|issue|point|goal|key|secret|difference|challenge|trick|magic|lesson|story|irony|hard part|best part) (?:is|was)(?:n(?:'|\u2019)t| not)\\b",
217
+ "w": 3.5,
218
+ "first_seen": "2026-08-03",
219
+ "last_confirmed": "2026-08-14"
220
+ },
221
+ {
222
+ "name": "negative-listing",
223
+ "cat": "contrast",
224
+ "rx": "\\bnot (?:a|an|the) [\\w '\u2019-]{2,30}\\. not (?:a|an|the) \\b",
225
+ "w": 4,
226
+ "first_seen": "2026-08-03",
227
+ "last_confirmed": "2026-08-03"
228
+ },
229
+ {
230
+ "name": "this-isnt-about",
231
+ "cat": "contrast",
232
+ "rx": "\\bthis (?:is|was)(?:n(?:'|\u2019)t| not) (?:just )?about\\b",
233
+ "w": 3.5,
234
+ "first_seen": "2026-08-03",
235
+ "last_confirmed": "2026-08-03"
236
+ },
237
+ {
238
+ "name": "triadic-adjectives",
239
+ "cat": "triads",
240
+ "rx": "\\b\\w+(?:ic|ive|ble|ant|ent|ful|ous|ed|al|ing)?, \\w+(?:ic|ive|ble|ant|ent|ful|ous|ed|al|ing)?, and \\w+(?:ic|ive|ble|ant|ent|ful|ous|ed|al|ing)\\b",
241
+ "w": 1.5,
242
+ "first_seen": "2026-08-03",
243
+ "last_confirmed": "2026-08-03"
244
+ },
245
+ {
246
+ "name": "no-x-no-y-just-z",
247
+ "cat": "triads",
248
+ "rx": "\\bno \\w[\\w ]{0,20}[,.] no \\w[\\w ]{0,20}[,.] (?:just|only)\\b",
249
+ "w": 5,
250
+ "first_seen": "2026-08-03",
251
+ "last_confirmed": "2026-08-03"
252
+ },
253
+ {
254
+ "name": "puffery-testament",
255
+ "cat": "puffery",
256
+ "rx": "\\b(?:stands? as a testament|serves? as a (?:testament|reminder)|is a testament to|marks? a pivotal|pivotal moment|plays? a (?:vital|crucial|key|significant|critical|central) role|solidif(?:y|ies) (?:its|their)|underscor(?:es|ing) (?:its|the)|cements? (?:its|their) (?:position|place|status))\\b",
257
+ "w": 5,
258
+ "first_seen": "2026-08-03",
259
+ "last_confirmed": "2026-08-14"
260
+ },
261
+ {
262
+ "name": "rich-tapestry",
263
+ "cat": "puffery",
264
+ "rx": "\\b(?:rich (?:tapestry|history|heritage)|vibrant (?:community|ecosystem|culture)|nestled (?:in|among|between)|breathtaking|must-(?:visit|see))\\b|\\b(?:stunning )?natural beauty\\b",
265
+ "w": 4,
266
+ "first_seen": "2026-08-03",
267
+ "last_confirmed": "2026-08-15"
268
+ },
269
+ {
270
+ "name": "superficial-ing",
271
+ "cat": "puffery",
272
+ "rx": ", (?:highlighting|underscoring|showcasing|reflecting|demonstrating|signaling|cementing|reinforcing|ensuring|solidifying|marking|positioning) (?:the|its|their|a|how)\\b",
273
+ "w": 4,
274
+ "first_seen": "2026-08-03",
275
+ "last_confirmed": "2026-08-15"
276
+ },
277
+ {
278
+ "name": "weasel-attribution",
279
+ "cat": "puffery",
280
+ "rx": "\\b(?:experts (?:agree|say|believe)|industry (?:reports|leaders) (?:suggest|agree)|studies (?:show|suggest)|many argue|widely (?:regarded|considered|seen) as|some critics argue|observers have (?:cited|noted)|research shows)\\b",
281
+ "w": 4,
282
+ "first_seen": "2026-08-03",
283
+ "last_confirmed": "2026-08-15"
284
+ },
285
+ {
286
+ "name": "marketing-register",
287
+ "cat": "marketing",
288
+ "rx": "\\b(?:game.?chang(?:er|ing)|paradigm shift|cutting.?edge|state-of-the-art|best-in-class|world-class|next-level|seamless(?:ly)?|frictionless|turnkey|synergy|supercharge|revolutioniz\\w+|transformative|disruptive innovation)\\b",
289
+ "w": 4,
290
+ "first_seen": "2026-08-03",
291
+ "last_confirmed": "2026-08-03"
292
+ },
293
+ {
294
+ "name": "this-changes",
295
+ "cat": "marketing",
296
+ "rx": "\\bthis (?:changes everything|is huge|is a big deal)\\b",
297
+ "w": 5,
298
+ "first_seen": "2026-08-03",
299
+ "last_confirmed": "2026-08-03"
300
+ },
301
+ {
302
+ "name": "unlock-potential",
303
+ "cat": "marketing",
304
+ "rx": "\\b(?:unlock(?:ing)? (?:the |your |new )?(?:full |true )?(?:potential|power|value|opportunities)|take .{0,25}to the next level|empower(?:s|ing)? (?:teams?|users?|people|you)\\b)",
305
+ "w": 4.5,
306
+ "first_seen": "2026-08-03",
307
+ "last_confirmed": "2026-08-03"
308
+ },
309
+ {
310
+ "name": "future-is",
311
+ "cat": "marketing",
312
+ "rx": "\\bthe future (?:of \\w+ )?is (?:here|now|bright)\\b|\\bwe(?:(?:'|\u2019)re| are) just getting started\\b|\\bfuture you will thank you\\b|\\bstay tuned\\b",
313
+ "w": 4.5,
314
+ "first_seen": "2026-08-03",
315
+ "last_confirmed": "2026-08-03"
316
+ },
317
+ {
318
+ "name": "announce-excited",
319
+ "cat": "linkedin",
320
+ "rx": "\\b(?:(?:i(?:'|\u2019)m|i am) |we(?:(?:'|\u2019)re| are) )?(?:beyond |incredibly |truly |so )?(?:excited|thrilled|humbled|honored|proud|delighted) (?:to|and)\\b",
321
+ "w": 5,
322
+ "first_seen": "2026-08-03",
323
+ "last_confirmed": "2026-08-03"
324
+ },
325
+ {
326
+ "name": "engagement-bait",
327
+ "cat": "linkedin",
328
+ "rx": "\\b(?:agree\\?|thoughts\\?|what(?:(?:'|\u2019)s| is) your (?:take|experience)|drop a comment|let me know in the comments|share this with|share if you|tag someone|repost if|follow (?:me|for more)|sound off in|save this post|bookmark this|link in (?:bio|the )?(?:first )?comments?|dm me\\b|comment [\"\u201c']?\\w{1,15}[\"\u201d']? (?:below )?and i(?:'|\u2019)ll|my dms are (?:always )?open|what about you\\?)\\b",
329
+ "w": 4.5,
330
+ "first_seen": "2026-08-03",
331
+ "last_confirmed": "2026-08-15"
332
+ },
333
+ {
334
+ "name": "emoji-arrow-bullet",
335
+ "cat": "linkedin",
336
+ "rx": "(?:^|\\n)[ \\t]*(?:\ud83d\udc49|\u2705|\ud83d\udd39|\u27a1\ufe0f|\u2728|\ud83d\ude80|\ud83d\udca1|\ud83d\udd25|\u2192)\\s",
337
+ "w": 2.5,
338
+ "m": true,
339
+ "first_seen": "2026-08-03",
340
+ "last_confirmed": "2026-08-03"
341
+ },
342
+ {
343
+ "name": "hashtag-cluster",
344
+ "cat": "linkedin",
345
+ "rx": "(?:#\\w+\\s*){3,}",
346
+ "w": 4,
347
+ "first_seen": "2026-08-03",
348
+ "last_confirmed": "2026-08-03"
349
+ },
350
+ {
351
+ "name": "journey-gratitude",
352
+ "cat": "linkedin",
353
+ "rx": "\\b(?:this journey|the journey (?:so far|ahead)|grateful (?:for|to)|could(?:n(?:'|\u2019)t| not) have done it without|huge (?:thanks|shout.?out)|humbled and)\\b",
354
+ "w": 3,
355
+ "first_seen": "2026-08-03",
356
+ "last_confirmed": "2026-08-03"
357
+ },
358
+ {
359
+ "name": "lessons-learned-stem",
360
+ "cat": "linkedin",
361
+ "rx": "\\b(?:here(?:(?:'|\u2019)s| is| has) what (?:it|that) taught me|\\d+ (?:key )?(?:lessons|takeaways|things) (?:i(?:'|\u2019ve)? learned|from))\\b",
362
+ "w": 3.5,
363
+ "first_seen": "2026-08-03",
364
+ "last_confirmed": "2026-08-03"
365
+ },
366
+ {
367
+ "name": "colon-reveal",
368
+ "cat": "drama",
369
+ "rx": "(?:^|\\. )The (?:best|craziest|wildest|most \\w+) part\\??[:.]",
370
+ "w": 4,
371
+ "first_seen": "2026-08-03",
372
+ "last_confirmed": "2026-08-03"
373
+ },
374
+ {
375
+ "name": "emphasis-crutch",
376
+ "cat": "drama",
377
+ "rx": "\\b(?:make no mistake|make it count|and (?:honestly|frankly)\\?|the result\\?|the outcome\\?|spoiler(?: alert)?:)|(?:^|\\. |\\n)Honestly\\? ",
378
+ "w": 4,
379
+ "first_seen": "2026-08-03",
380
+ "last_confirmed": "2026-08-15"
381
+ },
382
+ {
383
+ "name": "transformation-chain",
384
+ "cat": "drama",
385
+ "rx": "\\b(\\w+) becomes (\\w+)\\. \\2 becomes\\b",
386
+ "w": 5,
387
+ "first_seen": "2026-08-03",
388
+ "last_confirmed": "2026-08-03"
389
+ },
390
+ {
391
+ "name": "corrective-reveal",
392
+ "cat": "drama",
393
+ "rx": "\\byou(?:'|\u2019)ve been told\\b|\\bhere(?:(?:'|\u2019)s| is| has) the truth:",
394
+ "w": 5,
395
+ "first_seen": "2026-08-03",
396
+ "last_confirmed": "2026-08-03"
397
+ },
398
+ {
399
+ "name": "copula-boast",
400
+ "cat": "verbs",
401
+ "rx": "\\b(?:boasts?|boasting) (?:a|an|the|over|more)\\b",
402
+ "w": 4,
403
+ "first_seen": "2026-08-03",
404
+ "last_confirmed": "2026-08-03"
405
+ },
406
+ {
407
+ "name": "serves-as-hub",
408
+ "cat": "verbs",
409
+ "rx": "\\bserves? as a (?:centralized |central )?(?:hub|platform|solution|gateway)\\b",
410
+ "w": 4,
411
+ "first_seen": "2026-08-03",
412
+ "last_confirmed": "2026-08-03"
413
+ },
414
+ {
415
+ "name": "weak-verb-phrase",
416
+ "cat": "verbs",
417
+ "rx": "\\b(?:has the ability to|is able to|in order to|made the decision to|conduct(?:ed)? an analysis|has the potential to)\\b",
418
+ "w": 2.5,
419
+ "first_seen": "2026-08-03",
420
+ "last_confirmed": "2026-08-14"
421
+ },
422
+ {
423
+ "name": "filler-intensifier",
424
+ "cat": "filler",
425
+ "rx": "\\b(?:truly|genuinely|incredibly|remarkably|undoubtedly|undeniably|absolutely essential|significantly enhanc\\w+)\\b",
426
+ "w": 2,
427
+ "first_seen": "2026-08-03",
428
+ "last_confirmed": "2026-08-03"
429
+ },
430
+ {
431
+ "name": "vague-quantifier",
432
+ "cat": "filler",
433
+ "rx": "\\b(?:a (?:wide|vast|diverse) (?:variety|range|array) of|countless|myriad|a plethora of|numerous)\\b",
434
+ "w": 3,
435
+ "first_seen": "2026-08-03",
436
+ "last_confirmed": "2026-08-03"
437
+ },
438
+ {
439
+ "name": "deep-dive",
440
+ "cat": "filler",
441
+ "rx": "\\b(?:deep dive|dive (?:deep(?:er)? )?into|double.?click on)\\b",
442
+ "w": 3,
443
+ "first_seen": "2026-08-03",
444
+ "last_confirmed": "2026-08-03"
445
+ },
446
+ {
447
+ "name": "assistant-voice",
448
+ "cat": "assistant",
449
+ "rx": "\\b(?:great question|i(?:'|\u2019)d be happy to|i hope this (?:helps|email finds you well)|certainly!|absolutely!|without further ado|buckle up)\\b",
450
+ "w": 6,
451
+ "first_seen": "2026-08-03",
452
+ "last_confirmed": "2026-08-03"
453
+ },
454
+ {
455
+ "name": "as-an-ai",
456
+ "cat": "assistant",
457
+ "rx": "\\bas an ai\\b|\\bas a language model\\b",
458
+ "w": 10,
459
+ "first_seen": "2026-08-03",
460
+ "last_confirmed": "2026-08-03"
461
+ },
462
+ {
463
+ "name": "false-range",
464
+ "cat": "misc",
465
+ "rx": "\\bfrom [\\w '\u2019-]{3,30} to [\\w '\u2019-]{3,30}(?:,| and) [\\w '\u2019-]{3,30}\\b",
466
+ "w": 1.5,
467
+ "first_seen": "2026-08-03",
468
+ "last_confirmed": "2026-08-03"
469
+ },
470
+ {
471
+ "name": "landscape-navigate",
472
+ "cat": "misc",
473
+ "rx": "\\b(?:navigat(?:e|ing) the [\\w ]{0,20}landscape|the (?:\\w+ )?landscape (?:of|is|has)|in the (?:\\w+ )?space[,.])|\\bin the world of\\b",
474
+ "w": 3.5,
475
+ "first_seen": "2026-08-03",
476
+ "last_confirmed": "2026-08-15"
477
+ },
478
+ {
479
+ "name": "key-takeaway-bold",
480
+ "cat": "misc",
481
+ "rx": "\\*\\*(?:key takeaway|the bottom line|pro tip|remember)\\b",
482
+ "w": 4,
483
+ "first_seen": "2026-08-03",
484
+ "last_confirmed": "2026-08-03"
485
+ },
486
+ {
487
+ "name": "isnt-about-its-about",
488
+ "cat": "contrast",
489
+ "rx": "\\b(?:is|are|was|were)(?:n(?:'|\u2019)t| not) (?:just |really |only )?about [\\w '\u2019-]{2,40}[.,;:\\u2014\\u2013-]+\\s*(?:it|this|that|they)(?:(?:(?:'|\u2019))s|(?:(?:'|\u2019))re| is| are| was| were)(?: about)?\\b",
490
+ "w": 5,
491
+ "first_seen": "2026-08-14",
492
+ "last_confirmed": "2026-08-14"
493
+ },
494
+ {
495
+ "name": "never-about",
496
+ "cat": "contrast",
497
+ "rx": "\\b(?:was|is|are|has(?: been)?|have(?: been)?) never (?:been )?about\\b|\\bit(?:'|\u2019)s never been about\\b",
498
+ "w": 3.5,
499
+ "first_seen": "2026-08-14",
500
+ "last_confirmed": "2026-08-14"
501
+ },
502
+ {
503
+ "name": "didnt-just",
504
+ "cat": "contrast",
505
+ "rx": "\\b(?:did|does|do)(?:n(?:'|\u2019)t| not) just [\\w '\u2019-]{2,40}[.,;:\\u2014\\u2013-]+\\s*(?:we|they|it|he|she|i|you) \\w+",
506
+ "w": 3.5,
507
+ "first_seen": "2026-08-14",
508
+ "last_confirmed": "2026-08-14"
509
+ },
510
+ {
511
+ "name": "less-about-more-about",
512
+ "cat": "contrast",
513
+ "rx": "\\bless about [\\w '\u2019-]{2,40}(?:[.,;:\\u2014\\u2013-]+|\\s+and)\\s*more about\\b",
514
+ "w": 5,
515
+ "first_seen": "2026-08-14",
516
+ "last_confirmed": "2026-08-14"
517
+ },
518
+ {
519
+ "name": "thats-not-thats",
520
+ "cat": "contrast",
521
+ "rx": "\\bthat(?:(?:(?:'|\u2019))s| is) not [\\w '\u2019-]{2,30}[.,;:\\u2014\\u2013-]+\\s*that(?:(?:(?:'|\u2019))s| is)\\b",
522
+ "w": 3.5,
523
+ "first_seen": "2026-08-14",
524
+ "last_confirmed": "2026-08-14"
525
+ },
526
+ {
527
+ "name": "not-the-but-the",
528
+ "cat": "contrast",
529
+ "rx": "\\bnot the [\\w '\u2019-]{2,30}[,;] but the\\b",
530
+ "w": 3,
531
+ "first_seen": "2026-08-14",
532
+ "last_confirmed": "2026-08-14"
533
+ },
534
+ {
535
+ "name": "not-because-but-because",
536
+ "cat": "contrast",
537
+ "rx": "\\bnot because [\\w '\u2019-]{2,40}[,;] but because\\b",
538
+ "w": 3,
539
+ "first_seen": "2026-08-14",
540
+ "last_confirmed": "2026-08-14"
541
+ },
542
+ {
543
+ "name": "more-than-just",
544
+ "cat": "contrast",
545
+ "rx": "\\b(?:is|are|was|were|it(?:'|\u2019)s|they(?:'|\u2019)re) (?:so much )?more than just\\b",
546
+ "w": 3,
547
+ "first_seen": "2026-08-14",
548
+ "last_confirmed": "2026-08-14"
549
+ },
550
+ {
551
+ "name": "ai-wont-replace",
552
+ "cat": "contrast",
553
+ "rx": "\\bwon(?:'|\u2019)t (?:replace|take) your jobs?\\b|\\bwon(?:'|\u2019)t replace \\w+[.,;] (?:but )?(?:a |an |the |someone |people |those )?[\\w ]{0,30}(?:using|who use)\\b",
554
+ "w": 4.5,
555
+ "first_seen": "2026-08-14",
556
+ "last_confirmed": "2026-08-14"
557
+ },
558
+ {
559
+ "name": "stop-start",
560
+ "cat": "contrast",
561
+ "rx": "(?:^|[.!?]\\s+|\\n)Stop [\\w '\u2019,-]{2,40}\\. Start [a-z]",
562
+ "w": 4.5,
563
+ "m": true,
564
+ "first_seen": "2026-08-14",
565
+ "last_confirmed": "2026-08-14"
566
+ },
567
+ {
568
+ "name": "x-is-dead-long-live",
569
+ "cat": "contrast",
570
+ "rx": "\\bis dead[.,;] long live\\b",
571
+ "w": 4.5,
572
+ "first_seen": "2026-08-14",
573
+ "last_confirmed": "2026-08-14"
574
+ },
575
+ {
576
+ "name": "do-this-instead",
577
+ "cat": "contrast",
578
+ "rx": "\\b(?:do|try|read|use) this instead\\b|\\bwhat to do instead\\b",
579
+ "w": 3.5,
580
+ "first_seen": "2026-08-14",
581
+ "last_confirmed": "2026-08-14"
582
+ },
583
+ {
584
+ "name": "gone-are-the-days",
585
+ "cat": "stakes",
586
+ "rx": "\\bgone are the days\\b",
587
+ "w": 5,
588
+ "first_seen": "2026-08-14",
589
+ "last_confirmed": "2026-08-14"
590
+ },
591
+ {
592
+ "name": "in-a-world-where",
593
+ "cat": "stakes",
594
+ "rx": "\\bin a world (?:where|of|that(?:'|\u2019)s)\\b",
595
+ "w": 4,
596
+ "first_seen": "2026-08-14",
597
+ "last_confirmed": "2026-08-14"
598
+ },
599
+ {
600
+ "name": "imagine-a-world",
601
+ "cat": "stakes",
602
+ "rx": "\\b(?:imagine|picture|envision) (?:a world|a future|this)[:,. ]",
603
+ "w": 4,
604
+ "first_seen": "2026-08-14",
605
+ "last_confirmed": "2026-08-14"
606
+ },
607
+ {
608
+ "name": "year-is-hook",
609
+ "cat": "stakes",
610
+ "rx": "\\bit(?:(?:(?:'|\u2019))s| is) 20\\d\\d(?:,)? and\\b|\\bthe year is 20\\d\\d\\b",
611
+ "w": 4,
612
+ "first_seen": "2026-08-14",
613
+ "last_confirmed": "2026-08-14"
614
+ },
615
+ {
616
+ "name": "increasingly-x-world",
617
+ "cat": "stakes",
618
+ "rx": "\\bin an increasingly [\\w-]+ (?:world|landscape|market|economy|era|society)\\b",
619
+ "w": 4,
620
+ "first_seen": "2026-08-14",
621
+ "last_confirmed": "2026-08-14"
622
+ },
623
+ {
624
+ "name": "since-dawn-of",
625
+ "cat": "stakes",
626
+ "rx": "\\bsince the dawn of\\b|\\bthroughout (?:human )?history\\b",
627
+ "w": 3.5,
628
+ "first_seen": "2026-08-14",
629
+ "last_confirmed": "2026-08-14"
630
+ },
631
+ {
632
+ "name": "no-secret",
633
+ "cat": "performed",
634
+ "rx": "\\bit(?:(?:(?:'|\u2019))s| is) no secret\\b",
635
+ "w": 4,
636
+ "first_seen": "2026-08-14",
637
+ "last_confirmed": "2026-08-14"
638
+ },
639
+ {
640
+ "name": "lets-face-it",
641
+ "cat": "performed",
642
+ "rx": "\\blet(?:(?:(?:'|\u2019))s| us) face it\\b",
643
+ "w": 3.5,
644
+ "first_seen": "2026-08-14",
645
+ "last_confirmed": "2026-08-14"
646
+ },
647
+ {
648
+ "name": "we-need-to-talk",
649
+ "cat": "performed",
650
+ "rx": "\\bwe need to talk about\\b|\\bthe conversation (?:we|nobody|no one) (?:need(?:s)? to|should) (?:be )?(?:hav|start)\\w*\\b",
651
+ "w": 4,
652
+ "first_seen": "2026-08-14",
653
+ "last_confirmed": "2026-08-14"
654
+ },
655
+ {
656
+ "name": "hot-take-label",
657
+ "cat": "overcorrection",
658
+ "rx": "(?:^|\\n|\\. )(?:hot take|unpopular opinion|controversial (?:take|opinion))[:.,]",
659
+ "w": 4,
660
+ "m": true,
661
+ "first_seen": "2026-08-14",
662
+ "last_confirmed": "2026-08-14"
663
+ },
664
+ {
665
+ "name": "can-we-talk-about",
666
+ "cat": "performed",
667
+ "rx": "\\bcan we (?:talk about|all agree|be honest about)\\b",
668
+ "w": 3.5,
669
+ "first_seen": "2026-08-14",
670
+ "last_confirmed": "2026-08-14"
671
+ },
672
+ {
673
+ "name": "raise-your-hand",
674
+ "cat": "linkedin",
675
+ "rx": "\\braise your hand if\\b",
676
+ "w": 4.5,
677
+ "first_seen": "2026-08-14",
678
+ "last_confirmed": "2026-08-14"
679
+ },
680
+ {
681
+ "name": "thats-when-it-hit",
682
+ "cat": "drama",
683
+ "rx": "\\b(?:that(?:'|\u2019)s when|then) it hit me\\b|\\bit hit me[:.,]",
684
+ "w": 4.5,
685
+ "first_seen": "2026-08-14",
686
+ "last_confirmed": "2026-08-14"
687
+ },
688
+ {
689
+ "name": "little-did-i-know",
690
+ "cat": "drama",
691
+ "rx": "\\blittle did (?:i|we|they|he|she) know\\b",
692
+ "w": 4.5,
693
+ "first_seen": "2026-08-14",
694
+ "last_confirmed": "2026-08-14"
695
+ },
696
+ {
697
+ "name": "changed-everything",
698
+ "cat": "drama",
699
+ "rx": "\\b(?:changed|changes) everything\\b",
700
+ "w": 3.5,
701
+ "first_seen": "2026-08-14",
702
+ "last_confirmed": "2026-08-14"
703
+ },
704
+ {
705
+ "name": "rest-is-history",
706
+ "cat": "drama",
707
+ "rx": "\\bthe rest(?:, as they say,)? is history\\b",
708
+ "w": 4,
709
+ "first_seen": "2026-08-14",
710
+ "last_confirmed": "2026-08-14"
711
+ },
712
+ {
713
+ "name": "fast-forward",
714
+ "cat": "drama",
715
+ "rx": "\\bfast.?forward (?:to|a few|six|two|three|four|five|ten|\\d+)\\b",
716
+ "w": 3,
717
+ "first_seen": "2026-08-14",
718
+ "last_confirmed": "2026-08-14"
719
+ },
720
+ {
721
+ "name": "one-thing-is-certain",
722
+ "cat": "drama",
723
+ "rx": "\\bone thing(?:(?:(?:'|\u2019))s| is) (?:certain|clear|for sure)\\b|\\bif there(?:(?:(?:'|\u2019))s| is) one thing\\b",
724
+ "w": 4,
725
+ "first_seen": "2026-08-14",
726
+ "last_confirmed": "2026-08-14"
727
+ },
728
+ {
729
+ "name": "cannot-be-overstated",
730
+ "cat": "drama",
731
+ "rx": "\\bcan(?:not|(?:'|\u2019)t) be overstated\\b|\\bcan(?:not|(?:'|\u2019)t) stress (?:this|it) enough\\b",
732
+ "w": 4.5,
733
+ "first_seen": "2026-08-14",
734
+ "last_confirmed": "2026-08-14"
735
+ },
736
+ {
737
+ "name": "wait-for-it",
738
+ "cat": "drama",
739
+ "rx": "\\bwait for it\\b",
740
+ "w": 4,
741
+ "first_seen": "2026-08-14",
742
+ "last_confirmed": "2026-08-14"
743
+ },
744
+ {
745
+ "name": "further-from-truth",
746
+ "cat": "drama",
747
+ "rx": "\\bcould(?:n(?:'|\u2019)t)? (?:not )?be further from the truth\\b",
748
+ "w": 4.5,
749
+ "first_seen": "2026-08-14",
750
+ "last_confirmed": "2026-08-14"
751
+ },
752
+ {
753
+ "name": "understatement-formula",
754
+ "cat": "drama",
755
+ "rx": "\\bwould be (?:an|the) understatement\\b|\\bis (?:an|the) understatement of\\b",
756
+ "w": 4,
757
+ "first_seen": "2026-08-14",
758
+ "last_confirmed": "2026-08-14"
759
+ },
760
+ {
761
+ "name": "full-stop-period",
762
+ "cat": "drama",
763
+ "rx": "(?:^|\\. |\\n)(?:Full stop|Period|End of story|Enough said)\\.",
764
+ "w": 3.5,
765
+ "m": true,
766
+ "first_seen": "2026-08-14",
767
+ "last_confirmed": "2026-08-14"
768
+ },
769
+ {
770
+ "name": "results-speak",
771
+ "cat": "drama",
772
+ "rx": "\\bspeaks? for (?:itself|themselves)\\b|\\bnumbers (?:do(?:n(?:'|\u2019)t| not)|never) lie\\b",
773
+ "w": 3.5,
774
+ "first_seen": "2026-08-14",
775
+ "last_confirmed": "2026-08-14"
776
+ },
777
+ {
778
+ "name": "only-time-will-tell",
779
+ "cat": "drama",
780
+ "rx": "\\bonly time will tell\\b|\\btime will tell\\b|\\bremains to be seen\\b|\\bthe jury is (?:still )?out\\b",
781
+ "w": 3.5,
782
+ "first_seen": "2026-08-14",
783
+ "last_confirmed": "2026-08-14"
784
+ },
785
+ {
786
+ "name": "possibilities-endless",
787
+ "cat": "marketing",
788
+ "rx": "\\bthe possibilities are (?:endless|limitless)\\b|\\bendless possibilities\\b|\\bimplications are (?:far-reaching|profound|enormous)\\b",
789
+ "w": 5,
790
+ "first_seen": "2026-08-14",
791
+ "last_confirmed": "2026-08-15"
792
+ },
793
+ {
794
+ "name": "exciting-times",
795
+ "cat": "marketing",
796
+ "rx": "\\bexciting times (?:ahead|for)\\b|\\bwatch this space\\b",
797
+ "w": 4.5,
798
+ "first_seen": "2026-08-14",
799
+ "last_confirmed": "2026-08-14"
800
+ },
801
+ {
802
+ "name": "double-edged-sword",
803
+ "cat": "cliche",
804
+ "rx": "\\bdouble.?edged sword\\b",
805
+ "w": 4,
806
+ "first_seen": "2026-08-14",
807
+ "last_confirmed": "2026-08-14"
808
+ },
809
+ {
810
+ "name": "here-to-stay",
811
+ "cat": "cliche",
812
+ "rx": "\\b(?:is|are) here to stay\\b",
813
+ "w": 4,
814
+ "first_seen": "2026-08-14",
815
+ "last_confirmed": "2026-08-14"
816
+ },
817
+ {
818
+ "name": "tip-of-iceberg",
819
+ "cat": "cliche",
820
+ "rx": "\\btip of the iceberg\\b|\\bscratch(?:ed|ing)? the surface\\b",
821
+ "w": 4,
822
+ "first_seen": "2026-08-14",
823
+ "last_confirmed": "2026-08-14"
824
+ },
825
+ {
826
+ "name": "elephant-in-room",
827
+ "cat": "cliche",
828
+ "rx": "\\belephant in the room\\b",
829
+ "w": 3.5,
830
+ "first_seen": "2026-08-14",
831
+ "last_confirmed": "2026-08-14"
832
+ },
833
+ {
834
+ "name": "perfect-storm",
835
+ "cat": "cliche",
836
+ "rx": "\\ba perfect storm\\b",
837
+ "w": 3,
838
+ "first_seen": "2026-08-14",
839
+ "last_confirmed": "2026-08-14"
840
+ },
841
+ {
842
+ "name": "ticks-all-boxes",
843
+ "cat": "cliche",
844
+ "rx": "\\b(?:ticks?|checks?)(?:ing)? all the (?:right )?boxes\\b",
845
+ "w": 3.5,
846
+ "first_seen": "2026-08-14",
847
+ "last_confirmed": "2026-08-14"
848
+ },
849
+ {
850
+ "name": "win-win",
851
+ "cat": "cliche",
852
+ "rx": "\\bwin.win\\b",
853
+ "w": 2.5,
854
+ "first_seen": "2026-08-14",
855
+ "last_confirmed": "2026-08-14"
856
+ },
857
+ {
858
+ "name": "best-of-both-worlds",
859
+ "cat": "cliche",
860
+ "rx": "\\bbest of both worlds\\b",
861
+ "w": 3.5,
862
+ "first_seen": "2026-08-14",
863
+ "last_confirmed": "2026-08-14"
864
+ },
865
+ {
866
+ "name": "match-made-in-heaven",
867
+ "cat": "cliche",
868
+ "rx": "\\bmatch made in heaven\\b",
869
+ "w": 4,
870
+ "first_seen": "2026-08-14",
871
+ "last_confirmed": "2026-08-14"
872
+ },
873
+ {
874
+ "name": "world-by-storm",
875
+ "cat": "cliche",
876
+ "rx": "\\b(?:took|taking|taken|take) the (?:world|internet) by storm\\b",
877
+ "w": 4.5,
878
+ "first_seen": "2026-08-14",
879
+ "last_confirmed": "2026-08-14"
880
+ },
881
+ {
882
+ "name": "rollercoaster",
883
+ "cat": "cliche",
884
+ "rx": "\\bemotional roller.?coaster\\b|\\broller.?coaster of emotions\\b|\\ba wild ride\\b",
885
+ "w": 4,
886
+ "first_seen": "2026-08-14",
887
+ "last_confirmed": "2026-08-14"
888
+ },
889
+ {
890
+ "name": "wear-many-hats",
891
+ "cat": "cliche",
892
+ "rx": "\\bwear(?:s|ing)? many hats\\b",
893
+ "w": 3.5,
894
+ "first_seen": "2026-08-14",
895
+ "last_confirmed": "2026-08-14"
896
+ },
897
+ {
898
+ "name": "move-the-needle",
899
+ "cat": "cliche",
900
+ "rx": "\\bmov(?:e|es|ing) the needle\\b",
901
+ "w": 3.5,
902
+ "first_seen": "2026-08-14",
903
+ "last_confirmed": "2026-08-14"
904
+ },
905
+ {
906
+ "name": "boil-the-ocean",
907
+ "cat": "cliche",
908
+ "rx": "\\bboil(?:ing)? the ocean\\b",
909
+ "w": 3.5,
910
+ "first_seen": "2026-08-14",
911
+ "last_confirmed": "2026-08-14"
912
+ },
913
+ {
914
+ "name": "low-hanging-fruit",
915
+ "cat": "cliche",
916
+ "rx": "\\blow.hanging fruit\\b",
917
+ "w": 3.5,
918
+ "first_seen": "2026-08-14",
919
+ "last_confirmed": "2026-08-14"
920
+ },
921
+ {
922
+ "name": "circle-back",
923
+ "cat": "cliche",
924
+ "rx": "\\bcircle back\\b",
925
+ "w": 3,
926
+ "first_seen": "2026-08-14",
927
+ "last_confirmed": "2026-08-14"
928
+ },
929
+ {
930
+ "name": "secret-weapon",
931
+ "cat": "cliche",
932
+ "rx": "\\bsecret (?:weapon|sauce|ingredient)\\b|\\bholy grail\\b",
933
+ "w": 3.5,
934
+ "first_seen": "2026-08-14",
935
+ "last_confirmed": "2026-08-14"
936
+ },
937
+ {
938
+ "name": "hidden-gem",
939
+ "cat": "cliche",
940
+ "rx": "\\bhidden gem\\b",
941
+ "w": 4,
942
+ "first_seen": "2026-08-14",
943
+ "last_confirmed": "2026-08-14"
944
+ },
945
+ {
946
+ "name": "proverb-drop",
947
+ "cat": "cliche",
948
+ "rx": "\\brome wasn(?:'|\u2019)t built in a day\\b|\\bproof is in the pudding\\b|\\bactions speak louder than words\\b|\\bslow and steady wins\\b",
949
+ "w": 4,
950
+ "first_seen": "2026-08-14",
951
+ "last_confirmed": "2026-08-14"
952
+ },
953
+ {
954
+ "name": "rubber-meets-road",
955
+ "cat": "cliche",
956
+ "rx": "\\brubber (?:meets|hits) the road\\b",
957
+ "w": 4,
958
+ "first_seen": "2026-08-14",
959
+ "last_confirmed": "2026-08-14"
960
+ },
961
+ {
962
+ "name": "wake-up-call",
963
+ "cat": "cliche",
964
+ "rx": "\\bwake.?up call\\b",
965
+ "w": 3,
966
+ "first_seen": "2026-08-14",
967
+ "last_confirmed": "2026-08-14"
968
+ },
969
+ {
970
+ "name": "stark-reminder",
971
+ "cat": "cliche",
972
+ "rx": "\\b(?:stark|grim|sobering|powerful|poignant|timely) reminder\\b",
973
+ "w": 4,
974
+ "first_seen": "2026-08-14",
975
+ "last_confirmed": "2026-08-14"
976
+ },
977
+ {
978
+ "name": "sheds-light",
979
+ "cat": "cliche",
980
+ "rx": "\\bshed(?:s|ding)? (?:new |some )?light on\\b",
981
+ "w": 3.5,
982
+ "first_seen": "2026-08-14",
983
+ "last_confirmed": "2026-08-14"
984
+ },
985
+ {
986
+ "name": "paints-picture",
987
+ "cat": "cliche",
988
+ "rx": "\\bpaints? a (?:\\w+ )?picture\\b|\\bspeaks? volumes\\b|\\bthe (?:data|numbers) tells? (?:a|the|its own) story\\b",
989
+ "w": 3.5,
990
+ "first_seen": "2026-08-14",
991
+ "last_confirmed": "2026-08-15"
992
+ },
993
+ {
994
+ "name": "speaks-to-importance",
995
+ "cat": "cliche",
996
+ "rx": "\\bspeaks? to the (?:importance|value|power|need)\\b",
997
+ "w": 4,
998
+ "first_seen": "2026-08-14",
999
+ "last_confirmed": "2026-08-14"
1000
+ },
1001
+ {
1002
+ "name": "begs-the-question",
1003
+ "cat": "cliche",
1004
+ "rx": "\\bbegs? the question\\b",
1005
+ "w": 2.5,
1006
+ "first_seen": "2026-08-14",
1007
+ "last_confirmed": "2026-08-14"
1008
+ },
1009
+ {
1010
+ "name": "alarming-rate",
1011
+ "cat": "cliche",
1012
+ "rx": "\\bat an alarming rate\\b",
1013
+ "w": 3.5,
1014
+ "first_seen": "2026-08-14",
1015
+ "last_confirmed": "2026-08-14"
1016
+ },
1017
+ {
1018
+ "name": "pays-dividends",
1019
+ "cat": "cliche",
1020
+ "rx": "\\bpays? dividends\\b",
1021
+ "w": 3,
1022
+ "first_seen": "2026-08-14",
1023
+ "last_confirmed": "2026-08-14"
1024
+ },
1025
+ {
1026
+ "name": "new-normal",
1027
+ "cat": "cliche",
1028
+ "rx": "\\bthe new normal\\b",
1029
+ "w": 4,
1030
+ "first_seen": "2026-08-14",
1031
+ "last_confirmed": "2026-08-14"
1032
+ },
1033
+ {
1034
+ "name": "ahead-of-curve",
1035
+ "cat": "cliche",
1036
+ "rx": "\\b(?:stay(?:ed|ing)?|get|keep) ahead of the (?:curve|competition|game)\\b",
1037
+ "w": 4,
1038
+ "first_seen": "2026-08-14",
1039
+ "last_confirmed": "2026-08-14"
1040
+ },
1041
+ {
1042
+ "name": "paves-the-way",
1043
+ "cat": "cliche",
1044
+ "rx": "\\bpav(?:e|es|ed|ing) the way\\b|\\bset(?:s|ting)? the stage for\\b",
1045
+ "w": 3.5,
1046
+ "first_seen": "2026-08-14",
1047
+ "last_confirmed": "2026-08-15"
1048
+ },
1049
+ {
1050
+ "name": "bridge-the-gap",
1051
+ "cat": "cliche",
1052
+ "rx": "\\bbridg(?:e|es|ing) the gap\\b",
1053
+ "w": 3,
1054
+ "first_seen": "2026-08-14",
1055
+ "last_confirmed": "2026-08-14"
1056
+ },
1057
+ {
1058
+ "name": "backbone-of",
1059
+ "cat": "cliche",
1060
+ "rx": "\\bthe backbone of\\b",
1061
+ "w": 3,
1062
+ "first_seen": "2026-08-14",
1063
+ "last_confirmed": "2026-08-14"
1064
+ },
1065
+ {
1066
+ "name": "at-the-forefront",
1067
+ "cat": "cliche",
1068
+ "rx": "\\bat the forefront\\b",
1069
+ "w": 3.5,
1070
+ "first_seen": "2026-08-14",
1071
+ "last_confirmed": "2026-08-14"
1072
+ },
1073
+ {
1074
+ "name": "unsung-hero",
1075
+ "cat": "cliche",
1076
+ "rx": "\\bunsung hero(?:es)?\\b",
1077
+ "w": 4,
1078
+ "first_seen": "2026-08-14",
1079
+ "last_confirmed": "2026-08-14"
1080
+ },
1081
+ {
1082
+ "name": "uncharted-territory",
1083
+ "cat": "cliche",
1084
+ "rx": "\\buncharted (?:territory|waters)\\b",
1085
+ "w": 3.5,
1086
+ "first_seen": "2026-08-14",
1087
+ "last_confirmed": "2026-08-14"
1088
+ },
1089
+ {
1090
+ "name": "next-frontier",
1091
+ "cat": "cliche",
1092
+ "rx": "\\bthe (?:next|final|new) frontier\\b",
1093
+ "w": 3.5,
1094
+ "first_seen": "2026-08-14",
1095
+ "last_confirmed": "2026-08-14"
1096
+ },
1097
+ {
1098
+ "name": "whole-new-level",
1099
+ "cat": "cliche",
1100
+ "rx": "\\ba whole new level\\b|\\bto a whole new\\b",
1101
+ "w": 3.5,
1102
+ "first_seen": "2026-08-14",
1103
+ "last_confirmed": "2026-08-14"
1104
+ },
1105
+ {
1106
+ "name": "seat-at-the-table",
1107
+ "cat": "cliche",
1108
+ "rx": "\\bseat at the table\\b",
1109
+ "w": 3,
1110
+ "first_seen": "2026-08-14",
1111
+ "last_confirmed": "2026-08-14"
1112
+ },
1113
+ {
1114
+ "name": "north-star",
1115
+ "cat": "cliche",
1116
+ "rx": "\\bnorth star\\b",
1117
+ "w": 2.5,
1118
+ "first_seen": "2026-08-14",
1119
+ "last_confirmed": "2026-08-14"
1120
+ },
1121
+ {
1122
+ "name": "level-up-your",
1123
+ "cat": "marketing",
1124
+ "rx": "\\blevel(?:ing)? up your\\b",
1125
+ "w": 3.5,
1126
+ "first_seen": "2026-08-14",
1127
+ "last_confirmed": "2026-08-14"
1128
+ },
1129
+ {
1130
+ "name": "on-steroids",
1131
+ "cat": "cliche",
1132
+ "rx": "\\bon steroids\\b",
1133
+ "w": 2.5,
1134
+ "first_seen": "2026-08-14",
1135
+ "last_confirmed": "2026-08-14"
1136
+ },
1137
+ {
1138
+ "name": "wild-west",
1139
+ "cat": "cliche",
1140
+ "rx": "\\bwild west of\\b",
1141
+ "w": 3.5,
1142
+ "first_seen": "2026-08-14",
1143
+ "last_confirmed": "2026-08-14"
1144
+ },
1145
+ {
1146
+ "name": "magic-happens",
1147
+ "cat": "cliche",
1148
+ "rx": "\\bwhere the magic happens\\b|\\bthe (?:real )?magic (?:happens|is|lies)\\b",
1149
+ "w": 4,
1150
+ "first_seen": "2026-08-14",
1151
+ "last_confirmed": "2026-08-14"
1152
+ },
1153
+ {
1154
+ "name": "recipe-for",
1155
+ "cat": "cliche",
1156
+ "rx": "\\brecipe for (?:disaster|success)\\b",
1157
+ "w": 3,
1158
+ "first_seen": "2026-08-14",
1159
+ "last_confirmed": "2026-08-14"
1160
+ },
1161
+ {
1162
+ "name": "breath-of-fresh-air",
1163
+ "cat": "cliche",
1164
+ "rx": "\\bbreath of fresh air\\b",
1165
+ "w": 3.5,
1166
+ "first_seen": "2026-08-14",
1167
+ "last_confirmed": "2026-08-14"
1168
+ },
1169
+ {
1170
+ "name": "tide-is-turning",
1171
+ "cat": "cliche",
1172
+ "rx": "\\bthe tide (?:is|has) turn\\w+\\b|\\bwinds of change\\b",
1173
+ "w": 4,
1174
+ "first_seen": "2026-08-14",
1175
+ "last_confirmed": "2026-08-14"
1176
+ },
1177
+ {
1178
+ "name": "watershed-moment",
1179
+ "cat": "cliche",
1180
+ "rx": "\\b(?:watershed|defining) moment\\b|\\b(?:seismic|tectonic) shift\\b|\\binflection point\\b",
1181
+ "w": 3.5,
1182
+ "first_seen": "2026-08-14",
1183
+ "last_confirmed": "2026-08-14"
1184
+ },
1185
+ {
1186
+ "name": "new-era",
1187
+ "cat": "cliche",
1188
+ "rx": "\\busher(?:s|ed|ing)? in (?:a|the|an)\\b|\\b(?:dawn|start) of a new era\\b|\\ba new era of\\b",
1189
+ "w": 4,
1190
+ "first_seen": "2026-08-14",
1191
+ "last_confirmed": "2026-08-14"
1192
+ },
1193
+ {
1194
+ "name": "represents-significant",
1195
+ "cat": "puffery",
1196
+ "rx": "\\b(?:represents?|marks?) a (?:significant|major|fundamental|profound) (?:shift|milestone|step|change|leap)\\b",
1197
+ "w": 4,
1198
+ "first_seen": "2026-08-14",
1199
+ "last_confirmed": "2026-08-14"
1200
+ },
1201
+ {
1202
+ "name": "lasting-legacy",
1203
+ "cat": "puffery",
1204
+ "rx": "\\b(?:lasting|enduring) (?:legacy|impact|impression)\\b|\\bleaves? a lasting\\b|\\bindelible mark\\b",
1205
+ "w": 4,
1206
+ "first_seen": "2026-08-14",
1207
+ "last_confirmed": "2026-08-14"
1208
+ },
1209
+ {
1210
+ "name": "deeply-rooted",
1211
+ "cat": "puffery",
1212
+ "rx": "\\bdeeply rooted\\b|\\brich cultural heritage\\b|\\bcontinues? to (?:inspire|thrive|resonate)\\b",
1213
+ "w": 3.5,
1214
+ "first_seen": "2026-08-14",
1215
+ "last_confirmed": "2026-08-14"
1216
+ },
1217
+ {
1218
+ "name": "in-the-heart-of",
1219
+ "cat": "puffery",
1220
+ "rx": "\\bin the heart of\\b",
1221
+ "w": 2.5,
1222
+ "first_seen": "2026-08-14",
1223
+ "last_confirmed": "2026-08-14"
1224
+ },
1225
+ {
1226
+ "name": "treasure-trove",
1227
+ "cat": "puffery",
1228
+ "rx": "\\btreasure trove\\b|\\ba wealth of (?:knowledge|information|experience|insights)\\b",
1229
+ "w": 3.5,
1230
+ "first_seen": "2026-08-14",
1231
+ "last_confirmed": "2026-08-14"
1232
+ },
1233
+ {
1234
+ "name": "labor-of-love",
1235
+ "cat": "cliche",
1236
+ "rx": "\\blabou?r of love\\b|\\bblood, sweat,? and tears\\b",
1237
+ "w": 3.5,
1238
+ "first_seen": "2026-08-14",
1239
+ "last_confirmed": "2026-08-14"
1240
+ },
1241
+ {
1242
+ "name": "full-circle",
1243
+ "cat": "cliche",
1244
+ "rx": "\\b(?:come|came|comes|coming) full circle\\b",
1245
+ "w": 3.5,
1246
+ "first_seen": "2026-08-14",
1247
+ "last_confirmed": "2026-08-14"
1248
+ },
1249
+ {
1250
+ "name": "other-plans",
1251
+ "cat": "drama",
1252
+ "rx": "\\b(?:life|fate|the universe) had other plans\\b",
1253
+ "w": 4.5,
1254
+ "first_seen": "2026-08-14",
1255
+ "last_confirmed": "2026-08-14"
1256
+ },
1257
+ {
1258
+ "name": "story-for-another-day",
1259
+ "cat": "cliche",
1260
+ "rx": "\\ba (?:story|topic|conversation|post) for another (?:day|time|post)\\b",
1261
+ "w": 4,
1262
+ "first_seen": "2026-08-14",
1263
+ "last_confirmed": "2026-08-14"
1264
+ },
1265
+ {
1266
+ "name": "leave-you-with",
1267
+ "cat": "cliche",
1268
+ "rx": "\\bi(?:'|\u2019)ll leave you with\\b|\\bfood for thought\\b|\\bparting thought\\b",
1269
+ "w": 4,
1270
+ "first_seen": "2026-08-14",
1271
+ "last_confirmed": "2026-08-14"
1272
+ },
1273
+ {
1274
+ "name": "force-to-be-reckoned",
1275
+ "cat": "cliche",
1276
+ "rx": "\\bforce to be reckoned with\\b",
1277
+ "w": 4,
1278
+ "first_seen": "2026-08-14",
1279
+ "last_confirmed": "2026-08-14"
1280
+ },
1281
+ {
1282
+ "name": "shaping-the-future",
1283
+ "cat": "marketing",
1284
+ "rx": "\\bshap(?:e|es|ing) the future of\\b",
1285
+ "w": 4,
1286
+ "first_seen": "2026-08-14",
1287
+ "last_confirmed": "2026-08-14"
1288
+ },
1289
+ {
1290
+ "name": "whats-possible",
1291
+ "cat": "marketing",
1292
+ "rx": "\\b(?:redefin|reimagin)\\w+ what(?:'|\u2019)s possible\\b|\\bpush(?:es|ing)? the (?:boundaries|limits|envelope)\\b",
1293
+ "w": 4,
1294
+ "first_seen": "2026-08-14",
1295
+ "last_confirmed": "2026-08-14"
1296
+ },
1297
+ {
1298
+ "name": "harness-the-power",
1299
+ "cat": "marketing",
1300
+ "rx": "\\bharness(?:ing|es)? the (?:power|potential) of\\b|\\bunlock(?:ing|s)? the power\\b",
1301
+ "w": 4,
1302
+ "first_seen": "2026-08-14",
1303
+ "last_confirmed": "2026-08-14"
1304
+ },
1305
+ {
1306
+ "name": "quantum-leap",
1307
+ "cat": "cliche",
1308
+ "rx": "\\bquantum leap\\b",
1309
+ "w": 3.5,
1310
+ "first_seen": "2026-08-14",
1311
+ "last_confirmed": "2026-08-14"
1312
+ },
1313
+ {
1314
+ "name": "look-no-further",
1315
+ "cat": "marketing",
1316
+ "rx": "\\blook no further\\b|\\byou(?:'|\u2019)ve come to the right place\\b",
1317
+ "w": 5,
1318
+ "first_seen": "2026-08-14",
1319
+ "last_confirmed": "2026-08-14"
1320
+ },
1321
+ {
1322
+ "name": "second-to-none",
1323
+ "cat": "marketing",
1324
+ "rx": "\\bsecond to none\\b|\\bbest.kept secret\\b",
1325
+ "w": 4,
1326
+ "first_seen": "2026-08-14",
1327
+ "last_confirmed": "2026-08-14"
1328
+ },
1329
+ {
1330
+ "name": "thought-leader",
1331
+ "cat": "cliche",
1332
+ "rx": "\\bthought.leader(?:s|ship)?\\b",
1333
+ "w": 3.5,
1334
+ "first_seen": "2026-08-14",
1335
+ "last_confirmed": "2026-08-14"
1336
+ },
1337
+ {
1338
+ "name": "peace-of-mind",
1339
+ "cat": "marketing",
1340
+ "rx": "\\bpeace of mind\\b",
1341
+ "w": 3,
1342
+ "first_seen": "2026-08-14",
1343
+ "last_confirmed": "2026-08-14"
1344
+ },
1345
+ {
1346
+ "name": "pull-back-curtain",
1347
+ "cat": "cliche",
1348
+ "rx": "\\bpeel(?:s|ing)? back the (?:layers|onion)\\b|\\bpull(?:s|ing)? back the curtain\\b|\\blift(?:s|ing)? the veil\\b",
1349
+ "w": 4,
1350
+ "first_seen": "2026-08-14",
1351
+ "last_confirmed": "2026-08-14"
1352
+ },
1353
+ {
1354
+ "name": "perfect-blend",
1355
+ "cat": "puffery",
1356
+ "rx": "\\b(?:perfect|unique|potent|heady) (?:blend|mix|combination) of\\b",
1357
+ "w": 4,
1358
+ "first_seen": "2026-08-14",
1359
+ "last_confirmed": "2026-08-14"
1360
+ },
1361
+ {
1362
+ "name": "something-for-everyone",
1363
+ "cat": "puffery",
1364
+ "rx": "\\bsomething for everyone\\b",
1365
+ "w": 4,
1366
+ "first_seen": "2026-08-14",
1367
+ "last_confirmed": "2026-08-14"
1368
+ },
1369
+ {
1370
+ "name": "sets-apart",
1371
+ "cat": "puffery",
1372
+ "rx": "\\bsets? (?:it|them|us|you|\\w+) apart\\b",
1373
+ "w": 3,
1374
+ "first_seen": "2026-08-14",
1375
+ "last_confirmed": "2026-08-14"
1376
+ },
1377
+ {
1378
+ "name": "nothing-short-of",
1379
+ "cat": "puffery",
1380
+ "rx": "\\bnothing short of\\b",
1381
+ "w": 3.5,
1382
+ "first_seen": "2026-08-14",
1383
+ "last_confirmed": "2026-08-14"
1384
+ },
1385
+ {
1386
+ "name": "masterclass-in",
1387
+ "cat": "puffery",
1388
+ "rx": "\\ba masterclass in\\b|\\ba love letter to\\b|\\ba stroke of genius\\b",
1389
+ "w": 3.5,
1390
+ "first_seen": "2026-08-14",
1391
+ "last_confirmed": "2026-08-14"
1392
+ },
1393
+ {
1394
+ "name": "in-equal-measure",
1395
+ "cat": "puffery",
1396
+ "rx": "\\bin equal measure\\b",
1397
+ "w": 3,
1398
+ "first_seen": "2026-08-14",
1399
+ "last_confirmed": "2026-08-14"
1400
+ },
1401
+ {
1402
+ "name": "is-a-breeze",
1403
+ "cat": "marketing",
1404
+ "rx": "\\bis a breeze\\b",
1405
+ "w": 3,
1406
+ "first_seen": "2026-08-14",
1407
+ "last_confirmed": "2026-08-14"
1408
+ },
1409
+ {
1410
+ "name": "icing-on-cake",
1411
+ "cat": "cliche",
1412
+ "rx": "\\b(?:icing|cherry) on (?:the )?(?:cake|top)\\b",
1413
+ "w": 3.5,
1414
+ "first_seen": "2026-08-14",
1415
+ "last_confirmed": "2026-08-14"
1416
+ },
1417
+ {
1418
+ "name": "silver-lining",
1419
+ "cat": "cliche",
1420
+ "rx": "\\bsilver lining\\b|\\blight at the end of the tunnel\\b",
1421
+ "w": 3,
1422
+ "first_seen": "2026-08-14",
1423
+ "last_confirmed": "2026-08-14"
1424
+ },
1425
+ {
1426
+ "name": "delicate-balance",
1427
+ "cat": "cliche",
1428
+ "rx": "\\ba (?:delicate|fine) (?:balance|line) between\\b|\\bstrik(?:e|es|ing) (?:a|the right) balance\\b",
1429
+ "w": 3,
1430
+ "first_seen": "2026-08-14",
1431
+ "last_confirmed": "2026-08-14"
1432
+ },
1433
+ {
1434
+ "name": "boils-down-to",
1435
+ "cat": "cliche",
1436
+ "rx": "\\b(?:it all )?boils? down to\\b",
1437
+ "w": 3,
1438
+ "first_seen": "2026-08-14",
1439
+ "last_confirmed": "2026-08-14"
1440
+ },
1441
+ {
1442
+ "name": "bottom-line-label",
1443
+ "cat": "cliche",
1444
+ "rx": "(?:^|\\. |\\n)(?:The )?[Bb]ottom line[:,]",
1445
+ "w": 3.5,
1446
+ "m": true,
1447
+ "first_seen": "2026-08-14",
1448
+ "last_confirmed": "2026-08-14"
1449
+ },
1450
+ {
1451
+ "name": "grand-scheme",
1452
+ "cat": "cliche",
1453
+ "rx": "\\bin the grand scheme of things\\b|\\bthe bigger picture\\b",
1454
+ "w": 2.5,
1455
+ "first_seen": "2026-08-14",
1456
+ "last_confirmed": "2026-08-14"
1457
+ },
1458
+ {
1459
+ "name": "writing-on-wall",
1460
+ "cat": "cliche",
1461
+ "rx": "\\bwriting (?:is )?on the wall\\b|\\bcautionary tale\\b|\\bhindsight is (?:20\\/20|twenty)\\b",
1462
+ "w": 3,
1463
+ "first_seen": "2026-08-14",
1464
+ "last_confirmed": "2026-08-14"
1465
+ },
1466
+ {
1467
+ "name": "worth-weight-gold",
1468
+ "cat": "cliche",
1469
+ "rx": "\\bworth (?:its|their) weight in gold\\b",
1470
+ "w": 3.5,
1471
+ "first_seen": "2026-08-14",
1472
+ "last_confirmed": "2026-08-14"
1473
+ },
1474
+ {
1475
+ "name": "is-poised-to",
1476
+ "cat": "puffery",
1477
+ "rx": "\\b(?:is|are|stands?) poised to\\b",
1478
+ "w": 3,
1479
+ "first_seen": "2026-08-14",
1480
+ "last_confirmed": "2026-08-14"
1481
+ },
1482
+ {
1483
+ "name": "continues-to-evolve",
1484
+ "cat": "stakes",
1485
+ "rx": "\\bcontinues? to evolve\\b|\\bis (?:constantly|always) evolving\\b|\\bas (?:technology|ai) (?:continues to )?(?:evolves?|advances?)\\b|\\bas we navigate\\b",
1486
+ "w": 3.5,
1487
+ "first_seen": "2026-08-14",
1488
+ "last_confirmed": "2026-08-14"
1489
+ },
1490
+ {
1491
+ "name": "alike-formula",
1492
+ "cat": "puffery",
1493
+ "rx": "\\b(?:beginners?|experts?|professionals?|novices?|veterans?|fans?|critics?|users?|developers?|consumers?|businesses|enthusiasts?) and [\\w-]+ alike\\b",
1494
+ "w": 3,
1495
+ "first_seen": "2026-08-14",
1496
+ "last_confirmed": "2026-08-14"
1497
+ },
1498
+ {
1499
+ "name": "in-a-nutshell",
1500
+ "cat": "scaffolding",
1501
+ "rx": "\\bin a nutshell\\b|\\bto put it simply\\b|\\bsimply put\\b|\\blong story short\\b|\\bsuffice it to say\\b",
1502
+ "w": 3,
1503
+ "first_seen": "2026-08-14",
1504
+ "last_confirmed": "2026-08-14"
1505
+ },
1506
+ {
1507
+ "name": "needless-to-say",
1508
+ "cat": "scaffolding",
1509
+ "rx": "\\bneedless to say\\b|\\bit goes without saying\\b|\\bit bears repeating\\b",
1510
+ "w": 3.5,
1511
+ "first_seen": "2026-08-14",
1512
+ "last_confirmed": "2026-08-14"
1513
+ },
1514
+ {
1515
+ "name": "at-its-core",
1516
+ "cat": "scaffolding",
1517
+ "rx": "\\bin essence\\b|\\bat (?:its|their) core\\b|\\bat the (?:very )?heart of\\b|\\bthe heart of the matter\\b",
1518
+ "w": 2.5,
1519
+ "first_seen": "2026-08-14",
1520
+ "last_confirmed": "2026-08-14"
1521
+ },
1522
+ {
1523
+ "name": "when-it-comes-to",
1524
+ "cat": "scaffolding",
1525
+ "rx": "\\bwhen it comes to\\b",
1526
+ "w": 2,
1527
+ "first_seen": "2026-08-14",
1528
+ "last_confirmed": "2026-08-14"
1529
+ },
1530
+ {
1531
+ "name": "heres-a-breakdown",
1532
+ "cat": "scaffolding",
1533
+ "rx": "\\bhere(?:(?:(?:'|\u2019))s| is) a (?:quick |full |complete )?(?:breakdown|rundown)\\b|\\beverything you need to know\\b",
1534
+ "w": 3,
1535
+ "first_seen": "2026-08-14",
1536
+ "last_confirmed": "2026-08-14"
1537
+ },
1538
+ {
1539
+ "name": "might-be-wondering",
1540
+ "cat": "scaffolding",
1541
+ "rx": "\\byou (?:might|may) be (?:wondering|asking|thinking)\\b",
1542
+ "w": 4,
1543
+ "first_seen": "2026-08-14",
1544
+ "last_confirmed": "2026-08-14"
1545
+ },
1546
+ {
1547
+ "name": "sound-familiar",
1548
+ "cat": "performed",
1549
+ "rx": "\\bsound familiar\\?",
1550
+ "w": 4,
1551
+ "first_seen": "2026-08-14",
1552
+ "last_confirmed": "2026-08-14"
1553
+ },
1554
+ {
1555
+ "name": "weve-all-been-there",
1556
+ "cat": "performed",
1557
+ "rx": "\\bwe(?:'|\u2019)ve all been there\\b|\\bwe(?:'|\u2019)ve all (?:seen|felt|done) (?:it|this|that)\\b",
1558
+ "w": 3.5,
1559
+ "first_seen": "2026-08-14",
1560
+ "last_confirmed": "2026-08-14"
1561
+ },
1562
+ {
1563
+ "name": "think-of-it-as",
1564
+ "cat": "scaffolding",
1565
+ "rx": "\\bthink of (?:it|this) as\\b",
1566
+ "w": 2.5,
1567
+ "first_seen": "2026-08-14",
1568
+ "last_confirmed": "2026-08-14"
1569
+ },
1570
+ {
1571
+ "name": "believe-it-or-not",
1572
+ "cat": "scaffolding",
1573
+ "rx": "\\bbelieve it or not\\b",
1574
+ "w": 3,
1575
+ "first_seen": "2026-08-14",
1576
+ "last_confirmed": "2026-08-14"
1577
+ },
1578
+ {
1579
+ "name": "but-i-digress",
1580
+ "cat": "performed",
1581
+ "rx": "\\bbut i digress\\b",
1582
+ "w": 3.5,
1583
+ "first_seen": "2026-08-14",
1584
+ "last_confirmed": "2026-08-14"
1585
+ },
1586
+ {
1587
+ "name": "hear-me-out",
1588
+ "cat": "performed",
1589
+ "rx": "\\bhear me out\\b|\\bstick with me\\b|\\bstay with me here\\b|\\bbear with me here\\b",
1590
+ "w": 3.5,
1591
+ "first_seen": "2026-08-14",
1592
+ "last_confirmed": "2026-08-14"
1593
+ },
1594
+ {
1595
+ "name": "do-yourself-a-favor",
1596
+ "cat": "performed",
1597
+ "rx": "\\bdo yourself a favor\\b|\\bthank me later\\b",
1598
+ "w": 4,
1599
+ "first_seen": "2026-08-14",
1600
+ "last_confirmed": "2026-08-14"
1601
+ },
1602
+ {
1603
+ "name": "trust-me",
1604
+ "cat": "performed",
1605
+ "rx": "\\btrust me[,.]|\\btrust me on this\\b",
1606
+ "w": 2.5,
1607
+ "first_seen": "2026-08-14",
1608
+ "last_confirmed": "2026-08-14"
1609
+ },
1610
+ {
1611
+ "name": "i-get-it",
1612
+ "cat": "performed",
1613
+ "rx": "\\bi get it[.,] |\\blook, i get it\\b",
1614
+ "w": 3,
1615
+ "first_seen": "2026-08-14",
1616
+ "last_confirmed": "2026-08-14"
1617
+ },
1618
+ {
1619
+ "name": "look-opener",
1620
+ "cat": "overcorrection",
1621
+ "rx": "(?:^|\\. |\\n)Look[,\\u2014] ",
1622
+ "w": 2.5,
1623
+ "m": true,
1624
+ "first_seen": "2026-08-14",
1625
+ "last_confirmed": "2026-08-14"
1626
+ },
1627
+ {
1628
+ "name": "if-this-resonates",
1629
+ "cat": "linkedin",
1630
+ "rx": "\\bif this resonate[sd]\\b",
1631
+ "w": 4,
1632
+ "first_seen": "2026-08-14",
1633
+ "last_confirmed": "2026-08-14"
1634
+ },
1635
+ {
1636
+ "name": "say-it-louder",
1637
+ "cat": "linkedin",
1638
+ "rx": "\\bsay it louder\\b|\\bfor the people in the back\\b",
1639
+ "w": 5,
1640
+ "first_seen": "2026-08-14",
1641
+ "last_confirmed": "2026-08-14"
1642
+ },
1643
+ {
1644
+ "name": "normalize-x",
1645
+ "cat": "linkedin",
1646
+ "rx": "(?:^|\\. |\\n)Normalize \\w+ing\\b",
1647
+ "w": 3.5,
1648
+ "m": true,
1649
+ "first_seen": "2026-08-14",
1650
+ "last_confirmed": "2026-08-14"
1651
+ },
1652
+ {
1653
+ "name": "this-is-your-sign",
1654
+ "cat": "linkedin",
1655
+ "rx": "\\bthis is your (?:sign|reminder|permission)\\b",
1656
+ "w": 4.5,
1657
+ "first_seen": "2026-08-14",
1658
+ "last_confirmed": "2026-08-14"
1659
+ },
1660
+ {
1661
+ "name": "today-years-old",
1662
+ "cat": "linkedin",
1663
+ "rx": "\\btoday years old\\b",
1664
+ "w": 4.5,
1665
+ "first_seen": "2026-08-14",
1666
+ "last_confirmed": "2026-08-14"
1667
+ },
1668
+ {
1669
+ "name": "psa-protip",
1670
+ "cat": "scaffolding",
1671
+ "rx": "(?:^|\\n)PSA:|\\bpro.tip:|\\bfun fact:|\\bfriendly reminder\\b|\\bgentle reminder\\b",
1672
+ "w": 3,
1673
+ "m": true,
1674
+ "first_seen": "2026-08-14",
1675
+ "last_confirmed": "2026-08-14"
1676
+ },
1677
+ {
1678
+ "name": "ill-go-first",
1679
+ "cat": "linkedin",
1680
+ "rx": "\\bi(?:'|\u2019)ll go first\\b",
1681
+ "w": 4,
1682
+ "first_seen": "2026-08-14",
1683
+ "last_confirmed": "2026-08-14"
1684
+ },
1685
+ {
1686
+ "name": "reach-out-touch-base",
1687
+ "cat": "email",
1688
+ "rx": "\\b(?:wanted to|thought i(?:'|\u2019)d) (?:reach out|touch base|follow up)\\b|\\bjust (?:reaching out|following up|checking in)\\b",
1689
+ "w": 2.5,
1690
+ "first_seen": "2026-08-14",
1691
+ "last_confirmed": "2026-08-14"
1692
+ },
1693
+ {
1694
+ "name": "dont-hesitate",
1695
+ "cat": "email",
1696
+ "rx": "\\bdo(?:n(?:'|\u2019)t| not) hesitate to (?:reach out|contact|ask)\\b",
1697
+ "w": 3,
1698
+ "first_seen": "2026-08-14",
1699
+ "last_confirmed": "2026-08-14"
1700
+ },
1701
+ {
1702
+ "name": "chatbot-residue",
1703
+ "cat": "assistant",
1704
+ "rx": "\\bwould you like me to\\b|\\blet me know if you(?:'|\u2019)d like\\b|\\bi hope this message finds you\\b|\\bmy (?:training data|knowledge cutoff)\\b|\\bas of my last (?:update|training)\\b",
1705
+ "w": 7,
1706
+ "first_seen": "2026-08-14",
1707
+ "last_confirmed": "2026-08-14"
1708
+ },
1709
+ {
1710
+ "name": "chatgpt-artifact",
1711
+ "cat": "artifact",
1712
+ "rx": "\\boaicite\\b|\\boai_citation\\b|\\bciteturn\\d|\\butm_source=(?:chatgpt(?:\\.com)?|openai)\\b|:contentReference\\[|\\battributableIndex\\b|\\[cite: ?\\d|\\bturn\\d+(?:search|news|image|view)\\d+\\b|\\[span_\\d|\\(start_span\\)|\\bgrok_(?:card|render)|\\bppl-ai-file-upload\\b|\\battached_file\\b",
1713
+ "w": 10,
1714
+ "first_seen": "2026-08-14",
1715
+ "last_confirmed": "2026-08-22"
1716
+ },
1717
+ {
1718
+ "name": "regenerate-response-artifact",
1719
+ "cat": "artifact",
1720
+ "rx": "(?:^|\\n)[ \\t]*Regenerate response[ \\t]*(?:$|\\n)",
1721
+ "w": 10,
1722
+ "m": true,
1723
+ "first_seen": "2026-08-22",
1724
+ "last_confirmed": "2026-08-22"
1725
+ },
1726
+ {
1727
+ "name": "as-we-move-forward",
1728
+ "cat": "scaffolding",
1729
+ "rx": "\\bas we (?:move|look) (?:forward|ahead)\\b|\\bthe road ahead\\b",
1730
+ "w": 3.5,
1731
+ "first_seen": "2026-08-14",
1732
+ "last_confirmed": "2026-08-14"
1733
+ },
1734
+ {
1735
+ "name": "strap-in",
1736
+ "cat": "performed",
1737
+ "rx": "\\bstrap (?:in|yourselves)\\b|\\bgrab a (?:coffee|cup of coffee)\\b",
1738
+ "w": 3.5,
1739
+ "first_seen": "2026-08-14",
1740
+ "last_confirmed": "2026-08-14"
1741
+ },
1742
+ {
1743
+ "name": "blink-of-an-eye",
1744
+ "cat": "cliche",
1745
+ "rx": "\\bin the blink of an eye\\b|\\bwithout missing a beat\\b",
1746
+ "w": 3.5,
1747
+ "first_seen": "2026-08-14",
1748
+ "last_confirmed": "2026-08-14"
1749
+ },
1750
+ {
1751
+ "name": "serious-note",
1752
+ "cat": "performed",
1753
+ "rx": "\\bon a (?:more )?serious note\\b|\\b(?:all )?jokes aside\\b",
1754
+ "w": 3,
1755
+ "first_seen": "2026-08-14",
1756
+ "last_confirmed": "2026-08-14"
1757
+ },
1758
+ {
1759
+ "name": "cue-the",
1760
+ "cat": "drama",
1761
+ "rx": "(?:^|\\. |\\n)Cue (?:the|a) \\w+|\\bdrum.?roll\\b",
1762
+ "w": 3.5,
1763
+ "m": true,
1764
+ "first_seen": "2026-08-14",
1765
+ "last_confirmed": "2026-08-14"
1766
+ },
1767
+ {
1768
+ "name": "personal-news",
1769
+ "cat": "linkedin",
1770
+ "rx": "\\b(?:some )?personal news[:.]|\\b(?:big|exciting) news[:.]|\\b(?:a new|the next) chapter\\b|\\bbittersweet\\b|\\bwith mixed emotions\\b",
1771
+ "w": 3.5,
1772
+ "first_seen": "2026-08-14",
1773
+ "last_confirmed": "2026-08-14"
1774
+ },
1775
+ {
1776
+ "name": "couldnt-be-prouder",
1777
+ "cat": "linkedin",
1778
+ "rx": "\\bcould(?:n(?:'|\u2019)t| not) be (?:more proud|prouder|more excited|happier|more thrilled)\\b",
1779
+ "w": 4,
1780
+ "first_seen": "2026-08-14",
1781
+ "last_confirmed": "2026-08-14"
1782
+ },
1783
+ {
1784
+ "name": "cant-help-but",
1785
+ "cat": "performed",
1786
+ "rx": "\\bcan(?:not|(?:'|\u2019)t) help but\\b",
1787
+ "w": 3,
1788
+ "first_seen": "2026-08-14",
1789
+ "last_confirmed": "2026-08-14"
1790
+ },
1791
+ {
1792
+ "name": "as-i-reflect",
1793
+ "cat": "linkedin",
1794
+ "rx": "\\bas i (?:sit here and )?reflect\\b|\\breflecting on (?:the past|my|this past)\\b",
1795
+ "w": 3.5,
1796
+ "first_seen": "2026-08-14",
1797
+ "last_confirmed": "2026-08-14"
1798
+ },
1799
+ {
1800
+ "name": "on-a-mission-to",
1801
+ "cat": "marketing",
1802
+ "rx": "\\bon a mission to\\b",
1803
+ "w": 3,
1804
+ "first_seen": "2026-08-14",
1805
+ "last_confirmed": "2026-08-14"
1806
+ },
1807
+ {
1808
+ "name": "passionate-about",
1809
+ "cat": "linkedin",
1810
+ "rx": "\\bpassionate about\\b",
1811
+ "w": 2.5,
1812
+ "first_seen": "2026-08-14",
1813
+ "last_confirmed": "2026-08-14"
1814
+ },
1815
+ {
1816
+ "name": "intersection-of",
1817
+ "cat": "linkedin",
1818
+ "rx": "\\bat the intersection of\\b",
1819
+ "w": 3.5,
1820
+ "first_seen": "2026-08-14",
1821
+ "last_confirmed": "2026-08-14"
1822
+ },
1823
+ {
1824
+ "name": "navigating-complexities",
1825
+ "cat": "misc",
1826
+ "rx": "\\bnavigat\\w+ the (?:complexities|challenges|nuances|uncertaint\\w+) of\\b",
1827
+ "w": 4,
1828
+ "first_seen": "2026-08-14",
1829
+ "last_confirmed": "2026-08-14"
1830
+ },
1831
+ {
1832
+ "name": "comprehensive-guide",
1833
+ "cat": "marketing",
1834
+ "rx": "\\b(?:comprehensive|ultimate|complete|definitive) guide\\b",
1835
+ "w": 3.5,
1836
+ "first_seen": "2026-08-14",
1837
+ "last_confirmed": "2026-08-14"
1838
+ },
1839
+ {
1840
+ "name": "everyone-talking",
1841
+ "cat": "performed",
1842
+ "rx": "\\b(?:everyone|everybody)(?:(?:(?:'|\u2019))s| is) talking about\\b|\\b(?:nobody|no one)(?:(?:(?:'|\u2019))s| is)? talk(?:s|ing)? about\\b",
1843
+ "w": 3.5,
1844
+ "first_seen": "2026-08-14",
1845
+ "last_confirmed": "2026-08-15"
1846
+ },
1847
+ {
1848
+ "name": "while-everyone-else",
1849
+ "cat": "performed",
1850
+ "rx": "\\bwhile everyone (?:else )?(?:is )?(?:busy|distracted|chasing|focused|arguing)\\b",
1851
+ "w": 3.5,
1852
+ "first_seen": "2026-08-14",
1853
+ "last_confirmed": "2026-08-14"
1854
+ },
1855
+ {
1856
+ "name": "pct-of-people",
1857
+ "cat": "performed",
1858
+ "rx": "\\b(?:90|95|99)% of (?:people|us|you|companies|founders|teams|businesses)\\b",
1859
+ "w": 2.5,
1860
+ "first_seen": "2026-08-14",
1861
+ "last_confirmed": "2026-08-14"
1862
+ },
1863
+ {
1864
+ "name": "in-the-trenches",
1865
+ "cat": "cliche",
1866
+ "rx": "\\bin the trenches\\b",
1867
+ "w": 3,
1868
+ "first_seen": "2026-08-14",
1869
+ "last_confirmed": "2026-08-14"
1870
+ },
1871
+ {
1872
+ "name": "roll-up-sleeves",
1873
+ "cat": "cliche",
1874
+ "rx": "\\broll(?:ing)? up (?:my|our|your|their) sleeves\\b",
1875
+ "w": 3.5,
1876
+ "first_seen": "2026-08-14",
1877
+ "last_confirmed": "2026-08-14"
1878
+ },
1879
+ {
1880
+ "name": "hit-ground-running",
1881
+ "cat": "cliche",
1882
+ "rx": "\\bhit the ground running\\b",
1883
+ "w": 3.5,
1884
+ "first_seen": "2026-08-14",
1885
+ "last_confirmed": "2026-08-14"
1886
+ },
1887
+ {
1888
+ "name": "table-stakes",
1889
+ "cat": "cliche",
1890
+ "rx": "\\btable stakes\\b",
1891
+ "w": 3,
1892
+ "first_seen": "2026-08-14",
1893
+ "last_confirmed": "2026-08-14"
1894
+ },
1895
+ {
1896
+ "name": "heres-how-why",
1897
+ "cat": "scaffolding",
1898
+ "rx": "\\bhere(?:(?:'|\u2019)s| is) how (?:i|we|you|to|it)\\b|\\bhere(?:(?:'|\u2019)s| is) why[:.]",
1899
+ "w": 2.5,
1900
+ "first_seen": "2026-08-14",
1901
+ "last_confirmed": "2026-08-14"
1902
+ },
1903
+ {
1904
+ "name": "challenges-outlook",
1905
+ "cat": "scaffolding",
1906
+ "rx": "\\bchallenges and (?:future )?(?:prospects|outlook|opportunities)\\b|\\bfuture (?:outlook|prospects)\\b|\\bdespite (?:these|its|the) challenges\\b",
1907
+ "w": 4,
1908
+ "first_seen": "2026-08-15",
1909
+ "last_confirmed": "2026-08-15"
1910
+ },
1911
+ {
1912
+ "name": "one-could-argue",
1913
+ "cat": "hedging",
1914
+ "rx": "\\bone (?:could|might) argue\\b",
1915
+ "w": 3,
1916
+ "first_seen": "2026-08-15",
1917
+ "last_confirmed": "2026-08-15"
1918
+ },
1919
+ {
1920
+ "name": "not-all-created-equal",
1921
+ "cat": "cliche",
1922
+ "rx": "\\bnot all \\w+ (?:is|are) created equal\\b",
1923
+ "w": 4,
1924
+ "first_seen": "2026-08-15",
1925
+ "last_confirmed": "2026-08-15"
1926
+ },
1927
+ {
1928
+ "name": "thats-where-comes-in",
1929
+ "cat": "marketing",
1930
+ "rx": "\\bthat(?:'|\u2019)s where [\\w '\u2019-]{2,30} comes? in\\b",
1931
+ "w": 4,
1932
+ "first_seen": "2026-08-15",
1933
+ "last_confirmed": "2026-08-15"
1934
+ },
1935
+ {
1936
+ "name": "what-does-this-mean",
1937
+ "cat": "scaffolding",
1938
+ "rx": "\\bwhat does (?:this|that|it) mean for (?:you|your)\\b|\\bso,? what does (?:this|that) mean\\b",
1939
+ "w": 4,
1940
+ "first_seen": "2026-08-15",
1941
+ "last_confirmed": "2026-08-15"
1942
+ },
1943
+ {
1944
+ "name": "why-it-matters",
1945
+ "cat": "scaffolding",
1946
+ "rx": "(?:^|\\n)Why (?:it|this) matters[:.]?(?:\\s|$)|\\bwhy (?:it|this) matters:",
1947
+ "w": 3,
1948
+ "m": true,
1949
+ "first_seen": "2026-08-15",
1950
+ "last_confirmed": "2026-08-15"
1951
+ },
1952
+ {
1953
+ "name": "counting-preamble",
1954
+ "cat": "scaffolding",
1955
+ "rx": "(?:^|\\. |\\n)(?:Two|Three|Four|Five) (?:factors|things|reasons|lessons|principles|constraints|trends) (?:explain|shape|define|drive|stand out)\\b",
1956
+ "w": 3.5,
1957
+ "m": true,
1958
+ "first_seen": "2026-08-15",
1959
+ "last_confirmed": "2026-08-15"
1960
+ },
1961
+ {
1962
+ "name": "whether-its-abc",
1963
+ "cat": "scaffolding",
1964
+ "rx": "\\bwhether it(?:'|\u2019)s [\\w '\u2019-]{2,30}, [\\w '\u2019-]{2,30},? or\\b",
1965
+ "w": 3,
1966
+ "first_seen": "2026-08-15",
1967
+ "last_confirmed": "2026-08-15"
1968
+ },
1969
+ {
1970
+ "name": "false-vulnerability",
1971
+ "cat": "linkedin",
1972
+ "rx": "\\bnot saying this to brag\\b|\\bi(?:'|\u2019)ve been quiet about this\\b|\\bi do(?:n(?:'|\u2019)t| not) (?:usually|normally|often) (?:post|share|talk about)\\b",
1973
+ "w": 4,
1974
+ "first_seen": "2026-08-15",
1975
+ "last_confirmed": "2026-08-15"
1976
+ },
1977
+ {
1978
+ "name": "told-me-impossible",
1979
+ "cat": "linkedin",
1980
+ "rx": "\\b(?:they|everyone|people) (?:told|said) (?:me|us) it (?:could|would)n(?:'|\u2019)t (?:be done|work)\\b",
1981
+ "w": 4.5,
1982
+ "first_seen": "2026-08-15",
1983
+ "last_confirmed": "2026-08-15"
1984
+ },
1985
+ {
1986
+ "name": "first-and-foremost",
1987
+ "cat": "scaffolding",
1988
+ "rx": "\\bfirst and foremost\\b",
1989
+ "w": 3,
1990
+ "first_seen": "2026-08-15",
1991
+ "last_confirmed": "2026-08-15"
1992
+ },
1993
+ {
1994
+ "name": "out-of-box-silos",
1995
+ "cat": "cliche",
1996
+ "rx": "\\bout.of.the.box (?:thinking|ideas)\\b|\\bbreak(?:ing)? down silos\\b|\\bthink(?:ing)? outside the box\\b",
1997
+ "w": 3.5,
1998
+ "first_seen": "2026-08-15",
1999
+ "last_confirmed": "2026-08-15"
2000
+ },
2001
+ {
2002
+ "name": "with-the-advent",
2003
+ "cat": "stakes",
2004
+ "rx": "\\bwith the advent of\\b",
2005
+ "w": 2.5,
2006
+ "first_seen": "2026-08-15",
2007
+ "last_confirmed": "2026-08-15"
2008
+ },
2009
+ {
2010
+ "name": "valuable-insights",
2011
+ "cat": "marketing",
2012
+ "rx": "\\bvaluable insights\\b",
2013
+ "w": 3.5,
2014
+ "first_seen": "2026-08-15",
2015
+ "last_confirmed": "2026-08-15"
2016
+ },
2017
+ {
2018
+ "name": "key-turning-point",
2019
+ "cat": "puffery",
2020
+ "rx": "\\b(?:key|major|crucial) turning point\\b",
2021
+ "w": 3.5,
2022
+ "first_seen": "2026-08-15",
2023
+ "last_confirmed": "2026-08-15"
2024
+ },
2025
+ {
2026
+ "name": "metaphor-of-family",
2027
+ "cat": "puffery",
2028
+ "rx": "\\ba (?:symphony|labyrinth|mosaic|kaleidoscope|constellation) of\\b|\\ba tapestry of\\b",
2029
+ "w": 4,
2030
+ "first_seen": "2026-08-15",
2031
+ "last_confirmed": "2026-08-15"
2032
+ },
2033
+ {
2034
+ "name": "quietly-verbing",
2035
+ "cat": "puffery",
2036
+ "rx": "\\bquietly (?:becoming|building|shipping|winning|reshaping|revolutionizing|leading)\\b",
2037
+ "w": 3.5,
2038
+ "first_seen": "2026-08-15",
2039
+ "last_confirmed": "2026-08-15"
2040
+ },
2041
+ {
2042
+ "name": "hired-adversary",
2043
+ "cat": "performed",
2044
+ "rx": "\\b(?:hired|recruited|enlisted|summoned) (?:an?|our(?: own)?|the|its(?: own)?|their(?: own)?) (?:adversar(?:y|ies)|skeptics?|saboteurs?|nemesis|devil(?:'|’)s advocates?)\\b",
2045
+ "w": 2.5,
2046
+ "first_seen": "2026-08-24",
2047
+ "last_confirmed": "2026-08-24"
2048
+ },
2049
+ {
2050
+ "name": "turns-out-payoff",
2051
+ "cat": "performed",
2052
+ "rx": "\\bturn(?:s|ed)? out to (?:carry|hold|conceal|hide|contain|exact) (?:an?|the|its) [\\w’'-]+ (?:signal|lesson|truth|cost|price|tax|message|meaning|weight|story)\\b",
2053
+ "w": 2,
2054
+ "first_seen": "2026-08-24",
2055
+ "last_confirmed": "2026-08-24"
2056
+ },
2057
+ {
2058
+ "name": "has-receipts",
2059
+ "cat": "performed",
2060
+ "rx": "\\b(?:has|got) receipts\\b|\\bthe receipts to prove it\\b",
2061
+ "w": 2.5,
2062
+ "first_seen": "2026-08-24",
2063
+ "last_confirmed": "2026-08-24"
2064
+ },
2065
+ {
2066
+ "name": "hyperbole-universal",
2067
+ "cat": "performed",
2068
+ "rx": "\\b(?:nothing|no ?one|nobody|nowhere) (?:on (?:this )?earth|on the planet|in (?:human |recorded )?history)\\b|\\bknown to man(?:kind)?\\b",
2069
+ "w": 2,
2070
+ "first_seen": "2026-08-24",
2071
+ "last_confirmed": "2026-08-24"
2072
+ },
2073
+ {
2074
+ "name": "argue-with-artifact",
2075
+ "cat": "performed",
2076
+ "rx": "\\b(?:meter|scorer|score|number|metric|model|tool|system|algorithm|dashboard|spreadsheet|checklist|rubric|benchmark|report|chart) (?:that )?you can (?:argue|reason|disagree) with\\b",
2077
+ "w": 2.5,
2078
+ "first_seen": "2026-08-24",
2079
+ "last_confirmed": "2026-08-24"
2080
+ },
2081
+ {
2082
+ "name": "vibe-register",
2083
+ "cat": "performed",
2084
+ "rx": "\\b(?:is|isn(?:'|’)t|was|not|just) a vibe\\b|\\bvibe check\\b|\\bwith vibes\\b",
2085
+ "w": 2,
2086
+ "first_seen": "2026-08-24",
2087
+ "last_confirmed": "2026-08-24"
2088
+ },
2089
+ {
2090
+ "name": "where-x-lives",
2091
+ "cat": "performed",
2092
+ "rx": "\\b(?:gap|middle|space|margin|delta|blind spot|seam|crack)s? (?:is|are) where [\\w-]+ (?:lives?|hides?)\\b",
2093
+ "w": 2,
2094
+ "first_seen": "2026-08-24",
2095
+ "last_confirmed": "2026-08-24"
2096
+ },
2097
+ {
2098
+ "name": "billed-conceit",
2099
+ "cat": "performed",
2100
+ "rx": "\\b(?:bill|cost|tax|other half) lands on\\b|\\bgets? billed to\\b",
2101
+ "w": 2,
2102
+ "first_seen": "2026-08-24",
2103
+ "last_confirmed": "2026-08-24"
2104
+ },
2105
+ {
2106
+ "name": "on-the-tin",
2107
+ "cat": "performed",
2108
+ "rx": "\\bon the tin\\b",
2109
+ "w": 2,
2110
+ "first_seen": "2026-08-24",
2111
+ "last_confirmed": "2026-08-24"
2112
+ },
2113
+ {
2114
+ "name": "minding-own-business",
2115
+ "cat": "performed",
2116
+ "rx": "\\bminding (?:its|their) own business\\b",
2117
+ "w": 2,
2118
+ "first_seen": "2026-08-24",
2119
+ "last_confirmed": "2026-08-24"
2120
+ },
2121
+ {
2122
+ "name": "economics-brutal",
2123
+ "cat": "performed",
2124
+ "rx": "\\bthe (?:economics|math|numbers) (?:is|are) brutal\\b",
2125
+ "w": 2,
2126
+ "first_seen": "2026-08-24",
2127
+ "last_confirmed": "2026-08-24"
2128
+ },
2129
+ {
2130
+ "name": "opens-the-hood",
2131
+ "cat": "performed",
2132
+ "rx": "\\b(?:open|pop)s? the hood\\b",
2133
+ "w": 2,
2134
+ "first_seen": "2026-08-24",
2135
+ "last_confirmed": "2026-08-24"
2136
+ },
2137
+ {
2138
+ "name": "generic-benefit-stack",
2139
+ "cat": "marketing",
2140
+ "rx": "(?is)\\b(?:platform|solution|product|service|tool)\\b(?=.{0,260}\\b(?:helps?|designed|offers?|combines?|gives?)\\b)(?=(?:.{0,260}?\\b(?:value|efficien\\w*|capabilit\\w*|experience|goals?|collaborat\\w*|work together|change how\\b)\\b){2}).{0,260}",
2141
+ "w": 1,
2142
+ "first_seen": "2026-08-25",
2143
+ "last_confirmed": "2026-08-25"
2144
+ }
2145
+ ],
2146
+ "lexicon": {
2147
+ "delve": 6,
2148
+ "delving": 6,
2149
+ "tapestry": 6,
2150
+ "beacon": 5,
2151
+ "realm": 4,
2152
+ "testament": 5,
2153
+ "multifaceted": 5,
2154
+ "meticulous": 4,
2155
+ "intricate": 3,
2156
+ "paramount": 4,
2157
+ "pivotal": 3,
2158
+ "crucial": 1.5,
2159
+ "foster": 3,
2160
+ "utilize": 3,
2161
+ "facilitate": 3,
2162
+ "embark": 4,
2163
+ "holistic": 3,
2164
+ "synergy": 5,
2165
+ "spearhead": 3,
2166
+ "commendable": 4,
2167
+ "noteworthy": 3,
2168
+ "invaluable": 3,
2169
+ "unwavering": 4,
2170
+ "unparalleled": 4,
2171
+ "ever-evolving": 5,
2172
+ "groundbreaking": 3,
2173
+ "burgeoning": 4,
2174
+ "myriad": 4,
2175
+ "plethora": 5,
2176
+ "albeit": 2,
2177
+ "whilst": 2,
2178
+ "furthermore": 2,
2179
+ "moreover": 2,
2180
+ "additionally": 1.5,
2181
+ "notably": 1.5,
2182
+ "importantly": 2,
2183
+ "vibrant": 2.5,
2184
+ "bustling": 4,
2185
+ "nestled": 4,
2186
+ "actionable": 2.5,
2187
+ "impactful": 3,
2188
+ "learnings": 3,
2189
+ "utilization": 3,
2190
+ "operationalize": 3,
2191
+ "empower": 3.5,
2192
+ "supercharge": 5,
2193
+ "gamechang": 5,
2194
+ "game-chang": 5,
2195
+ "cutting-edge": 4,
2196
+ "seamless": 4,
2197
+ "frictionless": 5,
2198
+ "transformative": 4,
2199
+ "revolutionize": 4.5,
2200
+ "reimagine": 3.5,
2201
+ "garner": 3.5,
2202
+ "bolster": 3,
2203
+ "whopping": 3.5,
2204
+ "staggering": 2.5,
2205
+ "jaw-dropping": 3.5,
2206
+ "mind-blowing": 3.5,
2207
+ "mind-boggling": 3.5,
2208
+ "picturesque": 3.5,
2209
+ "steadfast": 3,
2210
+ "indelible": 4,
2211
+ "captivat": 3,
2212
+ "unleash": 3.5,
2213
+ "untapped": 3.5,
2214
+ "skyrocket": 4,
2215
+ "turbocharg": 4.5,
2216
+ "future-proof": 4,
2217
+ "cornerstone": 3,
2218
+ "linchpin": 3.5,
2219
+ "trailblaz": 4,
2220
+ "unprecedented": 3,
2221
+ "unmatched": 3.5,
2222
+ "unrivaled": 4,
2223
+ "top-notch": 3.5,
2224
+ "demystif": 3.5,
2225
+ "elucidat": 4,
2226
+ "cultivat": 2.5,
2227
+ "unveil": 2.5,
2228
+ "quintessential": 3.5,
2229
+ "transcend": 2.5,
2230
+ "renowned": 3,
2231
+ "whirlwind": 3,
2232
+ "must-have": 3.5,
2233
+ "hassle-free": 4,
2234
+ "game-changing": 5,
2235
+ "visionary": 2.5,
2236
+ "industry-leading": 3,
2237
+ "interplay": 3.5,
2238
+ "insightful": 2.5,
2239
+ "enduring": 2,
2240
+ "results-driven": 3,
2241
+ "customer-centric": 3
2242
+ },
2243
+ "riders": {
2244
+ "leverage": 2,
2245
+ "leveraging": 2.5,
2246
+ "robust": 1.5,
2247
+ "harness": 1.0,
2248
+ "elevat": 3,
2249
+ "streamline": 2.5,
2250
+ "landscape": 2,
2251
+ "navigate": 1.5,
2252
+ "showcas": 3,
2253
+ "underscore": 3,
2254
+ "insights": 1,
2255
+ "journey": 1.5,
2256
+ "resonate": 3,
2257
+ "emphasiz": 2,
2258
+ "enhanc": 1.5,
2259
+ "highlight": 1.5,
2260
+ "amplif": 2,
2261
+ "innovativ": 2,
2262
+ "comprehensive": 1.5,
2263
+ "embrac": 1.5,
2264
+ "unpack": 2,
2265
+ "nuanc": 1.5,
2266
+ "catalys": 2,
2267
+ "profound": 1.5,
2268
+ "orchestrat": 2,
2269
+ "fight against": 2
2270
+ },
2271
+ "rider_triggers": [
2272
+ "seamless",
2273
+ "frictionless",
2274
+ "empower",
2275
+ "synergy",
2276
+ "cutting-edge",
2277
+ "state-of-the-art",
2278
+ "best-in-class",
2279
+ "world-class",
2280
+ "game-chang",
2281
+ "supercharge",
2282
+ "turnkey",
2283
+ "paradigm",
2284
+ "transformative",
2285
+ "revolutioniz",
2286
+ "unparalleled",
2287
+ "unlock the",
2288
+ "next-level",
2289
+ "elevate your",
2290
+ "thrilled",
2291
+ "excited to announce",
2292
+ "unleash",
2293
+ "skyrocket",
2294
+ "turbocharg",
2295
+ "future-proof",
2296
+ "look no further"
2297
+ ]
2298
+ }