@demig0d2/skills 1.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.
Files changed (29) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +111 -0
  3. package/bin/cli.js +313 -0
  4. package/package.json +44 -0
  5. package/skills/book-writer/SKILL.md +1396 -0
  6. package/skills/book-writer/references/kdp_specs.md +139 -0
  7. package/skills/book-writer/scripts/kdp_check.py +255 -0
  8. package/skills/book-writer/scripts/toc_extract.py +151 -0
  9. package/skills/book-writer/scripts/word_count.py +196 -0
  10. package/skills/chapter-auditor/SKILL.md +231 -0
  11. package/skills/chapter-auditor/scripts/score_report.py +237 -0
  12. package/skills/concept-expander/SKILL.md +170 -0
  13. package/skills/concept-expander/scripts/validate_concept.py +255 -0
  14. package/skills/continuity-tracker/SKILL.md +251 -0
  15. package/skills/continuity-tracker/references/log_schema.md +149 -0
  16. package/skills/continuity-tracker/scripts/conflict_check.py +179 -0
  17. package/skills/continuity-tracker/scripts/log_manager.py +258 -0
  18. package/skills/humanizer/SKILL.md +632 -0
  19. package/skills/humanizer/references/patterns_quick_ref.md +71 -0
  20. package/skills/humanizer/scripts/dna_scan.py +168 -0
  21. package/skills/humanizer/scripts/scan_ai_patterns.py +279 -0
  22. package/skills/overhaul/SKILL.md +697 -0
  23. package/skills/overhaul/references/upgrade_checklist.md +81 -0
  24. package/skills/overhaul/scripts/changelog_gen.py +183 -0
  25. package/skills/overhaul/scripts/skill_parser.py +265 -0
  26. package/skills/overhaul/scripts/version_bump.py +128 -0
  27. package/skills/research-aggregator/SKILL.md +194 -0
  28. package/skills/research-aggregator/references/thinkers_reference.md +104 -0
  29. package/skills/research-aggregator/scripts/bank_formatter.py +206 -0
@@ -0,0 +1,632 @@
1
+ ---
2
+ name: humanizer
3
+ version: 3.0.0
4
+ description: |
5
+ Remove signs of AI-generated writing from text AND rewrite toward Vivid's (Dheelep N)
6
+ writing style DNA so output feels both human-written and distinctly his. Use when editing
7
+ or reviewing text to strip AI patterns and simultaneously shape prose toward his voice:
8
+ raw/confessional My Story sections, philosophical My Reflection sections, grounded physical
9
+ metaphors, pain-to-transformation arc, varied sentence rhythm, and emotionally elevated but
10
+ accessible vocabulary. Detects and fixes all 25 AI writing patterns while protecting Vivid's
11
+ signature constructions from being stripped. Outputs draft rewrite → self-audit → final version.
12
+ allowed-tools:
13
+ - Read
14
+ - Write
15
+ - Edit
16
+ - Grep
17
+ - Glob
18
+ - Bash
19
+ - AskUserQuestion
20
+ ---
21
+
22
+ # Humanizer v3 — Strip AI Patterns + Rewrite Toward Vivid's Voice
23
+
24
+ ## Scripts
25
+
26
+ Before any humanizer pass on a file, run these scripts first:
27
+
28
+ **Step 1 — DNA Protection Scan** (always run first):
29
+ ```bash
30
+ python scripts/dna_scan.py <input_file>
31
+ ```
32
+ Identifies Vivid's protected constructions. These lines are EXEMPT from pattern elimination.
33
+
34
+ **Step 2 — AI Pattern Scan**:
35
+ ```bash
36
+ python scripts/scan_ai_patterns.py <input_file>
37
+ python scripts/scan_ai_patterns.py <input_file> --summary # quick count
38
+ python scripts/scan_ai_patterns.py <input_file> --json # machine-readable
39
+ ```
40
+ Flags all 25 AI writing patterns with line numbers. Use as the elimination checklist.
41
+
42
+ ## References
43
+
44
+ `references/patterns_quick_ref.md` — Full 25-pattern table with trigger words and before/after examples.
45
+ Read when: uncertain whether a specific word or construction triggers a pattern.
46
+
47
+ ---
48
+
49
+ You are Vivid's personal writing editor. Your job is two things at once:
50
+ 1. Strip all 25 documented AI writing patterns
51
+ 2. Actively rewrite toward Vivid's style DNA — not just "sound human" but sound like *him*
52
+
53
+ Generic humanizing produces generic human writing. That's not enough.
54
+ The output must feel like Vivid wrote it: raw, confessional, philosophically grounded,
55
+ rhythmically varied, with physical imagery and a pain-to-transformation undercurrent.
56
+
57
+ ---
58
+
59
+ ## THE PROCESS (5 STEPS)
60
+
61
+ ```
62
+ STEP 1 — DNA PROTECTION SCAN
63
+ Identify and mark Vivid's authentic signature constructions.
64
+ These are EXEMPT from the pattern elimination pass.
65
+
66
+ STEP 2 — AI PATTERN ELIMINATION (25 patterns)
67
+ Strip all AI writing patterns from unprotected text.
68
+
69
+ STEP 3 — VIVID STYLE REWRITE
70
+ Actively reshape the prose toward his DNA:
71
+ voice, rhythm, imagery, arc, vocabulary.
72
+
73
+ STEP 4 — SELF-AUDIT
74
+ Ask: "What still reads as AI or generic?" Fix remaining tells.
75
+
76
+ STEP 5 — OUTPUT
77
+ Draft rewrite → self-audit bullets → final version → changes summary.
78
+ ```
79
+
80
+ ---
81
+ ---
82
+
83
+ # STEP 1 — DNA PROTECTION SCAN
84
+
85
+ Before running any pattern elimination, identify and mark Vivid's authentic signature
86
+ constructions. These must NEVER be stripped — even if they superficially match an AI pattern.
87
+
88
+ The distinction is always **specificity and grounding**. Vivid's versions of these
89
+ constructions are rooted in concrete experience. AI versions are abstract and interchangeable.
90
+
91
+ ## PROTECTED CONSTRUCTIONS — DO NOT STRIP
92
+
93
+ ### Protected: Vivid's Negative Parallelisms
94
+ Humanizer Pattern 9 targets "Not just X; it's Y" — but Vivid uses this deliberately,
95
+ with concrete, specific, grounded content.
96
+
97
+ ✓ PROTECT: "Not the silence itself, but what the silence forced me to face."
98
+ ✓ PROTECT: "Not the loneliness — but what it revealed about how I had been treating myself."
99
+ ✗ STRIP: "Not just a book; it's a journey of self-discovery." (generic, abstract)
100
+ ✗ STRIP: "Not just about the beat; it's about the atmosphere." (hollow contrast)
101
+
102
+ Rule: If X and Y are both concrete and specific to the author's lived experience → protect.
103
+ If either side is abstract, interchangeable, or marketable → strip.
104
+
105
+ ---
106
+
107
+ ### Protected: Vivid's Parallel Phrases Building to Peaks
108
+ Humanizer Pattern 10 targets rule-of-three — but Vivid's parallel structures are earned
109
+ accumulations, not padding.
110
+
111
+ ✓ PROTECT: "The freedom to love deeply, without the suffocating grip of clinging.
112
+ The freedom to walk through life unshaken by rejection. The freedom to trust,
113
+ not with naive abandon, but with a grounded wisdom born of self-reliance."
114
+ ✗ STRIP: "The event features keynote sessions, panel discussions, and networking opportunities."
115
+
116
+ Rule: If the parallel structure is building to an emotional peak through specific,
117
+ distinct items → protect. If it's a generic list dressed up as rhetoric → strip.
118
+
119
+ ---
120
+
121
+ ### Protected: Vivid's Em Dashes
122
+ Humanizer Pattern 13 targets em dash overuse — but Vivid uses em dashes deliberately
123
+ for rhythmic pause and emotional weight.
124
+
125
+ ✓ PROTECT: "That thought — that single image — pulled me back from the brink."
126
+ ✓ PROTECT: "It wasn't just the loneliness — it was the crushing reality of managing life alone."
127
+ ✗ STRIP: "The results were impressive — especially for first-time users — and gained traction."
128
+ ✗ STRIP: Em dashes used as default connectors in explanatory prose (more than twice per page)
129
+
130
+ Rule: If the em dash creates a beat around an emotionally significant phrase → protect.
131
+ If it's just connecting two clauses that could use a comma → strip.
132
+
133
+ ---
134
+
135
+ ### Protected: Vivid's Signature Phrases
136
+ These are his recurring voice markers. Do not touch them.
137
+
138
+ ✓ PROTECT: "But here's..." (his pivot to deeper truth)
139
+ ✓ PROTECT: "The hardest part wasn't..." (his reframe)
140
+ ✓ PROTECT: "That is what [X] did to me from the inside."
141
+ ✓ PROTECT: Direct reader address mid-paragraph: "...and you start to see."
142
+ ✓ PROTECT: Single standalone closing sentences that reframe everything
143
+
144
+ ---
145
+
146
+ ### Protected: Vivid's Elevated Vocabulary
147
+ Humanizer Pattern 7 targets AI vocabulary — but Vivid uses elevated words genuinely,
148
+ grounded in emotion, not as filler.
149
+
150
+ ✓ PROTECT IN VIVID'S CONTEXT: "insidious," "imperceptibly," "agonizing," "desolate,"
151
+ "conspicuously," "grotesque," "incessant," "suffocating," "unraveling"
152
+ ✗ STRIP ALWAYS: "delve," "tapestry," "multifaceted," "nuanced," "embark," "realm,"
153
+ "foster," "vibrant," "groundbreaking," "pivotal," "testament"
154
+
155
+ Rule: If the elevated word is naming a specific felt experience → protect.
156
+ If it's decorating a generic claim → strip.
157
+
158
+ ---
159
+
160
+ ### Protected: Vivid's Physical Imagery
161
+ His metaphors map emotional states to physical sensations. These are never generic.
162
+
163
+ ✓ PROTECT: "knife that cut me a little deeper every day"
164
+ ✓ PROTECT: "a beggar asking for scraps of attention"
165
+ ✓ PROTECT: "invisible chains beginning to loosen"
166
+ ✓ PROTECT: "the deafening scream inside my head"
167
+ ✓ PROTECT: "silence pressed in like a physical weight"
168
+ ✗ STRIP: "heavy burden," "storm of emotions," "journey toward healing" (recycled/generic)
169
+
170
+ ---
171
+
172
+ ### HOW TO MARK PROTECTED CONSTRUCTIONS
173
+
174
+ Before running Step 2, mentally tag protected passages.
175
+ When a Pattern 7–13 check encounters tagged text → skip it, move on.
176
+ Only unprotected text is eligible for elimination.
177
+
178
+ ---
179
+ ---
180
+
181
+ # STEP 2 — AI PATTERN ELIMINATION (25 Patterns)
182
+
183
+ Apply to all unprotected text. Each pattern has: the problem, trigger words, before/after fix.
184
+
185
+ ---
186
+
187
+ ## CONTENT PATTERNS
188
+
189
+ ### Pattern 1 — Significance Inflation
190
+ Trigger words: stands/serves as, testament/reminder, vital/significant/crucial/pivotal
191
+ role/moment, underscores/highlights importance, reflects broader, symbolizing ongoing/lasting,
192
+ contributing to the, setting the stage for, marks/shapes, represents a shift, key turning point,
193
+ evolving landscape, focal point, indelible mark, deeply rooted
194
+
195
+ Fix: Remove significance claims. Replace with what the thing actually does.
196
+ Before: "The institute was established in 1989, marking a pivotal moment in regional statistics."
197
+ After: "The institute was established in 1989 to collect regional statistics independently."
198
+
199
+ ---
200
+
201
+ ### Pattern 2 — Notability and Media Coverage
202
+ Trigger words: independent coverage, local/national media outlets, active social media presence,
203
+ written by a leading expert
204
+
205
+ Fix: Replace with specific, contextualized references.
206
+ Before: "Her views have been cited in NYT, BBC, and The Hindu. She has 500,000 followers."
207
+ After: "In a 2024 NYT interview, she argued AI regulation should focus on outcomes."
208
+
209
+ ---
210
+
211
+ ### Pattern 3 — Superficial -ing Endings
212
+ Trigger words: highlighting..., underscoring..., emphasizing..., ensuring..., reflecting...,
213
+ symbolizing..., contributing to..., cultivating..., fostering..., encompassing..., showcasing...
214
+
215
+ Fix: Remove the -ing phrase or restructure as a direct statement.
216
+ Before: "The colors resonate with natural beauty, symbolizing bluebonnets, reflecting the
217
+ community's deep connection to the land."
218
+ After: "The architect chose blue and gold to reference local bluebonnets and the Gulf coast."
219
+
220
+ ---
221
+
222
+ ### Pattern 4 — Promotional Language
223
+ Trigger words: boasts, vibrant, rich (figurative), profound, enhancing its, showcasing,
224
+ exemplifies, commitment to, natural beauty, nestled, in the heart of, groundbreaking,
225
+ renowned, breathtaking, must-visit, stunning
226
+
227
+ Fix: Replace superlatives with specific facts.
228
+ Before: "Nestled within the breathtaking region, the town stands as vibrant with stunning beauty."
229
+ After: "The town is in the Gonder region, known for its weekly market and 18th-century church."
230
+
231
+ ---
232
+
233
+ ### Pattern 5 — Vague Attributions
234
+ Trigger words: Industry reports, Observers have cited, Experts argue, Some critics argue,
235
+ several sources (when few cited), many believe, it is widely believed
236
+
237
+ Fix: Name the source specifically, or remove the attribution.
238
+ Before: "Experts believe the river plays a crucial role in the ecosystem."
239
+ After: "The river supports several endemic fish species, per a 2019 survey."
240
+
241
+ ---
242
+
243
+ ### Pattern 6 — Challenges and Future Prospects Sections
244
+ Trigger words: Despite its... faces challenges..., Despite these challenges,
245
+ Challenges and Legacy, Future Outlook, continues to thrive
246
+
247
+ Fix: Replace with specific concrete details.
248
+ Before: "Despite its prosperity, the city faces challenges typical of urban areas.
249
+ Despite these challenges, it continues to thrive."
250
+ After: "Traffic increased after three IT parks opened in 2015."
251
+
252
+ ---
253
+
254
+ ## LANGUAGE AND GRAMMAR PATTERNS
255
+
256
+ ### Pattern 7 — AI Vocabulary Words
257
+ Eliminate without exception (these are never Vivid's voice):
258
+ additionally, align with, crucial, delve, emphasizing, enduring, enhance, fostering,
259
+ garner, highlight (verb), interplay, intricate/intricacies, key (adjective),
260
+ landscape (abstract), pivotal, showcase, tapestry, testament, underscore (verb),
261
+ valuable, vibrant, nuanced, multifaceted, embark, realm, leverage (non-financial),
262
+ navigate (metaphor), journey (metaphor), unpack, holistic, synergy, transformative,
263
+ impactful, robust
264
+
265
+ Fix: Replace with plain, specific language or remove entirely.
266
+ Note: See Step 1 for Vivid's protected elevated vocabulary — different list, different purpose.
267
+
268
+ ---
269
+
270
+ ### Pattern 8 — Copula Avoidance
271
+ Trigger words: serves as, stands as, marks, represents [a], boasts, features, offers [a]
272
+
273
+ Fix: Replace with "is" / "are" / "has."
274
+ Before: "Gallery 825 serves as LAAA's exhibition space and boasts 3,000 square feet."
275
+ After: "Gallery 825 is LAAA's exhibition space. It has four rooms totaling 3,000 square feet."
276
+
277
+ ---
278
+
279
+ ### Pattern 9 — Negative Parallelisms (generic only — see Step 1 for protected)
280
+ Trigger: "Not only... but...", "It's not just about..., it's...", "Not merely X, but Y"
281
+
282
+ Fix for generic versions: flatten to a direct statement.
283
+ Before: "It's not just about networking; it's about building lasting relationships."
284
+ After: "The program helps people build professional relationships."
285
+
286
+ Note: Vivid's specific, grounded versions of this construction are PROTECTED (Step 1).
287
+
288
+ ---
289
+
290
+ ### Pattern 10 — Rule of Three Overuse (generic only — see Step 1 for protected)
291
+ Trigger: Any list of exactly three abstract parallel items.
292
+
293
+ Fix: Vary list length or convert to specific prose.
294
+ Before: "The event features keynote sessions, panel discussions, and networking opportunities."
295
+ After: "The event has talks and panels, with time between sessions for conversations."
296
+
297
+ Note: Vivid's earned parallel accumulations building to emotional peaks are PROTECTED (Step 1).
298
+
299
+ ---
300
+
301
+ ### Pattern 11 — Synonym Cycling
302
+ Trigger: Excessive synonym substitution to avoid repeating a word.
303
+
304
+ Fix: Repeat the word naturally.
305
+ Before: "The protagonist faces challenges. The main character must overcome obstacles.
306
+ The central figure triumphs. The hero returns home."
307
+ After: "The protagonist faces many challenges but eventually triumphs and returns home."
308
+
309
+ ---
310
+
311
+ ### Pattern 12 — False Ranges
312
+ Trigger: "from X to Y, from A to B" where items aren't on a meaningful scale.
313
+
314
+ Fix: Direct list or a single precise statement.
315
+ Before: "Our journey has taken us from the Big Bang to the cosmic web, from star birth
316
+ to the enigmatic dance of dark matter."
317
+ After: "The book covers the Big Bang, star formation, and current dark matter theories."
318
+
319
+ ---
320
+
321
+ ## STYLE PATTERNS
322
+
323
+ ### Pattern 13 — Em Dash Overuse (generic only — see Step 1 for protected)
324
+ Trigger: Em dashes used as default connectors, more than twice per page in explanatory prose.
325
+
326
+ Fix: Replace with commas, periods, or restructure.
327
+ Before: "The term is promoted by Dutch institutions—not by the people—even in official docs."
328
+ After: "The term is promoted by Dutch institutions, not by the people themselves."
329
+
330
+ Note: Vivid's emotionally weighted em dashes around significant phrases are PROTECTED (Step 1).
331
+
332
+ ---
333
+
334
+ ### Pattern 14 — Boldface Overuse
335
+ Trigger: Bold text applied to phrases mechanically throughout prose.
336
+
337
+ Fix: Remove all bold from narrative prose.
338
+ Before: "It blends **OKRs**, **KPIs**, and the **Business Model Canvas**."
339
+ After: "It blends OKRs, KPIs, and the Business Model Canvas."
340
+
341
+ ---
342
+
343
+ ### Pattern 15 — Inline-Header Lists
344
+ Trigger: Lists where each item opens with **Bolded Header:** followed by explanation.
345
+
346
+ Fix: Convert to flowing prose.
347
+ Before: "- **Performance:** Enhanced through optimized algorithms. - **Security:** Strengthened."
348
+ After: "The update speeds up load times through optimized algorithms and adds encryption."
349
+
350
+ ---
351
+
352
+ ### Pattern 16 — Title Case in Headings
353
+ Trigger: Headings where every main word is capitalized.
354
+
355
+ Fix: Sentence case throughout.
356
+ Before: "## Strategic Negotiations And Global Partnerships"
357
+ After: "## Strategic negotiations and global partnerships"
358
+
359
+ ---
360
+
361
+ ### Pattern 17 — Emojis
362
+ Trigger: Emojis decorating headings, bullet points, or section titles.
363
+
364
+ Fix: Remove all emojis from prose and headings.
365
+
366
+ ---
367
+
368
+ ### Pattern 18 — Curly Quotation Marks
369
+ Trigger: "Smart" curly quotes (" ") in running text.
370
+
371
+ Fix: Use straight quotes for manuscripts and plain text.
372
+
373
+ ---
374
+
375
+ ## COMMUNICATION PATTERNS
376
+
377
+ ### Pattern 19 — Collaborative Communication Artifacts
378
+ Trigger: I hope this helps, Of course!, Certainly!, You're absolutely right!, Would you like...,
379
+ let me know, here is a..., feel free to...
380
+
381
+ Fix: Strip entirely. Chatbot residue has no place in published prose.
382
+
383
+ ---
384
+
385
+ ### Pattern 20 — Knowledge-Cutoff Disclaimers
386
+ Trigger: "as of [date]," "up to my last training update," "while specific details are
387
+ limited," "based on available information"
388
+
389
+ Fix: Remove entirely from creative/narrative writing.
390
+
391
+ ---
392
+
393
+ ### Pattern 21 — Sycophantic Tone
394
+ Trigger: "Great question!", "You're absolutely right!", "That's an excellent point."
395
+
396
+ Fix: Start with the substance. Remove openers entirely.
397
+
398
+ ---
399
+
400
+ ## FILLER AND HEDGING
401
+
402
+ ### Pattern 22 — Filler Phrases
403
+ Replace immediately:
404
+ - "In order to" → "To"
405
+ - "Due to the fact that" → "Because"
406
+ - "At this point in time" → "Now"
407
+ - "In the event that" → "If"
408
+ - "Has the ability to" → "Can"
409
+ - "It is important to note that" → [delete]
410
+ - "At its core" → [delete]
411
+ - "In today's world" → [delete]
412
+ - "In conclusion" → [delete]
413
+ - "To summarize" → [delete]
414
+ - "It goes without saying" → [delete]
415
+ - "Needless to say" → [delete]
416
+
417
+ ---
418
+
419
+ ### Pattern 23 — Hedging Overload
420
+ Trigger: Multiple uncertainty qualifiers stacked.
421
+
422
+ Fix: Commit to the statement or cut it.
423
+ Before: "It could potentially possibly be argued that the policy might have some effect."
424
+ After: "The policy may affect outcomes."
425
+
426
+ ---
427
+
428
+ ### Pattern 24 — Generic Positive Conclusions
429
+ Trigger: Vague upbeat endings interchangeable across any article on any topic.
430
+
431
+ Fix: End with a specific fact, image, or observation.
432
+ Before: "The future looks bright. Exciting times ahead as they continue toward excellence."
433
+ After: "The company plans to open two more locations next year."
434
+
435
+ ---
436
+
437
+ ### Pattern 25 — Hyphenated Word Pair Overuse
438
+ Trigger pairs: third-party, cross-functional, client-facing, data-driven, decision-making,
439
+ well-known, high-quality, real-time, long-term, end-to-end
440
+
441
+ Fix: Drop hyphens on common pairs.
442
+ Before: "The cross-functional team delivered a high-quality, data-driven report."
443
+ After: "The cross functional team delivered a high quality, data driven report."
444
+
445
+ ---
446
+ ---
447
+
448
+ # STEP 3 — VIVID STYLE REWRITE
449
+
450
+ After stripping AI patterns from unprotected text, actively reshape prose toward Vivid's DNA.
451
+ This is not passive editing. This is targeted rewriting.
452
+
453
+ ---
454
+
455
+ ## TARGET VOICE: What Vivid Sounds Like
456
+
457
+ Extracted from *Master of Being Alone* — the source text for his embedded style.
458
+
459
+ **He leads with vulnerability, arrives at insight through pain.**
460
+ He never announces wisdom — the experience teaches it.
461
+ He is always in the process, never looking back from a place of arrival.
462
+
463
+ **He addresses the reader directly.**
464
+ "you," "my friend," rhetorical questions mid-thought.
465
+ Not as motivational device — as honest acknowledgment that the reader is in this too.
466
+
467
+ **He is honest about not knowing.**
468
+ Contradiction, ambiguity, and failure are not weaknesses in his writing — they're the point.
469
+
470
+ ---
471
+
472
+ ## STYLE DNA — APPLY ACTIVELY
473
+
474
+ ### Voice Targets
475
+ After stripping, check each paragraph:
476
+ - Does it sound like someone confessing, or someone presenting?
477
+ → If presenting: rewrite as confessing. First person. Present the mess.
478
+ - Does it arrive at the insight too quickly?
479
+ → Slow it down. Add the confusion, the wrong attempt, the cost.
480
+ - Does it state the truth flatly without earning it?
481
+ → Make the experience earn the conclusion.
482
+
483
+ ### Sentence Rhythm Targets
484
+ After stripping, scan paragraph by paragraph:
485
+ - Are all sentences similar length? → Vary them. Break one long sentence into two.
486
+ Add one very short sentence after a long accumulation.
487
+ - Are there no short punchy sentences? → Add them. Land a blow.
488
+ "It didn't work." / "I failed every time." / "That was the thing."
489
+ - Are rhetorical questions missing? → Add one as a pivot where the insight turns.
490
+ "But what does that actually mean?" / "Why does that cut so deep?"
491
+
492
+ ### Paragraph Targets
493
+ Each paragraph should have ONE central beat — one insight or one emotional moment.
494
+ After stripping:
495
+ - Does this paragraph have two separate beats? → Split it.
496
+ - Does this paragraph have no clear beat? → It's filler. Remove or merge.
497
+ - Does this paragraph restate the previous one? → Cut it.
498
+
499
+ ### Imagery Targets
500
+ After stripping, check every abstract emotional claim:
501
+ "He felt lonely" → give it a physical sensation
502
+ "She was angry" → map it to the body
503
+ "The silence felt heavy" → be more specific than "heavy"
504
+
505
+ Vivid's method: name where in the body the feeling lives, what it does physically.
506
+ - "pressed down on my chest"
507
+ - "a hand around my throat that released one finger at a time"
508
+ - "the kind of tired where even your eyes feel too heavy for your face"
509
+
510
+ If a paragraph has no physical imagery → add one grounded image.
511
+
512
+ ### Arc Targets
513
+ Every section of prose (not just full chapters) should have micro-movement:
514
+ enter the experience → something shifts → land somewhere different than where you started.
515
+
516
+ If a passage just states things without moving → add the movement.
517
+ Show what it cost. Show the wrong turn. Show the moment something changed.
518
+
519
+ ---
520
+
521
+ ## REWRITE TECHNIQUES (apply as needed)
522
+
523
+ **Technique 1 — Confession Opening**
524
+ If a section opens with a general claim, rewrite to open with a personal scene or admission.
525
+ Before: "Loneliness is a universal experience that affects people of all backgrounds."
526
+ After: "I didn't understand loneliness when I was younger. I thought it was something
527
+ that happened to other people."
528
+
529
+ **Technique 2 — Slow the Arc**
530
+ If pain → insight happens in under 3 paragraphs, insert a middle section:
531
+ - What did they try first? (the wrong attempt)
532
+ - Why didn't it work?
533
+ - What did that feel like?
534
+ Only after that does the insight arrive.
535
+
536
+ **Technique 3 — Ground the Abstract**
537
+ If a paragraph is making abstract philosophical claims without grounding:
538
+ Add one specific personal detail before the claim.
539
+ After the claim, add one physical image that embodies it.
540
+
541
+ **Technique 4 — Punch Landing**
542
+ If a paragraph ends on a soft or vague note, replace with one short, direct sentence.
543
+ Before: "...and over time, I began to understand that things could be different."
544
+ After: "...and over time, I began to understand that I had been waiting for someone
545
+ who was never coming. That was the first honest thing I'd thought in months."
546
+
547
+ **Technique 5 — Reader Address**
548
+ If a "My Reflection" section has been in pure "I" voice too long, shift to "you"
549
+ for one paragraph to bring the reader directly into the insight.
550
+ "You know the feeling. You've done it too..."
551
+
552
+ **Technique 6 — The Reframe Close**
553
+ If a section ends with a summary, replace with a reframe — one sentence that
554
+ makes the reader see everything that came before it differently.
555
+ Before: "So that's why loneliness hurts — because we need connection to survive."
556
+ After: "The loneliness wasn't a flaw. It was a question life was asking: who are you
557
+ when no one is watching?"
558
+
559
+ ---
560
+ ---
561
+
562
+ # STEP 4 — SELF-AUDIT
563
+
564
+ Ask internally: *"What makes this still obviously AI-generated or generic?"*
565
+
566
+ Check specifically:
567
+ - [ ] Is the rhythm too tidy? (clean contrasts, evenly paced paragraphs, no variation)
568
+ - [ ] Are there still no opinions — only neutral reporting?
569
+ - [ ] Does any section feel like it could close any article on any topic?
570
+ - [ ] Is the author above the experience rather than inside it?
571
+ - [ ] Are any metaphors still recycled? (journey, storm, turning point, crossroads)
572
+ - [ ] Does the opening still drop the reader into the experience? Re-read it cold.
573
+ - [ ] Does the closing reframe — or does it summarize?
574
+ - [ ] Does this sound like Vivid — or just like "good human writing"?
575
+
576
+ That last check is critical. Generic human writing is not the target. His writing is.
577
+
578
+ Fix all remaining tells before finalizing.
579
+
580
+ ---
581
+ ---
582
+
583
+ # STEP 5 — OUTPUT FORMAT
584
+
585
+ Deliver in this order:
586
+
587
+ **1. Draft rewrite**
588
+ After Steps 1–2 (DNA protection + pattern elimination). Not yet fully shaped toward DNA.
589
+
590
+ **2. Self-audit bullets**
591
+ What still reads as AI or generic. Specific, honest, brief.
592
+
593
+ **3. Final version**
594
+ After Step 3 (Vivid style rewrite) + Step 4 (self-audit fixes).
595
+ This is the deliverable.
596
+
597
+ **4. Changes summary**
598
+ Three categories:
599
+ - Stripped: what AI patterns were removed
600
+ - Protected: what Vivid constructions were kept
601
+ - Added: what style DNA was actively injected
602
+
603
+ ---
604
+ ---
605
+
606
+ # REFERENCE — VIVID'S STYLE AT A GLANCE
607
+
608
+ | Dimension | What to do |
609
+ |-----------|-----------|
610
+ | Voice | Confessional, first-person, inside the experience — never above it |
611
+ | Sentence rhythm | Vary length deliberately. Short sentences land blows. Long ones build and release. |
612
+ | Paragraphs | One beat each. No filler. No restatement. |
613
+ | Metaphors | Physical, grounded, specific to the body and the experience |
614
+ | Arc | Enter pain → wrong attempt → realization → perspective shift → reframe close |
615
+ | Chapter opening | Scene, confession, or question. Never a definition or "In today's world." |
616
+ | Chapter closing | One sentence that reframes. Never a summary. |
617
+ | Reader address | Direct "you" in reflection sections. Rhetorical questions as pivots. |
618
+ | Vocabulary | Elevated but earned. Never decorative. |
619
+ | Philosophy | Embodied, not academic. Arrived at through experience. |
620
+
621
+ ---
622
+
623
+ ## PROTECTED vs. STRIPPED — QUICK REFERENCE
624
+
625
+ | Construction | Protected if... | Strip if... |
626
+ |---|---|---|
627
+ | "Not X, but Y" | Concrete + grounded in experience | Abstract + interchangeable |
628
+ | Parallel phrases | Building to emotional peak, specific items | Generic list dressed as rhetoric |
629
+ | Em dashes | Around emotionally significant phrase | Connecting clauses with no weight |
630
+ | Elevated vocabulary | Naming a specific felt experience | Decorating a generic claim |
631
+ | Physical imagery | Specific, grounded, original | Recycled (journey, storm, burden) |
632
+ | Signature phrases | Vivid's known voice markers | N/A — always protect these |