patina-cli 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.patina.default.yaml +211 -0
- package/CHANGELOG.md +265 -0
- package/LICENSE +21 -0
- package/README.md +319 -0
- package/README_JA.md +254 -0
- package/README_KR.md +253 -0
- package/README_ZH.md +254 -0
- package/SKILL-MAX.md +455 -0
- package/SKILL.md +730 -0
- package/assets/brand/patina-icon.svg +9 -0
- package/assets/brand/patina-logo.svg +17 -0
- package/assets/social/patina-before-after.svg +46 -0
- package/assets/social/patina-og.svg +31 -0
- package/bin/patina.js +9 -0
- package/core/scoring.md +657 -0
- package/core/standalone-prompt.md +364 -0
- package/core/stylometry.md +754 -0
- package/core/voice.md +163 -0
- package/docs/AUTHENTICATION.md +105 -0
- package/docs/AUTHENTICATION_KR.md +105 -0
- package/docs/BRANDING.md +37 -0
- package/docs/CLI.md +80 -0
- package/docs/COMPARISON.md +38 -0
- package/docs/COOKBOOK.md +173 -0
- package/docs/DEMO.md +40 -0
- package/docs/ETHICS.md +27 -0
- package/docs/EXAMPLES.md +130 -0
- package/docs/EXAMPLES_KR.md +130 -0
- package/docs/EXIT-CODES.md +25 -0
- package/docs/FAQ.md +67 -0
- package/docs/FAQ_KR.md +65 -0
- package/docs/FLAG-PARITY.md +53 -0
- package/docs/GLOSSARY.md +123 -0
- package/docs/PATTERNS-EN.md +718 -0
- package/docs/PATTERNS-JA.md +706 -0
- package/docs/PATTERNS-KO.md +707 -0
- package/docs/PATTERNS-ZH.md +706 -0
- package/docs/PATTERNS.md +22 -0
- package/docs/ROADMAP.md +315 -0
- package/docs/audits/2026-05-deep-research.md +290 -0
- package/docs/benchmarks/detector-comparison.json +442 -0
- package/docs/benchmarks/detector-comparison.md +65 -0
- package/docs/benchmarks/latest.json +988 -0
- package/docs/benchmarks/latest.md +112 -0
- package/docs/integrations/docker.md +19 -0
- package/docs/integrations/github-action.md +59 -0
- package/docs/integrations/pre-commit.md +77 -0
- package/docs/integrations/release.md +43 -0
- package/docs/internal/HARNESS.md +14 -0
- package/docs/internal/README.md +14 -0
- package/docs/internal/WARP.md +23 -0
- package/docs/research/2025-rebaseline-plan.md +89 -0
- package/docs/research/ai-human-metrics.md +380 -0
- package/docs/social/gstack-cardnews.html +236 -0
- package/docs/social/gstack-cardnews.md +88 -0
- package/docs/social/gstack-thread.md +106 -0
- package/docs/social/patina-launch-copy.md +227 -0
- package/docs/superpowers/specs/2026-04-03-meaning-preservation-design.md +299 -0
- package/lexicon/ai-en.md +162 -0
- package/lexicon/ai-ko.md +159 -0
- package/package.json +100 -0
- package/patina-max/SKILL.md +523 -0
- package/patina-max/composite.py +457 -0
- package/patterns/en-communication.md +89 -0
- package/patterns/en-content.md +133 -0
- package/patterns/en-filler.md +113 -0
- package/patterns/en-language.md +163 -0
- package/patterns/en-structure.md +173 -0
- package/patterns/en-style.md +139 -0
- package/patterns/en-viral-hook.md +211 -0
- package/patterns/ja-communication.md +101 -0
- package/patterns/ja-content.md +153 -0
- package/patterns/ja-filler.md +123 -0
- package/patterns/ja-language.md +190 -0
- package/patterns/ja-structure.md +142 -0
- package/patterns/ja-style.md +147 -0
- package/patterns/ja-viral-hook.md +216 -0
- package/patterns/ko-communication.md +98 -0
- package/patterns/ko-content.md +154 -0
- package/patterns/ko-filler.md +105 -0
- package/patterns/ko-language.md +182 -0
- package/patterns/ko-structure.md +147 -0
- package/patterns/ko-style.md +146 -0
- package/patterns/ko-viral-hook.md +211 -0
- package/patterns/zh-communication.md +101 -0
- package/patterns/zh-content.md +153 -0
- package/patterns/zh-filler.md +118 -0
- package/patterns/zh-language.md +173 -0
- package/patterns/zh-structure.md +145 -0
- package/patterns/zh-style.md +159 -0
- package/patterns/zh-viral-hook.md +216 -0
- package/profiles/academic.md +53 -0
- package/profiles/blog.md +81 -0
- package/profiles/casual-conversation.md +105 -0
- package/profiles/code-comment.md +104 -0
- package/profiles/commit-message.md +99 -0
- package/profiles/default.md +62 -0
- package/profiles/email.md +52 -0
- package/profiles/formal.md +98 -0
- package/profiles/instructional.md +80 -0
- package/profiles/legal.md +57 -0
- package/profiles/marketing.md +56 -0
- package/profiles/medical.md +53 -0
- package/profiles/narrative.md +79 -0
- package/profiles/release-notes.md +98 -0
- package/profiles/social.md +56 -0
- package/profiles/technical.md +53 -0
- package/scripts/benchmark-report.mjs +252 -0
- package/scripts/check-release-metadata.mjs +48 -0
- package/scripts/detector-comparison.mjs +267 -0
- package/scripts/lint.mjs +40 -0
- package/scripts/precommit-score.mjs +31 -0
- package/scripts/prose-score.mjs +186 -0
- package/scripts/update-benchmark-ranges.mjs +108 -0
- package/src/api.js +330 -0
- package/src/auth.js +105 -0
- package/src/backends/claude-cli.js +112 -0
- package/src/backends/codex-cli.js +121 -0
- package/src/backends/contract.js +21 -0
- package/src/backends/gemini-cli.js +135 -0
- package/src/backends/index.js +159 -0
- package/src/cache.js +106 -0
- package/src/cli.js +1280 -0
- package/src/commands/doctor.js +229 -0
- package/src/commands/init.js +208 -0
- package/src/config.js +126 -0
- package/src/errors.js +53 -0
- package/src/features/index.js +96 -0
- package/src/features/lexicon.js +90 -0
- package/src/features/segment.js +49 -0
- package/src/features/stylometry.js +50 -0
- package/src/loader.js +103 -0
- package/src/logger.js +70 -0
- package/src/manifest.js +162 -0
- package/src/max-mode.js +207 -0
- package/src/ouroboros.js +233 -0
- package/src/output.js +480 -0
- package/src/prompt-builder.js +409 -0
- package/src/providers.js +100 -0
- package/src/scoring.js +531 -0
- package/src/security.js +133 -0
- package/tests/fixtures/suspect-zones/en/ai/en-ai-01.md +16 -0
- package/tests/fixtures/suspect-zones/en/ai/en-ai-02.md +16 -0
- package/tests/fixtures/suspect-zones/en/ai/en-ai-03.md +17 -0
- package/tests/fixtures/suspect-zones/en/ai/en-ai-04.md +15 -0
- package/tests/fixtures/suspect-zones/en/ai/en-ai-05.md +16 -0
- package/tests/fixtures/suspect-zones/en/ai/en-ai-06-chat-register.md +16 -0
- package/tests/fixtures/suspect-zones/en/natural/en-nat-01.md +15 -0
- package/tests/fixtures/suspect-zones/en/natural/en-nat-02.md +15 -0
- package/tests/fixtures/suspect-zones/en/natural/en-nat-03.md +15 -0
- package/tests/fixtures/suspect-zones/en/natural/en-nat-04.md +15 -0
- package/tests/fixtures/suspect-zones/en/natural/en-nat-05.md +15 -0
- package/tests/fixtures/suspect-zones/expected-ranges.json +939 -0
- package/tests/fixtures/suspect-zones/ja/ai/ja-ai-01.md +11 -0
- package/tests/fixtures/suspect-zones/ja/ai/ja-ai-02.md +11 -0
- package/tests/fixtures/suspect-zones/ja/ai/ja-ai-03.md +11 -0
- package/tests/fixtures/suspect-zones/ja/natural/ja-nat-01.md +11 -0
- package/tests/fixtures/suspect-zones/ja/natural/ja-nat-02.md +11 -0
- package/tests/fixtures/suspect-zones/ja/natural/ja-nat-03.md +11 -0
- package/tests/fixtures/suspect-zones/ko/ai/ko-ai-01.md +14 -0
- package/tests/fixtures/suspect-zones/ko/ai/ko-ai-02.md +16 -0
- package/tests/fixtures/suspect-zones/ko/ai/ko-ai-03.md +15 -0
- package/tests/fixtures/suspect-zones/ko/ai/ko-ai-04.md +15 -0
- package/tests/fixtures/suspect-zones/ko/ai/ko-ai-05.md +16 -0
- package/tests/fixtures/suspect-zones/ko/ai/ko-ai-06-chat-register.md +16 -0
- package/tests/fixtures/suspect-zones/ko/natural/ko-nat-01.md +15 -0
- package/tests/fixtures/suspect-zones/ko/natural/ko-nat-02.md +15 -0
- package/tests/fixtures/suspect-zones/ko/natural/ko-nat-03.md +15 -0
- package/tests/fixtures/suspect-zones/ko/natural/ko-nat-04.md +14 -0
- package/tests/fixtures/suspect-zones/ko/natural/ko-nat-05.md +15 -0
- package/tests/fixtures/suspect-zones/zh/ai/zh-ai-01.md +11 -0
- package/tests/fixtures/suspect-zones/zh/ai/zh-ai-02.md +11 -0
- package/tests/fixtures/suspect-zones/zh/ai/zh-ai-03.md +11 -0
- package/tests/fixtures/suspect-zones/zh/natural/zh-nat-01.md +11 -0
- package/tests/fixtures/suspect-zones/zh/natural/zh-nat-02.md +11 -0
- package/tests/fixtures/suspect-zones/zh/natural/zh-nat-03.md +11 -0
- package/tests/quality/README.md +121 -0
- package/tests/quality/benchmark.mjs +306 -0
- package/tests/quality/detectors.manual.example.json +31 -0
- package/tests/quality/dogfood.mjs +44 -0
|
@@ -0,0 +1,718 @@
|
|
|
1
|
+
# English Pattern Reference
|
|
2
|
+
|
|
3
|
+
This page expands the English pattern packs into a browsable reference. It is generated from `patterns/en-*.md`, so the numbers, names, watch words, fire conditions, and examples mirror the source pattern files.
|
|
4
|
+
|
|
5
|
+
- Rewrite-capable patterns: 32
|
|
6
|
+
- Score/audit-only viral-hook patterns: 8
|
|
7
|
+
- Main selector: [PATTERNS.md](PATTERNS.md)
|
|
8
|
+
|
|
9
|
+
## Pattern Index
|
|
10
|
+
|
|
11
|
+
| # | Type | Pattern | Source |
|
|
12
|
+
|---|------|---------|--------|
|
|
13
|
+
| 1 | rewrite | Undue Emphasis on Significance | [en-content.md](../patterns/en-content.md) |
|
|
14
|
+
| 2 | rewrite | Undue Emphasis on Notability/Media | [en-content.md](../patterns/en-content.md) |
|
|
15
|
+
| 3 | rewrite | Superficial -ing Analyses | [en-content.md](../patterns/en-content.md) |
|
|
16
|
+
| 4 | rewrite | Promotional Language | [en-content.md](../patterns/en-content.md) |
|
|
17
|
+
| 5 | rewrite | Vague Attributions | [en-content.md](../patterns/en-content.md) |
|
|
18
|
+
| 6 | rewrite | Formulaic "Challenges and Prospects" | [en-content.md](../patterns/en-content.md) |
|
|
19
|
+
| 7 | rewrite | AI Vocabulary Words | [en-language.md](../patterns/en-language.md) |
|
|
20
|
+
| 8 | rewrite | Copula Avoidance ("serves as") | [en-language.md](../patterns/en-language.md) |
|
|
21
|
+
| 9 | rewrite | Negative Parallelisms | [en-language.md](../patterns/en-language.md) |
|
|
22
|
+
| 10 | rewrite | Rule of Three Overuse | [en-language.md](../patterns/en-language.md) |
|
|
23
|
+
| 11 | rewrite | Elegant Variation (Synonym Cycling) | [en-language.md](../patterns/en-language.md) |
|
|
24
|
+
| 12 | rewrite | False Ranges | [en-language.md](../patterns/en-language.md) |
|
|
25
|
+
| 32 | rewrite | Comparison Adverb Overuse ("more" without target) | [en-language.md](../patterns/en-language.md) |
|
|
26
|
+
| 13 | rewrite | Em Dash Overuse | [en-style.md](../patterns/en-style.md) |
|
|
27
|
+
| 14 | rewrite | Boldface Overuse | [en-style.md](../patterns/en-style.md) |
|
|
28
|
+
| 15 | rewrite | Inline-Header Vertical Lists | [en-style.md](../patterns/en-style.md) |
|
|
29
|
+
| 16 | rewrite | Title Case in Headings | [en-style.md](../patterns/en-style.md) |
|
|
30
|
+
| 17 | rewrite | Emojis | [en-style.md](../patterns/en-style.md) |
|
|
31
|
+
| 18 | rewrite | Curly Quotation Marks | [en-style.md](../patterns/en-style.md) |
|
|
32
|
+
| 19 | rewrite | Collaborative Communication Artifacts | [en-communication.md](../patterns/en-communication.md) |
|
|
33
|
+
| 20 | rewrite | Knowledge-Cutoff Disclaimers | [en-communication.md](../patterns/en-communication.md) |
|
|
34
|
+
| 21 | rewrite | Sycophantic/Servile Tone | [en-communication.md](../patterns/en-communication.md) |
|
|
35
|
+
| 29 | rewrite | False Nuance (Retroactive Reframing) | [en-communication.md](../patterns/en-communication.md) |
|
|
36
|
+
| 22 | rewrite | Filler Phrases | [en-filler.md](../patterns/en-filler.md) |
|
|
37
|
+
| 23 | rewrite | Excessive Hedging | [en-filler.md](../patterns/en-filler.md) |
|
|
38
|
+
| 24 | rewrite | Generic Positive Conclusions | [en-filler.md](../patterns/en-filler.md) |
|
|
39
|
+
| 31 | rewrite | Conclusion Signal Words | [en-filler.md](../patterns/en-filler.md) |
|
|
40
|
+
| 25 | rewrite | Metronomic Paragraph Structure | [en-structure.md](../patterns/en-structure.md) |
|
|
41
|
+
| 26 | rewrite | Passive Nominalization Chains | [en-structure.md](../patterns/en-structure.md) |
|
|
42
|
+
| 27 | rewrite | Zombie Nouns (Excessive Nominalization) | [en-structure.md](../patterns/en-structure.md) |
|
|
43
|
+
| 28 | rewrite | Stacked Subordinate Clauses | [en-structure.md](../patterns/en-structure.md) |
|
|
44
|
+
| 30 | rewrite | Rhetorical Question Openers | [en-structure.md](../patterns/en-structure.md) |
|
|
45
|
+
| VH-1 | score/audit only | Shock Numbers as Hook | [en-viral-hook.md](../patterns/en-viral-hook.md) |
|
|
46
|
+
| VH-2 | score/audit only | Clickbait Mystery Close | [en-viral-hook.md](../patterns/en-viral-hook.md) |
|
|
47
|
+
| VH-3 | score/audit only | Source-Skipping Authority | [en-viral-hook.md](../patterns/en-viral-hook.md) |
|
|
48
|
+
| VH-4 | score/audit only | Breath-Optimized Short-Sentence Stacking | [en-viral-hook.md](../patterns/en-viral-hook.md) |
|
|
49
|
+
| VH-5 | score/audit only | Hyperbolic Engagement Lexicon | [en-viral-hook.md](../patterns/en-viral-hook.md) |
|
|
50
|
+
| VH-6 | score/audit only | Fake Statistic Citation | [en-viral-hook.md](../patterns/en-viral-hook.md) |
|
|
51
|
+
| VH-7 | score/audit only | Manufactured Authority Stacking | [en-viral-hook.md](../patterns/en-viral-hook.md) |
|
|
52
|
+
| VH-8 | score/audit only | Future-Self / Parasocial Promise | [en-viral-hook.md](../patterns/en-viral-hook.md) |
|
|
53
|
+
|
|
54
|
+
## Content Patterns
|
|
55
|
+
|
|
56
|
+
### 1. Undue Emphasis on Significance
|
|
57
|
+
|
|
58
|
+
- Source: [en-content.md](../patterns/en-content.md)
|
|
59
|
+
- Type: rewrite-capable pattern
|
|
60
|
+
- Watch words: significant milestone, pivotal moment, groundbreaking, transformative, paradigm shift, revolutionary, game-changing, unprecedented, landmark achievement, watershed moment, trailblazing, monumental
|
|
61
|
+
- Fire condition: 2+ emphasis words appear in the same paragraph, or a single word like "revolutionary" or "groundbreaking" applied to an ordinary product or event.
|
|
62
|
+
- Example files: [failure](../examples/en-01-failure-01.md) · [success](../examples/en-01-success-01.md)
|
|
63
|
+
|
|
64
|
+
Example before:
|
|
65
|
+
|
|
66
|
+
> The company's new mobile app represents a groundbreaking paradigm shift in how users interact with grocery delivery services. This transformative, game-changing platform marks an unprecedented milestone in the retail industry.
|
|
67
|
+
|
|
68
|
+
Example after:
|
|
69
|
+
|
|
70
|
+
> The company launched a grocery delivery app. It lets users schedule same-day deliveries and track orders in real time. Downloads hit 2 million in the first month.
|
|
71
|
+
|
|
72
|
+
### 2. Undue Emphasis on Notability/Media
|
|
73
|
+
|
|
74
|
+
- Source: [en-content.md](../patterns/en-content.md)
|
|
75
|
+
- Type: rewrite-capable pattern
|
|
76
|
+
- Watch words: garnered significant attention, widely recognized, has been featured in, attracted widespread interest, gained international acclaim, made headlines, captured the imagination of, has been praised by critics and audiences alike
|
|
77
|
+
- Fire condition: A claim of broad attention, coverage, or acclaim appears without a named publication, outlet, or specific figure.
|
|
78
|
+
- Example files: [failure](../examples/en-02-failure-01.md) · [success](../examples/en-02-success-01.md)
|
|
79
|
+
|
|
80
|
+
Example before:
|
|
81
|
+
|
|
82
|
+
> Her artwork has garnered significant attention from critics and audiences alike, and has been widely recognized as a defining voice of her generation. Her exhibitions have attracted widespread interest across the globe.
|
|
83
|
+
|
|
84
|
+
Example after:
|
|
85
|
+
|
|
86
|
+
> The New York Times reviewed her 2023 exhibition, calling her use of recycled materials "quietly radical." The show sold out its three-week run at the Whitechapel Gallery.
|
|
87
|
+
|
|
88
|
+
### 3. Superficial -ing Analyses
|
|
89
|
+
|
|
90
|
+
- Source: [en-content.md](../patterns/en-content.md)
|
|
91
|
+
- Type: rewrite-capable pattern
|
|
92
|
+
- Watch words: showcasing, highlighting, underscoring, demonstrating, illustrating, reflecting, signaling, exemplifying, reinforcing, embodying, encapsulating
|
|
93
|
+
- Fire condition: 3+ present-participle phrases chained in a single sentence or consecutive clauses with no concrete causal explanation.
|
|
94
|
+
- Example files: [failure](../examples/en-03-failure-01.md) · [success](../examples/en-03-success-01.md)
|
|
95
|
+
|
|
96
|
+
Example before:
|
|
97
|
+
|
|
98
|
+
> The festival brings together artists from 30 countries, showcasing the diversity of contemporary dance, highlighting the importance of cross-cultural dialogue, and underscoring the role of the arts in fostering global understanding.
|
|
99
|
+
|
|
100
|
+
Example after:
|
|
101
|
+
|
|
102
|
+
> The festival brings together artists from 30 countries. This year, a butoh troupe from Tokyo collaborated with a hip-hop crew from Lagos — a pairing that would not have happened without the festival's residency program.
|
|
103
|
+
|
|
104
|
+
### 4. Promotional Language
|
|
105
|
+
|
|
106
|
+
- Source: [en-content.md](../patterns/en-content.md)
|
|
107
|
+
- Type: rewrite-capable pattern
|
|
108
|
+
- Watch words: stunning, breathtaking, world-class, gem of, hidden treasure, crown jewel, vibrant, nestled in, boasts, a must-visit, unparalleled, exquisite, awe-inspiring, picturesque
|
|
109
|
+
- Fire condition: 2+ promotional adjectives modifying the same subject, or a single strong superlative ("world-class", "breathtaking", "must-visit") used as descriptive prose rather than quoted marketing copy.
|
|
110
|
+
- Example files: [failure](../examples/en-04-failure-01.md) · [success](../examples/en-04-success-01.md)
|
|
111
|
+
|
|
112
|
+
Example before:
|
|
113
|
+
|
|
114
|
+
> Nestled in the rolling hills of Tuscany, this stunning village boasts breathtaking views, world-class cuisine, and an exquisite charm that makes it a must-visit hidden gem for any discerning traveler.
|
|
115
|
+
|
|
116
|
+
Example after:
|
|
117
|
+
|
|
118
|
+
> The village sits on a hill about 40 minutes south of Florence. It has one restaurant, a weekly market on Thursdays, and a 14th-century church with frescoes that are slowly being restored.
|
|
119
|
+
|
|
120
|
+
### 5. Vague Attributions
|
|
121
|
+
|
|
122
|
+
- Source: [en-content.md](../patterns/en-content.md)
|
|
123
|
+
- Type: rewrite-capable pattern
|
|
124
|
+
- Watch words: experts say, many believe, it is widely accepted, studies show, research indicates, critics argue, according to sources, observers note, analysts predict, some suggest, it is generally agreed
|
|
125
|
+
- Fire condition: Any claim of authority appears with an unspecified source rather than a named one (person, institution, publication, or study with date).
|
|
126
|
+
- Example files: [failure](../examples/en-05-failure-01.md) · [success](../examples/en-05-success-01.md)
|
|
127
|
+
|
|
128
|
+
Example before:
|
|
129
|
+
|
|
130
|
+
> Experts say that remote work is here to stay. Studies show that productivity increases when employees work from home, and many believe this trend will reshape the commercial real estate market.
|
|
131
|
+
|
|
132
|
+
Example after:
|
|
133
|
+
|
|
134
|
+
> A 2023 Stanford study by Nicholas Bloom found that hybrid workers were 3% more productive than full-time office workers. Kastle Systems data shows U.S. office occupancy has stabilized at about 50% of pre-pandemic levels.
|
|
135
|
+
|
|
136
|
+
### 6. Formulaic "Challenges and Prospects"
|
|
137
|
+
|
|
138
|
+
- Source: [en-content.md](../patterns/en-content.md)
|
|
139
|
+
- Type: rewrite-capable pattern
|
|
140
|
+
- Watch words: despite these challenges, remains to be seen, poised for growth, at a crossroads, on the cusp of, only time will tell, the road ahead, faces significant hurdles but, with continued effort, looking forward
|
|
141
|
+
- Fire condition: A paragraph or conclusion contains both a generic challenge phrase AND a generic optimism phrase — the classic two-step pattern of acknowledging problems then pivoting to vague hope.
|
|
142
|
+
- Example files: [failure](../examples/en-06-failure-01.md) · [success](../examples/en-06-success-01.md)
|
|
143
|
+
|
|
144
|
+
Example before:
|
|
145
|
+
|
|
146
|
+
> Despite these challenges, the industry remains poised for significant growth. While it remains to be seen how regulations will evolve, the sector stands at a crossroads, and with continued innovation and collaboration, a bright future lies ahead.
|
|
147
|
+
|
|
148
|
+
Example after:
|
|
149
|
+
|
|
150
|
+
> The biggest obstacle is the FDA approval timeline — the average wait is 14 months. Two of the five pending applications were filed before 2022 and still have no decision date. The company says it will shift trials to the EU if U.S. approval is not granted by Q3.
|
|
151
|
+
|
|
152
|
+
## Language Patterns
|
|
153
|
+
|
|
154
|
+
### 7. AI Vocabulary Words
|
|
155
|
+
|
|
156
|
+
- Source: [en-language.md](../patterns/en-language.md)
|
|
157
|
+
- Type: rewrite-capable pattern
|
|
158
|
+
- Watch words: delve, tapestry, landscape, multifaceted, comprehensive, pivotal, testament, intricate, nuanced, leverage, foster, crucial, moreover, furthermore, realm, robust, facilitate, endeavor, resonate, underscore, embark, myriad, paramount, encompass, holistic, synergy, elucidate, culminate, juxtapose, burgeoning
|
|
159
|
+
- Fire condition: 3+ watch words appear in one paragraph.
|
|
160
|
+
- Example files: [failure](../examples/en-07-failure-01.md) · [success](../examples/en-07-success-01.md)
|
|
161
|
+
|
|
162
|
+
Example before:
|
|
163
|
+
|
|
164
|
+
> This comprehensive report delves into the multifaceted landscape of renewable energy, leveraging nuanced insights to foster a robust understanding. Moreover, the intricate tapestry of stakeholder interests underscores the pivotal role of policy in this crucial endeavor.
|
|
165
|
+
|
|
166
|
+
Example after:
|
|
167
|
+
|
|
168
|
+
> This report covers renewable energy policy from three angles: cost, grid reliability, and public opinion. Each section uses data from the EIA and interviews with six state utility commissioners.
|
|
169
|
+
|
|
170
|
+
### 8. Copula Avoidance ("serves as")
|
|
171
|
+
|
|
172
|
+
- Source: [en-language.md](../patterns/en-language.md)
|
|
173
|
+
- Type: rewrite-capable pattern
|
|
174
|
+
- Watch words: serves as, acts as, functions as, stands as, operates as, works as, remains as, exists as
|
|
175
|
+
- Fire condition: 2+ copula-avoidance constructions in the same paragraph, or a single instance where "is" would be shorter and clearer.
|
|
176
|
+
- Example files: [failure](../examples/en-08-failure-01.md) · [success](../examples/en-08-success-01.md)
|
|
177
|
+
|
|
178
|
+
Example before:
|
|
179
|
+
|
|
180
|
+
> The library serves as a vital community hub, functioning as both an educational resource and a social gathering space. It also acts as a testament to the city's commitment to public access.
|
|
181
|
+
|
|
182
|
+
Example after:
|
|
183
|
+
|
|
184
|
+
> The library is the neighborhood's main public space. People use it for study groups, ESL classes, and the Saturday morning story hour, which draws about 40 kids a week.
|
|
185
|
+
|
|
186
|
+
### 9. Negative Parallelisms
|
|
187
|
+
|
|
188
|
+
- Source: [en-language.md](../patterns/en-language.md)
|
|
189
|
+
- Type: rewrite-capable pattern
|
|
190
|
+
- Watch words: not just...but, not merely...but also, not only...but, goes beyond...to, more than just...it is, transcends...to become
|
|
191
|
+
- Fire condition: 2+ "not X but Y" structures in the same document, or a single instance where the positive statement alone would be simpler and equally clear.
|
|
192
|
+
- Example files: [failure](../examples/en-09-failure-01.md) · [success](../examples/en-09-success-01.md)
|
|
193
|
+
|
|
194
|
+
Example before:
|
|
195
|
+
|
|
196
|
+
> This initiative is not just a policy change but a fundamental reimagining of urban planning. It goes beyond mere infrastructure investment to become a statement about the kind of city residents want to live in.
|
|
197
|
+
|
|
198
|
+
Example after:
|
|
199
|
+
|
|
200
|
+
> The initiative rezones 12 blocks for mixed-use development and adds a bike lane network connecting the east and west sides of the river.
|
|
201
|
+
|
|
202
|
+
### 10. Rule of Three Overuse
|
|
203
|
+
|
|
204
|
+
- Source: [en-language.md](../patterns/en-language.md)
|
|
205
|
+
- Type: rewrite-capable pattern
|
|
206
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
207
|
+
- Fire condition: 3-item lists appear 2+ times in the same document, or a triple-part sentence where the count is arbitrary and another count would be equally valid.
|
|
208
|
+
- Example files: [failure](../examples/en-10-failure-01.md) · [success](../examples/en-10-success-01.md)
|
|
209
|
+
|
|
210
|
+
Example before:
|
|
211
|
+
|
|
212
|
+
> The program fosters creativity, innovation, and collaboration. Participants gain inspiration, practical skills, and lasting connections. The result is a more dynamic, inclusive, and forward-thinking community.
|
|
213
|
+
|
|
214
|
+
Example after:
|
|
215
|
+
|
|
216
|
+
> The program pairs early-career designers with experienced mentors for a 10-week project. Last year's cohort produced two apps that are still in active use.
|
|
217
|
+
|
|
218
|
+
### 11. Elegant Variation (Synonym Cycling)
|
|
219
|
+
|
|
220
|
+
- Source: [en-language.md](../patterns/en-language.md)
|
|
221
|
+
- Type: rewrite-capable pattern
|
|
222
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
223
|
+
- Fire condition: The same entity referred to by 3+ different names or synonyms within a single paragraph.
|
|
224
|
+
- Example files: [failure](../examples/en-11-failure-01.md) · [success](../examples/en-11-success-01.md)
|
|
225
|
+
|
|
226
|
+
Example before:
|
|
227
|
+
|
|
228
|
+
> Tokyo is the most populous city in Japan. The metropolis is known for its blend of tradition and modernity. The urban center attracts millions of tourists each year. The Japanese capital continues to grow.
|
|
229
|
+
|
|
230
|
+
Example after:
|
|
231
|
+
|
|
232
|
+
> Tokyo is the most populous city in Japan, with about 14 million residents. It draws roughly 20 million foreign tourists a year, a number that has doubled since 2015.
|
|
233
|
+
|
|
234
|
+
### 12. False Ranges
|
|
235
|
+
|
|
236
|
+
- Source: [en-language.md](../patterns/en-language.md)
|
|
237
|
+
- Type: rewrite-capable pattern
|
|
238
|
+
- Watch words: from X to Y, ranging from...to, spanning...to, everything from...to, whether...or
|
|
239
|
+
- Fire condition: A "from X to Y" construction appears where the two poles do not meaningfully bound a spectrum — the range is decorative rather than informative.
|
|
240
|
+
- Example files: [failure](../examples/en-12-failure-01.md) · [success](../examples/en-12-success-01.md)
|
|
241
|
+
|
|
242
|
+
Example before:
|
|
243
|
+
|
|
244
|
+
> The festival offers something for everyone, from young children to seasoned professionals, spanning everything from traditional folk music to cutting-edge electronic performances.
|
|
245
|
+
|
|
246
|
+
Example after:
|
|
247
|
+
|
|
248
|
+
> The festival has three stages. The main stage books established acts (this year: Yo-Yo Ma, Thundercat). The tent stage is for local bands. There is also a children's area with instrument demos.
|
|
249
|
+
|
|
250
|
+
### 32. Comparison Adverb Overuse ("more" without target)
|
|
251
|
+
|
|
252
|
+
- Source: [en-language.md](../patterns/en-language.md)
|
|
253
|
+
- Type: rewrite-capable pattern
|
|
254
|
+
- Watch words: more specific, more concrete, more efficient, more effective, more comprehensive, more robust, more seamless, more meaningful, more strategic, more impactful, more nuanced, more proactive, more sustainable, more scalable
|
|
255
|
+
- Fire condition: 2+ "more + adjective/adverb" comparative phrases appear in one document without a clear target, baseline, or metric.
|
|
256
|
+
- Example files: [failure](../examples/en-32-failure-01.md) · [success](../examples/en-32-success-01.md)
|
|
257
|
+
|
|
258
|
+
Example before:
|
|
259
|
+
|
|
260
|
+
> The initiative will enable more specific milestones, more efficient resource allocation, and more comprehensive stakeholder alignment. Moving forward, the team should develop a more strategic framework for more meaningful collaboration.
|
|
261
|
+
|
|
262
|
+
Example after:
|
|
263
|
+
|
|
264
|
+
> The initiative needs dated milestones, named owners, and a budget review. The team also needs one shared plan for partner handoffs, because the current spreadsheet has three conflicting owners for the same launch tasks.
|
|
265
|
+
|
|
266
|
+
## Style Patterns
|
|
267
|
+
|
|
268
|
+
### 13. Em Dash Overuse
|
|
269
|
+
|
|
270
|
+
- Source: [en-style.md](../patterns/en-style.md)
|
|
271
|
+
- Type: rewrite-capable pattern
|
|
272
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
273
|
+
- Fire condition: 3+ em dashes appear in a single text.
|
|
274
|
+
- Example files: [failure](../examples/en-13-failure-01.md) · [success](../examples/en-13-success-01.md)
|
|
275
|
+
|
|
276
|
+
Example before:
|
|
277
|
+
|
|
278
|
+
> The new policy — which was announced last Tuesday — aims to address a long-standing issue — affordable housing. Critics — including several council members — argue that the plan lacks specifics — a concern that the mayor dismissed as premature.
|
|
279
|
+
|
|
280
|
+
Example after:
|
|
281
|
+
|
|
282
|
+
> The new policy, announced last Tuesday, aims to address affordable housing. Several council members say the plan lacks specifics. The mayor called the criticism premature.
|
|
283
|
+
|
|
284
|
+
### 14. Boldface Overuse
|
|
285
|
+
|
|
286
|
+
- Source: [en-style.md](../patterns/en-style.md)
|
|
287
|
+
- Type: rewrite-capable pattern
|
|
288
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
289
|
+
- Fire condition: 5+ bolded terms in a single document, or 3+ in a single paragraph.
|
|
290
|
+
- Example files: [failure](../examples/en-14-failure-01.md) · [success](../examples/en-14-success-01.md)
|
|
291
|
+
|
|
292
|
+
Example before:
|
|
293
|
+
|
|
294
|
+
> **Machine learning** is a subset of **artificial intelligence** that uses **statistical methods** to enable computers to **learn from data**. The most common approaches include **supervised learning**, **unsupervised learning**, and **reinforcement learning**.
|
|
295
|
+
|
|
296
|
+
Example after:
|
|
297
|
+
|
|
298
|
+
> Machine learning is a subset of artificial intelligence that uses statistical methods to let computers learn from data. The three main approaches are supervised learning, unsupervised learning, and reinforcement learning.
|
|
299
|
+
|
|
300
|
+
### 15. Inline-Header Vertical Lists
|
|
301
|
+
|
|
302
|
+
- Source: [en-style.md](../patterns/en-style.md)
|
|
303
|
+
- Type: rewrite-capable pattern
|
|
304
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
305
|
+
- Fire condition: 2+ "**Label:** explanation" bullets in the same list.
|
|
306
|
+
- Example files: [failure](../examples/en-15-failure-01.md) · [success](../examples/en-15-success-01.md)
|
|
307
|
+
|
|
308
|
+
Example before:
|
|
309
|
+
|
|
310
|
+
> - **Accessibility:** The platform supports screen readers and keyboard navigation.
|
|
311
|
+
> - **Performance:** Load times have been reduced by 40%.
|
|
312
|
+
> - **Security:** All data is encrypted end-to-end.
|
|
313
|
+
|
|
314
|
+
Example after:
|
|
315
|
+
|
|
316
|
+
> The platform now supports screen readers and keyboard navigation, load times are down 40%, and all data is encrypted end-to-end.
|
|
317
|
+
|
|
318
|
+
### 16. Title Case in Headings
|
|
319
|
+
|
|
320
|
+
- Source: [en-style.md](../patterns/en-style.md)
|
|
321
|
+
- Type: rewrite-capable pattern
|
|
322
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
323
|
+
- Fire condition: 3+ content words (non-articles, non-prepositions) capitalized in the same heading when sentence case would be correct.
|
|
324
|
+
- Example files: [failure](../examples/en-16-failure-01.md) · [success](../examples/en-16-success-01.md)
|
|
325
|
+
|
|
326
|
+
Example before:
|
|
327
|
+
|
|
328
|
+
> ## The Impact Of Remote Work On Urban Development And Housing Markets
|
|
329
|
+
|
|
330
|
+
Example after:
|
|
331
|
+
|
|
332
|
+
> ## The impact of remote work on urban development and housing markets
|
|
333
|
+
|
|
334
|
+
### 17. Emojis
|
|
335
|
+
|
|
336
|
+
- Source: [en-style.md](../patterns/en-style.md)
|
|
337
|
+
- Type: rewrite-capable pattern
|
|
338
|
+
- Watch words: emojis used as section markers or emphasis
|
|
339
|
+
- Fire condition: Any emoji in professional, academic, or editorial text.
|
|
340
|
+
- Example files: [failure](../examples/en-17-failure-01.md) · [success](../examples/en-17-success-01.md)
|
|
341
|
+
|
|
342
|
+
Example before:
|
|
343
|
+
|
|
344
|
+
> Here are five tips for better sleep:
|
|
345
|
+
> 1. Set a consistent bedtime
|
|
346
|
+
> 2. Avoid screens before bed
|
|
347
|
+
> 3. Keep your room cool
|
|
348
|
+
> 4. Limit caffeine after noon
|
|
349
|
+
> 5. Try reading instead of scrolling
|
|
350
|
+
|
|
351
|
+
Example after:
|
|
352
|
+
|
|
353
|
+
> Five tips for better sleep:
|
|
354
|
+
> 1. Set a consistent bedtime.
|
|
355
|
+
> 2. Avoid screens before bed.
|
|
356
|
+
> 3. Keep your room cool.
|
|
357
|
+
> 4. Limit caffeine after noon.
|
|
358
|
+
> 5. Read instead of scrolling.
|
|
359
|
+
|
|
360
|
+
### 18. Curly Quotation Marks
|
|
361
|
+
|
|
362
|
+
- Source: [en-style.md](../patterns/en-style.md)
|
|
363
|
+
- Type: rewrite-capable pattern
|
|
364
|
+
- Watch words: curly/smart quotes used in contexts where straight quotes are standard
|
|
365
|
+
- Fire condition: Curly quotes appear inside code blocks, inline code spans, configuration file examples, or plain-text technical documents where straight quotes are required.
|
|
366
|
+
- Example files: [failure](../examples/en-18-failure-01.md) · [success](../examples/en-18-success-01.md)
|
|
367
|
+
|
|
368
|
+
Example before:
|
|
369
|
+
|
|
370
|
+
> Set the variable: `name = "hello"`
|
|
371
|
+
>
|
|
372
|
+
> In your config file, add: `timeout = '30'`
|
|
373
|
+
|
|
374
|
+
Example after:
|
|
375
|
+
|
|
376
|
+
> Set the variable: `name = "hello"`
|
|
377
|
+
>
|
|
378
|
+
> In your config file, add: `timeout = '30'`
|
|
379
|
+
|
|
380
|
+
## Communication Patterns
|
|
381
|
+
|
|
382
|
+
### 19. Collaborative Communication Artifacts
|
|
383
|
+
|
|
384
|
+
- Source: [en-communication.md](../patterns/en-communication.md)
|
|
385
|
+
- Type: rewrite-capable pattern
|
|
386
|
+
- Watch words: I hope this helps!, Let me know if you need, Feel free to ask, Happy to help, Don't hesitate to reach out, I'd be glad to, Is there anything else, Hope that clarifies things, Let me know if you'd like me to
|
|
387
|
+
- Fire condition: Any chatbot-style conversational phrase appears in content that is not a live interactive conversation.
|
|
388
|
+
- Example files: [failure](../examples/en-19-failure-01.md) · [success](../examples/en-19-success-01.md)
|
|
389
|
+
|
|
390
|
+
Example before:
|
|
391
|
+
|
|
392
|
+
> The French Revolution began in 1789, driven by fiscal crisis and food shortages. I hope this helps! Let me know if you need more details on any specific aspect of the revolution. Feel free to ask about the key figures involved.
|
|
393
|
+
|
|
394
|
+
Example after:
|
|
395
|
+
|
|
396
|
+
> The French Revolution began in 1789, driven by fiscal crisis and food shortages. The immediate trigger was the near-bankruptcy of the French state and a bread price spike that hit Paris hardest.
|
|
397
|
+
|
|
398
|
+
### 20. Knowledge-Cutoff Disclaimers
|
|
399
|
+
|
|
400
|
+
- Source: [en-communication.md](../patterns/en-communication.md)
|
|
401
|
+
- Type: rewrite-capable pattern
|
|
402
|
+
- Watch words: as of my last update, I don't have access to real-time, my training data, I cannot verify current, as of my knowledge cutoff, I'm not able to browse, please verify this information, this may have changed since
|
|
403
|
+
- Fire condition: Any AI self-reference or training-data caveat appears in editorial, journalistic, or analytical content.
|
|
404
|
+
- Example files: [failure](../examples/en-20-failure-01.md) · [success](../examples/en-20-success-01.md)
|
|
405
|
+
|
|
406
|
+
Example before:
|
|
407
|
+
|
|
408
|
+
> As of my last update in April 2024, the company had around 5,000 employees. I don't have access to real-time data, so please verify this information with current sources.
|
|
409
|
+
|
|
410
|
+
Example after:
|
|
411
|
+
|
|
412
|
+
> The company had about 5,000 employees as of its 2024 annual report.
|
|
413
|
+
|
|
414
|
+
### 21. Sycophantic/Servile Tone
|
|
415
|
+
|
|
416
|
+
- Source: [en-communication.md](../patterns/en-communication.md)
|
|
417
|
+
- Type: rewrite-capable pattern
|
|
418
|
+
- Watch words: Great question!, That's an excellent point, You've raised a fascinating, What a thoughtful, That's a really interesting, Absolutely!, You're absolutely right, What a great observation
|
|
419
|
+
- Fire condition: Any flattering or servile opener appears before substantive content.
|
|
420
|
+
- Example files: [failure](../examples/en-21-failure-01.md) · [success](../examples/en-21-success-01.md)
|
|
421
|
+
|
|
422
|
+
Example before:
|
|
423
|
+
|
|
424
|
+
> Great question! That's a really fascinating topic. You've raised an excellent point about the economic factors at play. Let me break this down for you.
|
|
425
|
+
|
|
426
|
+
Example after:
|
|
427
|
+
|
|
428
|
+
> The main economic factor is the gap between housing supply and demand. Building permits in the metro area dropped 18% last year while population grew 2.1%.
|
|
429
|
+
|
|
430
|
+
### 29. False Nuance (Retroactive Reframing)
|
|
431
|
+
|
|
432
|
+
- Source: [en-communication.md](../patterns/en-communication.md)
|
|
433
|
+
- Type: rewrite-capable pattern
|
|
434
|
+
- Watch words: Actually, it's more nuanced than that, To be more precise, Well, it's not quite that simple, That said, the reality is more complex, More accurately, In fairness, it's more that, If we're being precise, Though to be fair
|
|
435
|
+
- Fire condition: The text restates or lightly reframes the preceding claim under the guise of adding nuance, without introducing new information, evidence, or a genuinely different perspective.
|
|
436
|
+
|
|
437
|
+
Example before:
|
|
438
|
+
|
|
439
|
+
> Remote work increases productivity. Actually, it's more nuanced than that — remote work can enhance productivity in certain contexts while presenting challenges in others, and the net effect depends on organizational culture and individual work styles.
|
|
440
|
+
|
|
441
|
+
Example after:
|
|
442
|
+
|
|
443
|
+
> Remote work increases productivity for focused solo tasks — a Stanford study found a 13% gain for call center workers. It hurts spontaneous collaboration, though: Microsoft's 2021 internal data showed cross-team communication dropped 25% after going fully remote.
|
|
444
|
+
|
|
445
|
+
## Filler & Hedging Patterns
|
|
446
|
+
|
|
447
|
+
### 22. Filler Phrases
|
|
448
|
+
|
|
449
|
+
- Source: [en-filler.md](../patterns/en-filler.md)
|
|
450
|
+
- Type: rewrite-capable pattern
|
|
451
|
+
- Watch words: it's important to note that, it's worth mentioning that, it should be noted that, in order to, due to the fact that, at the end of the day, when it comes to, in terms of, the fact of the matter is, it goes without saying, needless to say, as a matter of fact, for all intents and purposes, in light of the fact that
|
|
452
|
+
- Fire condition: 2+ filler phrases appear in the same paragraph, or a single phrase that can be deleted without any loss of meaning.
|
|
453
|
+
- Example files: [failure](../examples/en-22-failure-01.md) · [success](../examples/en-22-success-01.md)
|
|
454
|
+
|
|
455
|
+
Example before:
|
|
456
|
+
|
|
457
|
+
> It's important to note that, in order to achieve sustainable growth, companies need to invest in R&D. Due to the fact that competition is increasing, it's worth mentioning that firms must also focus on talent retention. At the end of the day, when it comes to long-term success, innovation is key.
|
|
458
|
+
|
|
459
|
+
Example after:
|
|
460
|
+
|
|
461
|
+
> Companies that want to grow need to invest in R&D. Competition for talent is rising just as fast — Gartner reports that tech attrition hit 20% last year.
|
|
462
|
+
|
|
463
|
+
### 23. Excessive Hedging
|
|
464
|
+
|
|
465
|
+
- Source: [en-filler.md](../patterns/en-filler.md)
|
|
466
|
+
- Type: rewrite-capable pattern
|
|
467
|
+
- Watch words: it could potentially be argued that perhaps, may or may not, it is possible that, to some extent, in certain cases, it could be said that, there is a chance that, one might argue, it seems likely that, arguably, it is conceivable that, tends to suggest
|
|
468
|
+
- Fire condition: 3+ qualifiers stacked on a single claim, or a statement so hedged it makes no falsifiable assertion.
|
|
469
|
+
- Example files: [failure](../examples/en-23-failure-01.md) · [success](../examples/en-23-success-01.md)
|
|
470
|
+
|
|
471
|
+
Example before:
|
|
472
|
+
|
|
473
|
+
> It could potentially be argued that this approach may, to some extent, offer certain advantages in some cases, though it is possible that the results might vary depending on a number of factors that arguably remain to be fully understood.
|
|
474
|
+
|
|
475
|
+
Example after:
|
|
476
|
+
|
|
477
|
+
> This approach has advantages, but results vary. The biggest variable is team size: teams under five people saw a 30% improvement, while larger teams saw little change.
|
|
478
|
+
|
|
479
|
+
### 24. Generic Positive Conclusions
|
|
480
|
+
|
|
481
|
+
- Source: [en-filler.md](../patterns/en-filler.md)
|
|
482
|
+
- Type: rewrite-capable pattern
|
|
483
|
+
- Watch words: a bright future lies ahead, exciting journey, the possibilities are endless, stands as a testament, the sky is the limit, promising outlook, exciting times ahead, the best is yet to come, transformative potential, a new chapter
|
|
484
|
+
- Fire condition: 2+ vague optimism phrases appear in the same paragraph or conclusion, or a standalone final sentence that is entirely optimism filler with no specific claim.
|
|
485
|
+
- Example files: [failure](../examples/en-24-failure-01.md) · [success](../examples/en-24-success-01.md)
|
|
486
|
+
|
|
487
|
+
Example before:
|
|
488
|
+
|
|
489
|
+
> As the company enters this exciting new chapter, the possibilities are truly endless. With its talented team and innovative vision, a bright future undoubtedly lies ahead. The best is yet to come.
|
|
490
|
+
|
|
491
|
+
Example after:
|
|
492
|
+
|
|
493
|
+
> The company plans to open two more locations by June and is hiring 15 engineers for its new climate-tech division.
|
|
494
|
+
|
|
495
|
+
### 31. Conclusion Signal Words
|
|
496
|
+
|
|
497
|
+
- Source: [en-filler.md](../patterns/en-filler.md)
|
|
498
|
+
- Type: rewrite-capable pattern
|
|
499
|
+
- Watch words: In conclusion, Ultimately, In summary, To conclude, To sum up, Finally, All in all, In the end, Overall, On the whole
|
|
500
|
+
- Fire condition: The document's final paragraph (or second-to-last) opens with one of the watch words. Or 2+ such conclusion signals appear across paragraphs.
|
|
501
|
+
- Example files: [failure](../examples/en-31-failure-01.md) · [success](../examples/en-31-success-01.md)
|
|
502
|
+
|
|
503
|
+
Example before:
|
|
504
|
+
|
|
505
|
+
> In conclusion, work-life balance is not a luxury but a necessity. It is a critical foundation upon which sustainable success — both personal and professional — must be built.
|
|
506
|
+
|
|
507
|
+
Example after:
|
|
508
|
+
|
|
509
|
+
> Work-life balance isn't optional. Without it, the rest of the structure cracks.
|
|
510
|
+
|
|
511
|
+
## Structure Patterns
|
|
512
|
+
|
|
513
|
+
### 25. Metronomic Paragraph Structure
|
|
514
|
+
|
|
515
|
+
- Source: [en-structure.md](../patterns/en-structure.md)
|
|
516
|
+
- Type: rewrite-capable pattern
|
|
517
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
518
|
+
- Fire condition: 3+ consecutive paragraphs follow the identical internal template — e.g., claim → evidence → significance, or problem → solution → benefit, or intro → development → conclusion.
|
|
519
|
+
- Example files: [failure](../examples/en-25-failure-01.md) · [success](../examples/en-25-success-01.md)
|
|
520
|
+
|
|
521
|
+
Example before:
|
|
522
|
+
|
|
523
|
+
> The electric vehicle market has experienced unprecedented growth in recent years. Sales doubled between 2021 and 2023, driven by falling battery costs and expanded charging infrastructure. This trend signals a fundamental shift in how consumers relate to personal transportation.
|
|
524
|
+
>
|
|
525
|
+
> Battery technology has improved considerably over the same period. Energy density has increased by 40% since 2018, while costs have fallen from $140 to $90 per kWh. These advances have made electric vehicles competitive with internal combustion alternatives on a total cost of ownership basis.
|
|
526
|
+
>
|
|
527
|
+
> Government policy has played a significant supporting role. Tax credits of up to $7,500 are available in the United States, and the EU has mandated a ban on new petrol vehicle sales by 2035. Such regulatory tailwinds are expected to sustain the sector's momentum into the next decade.
|
|
528
|
+
|
|
529
|
+
Example after:
|
|
530
|
+
|
|
531
|
+
> Electric vehicle sales doubled between 2021 and 2023. The main driver isn't policy — it's battery prices, which fell from $140 to $90 per kWh.
|
|
532
|
+
>
|
|
533
|
+
> The US $7,500 tax credit helps, but it phases out once a manufacturer hits 200,000 vehicles sold. Tesla already passed that cap years ago.
|
|
534
|
+
>
|
|
535
|
+
> Whether the EU's 2035 petrol ban survives is genuinely unclear. Germany's coalition nearly collapsed over it in 2023, and three major automakers are lobbying for a 2040 date instead.
|
|
536
|
+
|
|
537
|
+
### 26. Passive Nominalization Chains
|
|
538
|
+
|
|
539
|
+
- Source: [en-structure.md](../patterns/en-structure.md)
|
|
540
|
+
- Type: rewrite-capable pattern
|
|
541
|
+
- Watch words: was conducted, was performed, was developed, was established, were identified, is required, has been shown, is provided, are considered, is achieved, is determined, is utilized, is noted
|
|
542
|
+
- Fire condition: 2+ passive nominalization phrases in the same paragraph — e.g., "an analysis was conducted", "consideration was given to", "a decision was made".
|
|
543
|
+
- Example files: [failure](../examples/en-26-failure-01.md) · [success](../examples/en-26-success-01.md)
|
|
544
|
+
|
|
545
|
+
Example before:
|
|
546
|
+
|
|
547
|
+
> An extensive review of the literature was conducted in order to identify key patterns. Consideration was given to a range of methodological approaches, and a decision was made to adopt a mixed-methods design. Data collection was performed over a six-month period, after which an analysis was undertaken to identify recurring themes.
|
|
548
|
+
|
|
549
|
+
Example after:
|
|
550
|
+
|
|
551
|
+
> We reviewed 47 papers published between 2018 and 2024. Most used surveys; we chose interviews instead, since the population was small enough to go deep. Six months of interviews, then we coded the transcripts.
|
|
552
|
+
|
|
553
|
+
### 27. Zombie Nouns (Excessive Nominalization)
|
|
554
|
+
|
|
555
|
+
- Source: [en-structure.md](../patterns/en-structure.md)
|
|
556
|
+
- Type: rewrite-capable pattern
|
|
557
|
+
- Watch words: make an improvement to, provide a description of, conduct an analysis of, give consideration to, offer an explanation of, achieve a reduction in, have an impact on, make a decision about, reach a conclusion regarding, perform an evaluation of, carry out an investigation into, give an indication of
|
|
558
|
+
- Fire condition: 3+ nominalized verb phrases in the same paragraph — e.g., "make improvements" instead of "improve", "conduct an analysis" instead of "analyze".
|
|
559
|
+
- Example files: [failure](../examples/en-27-failure-01.md) · [success](../examples/en-27-success-01.md)
|
|
560
|
+
|
|
561
|
+
Example before:
|
|
562
|
+
|
|
563
|
+
> The committee made a decision to conduct an analysis of the current situation and to provide a recommendation regarding future strategy. An evaluation of the available options was performed, and after careful consideration was given to each alternative, an agreement was reached on the most viable approach.
|
|
564
|
+
|
|
565
|
+
Example after:
|
|
566
|
+
|
|
567
|
+
> The committee analyzed the situation and agreed on a strategy. They evaluated three options and chose the one with the lowest implementation risk.
|
|
568
|
+
|
|
569
|
+
### 28. Stacked Subordinate Clauses
|
|
570
|
+
|
|
571
|
+
- Source: [en-structure.md](../patterns/en-structure.md)
|
|
572
|
+
- Type: rewrite-capable pattern
|
|
573
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
574
|
+
- Fire condition: A single sentence contains 3+ embedded relative clauses, appositives, or participial phrases before the main verb reaches its object — or the reader must parse 4+ commas before understanding the sentence's main claim.
|
|
575
|
+
- Example files: [failure](../examples/en-28-failure-01.md) · [success](../examples/en-28-success-01.md)
|
|
576
|
+
|
|
577
|
+
Example before:
|
|
578
|
+
|
|
579
|
+
> The initiative, which was developed in response to increasing concerns about, and growing awareness of, the urgent need to address the challenges facing both urban and rural communities in the context of rapid technological transformation, aims to bridge the gap between innovation and equitable access.
|
|
580
|
+
|
|
581
|
+
Example after:
|
|
582
|
+
|
|
583
|
+
> Rural and urban communities are getting left behind as technology changes fast. The initiative targets that gap directly — access to tools, not just the tools themselves.
|
|
584
|
+
|
|
585
|
+
### 30. Rhetorical Question Openers
|
|
586
|
+
|
|
587
|
+
- Source: [en-structure.md](../patterns/en-structure.md)
|
|
588
|
+
- Type: rewrite-capable pattern
|
|
589
|
+
- Watch words: Structural pattern; inspect the fire condition rather than a fixed vocabulary list.
|
|
590
|
+
- Fire condition: A paragraph opens with an interrogative sentence ("Why...?", "How...?", "What...?", "But what if...?") AND the answer follows in the same or next sentence within the same paragraph. Or: the document contains 2+ rhetorical questions used as paragraph openers across paragraphs.
|
|
591
|
+
- Example files: [failure](../examples/en-30-failure-01.md) · [success](../examples/en-30-success-01.md)
|
|
592
|
+
|
|
593
|
+
Example before:
|
|
594
|
+
|
|
595
|
+
> So why did Korean coffee culture grow so fast? The answer is surprisingly simple. Cafés moved beyond being places to buy drinks and became social hubs.
|
|
596
|
+
>
|
|
597
|
+
> But what about the future? Experts believe the trend will continue.
|
|
598
|
+
|
|
599
|
+
Example after:
|
|
600
|
+
|
|
601
|
+
> Korean coffee culture grew fast for a surprisingly simple reason: cafés moved beyond being places to buy drinks and became social hubs.
|
|
602
|
+
>
|
|
603
|
+
> The trend is likely to continue. Experts agree.
|
|
604
|
+
|
|
605
|
+
## Viral Hook Patterns (score-only)
|
|
606
|
+
|
|
607
|
+
### Viral 1. Shock Numbers as Hook
|
|
608
|
+
|
|
609
|
+
- Source: [en-viral-hook.md](../patterns/en-viral-hook.md)
|
|
610
|
+
- Type: score/audit only; rewrite modes skip this pack
|
|
611
|
+
- Watch words: in just N days, only N hours, jumped from 0 to N, hit N million in N weeks, N% growth in N months, broke the N-million mark, N-figure result
|
|
612
|
+
- Fire condition: A bold claim relies on a striking number (time-to-X, scale, percentage) and the same piece offers no source or verification path.
|
|
613
|
+
|
|
614
|
+
Detection example:
|
|
615
|
+
|
|
616
|
+
> 250K stars in just 60 days.
|
|
617
|
+
> $100M revenue with zero ad spend.
|
|
618
|
+
|
|
619
|
+
### Viral 2. Clickbait Mystery Close
|
|
620
|
+
|
|
621
|
+
- Source: [en-viral-hook.md](../patterns/en-viral-hook.md)
|
|
622
|
+
- Type: score/audit only; rewrite modes skip this pack
|
|
623
|
+
- Watch words: what makes them tick, why is everyone, you'll never guess, can you believe, the reason might surprise you, here's why
|
|
624
|
+
- Fire condition: The **last sentence** of the piece is a rhetorical question that the body has not answered, or a teaser that explicitly redirects the reader to engagement (subscribe, follow, save).
|
|
625
|
+
|
|
626
|
+
Detection example:
|
|
627
|
+
|
|
628
|
+
> So why are devs flocking to it without any marketing?
|
|
629
|
+
> The reason might surprise you.
|
|
630
|
+
|
|
631
|
+
### Viral 3. Source-Skipping Authority
|
|
632
|
+
|
|
633
|
+
- Source: [en-viral-hook.md](../patterns/en-viral-hook.md)
|
|
634
|
+
- Type: score/audit only; rewrite modes skip this pack
|
|
635
|
+
- Watch words: for the first time in history, a global first, never before seen, the only X that, reportedly (with no named source), industry insiders say (with no source)
|
|
636
|
+
- Fire condition: Absolute scope or rank claims ("first ever", "no one has", "industry-wide change") appear without an accompanying source, link, screenshot, or named expert.
|
|
637
|
+
|
|
638
|
+
Detection example:
|
|
639
|
+
|
|
640
|
+
> The fastest growth GitHub has ever seen.
|
|
641
|
+
> Developers worldwide are losing their minds over this.
|
|
642
|
+
|
|
643
|
+
### Viral 4. Breath-Optimized Short-Sentence Stacking
|
|
644
|
+
|
|
645
|
+
- Source: [en-viral-hook.md](../patterns/en-viral-hook.md)
|
|
646
|
+
- Type: score/audit only; rewrite modes skip this pack
|
|
647
|
+
- Watch words: (structural pattern — judged by form, not vocabulary)
|
|
648
|
+
- Fire condition: The whole piece is composed almost entirely of one-sentence paragraphs, four or more in a row, with average sentence length under ~12 words. A handful of short sentences mixed with longer ones does not fire this.
|
|
649
|
+
|
|
650
|
+
Detection example:
|
|
651
|
+
|
|
652
|
+
> No one has ever shipped this fast.
|
|
653
|
+
>
|
|
654
|
+
> 250K stars in 60 days.
|
|
655
|
+
>
|
|
656
|
+
> A tool called OpenClaw did it.
|
|
657
|
+
>
|
|
658
|
+
> Why are devs flocking to it without any marketing?
|
|
659
|
+
>
|
|
660
|
+
> (Four one-line paragraphs, average ~10 words, line-break separated → fires.)
|
|
661
|
+
|
|
662
|
+
### Viral 5. Hyperbolic Engagement Lexicon
|
|
663
|
+
|
|
664
|
+
- Source: [en-viral-hook.md](../patterns/en-viral-hook.md)
|
|
665
|
+
- Type: score/audit only; rewrite modes skip this pack
|
|
666
|
+
- Watch words: absolutely insane, totally wild, mind-blowing, game-changing, you can't sleep on this, don't miss out, hands down the best, literally everyone is, this changes everything, a no-brainer
|
|
667
|
+
- Fire condition:
|
|
668
|
+
|
|
669
|
+
> - One occurrence in the piece: Low
|
|
670
|
+
> - Two occurrences: Medium
|
|
671
|
+
> - Three or more: High
|
|
672
|
+
|
|
673
|
+
Detection example:
|
|
674
|
+
|
|
675
|
+
> This is absolutely insane and developers are losing their minds.
|
|
676
|
+
> Hands down the best dev tool of the year — don't sleep on it.
|
|
677
|
+
|
|
678
|
+
### Viral 6. Fake Statistic Citation
|
|
679
|
+
|
|
680
|
+
- Source: [en-viral-hook.md](../patterns/en-viral-hook.md)
|
|
681
|
+
- Type: score/audit only; rewrite modes skip this pack
|
|
682
|
+
- Watch words: studies show N%, research says N%, data shows N%, according to research (with no named source), N% of people, science says, survey found (with no survey named)
|
|
683
|
+
- Fire condition: A numeric or statistical claim is attributed to vague research, data, surveys, or science, and the same piece gives no named source, link, sample, date, or method.
|
|
684
|
+
- Severity rubric: Low = one vague statistic supports a minor point; Medium = the statistic opens the piece or anchors the main CTA; High = precise percentages support high-stakes advice or multiple unsourced statistics appear together.
|
|
685
|
+
|
|
686
|
+
Before / after example:
|
|
687
|
+
|
|
688
|
+
> Before: Studies show 73% of founders lose money because they ignore this one habit.
|
|
689
|
+
>
|
|
690
|
+
> After: I do not have a source for that percentage, but weekly cash reviews can catch losses earlier.
|
|
691
|
+
|
|
692
|
+
### Viral 7. Manufactured Authority Stacking
|
|
693
|
+
|
|
694
|
+
- Source: [en-viral-hook.md](../patterns/en-viral-hook.md)
|
|
695
|
+
- Type: score/audit only; rewrite modes skip this pack
|
|
696
|
+
- Watch words: Stanford-trained, Y Combinator-backed, ex-Google, Harvard-trained, Forbes-featured, award-winning, serial founder, trusted by top CEOs, industry-leading expert
|
|
697
|
+
- Fire condition: Two or more prestige credentials, titles, investors, schools, employers, awards, or media labels are stacked to sell a claim, and the piece does not show why those credentials prove the point.
|
|
698
|
+
- Severity rubric: Low = two relevant labels on a narrow claim; Medium = 3+ labels introduce advice/product/trend without evidence; High = the stack replaces evidence for high-stakes advice or purchase/signup CTA.
|
|
699
|
+
|
|
700
|
+
Before / after example:
|
|
701
|
+
|
|
702
|
+
> Before: A Stanford-trained, Y Combinator-backed serial founder says this one workflow will 10x your growth.
|
|
703
|
+
>
|
|
704
|
+
> After: A founder shared the workflow they use for weekly growth reviews; test it on your own numbers before adopting it.
|
|
705
|
+
|
|
706
|
+
### Viral 8. Future-Self / Parasocial Promise
|
|
707
|
+
|
|
708
|
+
- Source: [en-viral-hook.md](../patterns/en-viral-hook.md)
|
|
709
|
+
- Type: score/audit only; rewrite modes skip this pack
|
|
710
|
+
- Watch words: your future self will thank you, thank me later, listen friend, friend, save this for later, one year from now you'll be glad, future you, trust me on this
|
|
711
|
+
- Fire condition: An opener or close addresses the reader as a friend, future self, or intimate confidant and promises later gratitude, usually around a save/share/follow call, without concrete support in the same piece.
|
|
712
|
+
- Severity rubric: Low = one soft save-this phrase; Medium = the future-self promise frames the title/opener/CTA; High = paired with urgency, scarcity, or high-stakes life/career advice.
|
|
713
|
+
|
|
714
|
+
Before / after example:
|
|
715
|
+
|
|
716
|
+
> Before: Listen, friend — your future self will thank you for saving this.
|
|
717
|
+
>
|
|
718
|
+
> After: Save this if you need a checklist for next month's planning.
|