@danhachuel/thunderbolt 0.2.49 → 0.2.51
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/MANUAL-INSTALACAO.md +36 -18
- package/README.md +24 -6
- package/app/main.py +572 -110
- package/hermes_ui/automation_worker.py +49 -10
- package/hermes_ui/creative_generation.py +278 -0
- package/hermes_ui/domain.py +64 -21
- package/hermes_ui/storage.py +3 -2
- package/integrations/platforms.py +77 -0
- package/package.json +2 -1
- package/seed/references/ai-tells.md +336 -0
- package/seed/references/humanize-integration.md +147 -0
- package/seed/references/thumbnail-checklist.md +178 -0
- package/seed/references/title-formulas.md +288 -0
- package/seed/references/trend-intelligence.md +99 -0
- package/seed/references/viral-thumbnails.md +470 -0
- package/seed/references/viral-titles.md +440 -0
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
# Title Formulas Library
|
|
2
|
+
|
|
3
|
+
> 50+ proven title formulas organized by category with examples and platform notes.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Curiosity-Gap Formulas
|
|
8
|
+
|
|
9
|
+
### The Hidden Knowledge
|
|
10
|
+
```
|
|
11
|
+
What [group] won't tell you about [topic]
|
|
12
|
+
```
|
|
13
|
+
Examples:
|
|
14
|
+
- "What senior engineers won't tell you about system design"
|
|
15
|
+
- "What VCs won't tell you about fundraising"
|
|
16
|
+
|
|
17
|
+
### The Secret
|
|
18
|
+
```
|
|
19
|
+
The [adjective] secret to [outcome]
|
|
20
|
+
```
|
|
21
|
+
Examples:
|
|
22
|
+
- "The counterintuitive secret to writing faster"
|
|
23
|
+
- "The brutal secret to getting promoted"
|
|
24
|
+
|
|
25
|
+
### The Discovery
|
|
26
|
+
```
|
|
27
|
+
I discovered [thing] that [unexpected result]
|
|
28
|
+
```
|
|
29
|
+
Examples:
|
|
30
|
+
- "I discovered a prompt pattern that 10x'd my output quality"
|
|
31
|
+
- "We discovered why 90% of A/B tests fail"
|
|
32
|
+
|
|
33
|
+
### The Truth
|
|
34
|
+
```
|
|
35
|
+
The [surprising] truth about [topic]
|
|
36
|
+
```
|
|
37
|
+
Examples:
|
|
38
|
+
- "The uncomfortable truth about passive income"
|
|
39
|
+
- "The real truth about 10x engineers"
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Contrarian Formulas
|
|
44
|
+
|
|
45
|
+
### The Death Declaration
|
|
46
|
+
```
|
|
47
|
+
[Common practice] is dead. [New paradigm] is next.
|
|
48
|
+
```
|
|
49
|
+
Examples:
|
|
50
|
+
- "Single-pass prompting is dead. Deliberative refinement is next."
|
|
51
|
+
- "Traditional SEO is dead. Zero-click is the new game."
|
|
52
|
+
|
|
53
|
+
### The Stop/Start
|
|
54
|
+
```
|
|
55
|
+
Stop [common action]. Start [better action].
|
|
56
|
+
```
|
|
57
|
+
Examples:
|
|
58
|
+
- "Stop asking AI for answers. Start making it defend them."
|
|
59
|
+
- "Stop chasing virality. Start building compounding content."
|
|
60
|
+
|
|
61
|
+
### The Wrong Approach
|
|
62
|
+
```
|
|
63
|
+
[Popular opinion] is wrong — here's why
|
|
64
|
+
```
|
|
65
|
+
Examples:
|
|
66
|
+
- "\"Ship fast\" is wrong — here's why deliberate speed wins"
|
|
67
|
+
- "The 10x engineer myth is wrong — here's what actually matters"
|
|
68
|
+
|
|
69
|
+
### The Bad Advice
|
|
70
|
+
```
|
|
71
|
+
[Common advice] is bad advice — do this instead
|
|
72
|
+
```
|
|
73
|
+
Examples:
|
|
74
|
+
- "\"Fake it til you make it\" is bad advice — do this instead"
|
|
75
|
+
- "\"Move fast and break things\" is bad advice — here's reality"
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## Listicle Formulas
|
|
80
|
+
|
|
81
|
+
### The Achievement List
|
|
82
|
+
```
|
|
83
|
+
[Number] ways to [achieve X] without [sacrifice]
|
|
84
|
+
```
|
|
85
|
+
Examples:
|
|
86
|
+
- "7 ways to grow your audience without burning out"
|
|
87
|
+
- "5 ways to ship faster without sacrificing quality"
|
|
88
|
+
|
|
89
|
+
### The Mistake List
|
|
90
|
+
```
|
|
91
|
+
[Number] [topic] mistakes destroying your [metric]
|
|
92
|
+
```
|
|
93
|
+
Examples:
|
|
94
|
+
- "9 headline mistakes destroying your CTR"
|
|
95
|
+
- "6 thumbnail mistakes killing your views"
|
|
96
|
+
|
|
97
|
+
### The Wish List
|
|
98
|
+
```
|
|
99
|
+
[Number] things I wish I knew before [starting X]
|
|
100
|
+
```
|
|
101
|
+
Examples:
|
|
102
|
+
- "12 things I wish I knew before my first startup"
|
|
103
|
+
- "8 things I wish I knew before learning to code"
|
|
104
|
+
|
|
105
|
+
### The Lesson List
|
|
106
|
+
```
|
|
107
|
+
[Number] lessons from [notable experience]
|
|
108
|
+
```
|
|
109
|
+
Examples:
|
|
110
|
+
- "15 lessons from 10 years of remote work"
|
|
111
|
+
- "7 lessons from scaling to 1M users"
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## How-To Formulas
|
|
116
|
+
|
|
117
|
+
### The Complete Guide
|
|
118
|
+
```
|
|
119
|
+
How to [achieve X] in [timeframe] (step-by-step)
|
|
120
|
+
```
|
|
121
|
+
Examples:
|
|
122
|
+
- "How to write viral headlines in 10 minutes (step-by-step)"
|
|
123
|
+
- "How to build an MVP in one weekend (step-by-step)"
|
|
124
|
+
|
|
125
|
+
### The Objection Handler
|
|
126
|
+
```
|
|
127
|
+
How to [achieve X] even if [common objection]
|
|
128
|
+
```
|
|
129
|
+
Examples:
|
|
130
|
+
- "How to build an audience even if you're introverted"
|
|
131
|
+
- "How to learn to code even if you think you're bad at math"
|
|
132
|
+
|
|
133
|
+
### The Case Study
|
|
134
|
+
```
|
|
135
|
+
How I [achieved X] (and how you can too)
|
|
136
|
+
```
|
|
137
|
+
Examples:
|
|
138
|
+
- "How I got 100K followers in 6 months (and how you can too)"
|
|
139
|
+
- "How I doubled my income with one skill (and how you can too)"
|
|
140
|
+
|
|
141
|
+
### The Authority Breakdown
|
|
142
|
+
```
|
|
143
|
+
How [authority] [achieved X] — broken down
|
|
144
|
+
```
|
|
145
|
+
Examples:
|
|
146
|
+
- "How MrBeast designs thumbnails — broken down"
|
|
147
|
+
- "How Stripe writes documentation — broken down"
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## Question Formulas
|
|
152
|
+
|
|
153
|
+
### The Myth Buster
|
|
154
|
+
```
|
|
155
|
+
Is [common belief] actually [myth/true]?
|
|
156
|
+
```
|
|
157
|
+
Examples:
|
|
158
|
+
- "Is cold email actually dead?"
|
|
159
|
+
- "Is SEO actually harder in 2025?"
|
|
160
|
+
|
|
161
|
+
### The Challenge
|
|
162
|
+
```
|
|
163
|
+
Can [ordinary thing] really [impressive claim]?
|
|
164
|
+
```
|
|
165
|
+
Examples:
|
|
166
|
+
- "Can one prompt really replace an entire workflow?"
|
|
167
|
+
- "Can you really learn to code in 3 months?"
|
|
168
|
+
|
|
169
|
+
### The Investigation
|
|
170
|
+
```
|
|
171
|
+
What happens when you [action] for [time]?
|
|
172
|
+
```
|
|
173
|
+
Examples:
|
|
174
|
+
- "What happens when you post daily for 100 days?"
|
|
175
|
+
- "What happens when you use AI for everything for a month?"
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
## Comparison Formulas
|
|
180
|
+
|
|
181
|
+
### The Showdown
|
|
182
|
+
```
|
|
183
|
+
[A] vs [B]: Which [outcome] better?
|
|
184
|
+
```
|
|
185
|
+
Examples:
|
|
186
|
+
- "Notion vs Obsidian: Which scales better?"
|
|
187
|
+
- "Claude vs GPT-4: Which codes better?"
|
|
188
|
+
|
|
189
|
+
### The Test
|
|
190
|
+
```
|
|
191
|
+
I tried [A] and [B] — here's the winner
|
|
192
|
+
```
|
|
193
|
+
Examples:
|
|
194
|
+
- "I tried 10 AI writing tools — here's the winner"
|
|
195
|
+
- "I tested 5 thumbnail styles — here's what won"
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## Prediction Formulas
|
|
200
|
+
|
|
201
|
+
### The Year Call
|
|
202
|
+
```
|
|
203
|
+
[Concept] is the [year] [category] that [outcome]
|
|
204
|
+
```
|
|
205
|
+
Examples:
|
|
206
|
+
- "Deliberative refinement is the 2026 technique that matters most"
|
|
207
|
+
- "Context windows are the 2025 bottleneck killing agents"
|
|
208
|
+
|
|
209
|
+
### The Trend Alert
|
|
210
|
+
```
|
|
211
|
+
[Number] [topic] trends for [year] you need to know
|
|
212
|
+
```
|
|
213
|
+
Examples:
|
|
214
|
+
- "7 AI trends for 2025 you need to know"
|
|
215
|
+
- "5 content trends for 2026 you can't ignore"
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## Problem/Solution Formulas
|
|
220
|
+
|
|
221
|
+
### The Fix
|
|
222
|
+
```
|
|
223
|
+
[Common problem]? Here's the fix
|
|
224
|
+
```
|
|
225
|
+
Examples:
|
|
226
|
+
- "Prompt outputs feel generic? Here's the fix"
|
|
227
|
+
- "Blog posts not ranking? Here's the fix"
|
|
228
|
+
|
|
229
|
+
### The Real Reason
|
|
230
|
+
```
|
|
231
|
+
The real reason [problem] keeps happening
|
|
232
|
+
```
|
|
233
|
+
Examples:
|
|
234
|
+
- "The real reason your content doesn't go viral"
|
|
235
|
+
- "The real reason developers hate meetings"
|
|
236
|
+
|
|
237
|
+
---
|
|
238
|
+
|
|
239
|
+
## Negative/Loss Aversion Formulas
|
|
240
|
+
|
|
241
|
+
### The Warning
|
|
242
|
+
```
|
|
243
|
+
Warning: [Thing] is [damaging your thing]
|
|
244
|
+
```
|
|
245
|
+
Examples:
|
|
246
|
+
- "Warning: This common habit is killing your productivity"
|
|
247
|
+
- "Warning: Your thumbnail strategy is costing you views"
|
|
248
|
+
|
|
249
|
+
### The Hidden Danger
|
|
250
|
+
```
|
|
251
|
+
The hidden danger of [common practice]
|
|
252
|
+
```
|
|
253
|
+
Examples:
|
|
254
|
+
- "The hidden danger of over-optimization"
|
|
255
|
+
- "The hidden danger of following best practices blindly"
|
|
256
|
+
|
|
257
|
+
---
|
|
258
|
+
|
|
259
|
+
## Platform-Specific Adaptations
|
|
260
|
+
|
|
261
|
+
### YouTube (50-60 chars)
|
|
262
|
+
- Front-load keywords
|
|
263
|
+
- Add numbers when possible
|
|
264
|
+
- Include emotional trigger words
|
|
265
|
+
|
|
266
|
+
### Reddit (60-80 chars)
|
|
267
|
+
- Add subreddit context
|
|
268
|
+
- Use authentic voice
|
|
269
|
+
- Include specificity
|
|
270
|
+
|
|
271
|
+
### Twitter/X (<280 chars per hook)
|
|
272
|
+
- Standalone viral potential
|
|
273
|
+
- No numbering (1/, 2/, etc.)
|
|
274
|
+
- Quotable fragments
|
|
275
|
+
|
|
276
|
+
### LinkedIn (story-first)
|
|
277
|
+
- Personal experience angle
|
|
278
|
+
- "Unpopular opinion:" works well
|
|
279
|
+
- Contrarian takes perform
|
|
280
|
+
|
|
281
|
+
### Email (30-50 chars)
|
|
282
|
+
- Personalization increases opens
|
|
283
|
+
- Urgency/scarcity when appropriate
|
|
284
|
+
- Questions perform well
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
**Test at least 20 variations before selecting final title.**
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# Trend Intelligence Module
|
|
2
|
+
|
|
3
|
+
> **Progressive Disclosure:** This module is only needed when the user does NOT already have a topic or trend to write about. If the content brief already specifies a subject, skip this section entirely.
|
|
4
|
+
|
|
5
|
+
## When to Use This Module
|
|
6
|
+
|
|
7
|
+
- User says "find me something viral" or "what's trending?"
|
|
8
|
+
- User wants content but has no specific topic
|
|
9
|
+
- User wants to ride a wave early
|
|
10
|
+
|
|
11
|
+
## When to SKIP This Module
|
|
12
|
+
|
|
13
|
+
- User already has a specific topic, product, or idea
|
|
14
|
+
- User is optimizing existing content
|
|
15
|
+
- User says "make THIS viral" (they have the content already)
|
|
16
|
+
|
|
17
|
+
## Trend Detection Framework
|
|
18
|
+
|
|
19
|
+
### Layer 1: Real-Time Signals (Free)
|
|
20
|
+
|
|
21
|
+
**Reddit Rising**
|
|
22
|
+
- Browse r/all, r/popular, r/trending
|
|
23
|
+
- Sort by "rising" not "hot" (hot = already peaked)
|
|
24
|
+
- Look for posts with high comment-to-upvote ratio (controversy = engagement)
|
|
25
|
+
- Subreddit-specific: r/MachineLearning, r/LocalLLaMA, r/ChatGPT, r/technology, r/programming
|
|
26
|
+
|
|
27
|
+
**Hacker News**
|
|
28
|
+
- Front page + "new" sort
|
|
29
|
+
- Comments > 50 usually signal a trending topic
|
|
30
|
+
- Show HN posts = product launch opportunities
|
|
31
|
+
|
|
32
|
+
**X/Twitter**
|
|
33
|
+
- Trending topics (location-based)
|
|
34
|
+
- Follow curated Lists in your niche
|
|
35
|
+
- Search: "just shipped", "I built", "after X years" (high-engagement patterns)
|
|
36
|
+
|
|
37
|
+
**Google Trends**
|
|
38
|
+
- trends.google.com → daily search trends
|
|
39
|
+
- Rising queries = emerging topics
|
|
40
|
+
- Compare 5 topics, pick the steepest curve
|
|
41
|
+
|
|
42
|
+
### Layer 2: Aggregator Tools (Free)
|
|
43
|
+
|
|
44
|
+
| Tool | What It Finds | URL |
|
|
45
|
+
|------|--------------|-----|
|
|
46
|
+
| Exploding Topics | Rapidly growing search terms | explodingtopics.com |
|
|
47
|
+
| Glimpse | Google Trends + social signals | glimpse.co |
|
|
48
|
+
| Trend Hunter | Consumer trend reports | trendhunter.com |
|
|
49
|
+
| Product Hunt | New product launches | producthunt.com |
|
|
50
|
+
| BetaList | Pre-launch startups | betalist.com |
|
|
51
|
+
| Hacker News Show | New projects | news.ycombinator.com/show |
|
|
52
|
+
|
|
53
|
+
### Layer 3: Trend-to-Content Conversion
|
|
54
|
+
|
|
55
|
+
Once you identify a trend, convert it using this framework:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
TREND: [What's happening]
|
|
59
|
+
↓
|
|
60
|
+
ANGLE: [What's the contrarian/unexpected take?]
|
|
61
|
+
↓
|
|
62
|
+
HOOK: [Prediction or Stakes pattern from title-formulas.md]
|
|
63
|
+
↓
|
|
64
|
+
PLATFORMS: [Which platforms care about this?]
|
|
65
|
+
↓
|
|
66
|
+
CONTENT: [Generate using the main skill workflow]
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Trend Scoring Matrix
|
|
70
|
+
|
|
71
|
+
Score each trend 1-5 on:
|
|
72
|
+
|
|
73
|
+
| Factor | 1 (Low) | 5 (High) |
|
|
74
|
+
|--------|---------|----------|
|
|
75
|
+
| Growth velocity | Flat | Exponential |
|
|
76
|
+
| Audience overlap | None | Perfect match |
|
|
77
|
+
| Controversy potential | Safe | Divisiveness |
|
|
78
|
+
| Timeliness | Old news | Breaking |
|
|
79
|
+
| Your expertise | None | Deep knowledge |
|
|
80
|
+
|
|
81
|
+
**Only pursue trends scoring 15+ out of 25.**
|
|
82
|
+
|
|
83
|
+
### Trend Decay Awareness
|
|
84
|
+
|
|
85
|
+
- **24-hour trends:** Meme formats, breaking news → act fast or miss
|
|
86
|
+
- **Weekly trends:** Product launches, blog posts → 2-3 day window
|
|
87
|
+
- **Monthly trends:** Industry shifts, seasonal topics → plan ahead
|
|
88
|
+
- **Evergreen:** Always relevant → optimize for search, not speed
|
|
89
|
+
|
|
90
|
+
## Platform-Specific Trend Sources
|
|
91
|
+
|
|
92
|
+
| Platform | Where to Look | Signal |
|
|
93
|
+
|----------|--------------|--------|
|
|
94
|
+
| Reddit | r/trending, r/all (rising) | High comment velocity |
|
|
95
|
+
| X/Twitter | Trending, Lists | Reply ratio > 1:1 |
|
|
96
|
+
| YouTube | Trending tab | View velocity (views/hour) |
|
|
97
|
+
| TikTok | For You page | Share-to-view ratio |
|
|
98
|
+
| LinkedIn | News feed | Comment velocity |
|
|
99
|
+
| Hacker News | New + Show HN | Points in first 2 hours |
|