@jeiemgi/cckit 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (191) hide show
  1. package/.claude-plugin/plugin.json +22 -0
  2. package/AGENTS.md +101 -0
  3. package/LICENSE-APACHE +202 -0
  4. package/LICENSE-MIT +21 -0
  5. package/README.md +143 -0
  6. package/SECURITY.md +22 -0
  7. package/bin/cckit +215 -0
  8. package/cckit.config.json +34 -0
  9. package/commands/kit-add.md +42 -0
  10. package/commands/kit-docs.md +45 -0
  11. package/commands/kit-doctor.md +52 -0
  12. package/commands/kit-export-project.md +58 -0
  13. package/commands/kit-export-training.md +49 -0
  14. package/commands/kit-init.md +126 -0
  15. package/commands/kit-routines.md +59 -0
  16. package/commands/kit-update.md +132 -0
  17. package/docs/kit-annotate/01-explainer.html +225 -0
  18. package/docs/kit-annotate/02-implementation-plan.html +196 -0
  19. package/docs/media/.onboarding-capture.cast +5 -0
  20. package/docs/media/README.md +43 -0
  21. package/docs/media/build-demo.sh +63 -0
  22. package/docs/media/build-kit-init.sh +51 -0
  23. package/docs/media/build-onboarding.sh +51 -0
  24. package/docs/media/kit-dry-run.cast +107 -0
  25. package/docs/media/kit-dry-run.gif +0 -0
  26. package/docs/media/kit-init.cast +56 -0
  27. package/docs/media/kit-init.gif +0 -0
  28. package/docs/media/kit-onboarding.cast +148 -0
  29. package/docs/media/kit-onboarding.gif +0 -0
  30. package/githooks/pre-commit +18 -0
  31. package/kit.config.schema.json +105 -0
  32. package/package.json +54 -0
  33. package/privacy-denylist.example +8 -0
  34. package/profiles/automation.json +36 -0
  35. package/profiles/content.json +41 -0
  36. package/profiles/minimal.json +31 -0
  37. package/profiles/research.json +37 -0
  38. package/profiles/software.json +32 -0
  39. package/scripts/annotate-setup.sh +149 -0
  40. package/scripts/autopilot.sh +50 -0
  41. package/scripts/capture-project-ids.sh +53 -0
  42. package/scripts/check.sh +66 -0
  43. package/scripts/contribute.sh +48 -0
  44. package/scripts/debug.sh +54 -0
  45. package/scripts/init-upgrade-test.sh +99 -0
  46. package/scripts/init.sh +827 -0
  47. package/scripts/install.sh +24 -0
  48. package/scripts/kit-add-test.sh +62 -0
  49. package/scripts/kit-add.sh +115 -0
  50. package/scripts/kit-adopt-test.sh +61 -0
  51. package/scripts/kit-adopt.sh +122 -0
  52. package/scripts/kit-bump-version.sh +79 -0
  53. package/scripts/kit-digest.sh +126 -0
  54. package/scripts/kit-doctor.sh +663 -0
  55. package/scripts/kit-export-project-test.sh +82 -0
  56. package/scripts/kit-export-project.sh +245 -0
  57. package/scripts/kit-export-training-test.sh +51 -0
  58. package/scripts/kit-export-training.sh +175 -0
  59. package/scripts/kit-migrate-test.sh +80 -0
  60. package/scripts/kit-migrate.sh +190 -0
  61. package/scripts/kit-onboard-test.sh +63 -0
  62. package/scripts/kit-onboard.sh +69 -0
  63. package/scripts/kit-promote-test.sh +54 -0
  64. package/scripts/kit-promote.sh +102 -0
  65. package/scripts/kit-remove-test.sh +61 -0
  66. package/scripts/kit-remove.sh +84 -0
  67. package/scripts/kit-routines.sh +322 -0
  68. package/scripts/kit-version-check.sh +91 -0
  69. package/scripts/kit-wire-test.sh +54 -0
  70. package/scripts/kit-wire.sh +132 -0
  71. package/scripts/knowledge-lint.sh +96 -0
  72. package/scripts/lib/cckit-output.sh +36 -0
  73. package/scripts/lib/effort-metrics.sh +452 -0
  74. package/scripts/lib/effort-ops-test.sh +83 -0
  75. package/scripts/lib/effort-ops.sh +132 -0
  76. package/scripts/lib/effort-plan.sh +104 -0
  77. package/scripts/lib/effort.sh +191 -0
  78. package/scripts/lib/engine-adapter.sh +92 -0
  79. package/scripts/lib/gh-log.sh +58 -0
  80. package/scripts/lib/gh-project.sh +212 -0
  81. package/scripts/lib/handoff.sh +35 -0
  82. package/scripts/lib/kit-cli-test.sh +42 -0
  83. package/scripts/lib/kit-cli.sh +32 -0
  84. package/scripts/lib/kit-config-resolve.sh +145 -0
  85. package/scripts/lib/kit-config.sh +88 -0
  86. package/scripts/lib/kit-engine-test.sh +107 -0
  87. package/scripts/lib/kit-events.sh +62 -0
  88. package/scripts/lib/kit-gc.sh +117 -0
  89. package/scripts/lib/kit-interview-test.sh +77 -0
  90. package/scripts/lib/kit-interview.sh +203 -0
  91. package/scripts/lib/kit-local.sh +79 -0
  92. package/scripts/lib/kit-manifest.sh +127 -0
  93. package/scripts/lib/kit-mode-test.sh +49 -0
  94. package/scripts/lib/kit-mode.sh +67 -0
  95. package/scripts/lib/kit-operate.sh +105 -0
  96. package/scripts/lib/kit-profile-test.sh +62 -0
  97. package/scripts/lib/kit-profile.sh +115 -0
  98. package/scripts/lib/kit-task-ops-test.sh +63 -0
  99. package/scripts/lib/kit-task-ops.sh +341 -0
  100. package/scripts/lib/pr-evidence.sh +173 -0
  101. package/scripts/lib/project-scan.sh +16 -0
  102. package/scripts/lib/react-detect.sh +78 -0
  103. package/scripts/lib/role-identity.sh +47 -0
  104. package/scripts/lib/secret-guard.sh +96 -0
  105. package/scripts/lib/toon.sh +35 -0
  106. package/scripts/lib/ui.sh +42 -0
  107. package/scripts/lib/version-bump.sh +59 -0
  108. package/scripts/lib/worktree-issue-test.sh +45 -0
  109. package/scripts/lib/worktree-issue.sh +73 -0
  110. package/scripts/lib/worktree-start.sh +280 -0
  111. package/scripts/orchestrate.sh +160 -0
  112. package/scripts/portable-test.sh +53 -0
  113. package/scripts/publish.sh +94 -0
  114. package/scripts/setup-labels.sh +25 -0
  115. package/scripts/setup-milestones.sh +17 -0
  116. package/scripts/showcase.sh +64 -0
  117. package/scripts/status.sh +44 -0
  118. package/scripts/task-sync.sh +59 -0
  119. package/scripts/test.sh +48 -0
  120. package/scripts/web-install.sh +22 -0
  121. package/skills/kit-annotate/SKILL.md +107 -0
  122. package/skills/kit-autopilot/SKILL.md +108 -0
  123. package/skills/kit-contribute/SKILL.md +134 -0
  124. package/skills/kit-customize/SKILL.md +134 -0
  125. package/skills/kit-dev/SKILL.md +67 -0
  126. package/skills/kit-digest/SKILL.md +41 -0
  127. package/skills/kit-effort-close/SKILL.md +156 -0
  128. package/skills/kit-effort-new/SKILL.md +173 -0
  129. package/skills/kit-effort-pr/SKILL.md +139 -0
  130. package/skills/kit-effort-start/SKILL.md +85 -0
  131. package/skills/kit-gc/SKILL.md +80 -0
  132. package/skills/kit-onboard/SKILL.md +50 -0
  133. package/skills/kit-security-sweep/SKILL.md +57 -0
  134. package/skills/kit-ship/SKILL.md +43 -0
  135. package/skills/kit-task-close/SKILL.md +66 -0
  136. package/skills/kit-task-new/SKILL.md +51 -0
  137. package/skills/kit-task-pr/SKILL.md +43 -0
  138. package/skills/kit-task-pr-auto/SKILL.md +27 -0
  139. package/skills/kit-task-pr-merge/SKILL.md +53 -0
  140. package/skills/kit-task-start/SKILL.md +76 -0
  141. package/skills/kit-task-sync/SKILL.md +37 -0
  142. package/templates/CLAUDE.md.tmpl +106 -0
  143. package/templates/agents/analyst.md +55 -0
  144. package/templates/agents/auto-dev.md +93 -0
  145. package/templates/agents/backend.md +59 -0
  146. package/templates/agents/designer.md +73 -0
  147. package/templates/agents/devops.md +57 -0
  148. package/templates/agents/editor.md +48 -0
  149. package/templates/agents/frontend.md +81 -0
  150. package/templates/agents/generalist.md +46 -0
  151. package/templates/agents/local-delegate.md +70 -0
  152. package/templates/agents/n8n.md +65 -0
  153. package/templates/agents/pm.md +69 -0
  154. package/templates/agents/qa.md +66 -0
  155. package/templates/agents/researcher.md +57 -0
  156. package/templates/agents/security.md +65 -0
  157. package/templates/agents/tech-lead.md +75 -0
  158. package/templates/hooks/guard-base-branch-commit.sh.tmpl +45 -0
  159. package/templates/hooks/kit-local-status.sh.tmpl +34 -0
  160. package/templates/hooks/kit_version_check.sh.tmpl +6 -0
  161. package/templates/hooks/mempal_followup.sh.tmpl +97 -0
  162. package/templates/hooks/mempal_precompact.sh.tmpl +4 -0
  163. package/templates/hooks/mempal_save.sh.tmpl +4 -0
  164. package/templates/hooks/mempal_session_start.sh.tmpl +8 -0
  165. package/templates/hooks/prepush_gate.sh.tmpl +36 -0
  166. package/templates/hooks/repo-hygiene.sh.tmpl +72 -0
  167. package/templates/kit.config.json.tmpl +32 -0
  168. package/templates/knowledge-INDEX.md.tmpl +12 -0
  169. package/templates/lib/kit-sigil.sh.tmpl +124 -0
  170. package/templates/rules/branch-naming.md +104 -0
  171. package/templates/rules/communication-style.md +22 -0
  172. package/templates/rules/delegation-brief.md +40 -0
  173. package/templates/rules/design-routing.md +35 -0
  174. package/templates/rules/effort-model.md +122 -0
  175. package/templates/rules/knowledge-base.md +41 -0
  176. package/templates/rules/mempalace.md +110 -0
  177. package/templates/rules/plan-output-format.md +58 -0
  178. package/templates/rules/react-annotate.md +69 -0
  179. package/templates/rules/risk-tiered-review.md +62 -0
  180. package/templates/rules/skill-gaps.md +48 -0
  181. package/templates/rules/task-management.md +42 -0
  182. package/templates/settings/settings.local.json.tmpl +27 -0
  183. package/templates/skills/NAMESPACED +13 -0
  184. package/templates/skills/copywriting/SKILL.md +252 -0
  185. package/templates/skills/copywriting/references/copy-frameworks.md +344 -0
  186. package/templates/skills/copywriting/references/natural-transitions.md +272 -0
  187. package/templates/skills/feature-build-refine/SKILL.md +367 -0
  188. package/templates/skills/karpathy-guidelines/SKILL.md +69 -0
  189. package/templates/skills/morning-briefing/SKILL.md +46 -0
  190. package/templates/skills/speckit/SKILL.md +239 -0
  191. package/templates/skills/supabase-patterns/SKILL.md +88 -0
@@ -0,0 +1,344 @@
1
+ # Copy Frameworks Reference
2
+
3
+ Headline formulas, page section types, and structural templates.
4
+
5
+ ## Contents
6
+ - Headline Formulas (outcome-focused, problem-focused, audience-focused, differentiation-focused, proof-focused, additional formulas)
7
+ - Landing Page Section Types (core sections, supporting sections)
8
+ - Page Structure Templates (feature-heavy page, varied engaging page, compact landing page, enterprise/B2B landing page, product launch page)
9
+ - Section Writing Tips (problem section, benefits section, how it works section, testimonial selection)
10
+
11
+ ## Headline Formulas
12
+
13
+ ### Outcome-Focused
14
+
15
+ **{Achieve desirable outcome} without {pain point}**
16
+ > Understand how users are really experiencing your site without drowning in numbers
17
+
18
+ **{Achieve desirable outcome} by {how product makes it possible}**
19
+ > Generate more leads by seeing which companies visit your site
20
+
21
+ **Turn {input} into {outcome}**
22
+ > Turn your hard-earned sales into repeat customers
23
+
24
+ **[Achieve outcome] in [timeframe]**
25
+ > Get your tax refund in 10 days
26
+
27
+ ---
28
+
29
+ ### Problem-Focused
30
+
31
+ **Never {unpleasant event} again**
32
+ > Never miss a sales opportunity again
33
+
34
+ **{Question highlighting the main pain point}**
35
+ > Hate returning stuff to Amazon?
36
+
37
+ **Stop [pain]. Start [pleasure].**
38
+ > Stop chasing invoices. Start getting paid on time.
39
+
40
+ ---
41
+
42
+ ### Audience-Focused
43
+
44
+ **{Key feature/product type} for {target audience}**
45
+ > Advanced analytics for Shopify e-commerce
46
+
47
+ **{Key feature/product type} for {target audience} to {what it's used for}**
48
+ > An online whiteboard for teams to ideate and brainstorm together
49
+
50
+ **You don't have to {skills or resources} to {achieve desirable outcome}**
51
+ > With Ahrefs, you don't have to be an SEO pro to rank higher and get more traffic
52
+
53
+ ---
54
+
55
+ ### Differentiation-Focused
56
+
57
+ **The {opposite of usual process} way to {achieve desirable outcome}**
58
+ > The easiest way to turn your passion into income
59
+
60
+ **The [category] that [key differentiator]**
61
+ > The CRM that updates itself
62
+
63
+ ---
64
+
65
+ ### Proof-Focused
66
+
67
+ **[Number] [people] use [product] to [outcome]**
68
+ > 50,000 marketers use Drip to send better emails
69
+
70
+ **{Key benefit of your product}**
71
+ > Sound clear in online meetings
72
+
73
+ ---
74
+
75
+ ### Additional Formulas
76
+
77
+ **The simple way to {outcome}**
78
+ > The simple way to track your time
79
+
80
+ **Finally, {category} that {benefit}**
81
+ > Finally, accounting software that doesn't suck
82
+
83
+ **{Outcome} without {common pain}**
84
+ > Build your website without writing code
85
+
86
+ **Get {benefit} from your {thing}**
87
+ > Get more revenue from your existing traffic
88
+
89
+ **{Action verb} your {thing} like {admirable example}**
90
+ > Market your SaaS like a Fortune 500
91
+
92
+ **What if you could {desirable outcome}?**
93
+ > What if you could close deals 30% faster?
94
+
95
+ **Everything you need to {outcome}**
96
+ > Everything you need to launch your course
97
+
98
+ **The {adjective} {category} built for {audience}**
99
+ > The lightweight CRM built for startups
100
+
101
+ ---
102
+
103
+ ## Landing Page Section Types
104
+
105
+ ### Core Sections
106
+
107
+ **Hero (Above the Fold)**
108
+ - Headline + subheadline
109
+ - Primary CTA
110
+ - Supporting visual (product screenshot, hero image)
111
+ - Optional: Social proof bar
112
+
113
+ **Social Proof Bar**
114
+ - Customer logos (recognizable > many)
115
+ - Key metric ("10,000+ teams")
116
+ - Star rating with review count
117
+ - Short testimonial snippet
118
+
119
+ **Problem/Pain Section**
120
+ - Articulate their problem better than they can
121
+ - Create recognition ("that's exactly my situation")
122
+ - Hint at cost of not solving it
123
+
124
+ **Solution/Benefits Section**
125
+ - Bridge from problem to your solution
126
+ - 3-5 key benefits (not 10)
127
+ - Each: headline + explanation + proof if available
128
+
129
+ **How It Works**
130
+ - 3-4 numbered steps
131
+ - Reduces perceived complexity
132
+ - Each step: action + outcome
133
+
134
+ **Final CTA Section**
135
+ - Recap value proposition
136
+ - Repeat primary CTA
137
+ - Risk reversal (guarantee, free trial)
138
+
139
+ ---
140
+
141
+ ### Supporting Sections
142
+
143
+ **Testimonials**
144
+ - Full quotes with names, roles, companies
145
+ - Photos when possible
146
+ - Specific results over vague praise
147
+ - Formats: quote cards, video, tweet embeds
148
+
149
+ **Case Studies**
150
+ - Problem → Solution → Results
151
+ - Specific metrics and outcomes
152
+ - Customer name and context
153
+ - Can be snippets with "Read more" links
154
+
155
+ **Use Cases**
156
+ - Different ways product is used
157
+ - Helps visitors self-identify
158
+ - "For marketers who need X" format
159
+
160
+ **Personas / "Built For" Sections**
161
+ - Explicitly call out target audience
162
+ - "Perfect for [role]" blocks
163
+ - Addresses "Is this for me?" question
164
+
165
+ **FAQ Section**
166
+ - Address common objections
167
+ - Good for SEO
168
+ - Reduces support burden
169
+ - 5-10 most common questions
170
+
171
+ **Comparison Section**
172
+ - vs. competitors (name them or don't)
173
+ - vs. status quo (spreadsheets, manual processes)
174
+ - Tables or side-by-side format
175
+
176
+ **Integrations / Partners**
177
+ - Logos of tools you connect with
178
+ - "Works with your stack" messaging
179
+ - Builds credibility
180
+
181
+ **Founder Story / Manifesto**
182
+ - Why you built this
183
+ - What you believe
184
+ - Emotional connection
185
+ - Differentiates from faceless competitors
186
+
187
+ **Demo / Product Tour**
188
+ - Interactive demos
189
+ - Video walkthroughs
190
+ - GIF previews
191
+ - Shows product in action
192
+
193
+ **Pricing Preview**
194
+ - Teaser even on non-pricing pages
195
+ - Starting price or "from $X/mo"
196
+ - Moves decision-makers forward
197
+
198
+ **Guarantee / Risk Reversal**
199
+ - Money-back guarantee
200
+ - Free trial terms
201
+ - "Cancel anytime"
202
+ - Reduces friction
203
+
204
+ **Stats Section**
205
+ - Key metrics that build credibility
206
+ - "10,000+ customers"
207
+ - "4.9/5 rating"
208
+ - "$2M saved for customers"
209
+
210
+ ---
211
+
212
+ ## Page Structure Templates
213
+
214
+ ### Feature-Heavy Page (Weak)
215
+
216
+ ```
217
+ 1. Hero
218
+ 2. Feature 1
219
+ 3. Feature 2
220
+ 4. Feature 3
221
+ 5. Feature 4
222
+ 6. CTA
223
+ ```
224
+
225
+ This is a list, not a persuasive narrative.
226
+
227
+ ---
228
+
229
+ ### Varied, Engaging Page (Strong)
230
+
231
+ ```
232
+ 1. Hero with clear value prop
233
+ 2. Social proof bar (logos or stats)
234
+ 3. Problem/pain section
235
+ 4. How it works (3 steps)
236
+ 5. Key benefits (2-3, not 10)
237
+ 6. Testimonial
238
+ 7. Use cases or personas
239
+ 8. Comparison to alternatives
240
+ 9. Case study snippet
241
+ 10. FAQ
242
+ 11. Final CTA with guarantee
243
+ ```
244
+
245
+ This tells a story and addresses objections.
246
+
247
+ ---
248
+
249
+ ### Compact Landing Page
250
+
251
+ ```
252
+ 1. Hero (headline, subhead, CTA, image)
253
+ 2. Social proof bar
254
+ 3. 3 key benefits with icons
255
+ 4. Testimonial
256
+ 5. How it works (3 steps)
257
+ 6. Final CTA with guarantee
258
+ ```
259
+
260
+ Good for ad landing pages where brevity matters.
261
+
262
+ ---
263
+
264
+ ### Enterprise/B2B Landing Page
265
+
266
+ ```
267
+ 1. Hero (outcome-focused headline)
268
+ 2. Logo bar (recognizable companies)
269
+ 3. Problem section (business pain)
270
+ 4. Solution overview
271
+ 5. Use cases by role/department
272
+ 6. Security/compliance section
273
+ 7. Integration logos
274
+ 8. Case study with metrics
275
+ 9. ROI/value section
276
+ 10. Contact/demo CTA
277
+ ```
278
+
279
+ Addresses enterprise buyer concerns.
280
+
281
+ ---
282
+
283
+ ### Product Launch Page
284
+
285
+ ```
286
+ 1. Hero with launch announcement
287
+ 2. Video demo or walkthrough
288
+ 3. Feature highlights (3-5)
289
+ 4. Before/after comparison
290
+ 5. Early testimonials
291
+ 6. Launch pricing or early access offer
292
+ 7. CTA with urgency
293
+ ```
294
+
295
+ Good for ProductHunt, launches, or announcements.
296
+
297
+ ---
298
+
299
+ ## Section Writing Tips
300
+
301
+ ### Problem Section
302
+
303
+ Start with phrases like:
304
+ - "You know the feeling..."
305
+ - "If you're like most [role]..."
306
+ - "Every day, [audience] struggles with..."
307
+ - "We've all been there..."
308
+
309
+ Then describe:
310
+ - The specific frustration
311
+ - The time/money wasted
312
+ - The impact on their work/life
313
+
314
+ ### Benefits Section
315
+
316
+ For each benefit, include:
317
+ - **Headline**: The outcome they get
318
+ - **Body**: How it works (1-2 sentences)
319
+ - **Proof**: Number, testimonial, or example (optional)
320
+
321
+ ### How It Works Section
322
+
323
+ Each step should be:
324
+ - **Numbered**: Creates sense of progress
325
+ - **Simple verb**: "Connect," "Set up," "Get"
326
+ - **Outcome-oriented**: What they get from this step
327
+
328
+ Example:
329
+ 1. Connect your tools (takes 2 minutes)
330
+ 2. Set your preferences
331
+ 3. Get automated reports every Monday
332
+
333
+ ### Testimonial Selection
334
+
335
+ Best testimonials include:
336
+ - Specific results ("increased conversions by 32%")
337
+ - Before/after context ("We used to spend hours...")
338
+ - Role + company for credibility
339
+ - Something quotable and specific
340
+
341
+ Avoid testimonials that just say:
342
+ - "Great product!"
343
+ - "Love it!"
344
+ - "Easy to use!"
@@ -0,0 +1,272 @@
1
+ # Natural Transitions
2
+
3
+ Transitional phrases to guide readers through your content. Good signposting improves readability, user engagement, and helps search engines understand content structure.
4
+
5
+ Adapted from: University of Manchester Academic Phrasebank (2023), Plain English Campaign, web content best practices
6
+
7
+ ---
8
+
9
+ ## Contents
10
+ - Previewing Content Structure
11
+ - Introducing a New Topic
12
+ - Referring Back
13
+ - Moving Between Sections
14
+ - Indicating Addition
15
+ - Indicating Contrast
16
+ - Indicating Similarity
17
+ - Indicating Cause and Effect
18
+ - Giving Examples
19
+ - Emphasising Key Points
20
+ - Providing Evidence (neutral attribution, expert quotes, supporting claims)
21
+ - Summarising Sections
22
+ - Concluding Content
23
+ - Question-Based Transitions
24
+ - List Introductions
25
+ - Hedging Language
26
+ - Best Practice Guidelines
27
+ - Transitions to Avoid (AI Tells)
28
+
29
+ ## Previewing Content Structure
30
+
31
+ Use to orient readers and set expectations:
32
+
33
+ - Here's what we'll cover...
34
+ - This guide walks you through...
35
+ - Below, you'll find...
36
+ - We'll start with X, then move to Y...
37
+ - First, let's look at...
38
+ - Let's break this down step by step.
39
+ - The sections below explain...
40
+
41
+ ---
42
+
43
+ ## Introducing a New Topic
44
+
45
+ - When it comes to X,...
46
+ - Regarding X,...
47
+ - Speaking of X,...
48
+ - Now let's talk about X.
49
+ - Another key factor is...
50
+ - X is worth exploring because...
51
+
52
+ ---
53
+
54
+ ## Referring Back
55
+
56
+ Use to connect ideas and reinforce key points:
57
+
58
+ - As mentioned earlier,...
59
+ - As we covered above,...
60
+ - Remember when we discussed X?
61
+ - Building on that point,...
62
+ - Going back to X,...
63
+ - Earlier, we explained that...
64
+
65
+ ---
66
+
67
+ ## Moving Between Sections
68
+
69
+ - Now let's look at...
70
+ - Next up:...
71
+ - Moving on to...
72
+ - With that covered, let's turn to...
73
+ - Now that you understand X, here's Y.
74
+ - That brings us to...
75
+
76
+ ---
77
+
78
+ ## Indicating Addition
79
+
80
+ - Also,...
81
+ - Plus,...
82
+ - On top of that,...
83
+ - What's more,...
84
+ - Another benefit is...
85
+ - Beyond that,...
86
+ - In addition,...
87
+ - There's also...
88
+
89
+ **Note:** Use "moreover" and "furthermore" sparingly. They can sound AI-generated when overused.
90
+
91
+ ---
92
+
93
+ ## Indicating Contrast
94
+
95
+ - However,...
96
+ - But,...
97
+ - That said,...
98
+ - On the flip side,...
99
+ - In contrast,...
100
+ - Unlike X, Y...
101
+ - While X is true, Y...
102
+ - Despite this,...
103
+
104
+ ---
105
+
106
+ ## Indicating Similarity
107
+
108
+ - Similarly,...
109
+ - Likewise,...
110
+ - In the same way,...
111
+ - Just like X, Y also...
112
+ - This mirrors...
113
+ - The same applies to...
114
+
115
+ ---
116
+
117
+ ## Indicating Cause and Effect
118
+
119
+ - So,...
120
+ - This means...
121
+ - As a result,...
122
+ - That's why...
123
+ - Because of this,...
124
+ - This leads to...
125
+ - The outcome?...
126
+ - Here's what happens:...
127
+
128
+ ---
129
+
130
+ ## Giving Examples
131
+
132
+ - For example,...
133
+ - For instance,...
134
+ - Here's an example:...
135
+ - Take X, for instance.
136
+ - Consider this:...
137
+ - A good example is...
138
+ - To illustrate,...
139
+ - Like when...
140
+ - Say you want to...
141
+
142
+ ---
143
+
144
+ ## Emphasising Key Points
145
+
146
+ - Here's the key takeaway:...
147
+ - The important thing is...
148
+ - What matters most is...
149
+ - Don't miss this:...
150
+ - Pay attention to...
151
+ - This is critical:...
152
+ - The bottom line?...
153
+
154
+ ---
155
+
156
+ ## Providing Evidence
157
+
158
+ Use when citing sources, data, or expert opinions:
159
+
160
+ ### Neutral attribution
161
+ - According to [Source],...
162
+ - [Source] reports that...
163
+ - Research shows that...
164
+ - Data from [Source] indicates...
165
+ - A study by [Source] found...
166
+
167
+ ### Expert quotes
168
+ - As [Expert] puts it,...
169
+ - [Expert] explains,...
170
+ - In the words of [Expert],...
171
+ - [Expert] notes that...
172
+
173
+ ### Supporting claims
174
+ - This is backed by...
175
+ - Evidence suggests...
176
+ - The numbers confirm...
177
+ - This aligns with findings from...
178
+
179
+ ---
180
+
181
+ ## Summarising Sections
182
+
183
+ - To recap,...
184
+ - Here's the short version:...
185
+ - In short,...
186
+ - The takeaway?...
187
+ - So what does this mean?...
188
+ - Let's pull this together:...
189
+ - Quick summary:...
190
+
191
+ ---
192
+
193
+ ## Concluding Content
194
+
195
+ - Wrapping up,...
196
+ - The bottom line is...
197
+ - Here's what to do next:...
198
+ - To sum up,...
199
+ - Final thoughts:...
200
+ - Ready to get started?...
201
+ - Now it's your turn.
202
+
203
+ **Note:** Avoid "In conclusion" at the start of a paragraph. It's overused and signals AI writing.
204
+
205
+ ---
206
+
207
+ ## Question-Based Transitions
208
+
209
+ Useful for conversational tone and featured snippet optimization:
210
+
211
+ - So what does this mean for you?
212
+ - But why does this matter?
213
+ - How do you actually do this?
214
+ - What's the catch?
215
+ - Sound complicated? It's not.
216
+ - Wondering where to start?
217
+ - Still not sure? Here's the breakdown.
218
+
219
+ ---
220
+
221
+ ## List Introductions
222
+
223
+ For numbered lists and step-by-step content:
224
+
225
+ - Here's how to do it:
226
+ - Follow these steps:
227
+ - The process is straightforward:
228
+ - Here's what you need to know:
229
+ - Key things to consider:
230
+ - The main factors are:
231
+
232
+ ---
233
+
234
+ ## Hedging Language
235
+
236
+ For claims that need qualification or aren't absolute:
237
+
238
+ - may, might, could
239
+ - tends to, generally
240
+ - often, usually, typically
241
+ - in most cases
242
+ - it appears that
243
+ - evidence suggests
244
+ - this can help
245
+ - many experts believe
246
+
247
+ ---
248
+
249
+ ## Best Practice Guidelines
250
+
251
+ 1. **Match tone to audience**: B2B content can be slightly more formal; B2C often benefits from conversational transitions
252
+ 2. **Vary your transitions**: Repeating the same phrase gets noticed (and not in a good way)
253
+ 3. **Don't over-signpost**: Trust your reader; every sentence doesn't need a transition
254
+ 4. **Use for scannability**: Transitions at paragraph starts help skimmers navigate
255
+ 5. **Keep it natural**: Read aloud; if it sounds forced, simplify
256
+ 6. **Front-load key info**: Put the important word or phrase early in the transition
257
+
258
+ ---
259
+
260
+ ## Transitions to Avoid (AI Tells)
261
+
262
+ These phrases are overused in AI-generated content:
263
+
264
+ - "That being said,..."
265
+ - "It's worth noting that..."
266
+ - "At its core,..."
267
+ - "In today's digital landscape,..."
268
+ - "When it comes to the realm of..."
269
+ - "This begs the question..."
270
+ - "Let's delve into..."
271
+
272
+ See the seo-audit skill's `references/ai-writing-detection.md` for a complete list of AI writing tells.