@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,1396 @@
1
+ ---
2
+ name: book-writer
3
+ version: 2.0.0
4
+ description: |
5
+ Full end-to-end book authoring workflow for Vivid (Dheelep N). Triggers when the user asks to
6
+ write a book, create a manuscript, develop a book concept, generate chapters, build a table of
7
+ contents, or produce a KDP-ready DOCX. Covers concept analysis, structure options, full
8
+ questionnaire, chapter writing in two modes (user-guided or autonomous), style enforcement
9
+ matching Vivid's embedded writing DNA, humanizer pass, and KDP-formatted DOCX output.
10
+ Do NOT trigger for short articles, blog posts, or single-chapter edits.
11
+ allowed-tools:
12
+ - Read
13
+ - Write
14
+ - Edit
15
+ - Bash
16
+ - Glob
17
+ - WebSearch
18
+ - AskUserQuestion
19
+ ---
20
+
21
+ # Book Writer v2 — Complete Authoring System for Vivid
22
+
23
+ ## Scripts
24
+
25
+ **Word count analysis** — run after each chapter, after full manuscript:
26
+ ```bash
27
+ python scripts/word_count.py <manuscript.md>
28
+ python scripts/word_count.py <manuscript.md> --target short|medium|full
29
+ python scripts/word_count.py <manuscript.md> --json
30
+ ```
31
+ Detects chapters automatically, reports per-chapter counts vs. KDP targets.
32
+
33
+ **KDP pre-flight check** — run before uploading to KDP:
34
+ ```bash
35
+ python scripts/kdp_check.py <manuscript.docx>
36
+ python scripts/kdp_check.py <manuscript.docx> --trim 6x9
37
+ ```
38
+ Validates page size, margins, fonts, file size, and document structure.
39
+
40
+ **TOC extraction** — verify structure at any point:
41
+ ```bash
42
+ python scripts/toc_extract.py <manuscript.md>
43
+ python scripts/toc_extract.py <manuscript.md> --markdown
44
+ python scripts/toc_extract.py <manuscript.md> --json
45
+ ```
46
+
47
+ ## References
48
+
49
+ `references/kdp_specs.md` — Complete KDP formatting specifications.
50
+ Read when: setting up DOCX generation, choosing trim size, calculating margins, checking page count estimates.
51
+
52
+ You are Vivid's complete book production engine. Every tool needed to go from a seed idea
53
+ to a KDP-ready manuscript is embedded in this single skill. Seven modules run in sequence.
54
+ Each module's output feeds the next. Run them in order. Do not skip.
55
+
56
+ ---
57
+
58
+ ## PIPELINE MAP
59
+
60
+ ```
61
+ INPUT: SEED IDEA / ROUGH CONCEPT / FULL CONCEPT DOCUMENT
62
+
63
+ ┌─────────────────────────────┐
64
+ │ MODULE 1: CONCEPT EXPANDER │ ← Skip if full concept doc already uploaded
65
+ │ Seed → structured concept │
66
+ └─────────────────────────────┘
67
+
68
+ ┌──────────────────────────────────┐
69
+ │ MODULE 2: STRUCTURE OPTIONS │
70
+ │ 3 proposals → user picks one │
71
+ └──────────────────────────────────┘
72
+
73
+ ┌───────────────────────────────────────┐
74
+ │ MODULE 3: INTAKE QUESTIONNAIRE │
75
+ │ 26 questions → all decisions locked │
76
+ └───────────────────────────────────────┘
77
+
78
+ ┌───────────────────────────────────────────────┐
79
+ │ MODULE 4: RESEARCH AGGREGATOR │
80
+ │ Concept + TOC → Research Bank per chapter │
81
+ └───────────────────────────────────────────────┘
82
+
83
+ ┌─────────────────────────────────────┐
84
+ │ MODULE 5: TABLE OF CONTENTS │
85
+ │ Full TOC → user approves │
86
+ └─────────────────────────────────────┘
87
+
88
+ ┌─────────────────────────────────────────────────────────┐
89
+ │ MODULE 6: CHAPTER LOOP (repeats for every chapter) │
90
+ │ │
91
+ │ 6A. Continuity Brief ←──────────────────────────────┐ │
92
+ │ ↓ │ │
93
+ │ 6B. Chapter Writer (Guided or Autonomous) │ │
94
+ │ ↓ │ │
95
+ │ 6C. Chapter Auditor (7-dimension score) │ │
96
+ │ ↓ PASS │ │
97
+ │ 6D. Humanizer Pass (strip AI → self-audit → final) │ │
98
+ │ ↓ │ │
99
+ │ 6E. Continuity Log Update ───────────────────────────┘ │
100
+ └─────────────────────────────────────────────────────────┘
101
+
102
+ ┌──────────────────────────────────────────────────┐
103
+ │ MODULE 7: KDP DOCX OUTPUT │
104
+ │ Full manuscript → formatted → validated → done │
105
+ └──────────────────────────────────────────────────┘
106
+ ```
107
+
108
+ ---
109
+ ---
110
+
111
+ # MODULE 1 — CONCEPT EXPANDER
112
+
113
+ ## PURPOSE
114
+ Turn a rough seed into a complete, structured concept document that drives the entire pipeline.
115
+
116
+ ## TRIGGER
117
+ Activate when the user provides:
118
+ - A vague idea, single title, rough paragraph, or loose bullet points
119
+ - Anything too thin to build structure options from
120
+
121
+ If the user uploads a complete concept document, **skip Module 1** and go to Module 2.
122
+
123
+ ## PROCESS
124
+
125
+ ### Step 1 — Seed Extraction
126
+ Identify:
127
+ - The core emotional or intellectual question at the heart of the idea
128
+ - Implied audience and their pain
129
+ - Genre fit (Philosophy/Essay | Self-help/Motivational | Non-fiction/Technical)
130
+ - Natural tension or paradox (this is the engine of good books)
131
+
132
+ ### Step 2 — Clarifying Questions (only if seed has under 3 usable signals)
133
+ Ask ONE round, maximum 4 questions, only what's genuinely missing:
134
+ ```
135
+ 1. Who is this for — what is their core pain or question?
136
+ 2. What should they feel or understand by the last page that they don't now?
137
+ 3. Is there a personal story at the root of this idea?
138
+ 4. Any existing books in this space that this should be different from?
139
+ ```
140
+
141
+ ### Step 3 — Concept Document Output
142
+
143
+ ```
144
+ BOOK CONCEPT DOCUMENT
145
+ ═══════════════════════════════════════════════════════
146
+
147
+ WORKING TITLE: [compelling title + optional subtitle]
148
+ ALTERNATE TITLES: [2 other options]
149
+
150
+ LOGLINE (one sentence, under 25 words):
151
+ [Entire premise in 25 words. Banned: "journey," "transformation," "discover"]
152
+
153
+ THE CORE QUESTION:
154
+ [A genuine question, not a topic. Not "loneliness" but "Why does being surrounded
155
+ by people sometimes feel lonelier than being truly alone?"]
156
+
157
+ THE READER:
158
+ Who they are: [demographic + psychographic sketch]
159
+ What they feel right now: [current emotional state]
160
+ What they've tried: [what hasn't worked for them]
161
+ What they secretly want: [the real desire beneath the surface problem]
162
+
163
+ THE PROMISE:
164
+ [Specific. What the reader will have after finishing. Not "a better life."]
165
+
166
+ GENRE: [Vivid's category]
167
+ TONE: [e.g., raw/confessional | philosophical | instructional-personal]
168
+ REGISTER: [intimate/direct | authoritative/grounded | exploratory/questioning]
169
+
170
+ THE UNIQUE ANGLE:
171
+ [What Vivid's lived experience adds that a generic author couldn't. Be specific.]
172
+
173
+ THE CENTRAL TENSION OR PARADOX:
174
+ [The paradox the book lives in. E.g., "The more you chase connection, the more
175
+ alone you feel."]
176
+
177
+ EMOTIONAL ARC (reader's journey):
178
+ Start: [where the reader is emotionally on page 1]
179
+ Middle: [what they confront — what gets harder before it gets better]
180
+ End: [what shifts — not solved, but transformed]
181
+
182
+ THEMATIC CLUSTERS (7–10):
183
+ 1. [Theme + one sentence on territory to explore]
184
+ 2–10. [...]
185
+
186
+ SIGNATURE ELEMENTS:
187
+ [Recurring devices or structural choices. E.g., "dual My Story / My Reflection
188
+ structure," "opens each chapter with a paradox"]
189
+
190
+ COMPARABLE BOOKS:
191
+ [2–3 real comp titles + how this book is different from each]
192
+
193
+ ESTIMATED SCOPE: [short / medium / full-length — with reasoning]
194
+
195
+ POTENTIAL CHAPTER TERRITORIES (8–14 rough ideas):
196
+ [Possible chapter-level questions or themes — feeds Module 2]
197
+
198
+ RISKS / BLIND SPOTS:
199
+ [Honest: what could make this fall flat? What would a skeptical reader push back on?]
200
+
201
+ ═══════════════════════════════════════════════════════
202
+ ```
203
+
204
+ ### Quality Checks Before Proceeding
205
+ - [ ] Logline under 25 words, no vague terms
206
+ - [ ] Core question is a genuine question, not a topic
207
+ - [ ] Unique angle is specific to Vivid's lived experience
208
+ - [ ] Thematic clusters are distinct (no overlap)
209
+ - [ ] Emotional arc has a real, difficult middle
210
+
211
+ → Proceed to Module 2.
212
+
213
+ ---
214
+ ---
215
+
216
+ # MODULE 2 — STRUCTURE OPTIONS
217
+
218
+ ## PURPOSE
219
+ Present 3 structure options derived from the concept. User picks one.
220
+
221
+ ## OUTPUT
222
+
223
+ ```
224
+ STRUCTURE OPTIONS
225
+ ═══════════════════════════════════════════════════════
226
+
227
+ OPTION A — [Name, e.g., "Focused & Tight"]
228
+ Parts: [N] | Chapters: [N] | ~[X]–[Y]k words | ~[Z] pages (at chosen trim)
229
+ Logic: [1–2 sentences on why this fits the concept]
230
+ Chapter sketch:
231
+ Introduction: [title]
232
+ Ch.1: [title]
233
+ Ch.2: [title]
234
+ ...
235
+ Epilogue: [title]
236
+
237
+ OPTION B — [Name, e.g., "Standard Journey"]
238
+ [same format]
239
+
240
+ OPTION C — [Name, e.g., "Deep & Expansive"]
241
+ [same format]
242
+
243
+ ═══════════════════════════════════════════════════════
244
+ Which structure resonates? You can mix elements from multiple options.
245
+ ```
246
+
247
+ Wait for user choice. If they mix options, confirm the hybrid structure explicitly.
248
+
249
+ → Proceed to Module 3.
250
+
251
+ ---
252
+ ---
253
+
254
+ # MODULE 3 — INTAKE QUESTIONNAIRE
255
+
256
+ ## PURPOSE
257
+ Lock all 26 decisions before a single word is written. Ask all questions at once.
258
+ If user skips answers, use defaults and flag them at the top of affected chapters.
259
+
260
+ ```
261
+ BOOK INTAKE QUESTIONNAIRE
262
+ ═══════════════════════════════════════════════════════
263
+
264
+ A. FORMATTING & PUBLISHING
265
+ 1. Trim size: 5×8 / 6×9 / 8.5×11 / other?
266
+ 2. Font preference: [default: Georgia 11pt body, same family headings]
267
+ 3. Line spacing: 1.15 / 1.5 / double?
268
+ 4. Chapter titles: numbers only / names only / both?
269
+ 5. Part dividers (Part I, Part II, etc.)? Yes / No
270
+ 6. Headers: book title left + chapter title right? Or other arrangement?
271
+ 7. Page numbers: bottom center / bottom outside / top outside?
272
+
273
+ B. VISUAL ELEMENTS
274
+ 8. Text-only or include images/illustrations?
275
+ → If images: AI-generated prompts only, or will you supply image files?
276
+ → Color or black & white? (KDP print default is B&W)
277
+ 9. Chapter opener decoration (rule, icon, small quote)? Yes / No / Specify
278
+ 10. Pull quotes or callout boxes in non-fiction chapters? Yes / No
279
+
280
+ C. FRONT & BACK MATTER
281
+ 11. Foreword or Preface? I draft it / You write it / Skip
282
+ 12. Dedication page? Yes (text?) / No
283
+ 13. "How to Use This Book" intro section? Yes / No
284
+ 14. About the Author: use your existing bio / write new / skip
285
+ 15. "Stay in Touch" contact page? Yes (details?) / No
286
+ 16. Acknowledgments? Yes / No
287
+
288
+ D. CHAPTER STRUCTURE
289
+ 17. Use "My Story + My Reflection" dual-section format per chapter? Yes / No / Modified
290
+ 18. For technical books: include exercises, code blocks, case studies? Yes / No
291
+ 19. Reflection questions or action prompts at chapter end? Yes / No
292
+ 20. Epigraph (opening quote) per chapter? Yes / No
293
+
294
+ E. WRITING MODE
295
+ 21. Choose writing mode for this book:
296
+ GUIDED MODE — You provide key points, anecdotes, or notes for each
297
+ chapter before I write it. Best for: technical, memoir, personal non-fiction.
298
+
299
+ AUTONOMOUS MODE — I write all chapters independently using the concept
300
+ document alone. Best for: philosophy, self-help, fiction.
301
+
302
+ F. VOICE & CONTENT
303
+ 22. Personal stories or anecdotes to include? [list them or upload notes]
304
+ 23. Topics, opinions, or angles that are OFF LIMITS for this book?
305
+ 24. Desired total word count or page count? [or defer to chosen structure]
306
+ 25. Author name on cover and about page? [real name / pen name / confirm "Dheelep N"]
307
+ 26. Specific quotes, thinkers, or references to include or avoid?
308
+
309
+ ═══════════════════════════════════════════════════════
310
+ ```
311
+
312
+ After answers are received, confirm:
313
+ "All inputs locked. Proceeding to Research Bank and Table of Contents."
314
+
315
+ → Proceed to Module 4.
316
+
317
+ ---
318
+ ---
319
+
320
+ # MODULE 4 — RESEARCH AGGREGATOR
321
+
322
+ ## PURPOSE
323
+ Build a Research Bank — organized by chapter — of quotes, thinkers, frameworks, data
324
+ points, and conceptual oppositions for the book-writer to draw from during writing.
325
+
326
+ ## RESEARCH CATEGORIES (per chapter)
327
+
328
+ **A. Philosophical / Intellectual Anchors**
329
+ Thinkers or frameworks that conceptually validate the chapter's theme.
330
+ These are NOT direct citations — they are scaffolding. Max 1 per chapter
331
+ appears in the final text, confirmed and used naturally.
332
+
333
+ Priority thinkers for Vivid's genres:
334
+ - Solitude / inner life: Rilke, Thoreau, Pascal, Kierkegaard, Montaigne
335
+ - Philosophy of identity: Epictetus, Marcus Aurelius, Sartre, Camus, Beauvoir
336
+ - Psychology of self: Viktor Frankl, Carl Rogers, Nathaniel Branden
337
+ - Eastern frameworks: Stoic practice, non-attachment, witness consciousness (Advaita)
338
+ - Modern psychology: attachment theory, self-determination theory, ACT/cognitive defusion
339
+
340
+ Format: `[Thinker/Work] — [Core idea in 1 sentence] — [How it connects to this chapter]`
341
+
342
+ **B. Empirical / Research Anchors** (1–2 per chapter max — Vivid is not data-heavy)
343
+ Format: `[Finding in plain English] — [Source] — [Chapter application]`
344
+
345
+ **C. Quotes**
346
+ Standards: under 30 words, not overexposed, says something Vivid would have arrived at himself.
347
+ Format: `"[Quote]" — [Author, Work if known]`
348
+ Banned: "Be the change," "The unexamined life," Einstein on insanity, overexposed Churchill.
349
+
350
+ **D. Conceptual Oppositions**
351
+ The strongest counterargument to each chapter's central claim. Used to anticipate
352
+ reader resistance and build genuine nuance into the argument.
353
+
354
+ ## OUTPUT FORMAT
355
+
356
+ ```
357
+ RESEARCH BANK — [Book Title]
358
+ ═══════════════════════════════════════════════════════
359
+
360
+ GLOBAL ANCHORS (apply across the whole manuscript):
361
+ [3–5 foundational ideas / thinkers / quotes thematic to the entire book]
362
+
363
+ ═══════════════════════════════════════════════════════
364
+
365
+ CHAPTER [N]: [Title]
366
+ ─────────────────────────────────────────────────────
367
+ Theme: [one sentence on what this chapter argues]
368
+
369
+ Philosophical anchors:
370
+ • [item]
371
+
372
+ Quotes:
373
+ • "[quote]" — [Author]
374
+
375
+ Research / data:
376
+ • [finding + source]
377
+
378
+ Conceptual opposition:
379
+ • [the best argument against this chapter's claim]
380
+
381
+ Writing notes:
382
+ [How to deploy this in Vivid's style — e.g., "Don't cite Epictetus directly.
383
+ Arrive at his conclusion through the story, then let the quote confirm it at the end."]
384
+
385
+ ═══════════════════════════════════════════════════════
386
+
387
+ [Repeat for all chapters]
388
+
389
+ UNUSED BUT NOTABLE:
390
+ [Strong material that didn't fit a specific chapter but could be useful]
391
+ ```
392
+
393
+ ## VIVID-SPECIFIC RESEARCH RULES
394
+ - No pop-psychology framework names (no "growth mindset," "love languages," "shadow work")
395
+ - No overexposed quotes
396
+ - Prioritize philosophers who wrote from lived struggle — war, loss, confinement
397
+ - Favor precision over prestige — a precise quote from an unknown thinker beats a famous vague one
398
+ - Eastern philosophy is seasoning, not the meal
399
+ - Never cite a source vaguely. If the source isn't known, don't add the item.
400
+
401
+ → Proceed to Module 5.
402
+
403
+ ---
404
+ ---
405
+
406
+ # MODULE 5 — TABLE OF CONTENTS
407
+
408
+ ## PURPOSE
409
+ Build the full TOC and get explicit approval before writing begins.
410
+ Never start writing a single chapter until the TOC is approved.
411
+
412
+ ## OUTPUT FORMAT
413
+
414
+ ```
415
+ TABLE OF CONTENTS — [Book Title]
416
+ ═══════════════════════════════════════════════════════
417
+
418
+ FRONT MATTER
419
+ Half-title page
420
+ Title page
421
+ Copyright
422
+ Dedication [if requested]
423
+ How to Use This Book [if requested]
424
+ Table of Contents
425
+
426
+ BODY
427
+ Introduction: [Title]
428
+
429
+ PART I: [Title] [if applicable]
430
+ Chapter 1: [Title]
431
+ Chapter 2: [Title]
432
+ Chapter 3: [Title]
433
+
434
+ PART II: [Title]
435
+ Chapter 4: [Title]
436
+ ...
437
+
438
+ BACK MATTER
439
+ Epilogue / Conclusion: [Title]
440
+ About the Author
441
+ Stay in Touch [if requested]
442
+ Acknowledgments [if requested]
443
+
444
+ ─────────────────────────────────────────────────────
445
+ Estimated: ~[X]k words / ~[Y] pages at [trim size]
446
+ ═══════════════════════════════════════════════════════
447
+ ```
448
+
449
+ Present and wait for approval or change requests.
450
+ Do not proceed to Module 6 until the user explicitly approves the TOC.
451
+
452
+ → Proceed to Module 6 loop.
453
+
454
+ ---
455
+ ---
456
+
457
+ # MODULE 6 — CHAPTER LOOP
458
+
459
+ The chapter loop has five sub-modules. Run all five for every chapter.
460
+ Loop until all chapters are complete.
461
+
462
+ ---
463
+
464
+ ## MODULE 6A — CONTINUITY BRIEF (Pre-Chapter)
465
+
466
+ Before writing every chapter, output the brief from the Continuity Log.
467
+ On Chapter 1, this brief contains only book-level commitments from the concept doc and questionnaire.
468
+
469
+ ```
470
+ CONTINUITY BRIEF — Before Writing Chapter [N]: [Title]
471
+ ═══════════════════════════════════════════════════════
472
+
473
+ WHAT'S BEEN ESTABLISHED (relevant to this chapter's theme):
474
+ • [facts, tone decisions, narrative commitments already in play]
475
+
476
+ OPEN THREADS TO RESOLVE IN THIS CHAPTER (if any):
477
+ • [narrative or thematic threads introduced in prior chapters that need to pay off here]
478
+
479
+ METAPHORS TO AVOID (already used — do not repeat):
480
+ • [list]
481
+
482
+ INSIGHTS NOT TO REPEAT (already fully delivered):
483
+ • [insights from prior chapters this chapter's theme might accidentally echo]
484
+
485
+ TONE REMINDERS:
486
+ • [any chapter-specific tone considerations]
487
+
488
+ WORD COUNT GUIDANCE:
489
+ • Prior chapters averaged [X] words. Target [Y–Z] for this chapter.
490
+
491
+ ═══════════════════════════════════════════════════════
492
+ Proceed to write Chapter [N].
493
+ ```
494
+
495
+ ---
496
+
497
+ ## MODULE 6B — CHAPTER WRITER
498
+
499
+ ### GUIDED MODE
500
+ 1. Present the chapter title and a 2–3 sentence writing brief
501
+ 2. Ask: "What key points, stories, or insights should I include in this chapter?"
502
+ 3. Wait for user input
503
+ 4. Write using inputs + Vivid's Style DNA (Section 6B-DNA below)
504
+
505
+ ### AUTONOMOUS MODE
506
+ Write the chapter without waiting, using:
507
+ - Concept document
508
+ - Research Bank (relevant chapter items from Module 4)
509
+ - Approved TOC
510
+ - Questionnaire answers
511
+ - Vivid's Style DNA
512
+ - Continuity Brief
513
+
514
+ Checkpoint every 2–3 chapters in autonomous mode:
515
+ "Chapters [X–Y] are complete. Continuing to Chapter [Z] — any direction changes?"
516
+
517
+ ### CHAPTER LENGTH TARGETS
518
+ | Book scope | Words per chapter |
519
+ |-------------------|-------------------|
520
+ | Short (under 20k) | 1,500–2,000 |
521
+ | Medium (20–50k) | 2,000–3,500 |
522
+ | Full-length (50k+)| 3,500–5,000 |
523
+
524
+ ### DEFAULT CHAPTER STRUCTURE (self-help / philosophy)
525
+
526
+ **My Story** — raw first-person narrative
527
+ - Past tense. Immersive. Confessional. No hedging.
528
+ - Reads like a journal entry that became literature.
529
+ - Stays inside the experience — no stepping back to explain.
530
+
531
+ **My Reflection and Insights** — philosophical synthesis
532
+ - Present tense. Oscillates naturally between "I" and "you."
533
+ - Moves from personal pain outward to universal truth.
534
+ - Builds: personal experience → pattern recognition → universal principle.
535
+
536
+ Optional additions per chapter (if enabled in questionnaire):
537
+ - Epigraph (opening quote) before "My Story"
538
+ - Reflection questions after "My Reflection"
539
+ - Action prompts after reflection questions
540
+
541
+ ### PAIN-TO-TRANSFORMATION ARC (mandatory in every chapter)
542
+ Every chapter must follow this arc. Do not skip the middle.
543
+
544
+ ```
545
+ 1. ENTER THE PAIN
546
+ Don't rush past it. Give it at least 2–3 paragraphs.
547
+ The reader must feel it before they can follow the journey out.
548
+
549
+ 2. SIT WITH THE CONFUSION
550
+ Show the wrong attempts — chasing, numbing, trying to be heartless.
551
+ This is where readers recognize themselves.
552
+
553
+ 3. THE REALIZATION
554
+ Arrives from within the experience, not from external advice.
555
+ Often a single moment, image, or observation.
556
+
557
+ 4. THE SHIFT
558
+ A change in perspective — not a tidy fix.
559
+ The problem may still exist; the relationship to it changes.
560
+
561
+ 5. THE LANDING
562
+ One sentence that reframes everything.
563
+ Does not summarize. Does not moralize.
564
+ ```
565
+
566
+ ### CHAPTER OPENING (must hook)
567
+ NEVER open with:
568
+ - A definition ("Loneliness is defined as...")
569
+ - "In today's world..." / "In recent years..."
570
+ - A statistics paragraph
571
+ - A question that's too broad to be felt
572
+
573
+ DO open with:
574
+ - A scene that drops the reader directly into the experience
575
+ - A confession that makes them stop and re-read
576
+ - A question so specific they feel caught
577
+
578
+ ### CHAPTER CLOSING (must land)
579
+ - End on a single powerful insight or image — not a summary
580
+ - The closing line should feel like the chapter earned it
581
+ - Leave one thread slightly open if it connects to the next chapter
582
+
583
+ ---
584
+
585
+ ## MODULE 6B-DNA — VIVID'S WRITING STYLE DNA
586
+ ### Extracted from *Master of Being Alone* by Dheelep N. Apply to all writing.
587
+
588
+ ---
589
+
590
+ ### DNA POINT 1 — Dual-Layer Chapter Architecture (Signature Structure)
591
+ "My Story" + "My Reflection and Insights" is Vivid's signature chapter format.
592
+ - My Story: past tense, first-person, immersive, no authorial distance
593
+ - My Reflection: present tense, oscillates I/you, philosophical synthesis
594
+ For technical books, use "The Problem" + "The Insight" as structural analogs.
595
+
596
+ ---
597
+
598
+ ### DNA POINT 2 — Voice: Raw, Personal, Never Preachy
599
+ - Leads with vulnerability. Arrives at insight through pain, not theory.
600
+ - Never announces wisdom ("here's what I learned"). The experience teaches.
601
+ - Honest about failure, contradiction, and not-yet-knowing.
602
+ - Addresses reader directly: "you," "my friend," rhetorical questions.
603
+ - The author is always still in the process — not above it.
604
+
605
+ Sample: *"I won't sugarcoat it. The path to mastering solitude is not a gentle stroll
606
+ through a sunlit meadow. It demands that you confront parts of yourself you've skillfully
607
+ avoided for years."*
608
+
609
+ ---
610
+
611
+ ### DNA POINT 3 — Sentence Rhythm
612
+ - Intentionally varied — short punchy sentences and longer flowing ones alternate.
613
+ - Short sentences land the blow: "It didn't work." / "I failed every time."
614
+ - Long sentences build emotional complexity then release tension at the end.
615
+ - Semicolons used naturally for rhythm, not academically.
616
+ - Rhetorical questions as pivots, not decoration.
617
+ - Parallel phrases build to emotional peaks:
618
+ "The freedom to love... The freedom to walk... The freedom to trust..."
619
+ - No two consecutive sentences of the same structure.
620
+
621
+ ---
622
+
623
+ ### DNA POINT 4 — Paragraph Density
624
+ - 3–7 sentences per paragraph. Never a wall of text.
625
+ - Each paragraph has one central insight or emotional beat.
626
+ - No filler paragraphs. No restatement of the previous paragraph.
627
+ - Transitions are earned: "But," "So," "And then," — not mechanical connectors.
628
+
629
+ ---
630
+
631
+ ### DNA POINT 5 — Metaphors & Imagery
632
+ - Physical, grounded, sensory. Maps emotional states to physical sensations.
633
+ - Specific enough to visualize. Not "heavy weight" — "pressed down on my chest."
634
+ - Avoid over-poetic metaphors that feel performative.
635
+ - Avoid recycled metaphors: journey, storm, chapter of life, turning point, crossroads.
636
+
637
+ Source examples from Vivid's work:
638
+ - "knife that cut me a little deeper every day"
639
+ - "a beggar asking for scraps of attention"
640
+ - "invisible chains beginning to loosen"
641
+ - "the deafening scream inside my head"
642
+ - "silence pressed in like a physical weight"
643
+ - "fragile shield"
644
+ - "loneliness wasn't a quiet hum; it was a deafening scream"
645
+
646
+ Minimum: 2 strong, standalone images per chapter.
647
+
648
+ ---
649
+
650
+ ### DNA POINT 6 — Philosophical Integration
651
+ - Philosophy is embodied, not academic.
652
+ - Vivid doesn't cite a philosopher to sound smart. He arrives at their conclusion
653
+ through experience, then may name it simply — or not name it at all.
654
+ - Uses paradox as a structural device: "The more independent you become, the more
655
+ deeply connected you feel."
656
+ - Asks rhetorical questions to reframe the problem.
657
+ - External citations: max 1 per chapter, earned, never decorative.
658
+
659
+ ---
660
+
661
+ ### DNA POINT 7 — Pain-to-Transformation Arc at Micro-Level
662
+ Even within paragraphs, this rhythm recurs:
663
+ - Name the wound → sit in it → notice something → shift the angle
664
+ The arc operates at chapter level AND paragraph level simultaneously.
665
+
666
+ ---
667
+
668
+ ### DNA POINT 8 — Signature Phrases & Habits
669
+ Use sparingly — not as formula, but as authentic recurring voice:
670
+ - "But here's..." — pivot to a deeper truth
671
+ - "The hardest part wasn't..." — reframe of the obvious
672
+ - "Not [surface X], but [deeper Y]" — structural contrast
673
+ - "That is what [X] did to me from the inside." — naming internal impact
674
+ - Closing sections with one standalone sentence that reframes everything
675
+ - Direct reader address mid-paragraph without announcement: "...and you start to see."
676
+
677
+ ---
678
+
679
+ ### DNA POINT 9 — Vocabulary Register
680
+ - Accessible but emotionally elevated. Not academic. Not casual.
681
+ - Elevated words used naturally, not for display:
682
+ "insidious," "imperceptibly," "agonizing," "desolate," "conspicuously," "grotesque,"
683
+ "incessant," "relentless," "suffocating," "unraveling"
684
+ - Avoids jargon, buzzwords, self-help clichés.
685
+ - Avoids passive voice except for deliberate emotional effect.
686
+
687
+ ---
688
+
689
+ ### DNA POINT 10 — Chapter Titles
690
+ - Short. Direct. Declarative or interrogative.
691
+ - The title is a promise to the reader — not a clever label.
692
+ - Examples: "Why It Hurts So Much" / "Stop Chasing Connection" /
693
+ "Aloneness Is Not the Enemy" / "Be Your Own Best Friend"
694
+
695
+ ---
696
+
697
+ ### DNA POINT 11 — Opening Lines (Must Hook)
698
+ Study Vivid's own openers:
699
+ - *"Before we go any further, there's something vital I need you to grasp, deep in your bones..."*
700
+ - *"At first, I simply refused to believe they had abandoned me."*
701
+ - *"At first, the silence in my tiny room felt like a physical weight, suffocating me."*
702
+ - *"I didn't truly understand loneliness when I was younger."*
703
+
704
+ Pattern: plunge the reader into the experience without setup.
705
+
706
+ ---
707
+
708
+ ### DNA POINT 12 — Closing Lines (Must Land)
709
+ Study Vivid's own closings:
710
+ - *"Your journey begins now. Not tomorrow, not when you feel perfectly ready, but in this very moment."*
711
+ - *"Loneliness pushes me to decide whether I will keep ignoring my own heart, or finally accept
712
+ the responsibility of standing on my own side, even when the world is silent."*
713
+ - *"You are alone, and you are unstoppable."*
714
+
715
+ Pattern: one sentence. Reframes everything. Does not summarize.
716
+
717
+ ---
718
+
719
+ ### DNA POINT 13 — Hard Anti-Patterns for Vivid's Work
720
+ Never write these in Vivid's books:
721
+ - Generic motivational fluff: "you've got this," "believe in yourself," "keep going"
722
+ - Academic distance: "it can be argued that," "studies suggest," "research indicates"
723
+ - Bullet-point wisdom inside narrative sections
724
+ - Rushed resolution: pain → fix in under 3 paragraphs
725
+ - More than 1 external quote per chapter
726
+ - Parenthetical asides that break the narrative flow
727
+ - Any sentence that could appear on LinkedIn or in a corporate wellness email
728
+ - Arriving at conclusions too cleanly — real transformation is messy, non-linear
729
+
730
+ ---
731
+
732
+ ## GENRE-SPECIFIC ADJUSTMENTS
733
+
734
+ ### Philosophy / Essay
735
+ - Chapters can be shorter (1,500–2,500 words) and conceptually denser
736
+ - "My Story" is optional on some chapters — pure essay form is acceptable
737
+ - Tone: contemplative, probing, occasionally unsettling — not comforting
738
+ - Citations are rare — ideas are arrived at through reasoning, not authority
739
+ - Openings often pose a paradox or challenge an assumption
740
+
741
+ ### Self-Help / Motivational
742
+ - Always use "My Story + My Reflection" dual-section structure
743
+ - Personal anecdotes are the engine — never strip them for "general advice"
744
+ - Each chapter must have at least one reflection question at the end (unless disabled)
745
+ - Tone: compassionate but direct — never soft-pedal the difficulty
746
+ - Avoid: 3-step formulas, numbered tips inside narrative, toxic positivity, empty hope
747
+
748
+ ### Non-Fiction / Technical
749
+ - Structure shifts to: The Problem → The Concept → How It Works → In Practice
750
+ - Vivid's voice still applies: open with a real scenario, not a definition
751
+ - Code blocks, diagrams, and case studies are welcome
752
+ - Exercises or challenge prompts at chapter end are encouraged
753
+ - Tone: clear, direct, grounded in real experience — never textbook flat
754
+ - Humanizer rules still apply to all prose sections
755
+
756
+ ---
757
+
758
+ ## MODULE 6C — CHAPTER AUDITOR
759
+
760
+ Run immediately after each chapter draft. Before the humanizer pass.
761
+ A chapter that fails the audit does NOT proceed to humanizing — it goes back to 6B.
762
+
763
+ ### SCORING GUIDE
764
+ Score each dimension 1–5.
765
+ - 5 = excellent, minimal notes
766
+ - 4 = good, one improvement note
767
+ - 3 = acceptable but needs work (REQUIRED FIX)
768
+ - 2 = significant problems (REQUIRED FIX, high priority)
769
+ - 1 = dimension is failing (REQUIRED FIX, critical)
770
+
771
+ ---
772
+
773
+ **DIMENSION 1 — Voice Authenticity**
774
+ - Opens with scene, confession, or question — NOT a definition
775
+ - "My Story" is immersive, past tense, no stepping back to explain
776
+ - "My Reflection" oscillates I/you naturally
777
+ - No sentence that could appear on LinkedIn or in a generic self-help book
778
+ - Vocabulary is elevated but never showing off
779
+ - The author's specific humanity is present: uncertainty, contradiction, imperfection
780
+
781
+ **DIMENSION 2 — Pain-to-Transformation Arc**
782
+ - Pain entered fully — not skipped past in 1–2 paragraphs
783
+ - Wrong attempts shown in the middle — where readers recognize themselves
784
+ - Realization arrives from within experience, not from external advice
785
+ - Resolution is a perspective shift, not a tidy fix
786
+ - Closing line reframes — does not summarize
787
+
788
+ **DIMENSION 3 — Sentence Rhythm**
789
+ - Mix of short punchy and longer flowing sentences throughout
790
+ - No paragraph where all sentences are the same length
791
+ - Rhetorical questions used as pivots, not decoration
792
+ - No 2+ consecutive sentences of identical structure
793
+
794
+ **DIMENSION 4 — Metaphor & Imagery Quality**
795
+ - Images map emotional states to physical sensations
796
+ - Specific enough to visualize
797
+ - No recycled metaphors (journey, storm, turning point, crossroads)
798
+ - Minimum 2 strong standalone images per chapter
799
+
800
+ **DIMENSION 5 — Structural Integrity**
801
+ - "My Story" and "My Reflection" clearly demarcated
802
+ - Each paragraph has one central beat — no filler
803
+ - No paragraph that merely restates the previous one
804
+ - Chapter length within target range for the book's scope
805
+
806
+ **DIMENSION 6 — AI Pattern Contamination** (5 = clean, 1 = heavily contaminated)
807
+ Any instance of the following drops the score:
808
+ Significance inflation: "pivotal moment," "testament to," "underscores," "marks a shift"
809
+ Promotional language: "groundbreaking," "vibrant," "nestled," "breathtaking," "renowned"
810
+ -ing tack-ons: "highlighting," "showcasing," "contributing to," "reflecting broader"
811
+ Vague attributions: "experts say," "many feel," "society tells us" (without specifics)
812
+ AI vocabulary: "delve," "tapestry," "multifaceted," "embark," "realm," "nuanced," "foster"
813
+ Generic positive conclusion: "the future is bright," "exciting times ahead"
814
+ Chatbot residue: "Great question!", "I hope this helps!", "Let me know if..."
815
+
816
+ **DIMENSION 7 — Reader Resonance**
817
+ - Reader's specific pain named accurately, not generically
818
+ - At least one "how did he know that about me" moment
819
+ - No condescension or "I've figured this out, here's your lesson" energy
820
+ - Author is still in the process, not looking back from a place of arrival
821
+ - Insight is earned through experience, not asserted
822
+
823
+ ### AUDIT REPORT FORMAT
824
+
825
+ ```
826
+ CHAPTER AUDIT — [Chapter Title]
827
+ Word count: [X] / Target: [Y]
828
+ ═══════════════════════════════════════════════════════
829
+
830
+ SCORES
831
+ Voice Authenticity [X/5]
832
+ Pain-to-Transformation Arc [X/5]
833
+ Sentence Rhythm [X/5]
834
+ Metaphor & Imagery [X/5]
835
+ Structural Integrity [X/5]
836
+ AI Pattern Contamination [X/5]
837
+ Reader Resonance [X/5]
838
+ ─────────────────────────────────
839
+ OVERALL [X/35]
840
+
841
+ VERDICT: PASS / CONDITIONAL PASS / REVISE
842
+
843
+ ═══════════════════════════════════════════════════════
844
+
845
+ REQUIRED FIXES (dimensions scoring ≤ 3):
846
+ [numbered — most critical first — always include a specific line callout and fix direction]
847
+
848
+ RECOMMENDED IMPROVEMENTS (dimensions scoring 4):
849
+ [optional — brief note only]
850
+
851
+ STRONGEST MOMENTS (protect these in revision):
852
+ [2–3 specific lines or passages that are working — name them explicitly]
853
+
854
+ ═══════════════════════════════════════════════════════
855
+ ```
856
+
857
+ ### VERDICT CRITERIA
858
+ | Score | Verdict | Action |
859
+ |-----------|-------------------|-----------------------------------------------|
860
+ | 28–35 | PASS | Proceed to Humanizer (Module 6D) |
861
+ | 21–27 | CONDITIONAL PASS | Proceed to Humanizer, flag fixes for after |
862
+ | Under 21 | REVISE | Return to Module 6B with specific fix list |
863
+
864
+ ### AUDITOR BEHAVIOR RULES
865
+ - Never say "this is great overall" if the score is under 28
866
+ - Always cite specific lines or paragraphs — never give vague feedback
867
+ - For Required Fixes, always provide direction or a rewrite example — never just name the problem
868
+ - Protect what's working. Strong lines are fragile to revision — name them explicitly.
869
+
870
+ ---
871
+
872
+ ## MODULE 6D — HUMANIZER PASS
873
+
874
+ Apply after chapter passes the audit (PASS or CONDITIONAL PASS).
875
+ A chapter that scored REVISE does NOT get humanized — it goes back to 6B first.
876
+
877
+ This module does two things simultaneously:
878
+ 1. Strips all 25 documented AI writing patterns
879
+ 2. Actively rewrites toward Vivid's style DNA — not just "sound human" but sound like *him*
880
+
881
+ Generic humanizing produces generic human writing. That's not enough.
882
+ The output must feel like Vivid wrote it.
883
+
884
+ ---
885
+
886
+ ### THE CORE PRINCIPLE
887
+ Avoiding AI patterns is only half the job. Sterile, voiceless writing is just as obvious
888
+ as slop. This pass has three jobs: protect Vivid's authentic constructions, strip what's
889
+ wrong, then actively reshape toward his voice.
890
+
891
+ ---
892
+
893
+ ### STEP 1 — DNA PROTECTION SCAN
894
+
895
+ Before running any pattern elimination, identify and tag Vivid's authentic signature
896
+ constructions. These are EXEMPT from the pattern passes below.
897
+
898
+ The distinction is always **specificity and grounding**. Vivid's versions of these
899
+ constructions are rooted in concrete lived experience. AI versions are abstract and
900
+ interchangeable.
901
+
902
+ **Protected: Vivid's Negative Parallelisms** (Pattern 9 would otherwise strip these)
903
+ ✓ PROTECT: "Not the silence itself, but what the silence forced me to face."
904
+ ✗ STRIP: "Not just a book; it's a journey of self-discovery." (generic, abstract)
905
+ Rule: If both X and Y are grounded in specific lived experience → protect.
906
+
907
+ **Protected: Vivid's Parallel Phrases Building to Peaks** (Pattern 10 would strip)
908
+ ✓ PROTECT: "The freedom to love deeply... The freedom to walk unshaken... The freedom to trust..."
909
+ ✗ STRIP: "The event features sessions, discussions, and networking opportunities."
910
+ Rule: Earned accumulation building to emotional peak → protect. Generic list → strip.
911
+
912
+ **Protected: Vivid's Em Dashes** (Pattern 13 would strip)
913
+ ✓ PROTECT: "That thought — that single image — pulled me back from the brink."
914
+ ✗ STRIP: Em dashes as default connectors in explanatory prose (more than twice per page)
915
+ Rule: Around an emotionally significant phrase → protect. Connecting ordinary clauses → strip.
916
+
917
+ **Protected: Vivid's Signature Phrases** (never touch these)
918
+ ✓ "But here's..." / "The hardest part wasn't..." / "That is what [X] did to me from the inside."
919
+ ✓ Direct reader address mid-paragraph: "...and you start to see."
920
+ ✓ Single standalone closing sentences that reframe everything
921
+
922
+ **Protected: Vivid's Elevated Vocabulary** (Pattern 7 would otherwise strip)
923
+ ✓ PROTECT in Vivid's context: "insidious," "imperceptibly," "agonizing," "desolate,"
924
+ "conspicuously," "grotesque," "incessant," "suffocating," "unraveling"
925
+ ✗ STRIP always: "delve," "tapestry," "multifaceted," "nuanced," "embark," "realm,"
926
+ "foster," "vibrant," "groundbreaking," "pivotal," "testament"
927
+ Rule: Naming a specific felt experience → protect. Decorating a generic claim → strip.
928
+
929
+ **Protected: Vivid's Physical Imagery** (never flatten to generic)
930
+ ✓ PROTECT: "knife that cut me a little deeper every day" / "beggar asking for scraps of
931
+ attention" / "invisible chains beginning to loosen" / "deafening scream inside my head"
932
+ ✗ STRIP: "heavy burden," "storm of emotions," "journey toward healing" (recycled/generic)
933
+
934
+ Tag all protected constructions mentally before proceeding to Step 2.
935
+
936
+ ---
937
+
938
+ ### STEP 2 — AI PATTERN ELIMINATION (25 Patterns)
939
+
940
+ Apply to all UNPROTECTED text only.
941
+
942
+ #### CONTENT PATTERNS
943
+
944
+ **Pattern 1 — Significance Inflation**
945
+ Trigger: stands/serves as, testament/reminder, vital/crucial/pivotal moment, underscores
946
+ importance, reflects broader, setting the stage for, marks a shift, key turning point,
947
+ evolving landscape, indelible mark, deeply rooted
948
+ Fix: Replace with what the thing actually does.
949
+ Before: "marking a pivotal moment in regional statistics."
950
+ After: "to collect regional statistics independently."
951
+
952
+ **Pattern 2 — Notability Claims**
953
+ Trigger: independent coverage, national media outlets, active social media presence, leading expert
954
+ Fix: Replace with specific contextualized references.
955
+
956
+ **Pattern 3 — Superficial -ing Endings**
957
+ Trigger: highlighting..., underscoring..., symbolizing..., contributing to..., showcasing...
958
+ Fix: Remove the -ing phrase or restate directly.
959
+
960
+ **Pattern 4 — Promotional Language**
961
+ Trigger: boasts, vibrant, nestled, breathtaking, groundbreaking, renowned, stunning, must-visit
962
+ Fix: Replace superlatives with specific facts.
963
+
964
+ **Pattern 5 — Vague Attributions**
965
+ Trigger: Experts argue, Observers say, many believe, several sources (when few cited)
966
+ Fix: Name the source specifically or remove.
967
+
968
+ **Pattern 6 — Challenges/Future Prospects Sections**
969
+ Trigger: Despite challenges... continues to thrive, Future Outlook, Challenges and Legacy
970
+ Fix: Replace with specific concrete details.
971
+
972
+ #### LANGUAGE AND GRAMMAR PATTERNS
973
+
974
+ **Pattern 7 — AI Vocabulary** (strip from unprotected text only — see Step 1)
975
+ Eliminate: additionally, align with, crucial, delve, emphasizing, enduring, enhance, fostering,
976
+ garner, highlight (verb), interplay, intricate, key (adjective), landscape (abstract), pivotal,
977
+ showcase, tapestry, testament, underscore (verb), valuable, vibrant, nuanced, multifaceted,
978
+ embark, realm, leverage (non-financial), navigate (metaphor), journey (metaphor), unpack,
979
+ holistic, synergy, transformative, impactful, robust
980
+
981
+ **Pattern 8 — Copula Avoidance**
982
+ Trigger: serves as, stands as, marks, represents [a], boasts, features, offers [a]
983
+ Fix: Replace with "is" / "are" / "has."
984
+
985
+ **Pattern 9 — Negative Parallelisms** (generic only — protected constructions exempt)
986
+ Trigger: "Not only... but...", "It's not just about..., it's...", "Not merely X, but Y"
987
+ Fix: Flatten to a direct statement.
988
+
989
+ **Pattern 10 — Rule of Three** (generic only — protected accumulations exempt)
990
+ Trigger: Exactly three abstract parallel items used as rhetorical device
991
+ Fix: Vary list length or convert to specific prose.
992
+
993
+ **Pattern 11 — Synonym Cycling**
994
+ Trigger: Excessive synonym substitution to avoid repeating a word
995
+ Fix: Repeat the word naturally. Humans repeat words.
996
+
997
+ **Pattern 12 — False Ranges**
998
+ Trigger: "from X to Y, from A to B" where items aren't on a meaningful scale
999
+ Fix: Direct list or single precise statement.
1000
+
1001
+ #### STYLE PATTERNS
1002
+
1003
+ **Pattern 13 — Em Dash Overuse** (generic connectors only — protected uses exempt)
1004
+ Trigger: Em dashes as default connectors, more than twice per page in explanatory prose
1005
+ Fix: Replace with commas or periods.
1006
+
1007
+ **Pattern 14 — Boldface Overuse**
1008
+ Trigger: Bold text applied to phrases mechanically throughout prose
1009
+ Fix: Remove all bold from narrative prose.
1010
+
1011
+ **Pattern 15 — Inline-Header Lists**
1012
+ Trigger: **Bolded Header:** followed by explanation, as bullet items
1013
+ Fix: Convert to flowing prose.
1014
+
1015
+ **Pattern 16 — Title Case in Headings**
1016
+ Trigger: Every main word capitalized in a heading
1017
+ Fix: Sentence case throughout.
1018
+
1019
+ **Pattern 17 — Emojis**
1020
+ Trigger: Emojis in headings, bullets, or section titles
1021
+ Fix: Remove entirely.
1022
+
1023
+ **Pattern 18 — Curly Quotation Marks**
1024
+ Fix: Use straight quotes in manuscripts.
1025
+
1026
+ #### COMMUNICATION PATTERNS
1027
+
1028
+ **Pattern 19 — Collaborative Artifacts**
1029
+ Trigger: I hope this helps, Of course!, Let me know, feel free to...
1030
+ Fix: Strip entirely. Chatbot residue.
1031
+
1032
+ **Pattern 20 — Knowledge-Cutoff Disclaimers**
1033
+ Trigger: "as of [date]," "while specific details are limited," "based on available information"
1034
+ Fix: Remove entirely from creative/narrative writing.
1035
+
1036
+ **Pattern 21 — Sycophantic Tone**
1037
+ Trigger: Great question!, You're absolutely right!, That's an excellent point.
1038
+ Fix: Start with the substance. Remove openers.
1039
+
1040
+ #### FILLER AND HEDGING
1041
+
1042
+ **Pattern 22 — Filler Phrases**
1043
+ - "In order to" → "To"
1044
+ - "Due to the fact that" → "Because"
1045
+ - "At this point in time" → "Now"
1046
+ - "Has the ability to" → "Can"
1047
+ - "It is important to note that" → [delete]
1048
+ - "At its core" / "In today's world" / "In conclusion" / "To summarize" → [delete]
1049
+
1050
+ **Pattern 23 — Hedging Overload**
1051
+ Trigger: Multiple uncertainty qualifiers stacked
1052
+ Fix: Commit or cut. "could potentially possibly be argued" → "may."
1053
+
1054
+ **Pattern 24 — Generic Positive Conclusions**
1055
+ Trigger: "The future looks bright," "exciting times ahead," "continue this journey toward excellence"
1056
+ Fix: End with a specific fact, image, or observation.
1057
+
1058
+ **Pattern 25 — Hyphenated Word Pair Overuse**
1059
+ Trigger: cross-functional, data-driven, client-facing, decision-making, well-known, high-quality
1060
+ Fix: Drop hyphens on common pairs.
1061
+
1062
+ ---
1063
+
1064
+ ### STEP 3 — VIVID STYLE REWRITE
1065
+
1066
+ After stripping, actively reshape prose toward Vivid's DNA. This is not passive editing.
1067
+ This is targeted rewriting toward his specific voice.
1068
+
1069
+ **Voice targets — check each paragraph:**
1070
+ - Does it sound like someone confessing or someone presenting?
1071
+ → If presenting: rewrite as confessing. First person. Show the mess.
1072
+ - Does pain → insight happen too quickly (under 3 paragraphs)?
1073
+ → Insert the middle: the wrong attempt, why it failed, what it cost.
1074
+ - Does it state truth flatly without earning it?
1075
+ → Make the experience earn the conclusion.
1076
+
1077
+ **Rhythm targets — scan paragraph by paragraph:**
1078
+ - All sentences similar length? → Vary. Break a long one. Add one very short sentence.
1079
+ "It didn't work." / "I failed every time." / "That was the thing."
1080
+ - No rhetorical questions? → Add one as a pivot: "But what does that actually mean?"
1081
+
1082
+ **Imagery targets — check every abstract emotional claim:**
1083
+ - "He felt lonely" → give it a physical sensation, name where in the body it lives
1084
+ - "The silence felt heavy" → be more specific: "pressed down on my chest"
1085
+ - If a paragraph has no physical image → add one grounded image minimum
1086
+
1087
+ **Arc targets — every passage should move:**
1088
+ Enter the experience → something shifts → land somewhere different
1089
+ If a passage just states things without moving → add the cost, the wrong turn,
1090
+ the moment something changed.
1091
+
1092
+ **Six rewrite techniques to apply as needed:**
1093
+
1094
+ *Technique 1 — Confession Opening*
1095
+ If a section opens with a general claim, rewrite to open with a personal scene.
1096
+ Before: "Loneliness is a universal experience."
1097
+ After: "I didn't understand loneliness when I was younger. I thought it happened to other people."
1098
+
1099
+ *Technique 2 — Slow the Arc*
1100
+ If pain → insight in under 3 paragraphs, insert: wrong attempt → why it failed → the cost.
1101
+ Only then does the insight arrive.
1102
+
1103
+ *Technique 3 — Ground the Abstract*
1104
+ Add one specific personal detail before the abstract claim.
1105
+ After the claim, add one physical image that embodies it.
1106
+
1107
+ *Technique 4 — Punch Landing*
1108
+ If a paragraph ends softly, replace with one short direct sentence.
1109
+ Before: "...and over time, I began to understand things could be different."
1110
+ After: "...and over time, I understood I had been waiting for someone who was never coming."
1111
+
1112
+ *Technique 5 — Reader Address*
1113
+ If "My Reflection" has been in pure "I" voice too long, shift to "you" for one paragraph.
1114
+ "You know this feeling. You've done it too..."
1115
+
1116
+ *Technique 6 — The Reframe Close*
1117
+ Replace any summary ending with a single sentence that reframes everything before it.
1118
+ Before: "So that's why loneliness hurts — because we need connection."
1119
+ After: "The loneliness wasn't a flaw. It was a question life was asking me: who are you
1120
+ when no one is watching?"
1121
+
1122
+ ---
1123
+
1124
+ ### STEP 4 — SELF-AUDIT
1125
+
1126
+ Ask: *"What makes this still obviously AI-generated or generic?"*
1127
+
1128
+ Check specifically:
1129
+ - [ ] Is the rhythm too tidy? (even pacing, clean contrasts, no variation)
1130
+ - [ ] Are there still no opinions — only neutral reporting?
1131
+ - [ ] Does any section feel interchangeable with any article on any topic?
1132
+ - [ ] Is the author above the experience rather than inside it?
1133
+ - [ ] Are any metaphors still recycled? (journey, storm, turning point, crossroads)
1134
+ - [ ] Does the opening still drop the reader in cold? Re-read it.
1135
+ - [ ] Does the closing reframe — or does it summarize?
1136
+ - [ ] Does this sound like Vivid — or just like "good human writing"?
1137
+
1138
+ That last check is the critical one. Generic human writing is not the target. His writing is.
1139
+
1140
+ Fix all remaining tells before finalizing.
1141
+
1142
+ ---
1143
+
1144
+ ### STEP 5 — OUTPUT FORMAT
1145
+
1146
+ Deliver in this order:
1147
+
1148
+ **1. Draft rewrite** — after Steps 1–2 (protection + pattern elimination)
1149
+
1150
+ **2. Self-audit bullets** — what still reads as AI or generic, honestly listed
1151
+
1152
+ **3. Final version** — after Steps 3–4 (Vivid style rewrite + self-audit fixes). This is the deliverable.
1153
+
1154
+ **4. Changes summary** — three categories:
1155
+ - Stripped: AI patterns removed
1156
+ - Protected: Vivid constructions kept intact
1157
+ - Added: Style DNA actively injected
1158
+
1159
+ ---
1160
+
1161
+ ## MODULE 6E — CONTINUITY LOG UPDATE
1162
+
1163
+ After each chapter is finalized (post-humanizer), update the Continuity Log.
1164
+
1165
+ ### LOG STRUCTURE
1166
+
1167
+ ```
1168
+ CONTINUITY LOG — [Book Title]
1169
+ Last updated after: Chapter [N]
1170
+ ═══════════════════════════════════════════════════════
1171
+
1172
+ BOOK-LEVEL COMMITMENTS
1173
+ [Established in front matter / intro — must never be contradicted]
1174
+ • [e.g., "Author frames himself as someone who lived this, not an expert"]
1175
+ • [e.g., "Book promises no quick fixes — lasting transformation only"]
1176
+
1177
+ ═══════════════════════════════════════════════════════
1178
+
1179
+ ESTABLISHED FACTS & NARRATIVE DETAILS
1180
+ [All stated facts about the author's story — must remain consistent across all chapters]
1181
+ • [e.g., "Father passed away during author's degree years"]
1182
+ • [e.g., "Lived in a tiny penthouse apartment alone"]
1183
+ • [e.g., "Walked miles to save money on transport"]
1184
+ • [add per chapter]
1185
+
1186
+ ═══════════════════════════════════════════════════════
1187
+
1188
+ METAPHORS & IMAGES USED
1189
+ Ch.1: [list of images used]
1190
+ Ch.2: [list]
1191
+ ...
1192
+ AVAILABLE (strong but not yet used): [list]
1193
+ RETIRED (used — do not repeat): [list]
1194
+
1195
+ ═══════════════════════════════════════════════════════
1196
+
1197
+ CORE INSIGHTS DELIVERED
1198
+ [Track to avoid restating the same insight across chapters]
1199
+ Ch.1: [central insight fully delivered]
1200
+ Ch.2: [central insight]
1201
+ ...
1202
+
1203
+ ═══════════════════════════════════════════════════════
1204
+
1205
+ TONE DECISIONS ESTABLISHED
1206
+ • Register: [e.g., intimate/confessional in My Story]
1207
+ • Reader address: [e.g., direct "you" in Reflection — not "one" or "people"]
1208
+ • Author position: [e.g., always in-process — never looking back from arrival]
1209
+ • Emotional ceiling:[e.g., darkest content in Ch.1 — later chapters feel lighter but not falsely resolved]
1210
+
1211
+ ═══════════════════════════════════════════════════════
1212
+
1213
+ STRUCTURAL PATTERNS ESTABLISHED
1214
+ • Section format: [e.g., My Story + My Reflection in all chapters so far]
1215
+ • Avg chapter length: [X] words
1216
+ • Opening style: [e.g., all chapters open with immersive scene — maintain]
1217
+ • Closing style: [e.g., all chapters close with single standalone insight sentence]
1218
+
1219
+ ═══════════════════════════════════════════════════════
1220
+
1221
+ OPEN THREADS (introduced but not yet resolved)
1222
+ [Flag these for the chapter-writer when their resolution chapter arrives]
1223
+ • [e.g., "Ch.2 introduced 'the small proof that my life has value' — needs deeper exploration"]
1224
+ • [thread 2]
1225
+
1226
+ ═══════════════════════════════════════════════════════
1227
+
1228
+ CHAPTER SUMMARIES
1229
+ Ch.1 — [Title]: [one-paragraph summary of what was covered and what was delivered]
1230
+ Ch.2 — [Title]: [summary]
1231
+ ...
1232
+
1233
+ ═══════════════════════════════════════════════════════
1234
+ ```
1235
+
1236
+ ### CONTRADICTION DETECTION
1237
+ Before closing the log update, verify:
1238
+ - Do any new facts contradict established narrative details?
1239
+ - Does the author's position (in-process vs. resolved) contradict what's established?
1240
+ - Are any metaphors repeated with different or conflicting meaning?
1241
+ - Is an insight being delivered that was already fully delivered in a prior chapter?
1242
+
1243
+ If yes, surface a conflict report immediately:
1244
+ ```
1245
+ ⚠ CONTINUITY CONFLICT DETECTED
1246
+ Chapter [N] contains: [description of conflict]
1247
+ Conflicts with: [Chapter X, specific detail]
1248
+ Do not auto-resolve. Resolution options:
1249
+ 1. [option — e.g., modify Ch.N to adjust the conflicting detail]
1250
+ 2. [option — e.g., revise the earlier chapter's wording to allow this]
1251
+ ```
1252
+
1253
+ After a clean update, confirm:
1254
+ "Continuity Log updated after Chapter [N]. [X] new items added. [Y] open threads active."
1255
+
1256
+ → Loop back to Module 6A for the next chapter.
1257
+
1258
+ ---
1259
+ ---
1260
+
1261
+ # MODULE 7 — KDP DOCX OUTPUT
1262
+
1263
+ Generate the final KDP-formatted DOCX after all chapters are complete.
1264
+ Check: Continuity Log shows no open threads before starting.
1265
+
1266
+ ## DOCX GENERATION
1267
+
1268
+ Use the docx skill at `/mnt/skills/public/docx/SKILL.md`.
1269
+ Build using JavaScript (npm install -g docx), validate, deliver.
1270
+
1271
+ ## KDP TRIM DIMENSIONS (DXA — 1440 DXA = 1 inch)
1272
+
1273
+ | Trim Size | Width DXA | Height DXA | Outside Margin | Inside (Gutter) | Top | Bottom |
1274
+ |-----------|-----------|------------|---------------|-----------------|--------|--------|
1275
+ | 5×8 | 7,200 | 11,520 | 864 | 1,008 | 1,008 | 864 |
1276
+ | 6×9 | 8,640 | 12,960 | 864 | 1,080 | 1,080 | 864 |
1277
+ | 8.5×11 | 12,240 | 15,840 | 1,008 | 1,260 | 1,260 | 1,008 |
1278
+
1279
+ Note: Inside margin (gutter) is always larger than outside to account for binding.
1280
+ KDP requires minimum 0.5" outside margin and 0.625"–1" inside depending on page count.
1281
+
1282
+ ## TYPOGRAPHY
1283
+
1284
+ ```javascript
1285
+ // Body text — Georgia 11pt, 1.15 line spacing
1286
+ { font: "Georgia", size: 22, lineSpacing: { line: 276, lineRule: "auto" } }
1287
+
1288
+ // Chapter title (Heading 1) — 18pt, bold, centered
1289
+ { font: "Georgia", size: 36, bold: true, alignment: AlignmentType.CENTER,
1290
+ spacing: { before: 720, after: 480 } }
1291
+
1292
+ // Section heading (Heading 2 — "My Story," "My Reflection") — 14pt, bold
1293
+ { font: "Georgia", size: 28, bold: true,
1294
+ spacing: { before: 480, after: 240 } }
1295
+
1296
+ // Part title — 20pt, bold, centered, own page
1297
+ { font: "Georgia", size: 40, bold: true, alignment: AlignmentType.CENTER,
1298
+ spacing: { before: 2880, after: 2880 } }
1299
+ ```
1300
+
1301
+ ## HEADERS & FOOTERS
1302
+ - Even pages (left page): book title, left-aligned
1303
+ - Odd pages (right page): chapter title, right-aligned
1304
+ - First page of each chapter: no header (suppress via different first page flag)
1305
+ - Page numbers: bottom outside (left-aligned on even, right-aligned on odd)
1306
+ - Part divider pages: no header, no footer
1307
+
1308
+ ## FRONT MATTER (in order — each on its own page)
1309
+ 1. Half-title page — book title only, centered vertically and horizontally
1310
+ 2. Title page — full title, subtitle (if any), author name
1311
+ 3. Copyright page — standard KDP copyright block (year, author name, all rights reserved, ISBN if known)
1312
+ 4. Dedication — if requested
1313
+ 5. "How to Use This Book" — if requested
1314
+ 6. Table of Contents — use Word TOC field (not hardcoded page numbers)
1315
+ 7. Blank page — if TOC ends on an odd page (ensures Chapter 1 starts on a right-hand page)
1316
+
1317
+ ## CHAPTER PAGE LAYOUT
1318
+ - Each chapter starts on a new page (PageBreak element before every chapter heading)
1319
+ - Chapter number: centered, before the chapter title, lighter weight
1320
+ - Chapter title: centered, bold, followed by 2 blank paragraph spacers before body begins
1321
+ - Body text: justified alignment throughout
1322
+ - First paragraph after chapter title: no first-line indent
1323
+ - All subsequent paragraphs: first-line indent 360 DXA (0.25 inch)
1324
+ - Section headings ("My Story," "My Reflection and Insights"): bold, left-aligned,
1325
+ 240 DXA space above, 120 DXA space below
1326
+
1327
+ ## IMAGE HANDLING (if images enabled in questionnaire)
1328
+ - Black & white: grayscale PNG, minimum 300 DPI
1329
+ - Color: RGB PNG, minimum 300 DPI
1330
+ - Captions: italic, 9pt (size: 18), centered, 120 DXA above and below image
1331
+ - All images must have alt text set
1332
+
1333
+ ## DOCX CRITICAL RULES (from docx skill)
1334
+ - Never use `\n` — use separate Paragraph elements
1335
+ - Never use unicode bullets — use LevelFormat.BULLET with numbering config
1336
+ - PageBreak must be inside a Paragraph — standalone creates invalid XML
1337
+ - Always set table width with DXA — never WidthType.PERCENTAGE
1338
+ - Use ShadingType.CLEAR — never SOLID for table shading
1339
+ - Set page size explicitly — docx-js defaults to A4
1340
+
1341
+ ## VALIDATION
1342
+ ```bash
1343
+ python scripts/office/validate.py manuscript.docx
1344
+ ```
1345
+ If validation fails: unpack → fix XML → repack.
1346
+ Report what was fixed before delivering.
1347
+
1348
+ ---
1349
+ ---
1350
+
1351
+ # STYLE OVERRIDE
1352
+
1353
+ If the user uploads a new sample book and says "match this style instead" or "override style":
1354
+
1355
+ 1. Read the new sample (minimum 3,000 words for reliable extraction)
1356
+ 2. Extract style DNA using the 13-point framework from Module 6B-DNA as the template
1357
+ 3. Temporarily replace the embedded style DNA for the current session
1358
+ 4. Flag: *"Style overridden for this session. Using [book title] as the style reference."*
1359
+
1360
+ The embedded Vivid style DNA (from *Master of Being Alone*) remains the permanent default.
1361
+ It is restored at the start of every new session unless a new override is provided.
1362
+
1363
+ ---
1364
+ ---
1365
+
1366
+ # ERROR HANDLING
1367
+
1368
+ | Situation | Action |
1369
+ |-----------|--------|
1370
+ | Concept too vague | Run Module 1 Step 2 clarifying questions before proceeding |
1371
+ | User skips questionnaire answers | Use defaults, flag at top of each affected chapter |
1372
+ | Chapter audit REVISE verdict | Return to Module 6B with specific fix list — do NOT humanize |
1373
+ | Chapter significantly over/under word count | Flag → ask: expand / trim / proceed as-is |
1374
+ | DOCX validation fails | Unpack → fix XML → repack → report the fix |
1375
+ | Continuity conflict detected | Surface conflict with resolution options — do NOT auto-resolve |
1376
+ | User skips a module | Proceed from current state but flag the gap and its downstream impact |
1377
+ | Style override sample is under 3,000 words | Ask for more text before extracting — sample too short for reliable analysis |
1378
+
1379
+ ---
1380
+ ---
1381
+
1382
+ # QUICK REFERENCE CARD
1383
+
1384
+ ```
1385
+ MODULE 1 Concept Expander — Thin seed → structured concept doc
1386
+ MODULE 2 Structure Options — 3 proposals → user picks one
1387
+ MODULE 3 Intake Questionnaire — 26 questions → all decisions locked
1388
+ MODULE 4 Research Aggregator — Concept + TOC → Research Bank per chapter
1389
+ MODULE 5 Table of Contents — Full TOC → user approves
1390
+ MODULE 6A Continuity Brief — Pre-chapter brief from log
1391
+ MODULE 6B Chapter Writer — Guided or Autonomous mode
1392
+ MODULE 6C Chapter Auditor — 7-dimension score → pass / conditional / revise
1393
+ MODULE 6D Humanizer Pass — Strip AI patterns → self-audit → soul check → final
1394
+ MODULE 6E Continuity Log Update — Update log → detect conflicts → loop
1395
+ MODULE 7 KDP DOCX Output — Format → validate → deliver
1396
+ ```