mover-os 4.0.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.

Potentially problematic release.


This version of mover-os might be problematic. Click here for more details.

Files changed (149) hide show
  1. package/README.md +201 -0
  2. package/install.js +1424 -0
  3. package/package.json +35 -0
  4. package/src/hooks/context-staleness.sh +46 -0
  5. package/src/hooks/dirty-tree-guard.sh +33 -0
  6. package/src/hooks/engine-protection.sh +43 -0
  7. package/src/hooks/git-safety.sh +47 -0
  8. package/src/hooks/pre-compact-backup.sh +177 -0
  9. package/src/hooks/session-log-reminder.sh +64 -0
  10. package/src/skills/THIRD-PARTY-LICENSES.md +53 -0
  11. package/src/skills/agent-code-reviewer/SKILL.md +41 -0
  12. package/src/skills/agent-content-researcher/SKILL.md +59 -0
  13. package/src/skills/agent-research-analyst/SKILL.md +53 -0
  14. package/src/skills/agent-security-auditor/SKILL.md +42 -0
  15. package/src/skills/agent-strategy-analyst/SKILL.md +54 -0
  16. package/src/skills/defuddle/SKILL.md +41 -0
  17. package/src/skills/find-bugs/SKILL.md +75 -0
  18. package/src/skills/find-skills/SKILL.md +133 -0
  19. package/src/skills/frontend-design/LICENSE.txt +177 -0
  20. package/src/skills/frontend-design/SKILL.md +42 -0
  21. package/src/skills/human-writer/SKILL.md +185 -0
  22. package/src/skills/json-canvas/SKILL.md +656 -0
  23. package/src/skills/marketingskills/.claude-plugin/marketplace.json +45 -0
  24. package/src/skills/marketingskills/README.md +204 -0
  25. package/src/skills/marketingskills/skills/ab-test-setup/SKILL.md +508 -0
  26. package/src/skills/marketingskills/skills/analytics-tracking/SKILL.md +539 -0
  27. package/src/skills/marketingskills/skills/competitor-alternatives/SKILL.md +750 -0
  28. package/src/skills/marketingskills/skills/copy-editing/SKILL.md +439 -0
  29. package/src/skills/marketingskills/skills/copywriting/SKILL.md +455 -0
  30. package/src/skills/marketingskills/skills/email-sequence/SKILL.md +925 -0
  31. package/src/skills/marketingskills/skills/form-cro/SKILL.md +425 -0
  32. package/src/skills/marketingskills/skills/free-tool-strategy/SKILL.md +576 -0
  33. package/src/skills/marketingskills/skills/launch-strategy/SKILL.md +344 -0
  34. package/src/skills/marketingskills/skills/marketing-ideas/SKILL.md +565 -0
  35. package/src/skills/marketingskills/skills/marketing-psychology/SKILL.md +451 -0
  36. package/src/skills/marketingskills/skills/onboarding-cro/SKILL.md +433 -0
  37. package/src/skills/marketingskills/skills/page-cro/SKILL.md +334 -0
  38. package/src/skills/marketingskills/skills/paid-ads/SKILL.md +551 -0
  39. package/src/skills/marketingskills/skills/paywall-upgrade-cro/SKILL.md +570 -0
  40. package/src/skills/marketingskills/skills/popup-cro/SKILL.md +449 -0
  41. package/src/skills/marketingskills/skills/pricing-strategy/SKILL.md +710 -0
  42. package/src/skills/marketingskills/skills/programmatic-seo/SKILL.md +626 -0
  43. package/src/skills/marketingskills/skills/referral-program/SKILL.md +602 -0
  44. package/src/skills/marketingskills/skills/schema-markup/SKILL.md +596 -0
  45. package/src/skills/marketingskills/skills/seo-audit/SKILL.md +384 -0
  46. package/src/skills/marketingskills/skills/signup-flow-cro/SKILL.md +355 -0
  47. package/src/skills/marketingskills/skills/social-content/SKILL.md +807 -0
  48. package/src/skills/obsidian-bases/SKILL.md +651 -0
  49. package/src/skills/obsidian-cli/SKILL.md +103 -0
  50. package/src/skills/obsidian-markdown/SKILL.md +620 -0
  51. package/src/skills/react-best-practices/SKILL.md +136 -0
  52. package/src/skills/refactoring/SKILL.md +119 -0
  53. package/src/skills/seo-content-writer/SKILL.md +661 -0
  54. package/src/skills/seo-content-writer/references/content-structure-templates.md +875 -0
  55. package/src/skills/seo-content-writer/references/title-formulas.md +339 -0
  56. package/src/skills/skill-creator/LICENSE.txt +202 -0
  57. package/src/skills/skill-creator/SKILL.md +357 -0
  58. package/src/skills/skill-creator/references/output-patterns.md +82 -0
  59. package/src/skills/skill-creator/references/workflows.md +28 -0
  60. package/src/skills/skill-creator/scripts/init_skill.py +303 -0
  61. package/src/skills/skill-creator/scripts/package_skill.py +110 -0
  62. package/src/skills/skill-creator/scripts/quick_validate.py +103 -0
  63. package/src/skills/systematic-debugging/CREATION-LOG.md +119 -0
  64. package/src/skills/systematic-debugging/SKILL.md +296 -0
  65. package/src/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  66. package/src/skills/systematic-debugging/condition-based-waiting.md +115 -0
  67. package/src/skills/systematic-debugging/defense-in-depth.md +122 -0
  68. package/src/skills/systematic-debugging/find-polluter.sh +63 -0
  69. package/src/skills/systematic-debugging/root-cause-tracing.md +169 -0
  70. package/src/skills/systematic-debugging/test-academic.md +14 -0
  71. package/src/skills/systematic-debugging/test-pressure-1.md +58 -0
  72. package/src/skills/systematic-debugging/test-pressure-2.md +68 -0
  73. package/src/skills/systematic-debugging/test-pressure-3.md +69 -0
  74. package/src/skills/ui-ux-pro-max/SKILL.md +386 -0
  75. package/src/skills/webhook-handler-patterns/SKILL.md +81 -0
  76. package/src/skills/webhook-handler-patterns/references/error-handling.md +299 -0
  77. package/src/skills/webhook-handler-patterns/references/frameworks/express.md +295 -0
  78. package/src/skills/webhook-handler-patterns/references/frameworks/fastapi.md +415 -0
  79. package/src/skills/webhook-handler-patterns/references/frameworks/nextjs.md +331 -0
  80. package/src/skills/webhook-handler-patterns/references/handler-sequence.md +51 -0
  81. package/src/skills/webhook-handler-patterns/references/idempotency.md +227 -0
  82. package/src/skills/webhook-handler-patterns/references/retry-logic.md +261 -0
  83. package/src/structure/00_Inbox/.gitkeep +0 -0
  84. package/src/structure/00_Inbox/Quick_Capture.md +5 -0
  85. package/src/structure/01_Projects/.gitkeep +0 -0
  86. package/src/structure/01_Projects/_Template Project/plan.md +55 -0
  87. package/src/structure/01_Projects/_Template Project/project_brief.md +45 -0
  88. package/src/structure/01_Projects/_Template Project/project_state.md +19 -0
  89. package/src/structure/02_Areas/Engine/Active_Context.md +126 -0
  90. package/src/structure/02_Areas/Engine/Auto_Learnings.md +36 -0
  91. package/src/structure/02_Areas/Engine/Dailies/.gitkeep +0 -0
  92. package/src/structure/02_Areas/Engine/Daily_Template.md +130 -0
  93. package/src/structure/02_Areas/Engine/Goals.md +65 -0
  94. package/src/structure/02_Areas/Engine/Identity_Prime_template.md +86 -0
  95. package/src/structure/02_Areas/Engine/Metrics_Log.md +45 -0
  96. package/src/structure/02_Areas/Engine/Monthly Reviews/.gitkeep +0 -0
  97. package/src/structure/02_Areas/Engine/Mover_Dossier.md +120 -0
  98. package/src/structure/02_Areas/Engine/Quarterly Reviews/.gitkeep +0 -0
  99. package/src/structure/02_Areas/Engine/Someday_Maybe.md +51 -0
  100. package/src/structure/02_Areas/Engine/Strategy_template.md +65 -0
  101. package/src/structure/02_Areas/Engine/Weekly Reviews/.gitkeep +0 -0
  102. package/src/structure/03_Library/Cheatsheets/.gitkeep +0 -0
  103. package/src/structure/03_Library/Entities/Decisions/_TEMPLATE.md +38 -0
  104. package/src/structure/03_Library/Entities/Entities MOC.md +49 -0
  105. package/src/structure/03_Library/Entities/Organizations/_TEMPLATE.md +28 -0
  106. package/src/structure/03_Library/Entities/People/_TEMPLATE.md +31 -0
  107. package/src/structure/03_Library/Entities/Places/_TEMPLATE.md +26 -0
  108. package/src/structure/03_Library/Inputs/.gitkeep +0 -0
  109. package/src/structure/03_Library/Inputs/Archive/.gitkeep +0 -0
  110. package/src/structure/03_Library/Inputs/Articles/.gitkeep +0 -0
  111. package/src/structure/03_Library/Inputs/Articles/_TEMPLATE.md +29 -0
  112. package/src/structure/03_Library/Inputs/Books/.gitkeep +0 -0
  113. package/src/structure/03_Library/Inputs/Books/_TEMPLATE.md +41 -0
  114. package/src/structure/03_Library/Inputs/Inputs MOC.md +40 -0
  115. package/src/structure/03_Library/Inputs/Videos/.gitkeep +0 -0
  116. package/src/structure/03_Library/Inputs/Videos/_TEMPLATE.md +29 -0
  117. package/src/structure/03_Library/MOCs/.gitkeep +0 -0
  118. package/src/structure/03_Library/Misc/.gitkeep +0 -0
  119. package/src/structure/03_Library/Principles/.gitkeep +0 -0
  120. package/src/structure/03_Library/Principles/Naval_Leverage.md +65 -0
  121. package/src/structure/03_Library/SOPs/Mover_OS_Architecture.md +74 -0
  122. package/src/structure/03_Library/SOPs/Tech_Doctrine.md +123 -0
  123. package/src/structure/03_Library/SOPs/Tech_Stack.md +55 -0
  124. package/src/structure/03_Library/SOPs/Zone_Operating.md +58 -0
  125. package/src/structure/04_Archives/.gitkeep +0 -0
  126. package/src/system/AI_INSTALL_MANIFEST.md +219 -0
  127. package/src/system/Mover_Global_Rules.md +646 -0
  128. package/src/system/V4_CONTEXT.md +223 -0
  129. package/src/workflows/analyse-day.md +376 -0
  130. package/src/workflows/context.md +24 -0
  131. package/src/workflows/debrief.md +199 -0
  132. package/src/workflows/debug-resistance.md +181 -0
  133. package/src/workflows/harvest.md +240 -0
  134. package/src/workflows/history.md +247 -0
  135. package/src/workflows/ignite.md +696 -0
  136. package/src/workflows/init-plan.md +16 -0
  137. package/src/workflows/log.md +314 -0
  138. package/src/workflows/morning.md +209 -0
  139. package/src/workflows/overview.md +203 -0
  140. package/src/workflows/pivot-strategy.md +218 -0
  141. package/src/workflows/plan-tomorrow.md +286 -0
  142. package/src/workflows/primer.md +209 -0
  143. package/src/workflows/project-notes.md +17 -0
  144. package/src/workflows/reboot.md +201 -0
  145. package/src/workflows/refactor-plan.md +135 -0
  146. package/src/workflows/review-week.md +537 -0
  147. package/src/workflows/setup.md +387 -0
  148. package/src/workflows/update.md +411 -0
  149. package/src/workflows/walkthrough.md +259 -0
@@ -0,0 +1,339 @@
1
+ # Title and Headline Formulas
2
+
3
+ Proven title structures that drive clicks and rankings. All formulas target 50-60 characters for optimal SERP display.
4
+
5
+ ## Numbered List Formulas
6
+
7
+ **Pattern**: [Number] [Adjective] [Topic] [Qualifier/Benefit]
8
+
9
+ ### Examples
10
+ - "7 Ways to Improve Your SEO Rankings in 2024"
11
+ - "15 Content Marketing Strategies That Actually Work"
12
+ - "10 Free Tools for Keyword Research (Beginner-Friendly)"
13
+ - "21 Email Marketing Tips from Industry Experts"
14
+ - "5 Quick Wins for Better Site Performance"
15
+
16
+ **Why it works**: Numbers promise specific value, create curiosity, set clear expectations.
17
+
18
+ **Best practices**:
19
+ - Odd numbers (7, 9, 15) often outperform even numbers
20
+ - Use specific numbers (13 vs "over 10")
21
+ - Keep total under 30 for credibility
22
+ - Match number to actual content sections
23
+
24
+ ---
25
+
26
+ ## How-To Formulas
27
+
28
+ **Pattern 1**: How to [Achieve Goal] in [Timeframe]
29
+ - "How to Rank on Google in 30 Days"
30
+ - "How to Write SEO Content in Under 2 Hours"
31
+ - "How to Build Backlinks in 2024"
32
+
33
+ **Pattern 2**: How to [Achieve Goal] Without [Common Objection]
34
+ - "How to Learn SEO Without Spending Money"
35
+ - "How to Increase Traffic Without Paid Ads"
36
+ - "How to Write Blog Posts Without Writer's Block"
37
+
38
+ **Pattern 3**: How to [Achieve Goal] (Even If [Limitation])
39
+ - "How to Rank #1 (Even If You're a New Website)"
40
+ - "How to Get Backlinks (Even With Zero Audience)"
41
+ - "How to Write SEO Content (Even If You Hate Writing)"
42
+
43
+ **Pattern 4**: How to [Achieve Goal] Like [Authority/Expert]
44
+ - "How to Write Email Copy Like a Professional Copywriter"
45
+ - "How to Do Keyword Research Like an SEO Pro"
46
+ - "How to Create Content Like Top Marketing Agencies"
47
+
48
+ ---
49
+
50
+ ## Question Formulas
51
+
52
+ **Pattern 1**: What Is [Topic]? [Benefit/Hook]
53
+ - "What Is Technical SEO? A Complete Guide"
54
+ - "What Is GEO? Everything You Need to Know"
55
+ - "What Is Content Marketing? (And Why It Matters)"
56
+
57
+ **Pattern 2**: Why [Action] [Result]
58
+ - "Why Most Content Marketing Strategies Fail"
59
+ - "Why Your Website Isn't Ranking"
60
+ - "Why Email Still Beats Social Media for ROI"
61
+
62
+ **Pattern 3**: Should You [Action]? [Quick Answer]
63
+ - "Should You Buy Backlinks? (Spoiler: No)"
64
+ - "Should You Hire an SEO Agency? A Cost-Benefit Analysis"
65
+ - "Should You Rewrite Old Content? When It Makes Sense"
66
+
67
+ **Pattern 4**: When Should You [Action]
68
+ - "When Should You Publish Blog Posts for Maximum Traffic"
69
+ - "When Should You Update Your SEO Strategy"
70
+ - "When Should You Remove Content from Your Website"
71
+
72
+ ---
73
+
74
+ ## Comparison Formulas
75
+
76
+ **Pattern 1**: [Option A] vs [Option B]: Which Is Better?
77
+ - "WordPress vs Webflow: Which Is Better for SEO?"
78
+ - "Ahrefs vs SEMrush: Complete Comparison 2024"
79
+ - "In-House SEO vs Agency: Which Should You Choose?"
80
+
81
+ **Pattern 2**: [Option A] vs [Option B] (and the Winner Is...)
82
+ - "Free Tools vs Paid SEO Software (and the Winner Is...)"
83
+ - "Long-Form vs Short-Form Content (and the Winner Is...)"
84
+
85
+ **Pattern 3**: [Option A] or [Option B] for [Audience/Goal]
86
+ - "Shopify or WooCommerce for Small Business SEO"
87
+ - "YouTube or TikTok for B2B Marketing"
88
+
89
+ ---
90
+
91
+ ## Ultimate Guide Formulas
92
+
93
+ **Pattern 1**: The [Complete/Definitive] Guide to [Topic]
94
+ - "The Complete Guide to Technical SEO"
95
+ - "The Definitive Guide to Link Building in 2024"
96
+
97
+ **Pattern 2**: [Topic]: The Ultimate Guide for [Audience]
98
+ - "Content Marketing: The Ultimate Guide for Beginners"
99
+ - "Local SEO: The Ultimate Guide for Small Businesses"
100
+
101
+ **Pattern 3**: Everything You Need to Know About [Topic]
102
+ - "Everything You Need to Know About Core Web Vitals"
103
+ - "Everything You Need to Know About Schema Markup"
104
+
105
+ ---
106
+
107
+ ## Power Word Formulas
108
+
109
+ **Pattern**: [Power Word] [Topic] [Qualifier]
110
+
111
+ ### Power Word Categories
112
+
113
+ **Authority words**:
114
+ - Proven, Tested, Verified, Certified, Official
115
+ - Example: "Proven Strategies to Double Your Organic Traffic"
116
+
117
+ **Urgency words**:
118
+ - Now, Today, Fast, Quick, Instantly, Immediately
119
+ - Example: "Quick Wins: Improve SEO Performance Today"
120
+
121
+ **Value words**:
122
+ - Free, Complete, Essential, Ultimate, Comprehensive
123
+ - Example: "The Essential SEO Checklist for 2024"
124
+
125
+ **Exclusivity words**:
126
+ - Secret, Hidden, Little-Known, Insider, Exclusive
127
+ - Example: "7 Little-Known SEO Tactics That Actually Work"
128
+
129
+ **Emotional words**:
130
+ - Amazing, Powerful, Effortless, Simple, Easy
131
+ - Example: "Simple SEO Strategies for Busy Entrepreneurs"
132
+
133
+ ---
134
+
135
+ ## Before/After Formulas
136
+
137
+ **Pattern 1**: From [Bad State] to [Good State]
138
+ - "From Zero to 10K Monthly Visitors: A Case Study"
139
+ - "From Page 5 to Position 1: How We Ranked a Competitive Keyword"
140
+
141
+ **Pattern 2**: How I/We [Achieved Result] in [Timeframe]
142
+ - "How I Increased Organic Traffic by 300% in 6 Months"
143
+ - "How We Built 100 Backlinks in 30 Days"
144
+
145
+ **Pattern 3**: [Bad State] → [Good State]: [Method]
146
+ - "500 Visitors → 50K: Our Content Strategy Revealed"
147
+ - "Struggling → Thriving: SEO Transformation Story"
148
+
149
+ ---
150
+
151
+ ## Mistake/Problem Formulas
152
+
153
+ **Pattern 1**: [Number] [Topic] Mistakes [Qualifier]
154
+ - "5 SEO Mistakes Killing Your Rankings"
155
+ - "10 Content Marketing Mistakes to Avoid in 2024"
156
+ - "3 Technical SEO Mistakes Even Pros Make"
157
+
158
+ **Pattern 2**: Stop [Wrong Action]. Do [Right Action] Instead
159
+ - "Stop Keyword Stuffing. Do This Instead"
160
+ - "Stop Buying Backlinks. Try These 7 Tactics Instead"
161
+
162
+ **Pattern 3**: Why Your [Topic] Isn't Working (And How to Fix It)
163
+ - "Why Your Content Isn't Ranking (And How to Fix It)"
164
+ - "Why Your SEO Strategy Isn't Working (And How to Fix It)"
165
+
166
+ ---
167
+
168
+ ## Checklist Formulas
169
+
170
+ **Pattern 1**: [Topic] Checklist: [Number] Must-Have [Items]
171
+ - "Technical SEO Checklist: 23 Must-Check Items"
172
+ - "Blog Post Checklist: 15 Things to Check Before Publishing"
173
+
174
+ **Pattern 2**: The [Timeframe] [Topic] Checklist
175
+ - "The 2024 SEO Audit Checklist"
176
+ - "The Pre-Launch Website Checklist"
177
+
178
+ ---
179
+
180
+ ## Curiosity Gap Formulas
181
+
182
+ **Pattern 1**: The [Adjective] Reason [Unexpected Fact]
183
+ - "The Surprising Reason Long Content Ranks Better"
184
+ - "The Real Reason Your Blog Posts Aren't Getting Traffic"
185
+
186
+ **Pattern 2**: [Number] Things About [Topic] That [Surprising Fact]
187
+ - "7 Things About SEO That Google Doesn't Tell You"
188
+ - "5 Things About Content Marketing That Changed in 2024"
189
+
190
+ **Pattern 3**: What [Expert/Group] Know About [Topic] (That You Don't)
191
+ - "What Top SEO Agencies Know About Link Building (That You Don't)"
192
+ - "What Professional Copywriters Know About Headlines"
193
+
194
+ ---
195
+
196
+ ## Benefit-Driven Formulas
197
+
198
+ **Pattern 1**: [Action] to [Specific Benefit]
199
+ - "Optimize Your Title Tags to Double Your CTR"
200
+ - "Write Better Meta Descriptions to Increase Organic Traffic"
201
+
202
+ **Pattern 2**: [Action] for [Outcome] Without [Objection]
203
+ - "Scale Content Production for Better Rankings Without Hiring Writers"
204
+ - "Improve Site Speed for Higher Rankings Without Technical Skills"
205
+
206
+ ---
207
+
208
+ ## Authority/Credibility Formulas
209
+
210
+ **Pattern 1**: [Expert/Authority] Says [Action/Tip]
211
+ - "Google's John Mueller Says Internal Linking Is Underrated"
212
+ - "SEO Experts Reveal Their Top Ranking Factor for 2024"
213
+
214
+ **Pattern 2**: [Number] [Experts/Companies] Share [Topic]
215
+ - "50 SEO Experts Share Their #1 Ranking Tip"
216
+ - "10 Successful Brands Share Their Content Strategy"
217
+
218
+ ---
219
+
220
+ ## CTR Optimization Patterns
221
+
222
+ ### Elements That Increase CTR
223
+
224
+ **Year/Timeframe** (signals freshness):
225
+ - "SEO Trends for 2024"
226
+ - "Best Practices [Updated January 2024]"
227
+
228
+ **Brackets/Parentheticals** (adds extra context):
229
+ - "Email Marketing Tips (That Actually Work)"
230
+ - "SEO Tools [Free & Paid Options]"
231
+
232
+ **Numbers** (promise specific value):
233
+ - "7 Ways...", "15 Tools...", "3 Reasons..."
234
+
235
+ **Power words** (emotional trigger):
236
+ - Ultimate, Essential, Complete, Proven, Secret
237
+
238
+ **Target audience** (relevance signal):
239
+ - "...for Beginners", "...for Small Businesses", "...for B2B"
240
+
241
+ ### Elements That Decrease CTR
242
+
243
+ - All caps (looks spammy)
244
+ - Excessive punctuation (!!!, ???)
245
+ - Clickbait without substance
246
+ - Misleading promises
247
+ - Generic titles ("SEO Tips", "Marketing Guide")
248
+
249
+ ---
250
+
251
+ ## Title Length Guidelines
252
+
253
+ ### Google SERP
254
+ - **Optimal**: 50-60 characters
255
+ - **Maximum**: ~70 characters before truncation
256
+ - **Mobile**: ~55 characters (truncates earlier)
257
+
258
+ ### Social Media
259
+ - **Twitter/X**: 70-100 characters for best engagement
260
+ - **Facebook**: 40-50 characters (shorter performs better)
261
+ - **LinkedIn**: 70-100 characters
262
+ - **Pinterest**: 40-60 characters
263
+
264
+ ### Email Subject Lines
265
+ - **Optimal**: 40-50 characters
266
+ - **Mobile**: 30-40 characters (truncates earlier)
267
+ - **Desktop**: Up to 60 characters
268
+
269
+ ---
270
+
271
+ ## Before/After Title Examples
272
+
273
+ ### Generic → Optimized
274
+
275
+ **Before**: "SEO Tips"
276
+ **After**: "7 SEO Tips That Increased Our Traffic by 300%"
277
+ - Added: Number, specificity, proof
278
+
279
+ **Before**: "How to Do Keyword Research"
280
+ **After**: "How to Do Keyword Research (Free Tools & 5-Step Process)"
281
+ - Added: Benefit, specificity, process indicator
282
+
283
+ **Before**: "Content Marketing Guide"
284
+ **After**: "The Complete Content Marketing Guide for Small Businesses [2024]"
285
+ - Added: Completeness indicator, target audience, year
286
+
287
+ **Before**: "What Is Technical SEO"
288
+ **After**: "What Is Technical SEO? A Beginner's Guide to Better Rankings"
289
+ - Added: Audience level, benefit
290
+
291
+ **Before**: "WordPress vs Shopify"
292
+ **After**: "WordPress vs Shopify: Which Is Better for SEO? (2024 Comparison)"
293
+ - Added: Specific comparison angle, year
294
+
295
+ **Before**: "Link Building Strategies"
296
+ **After**: "15 White-Hat Link Building Strategies That Still Work in 2024"
297
+ - Added: Number, quality signal, time relevance
298
+
299
+ ---
300
+
301
+ ## Title Writing Checklist
302
+
303
+ Before finalizing any title, check:
304
+
305
+ - [ ] Includes primary keyword naturally
306
+ - [ ] Length is 50-60 characters
307
+ - [ ] Matches search intent (informational/transactional/navigational)
308
+ - [ ] Contains power word or emotional trigger
309
+ - [ ] Specific and concrete (not vague)
310
+ - [ ] Promises clear value or benefit
311
+ - [ ] Accurate representation of content
312
+ - [ ] No clickbait or misleading claims
313
+ - [ ] Unique compared to competitors
314
+ - [ ] Works when truncated on mobile
315
+
316
+ ---
317
+
318
+ ## Testing and Optimization
319
+
320
+ ### A/B Test These Variables
321
+ - Number variations (7 vs 10 vs 15)
322
+ - Power word placement (beginning vs end)
323
+ - Question vs statement format
324
+ - With/without year
325
+ - With/without brackets
326
+ - Different benefit framing
327
+
328
+ ### Track These Metrics
329
+ - Click-through rate (CTR) in Search Console
330
+ - Average position in SERPs
331
+ - Time on page (engagement indicator)
332
+ - Bounce rate (relevance indicator)
333
+
334
+ ### When to Rewrite Titles
335
+ - CTR below 2% for top 3 positions
336
+ - CTR below 5% for positions 4-10
337
+ - Content is updated (add [Updated 2024])
338
+ - Competitors have better titles
339
+ - Ranking but not getting clicks
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.