@demig0d2/skills 1.0.2 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +58 -67
- package/bin/cli.js +7 -3
- package/package.json +2 -5
- package/skills/book-creator/SKILL.md +848 -0
- package/skills/book-creator/references/kdp_specs.md +139 -0
- package/skills/book-creator/references/log_schema.md +149 -0
- package/skills/book-creator/references/patterns_quick_ref.md +71 -0
- package/skills/book-creator/references/thinkers_reference.md +104 -0
- package/skills/book-creator/scripts/__pycache__/bank_formatter.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/conflict_check.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/dna_scan.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/kdp_check.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/log_manager.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/scan_ai_patterns.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/score_report.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/toc_extract.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/validate_concept.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/__pycache__/word_count.cpython-312.pyc +0 -0
- package/skills/book-creator/scripts/bank_formatter.py +206 -0
- package/skills/book-creator/scripts/conflict_check.py +179 -0
- package/skills/book-creator/scripts/dna_scan.py +168 -0
- package/skills/book-creator/scripts/kdp_check.py +255 -0
- package/skills/book-creator/scripts/log_manager.py +258 -0
- package/skills/book-creator/scripts/scan_ai_patterns.py +279 -0
- package/skills/book-creator/scripts/score_report.py +237 -0
- package/skills/book-creator/scripts/toc_extract.py +151 -0
- package/skills/book-creator/scripts/validate_concept.py +255 -0
- package/skills/book-creator/scripts/word_count.py +196 -0
- package/skills/book-writer/scripts/__pycache__/kdp_check.cpython-312.pyc +0 -0
- package/skills/book-writer/scripts/__pycache__/toc_extract.cpython-312.pyc +0 -0
- package/skills/book-writer/scripts/__pycache__/word_count.cpython-312.pyc +0 -0
- package/skills/book-writer.zip +0 -0
- package/skills/chapter-auditor/scripts/__pycache__/score_report.cpython-312.pyc +0 -0
- package/skills/concept-expander/scripts/__pycache__/validate_concept.cpython-312.pyc +0 -0
- package/skills/continuity-tracker/scripts/__pycache__/conflict_check.cpython-312.pyc +0 -0
- package/skills/continuity-tracker/scripts/__pycache__/log_manager.cpython-312.pyc +0 -0
- package/skills/humanizer/scripts/__pycache__/dna_scan.cpython-312.pyc +0 -0
- package/skills/humanizer/scripts/__pycache__/scan_ai_patterns.cpython-312.pyc +0 -0
- package/skills/overhaul/scripts/__pycache__/changelog_gen.cpython-312.pyc +0 -0
- package/skills/overhaul/scripts/__pycache__/skill_parser.cpython-312.pyc +0 -0
- package/skills/overhaul/scripts/__pycache__/version_bump.cpython-312.pyc +0 -0
- package/skills/overhaul.zip +0 -0
- package/skills/research-aggregator/scripts/__pycache__/bank_formatter.cpython-312.pyc +0 -0
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
# KDP Publishing Specifications Reference
|
|
2
|
+
|
|
3
|
+
Complete KDP interior formatting requirements for print-on-demand.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Trim Sizes (DXA units — 1440 DXA = 1 inch)
|
|
8
|
+
|
|
9
|
+
| Trim | Width DXA | Height DXA | Common Use |
|
|
10
|
+
|----------|-----------|------------|------------|
|
|
11
|
+
| 5×8 | 7,200 | 11,520 | Compact non-fiction, poetry |
|
|
12
|
+
| 5.5×8.5 | 7,920 | 12,240 | Standard non-fiction |
|
|
13
|
+
| 6×9 | 8,640 | 12,960 | Most common for trade paperback |
|
|
14
|
+
| 6.14×9.21| 8,842 | 13,262 | Slightly taller trade |
|
|
15
|
+
| 7×10 | 10,080 | 14,400 | Workbooks, textbooks |
|
|
16
|
+
| 8×10 | 11,520 | 14,400 | Illustrated books |
|
|
17
|
+
| 8.5×11 | 12,240 | 15,840 | Workbooks, journals |
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Minimum Margins by Page Count
|
|
22
|
+
|
|
23
|
+
KDP requires larger inside margins as page count increases (to account for binding).
|
|
24
|
+
|
|
25
|
+
| Page Count | Inside (Gutter) | Outside | Top | Bottom |
|
|
26
|
+
|------------|-----------------|---------|--------|--------|
|
|
27
|
+
| 24–150 | 0.375" | 0.25" | 0.25" | 0.25" |
|
|
28
|
+
| 151–300 | 0.5" | 0.25" | 0.25" | 0.25" |
|
|
29
|
+
| 301–500 | 0.625" | 0.25" | 0.25" | 0.25" |
|
|
30
|
+
| 501–700 | 0.75" | 0.25" | 0.25" | 0.25" |
|
|
31
|
+
| 701–828 | 0.875" | 0.25" | 0.25" | 0.25" |
|
|
32
|
+
|
|
33
|
+
**Vivid's standard margins (6×9, 200–300 pages):**
|
|
34
|
+
|
|
35
|
+
| Side | Inches | DXA |
|
|
36
|
+
|---------|--------|-------|
|
|
37
|
+
| Inside | 0.75" | 1,080 |
|
|
38
|
+
| Outside | 0.6" | 864 |
|
|
39
|
+
| Top | 0.75" | 1,080 |
|
|
40
|
+
| Bottom | 0.6" | 864 |
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Typography Standards
|
|
45
|
+
|
|
46
|
+
| Element | Font | Size | Weight | Spacing |
|
|
47
|
+
|------------------|----------|------|--------|---------|
|
|
48
|
+
| Body text | Georgia | 11pt | Normal | 1.15 |
|
|
49
|
+
| Chapter title | Georgia | 18pt | Bold | Before: 0.5" After: 0.33" |
|
|
50
|
+
| Section heading | Georgia | 14pt | Bold | Before: 0.33" After: 0.17"|
|
|
51
|
+
| Part title | Georgia | 20pt | Bold | Centered, full page |
|
|
52
|
+
| Epigraph | Georgia | 10pt | Italic | Centered, 0.5" margins |
|
|
53
|
+
| Footer/Header | Georgia | 9pt | Normal | — |
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Body Text Layout
|
|
58
|
+
|
|
59
|
+
- **Alignment**: Justified
|
|
60
|
+
- **First paragraph** after heading: No indent
|
|
61
|
+
- **Subsequent paragraphs**: First-line indent 0.25" (360 DXA)
|
|
62
|
+
- **Line spacing**: 1.15 (line: 276, lineRule: auto in docx-js)
|
|
63
|
+
- **Paragraph spacing**: 0 before, 0 after (spacing handled by line indent)
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Headers and Footers
|
|
68
|
+
|
|
69
|
+
- **Even pages (verso/left)**: Book title, left-aligned
|
|
70
|
+
- **Odd pages (recto/right)**: Chapter title, right-aligned
|
|
71
|
+
- **Chapter first page**: No header (suppress)
|
|
72
|
+
- **Part divider pages**: No header, no footer
|
|
73
|
+
- **Page numbers**: Bottom outside (left on even, right on odd)
|
|
74
|
+
- **Start page numbering**: From Chapter 1 (front matter uses Roman numerals or no numbers)
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Front Matter Order (standard KDP)
|
|
79
|
+
|
|
80
|
+
1. Half-title page (title only)
|
|
81
|
+
2. Also by the author (optional)
|
|
82
|
+
3. Title page (title + subtitle + author)
|
|
83
|
+
4. Copyright page
|
|
84
|
+
5. Dedication
|
|
85
|
+
6. Table of Contents
|
|
86
|
+
7. Foreword / Preface (if any)
|
|
87
|
+
8. Introduction
|
|
88
|
+
|
|
89
|
+
## Back Matter Order
|
|
90
|
+
|
|
91
|
+
1. Epilogue / Conclusion
|
|
92
|
+
2. Acknowledgments
|
|
93
|
+
3. About the Author
|
|
94
|
+
4. Also by the Author (optional)
|
|
95
|
+
5. Index (non-fiction)
|
|
96
|
+
6. Bibliography (academic)
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## Image Requirements
|
|
101
|
+
|
|
102
|
+
| Type | Minimum DPI | Color Mode | Format |
|
|
103
|
+
|-------|-------------|------------|--------|
|
|
104
|
+
| B&W | 300 DPI | Grayscale | PNG/TIFF |
|
|
105
|
+
| Color | 300 DPI | RGB | PNG/TIFF |
|
|
106
|
+
| Cover | 300 DPI | RGB | JPG/TIFF |
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## File Requirements
|
|
111
|
+
|
|
112
|
+
- **Format**: DOCX (recommended) or PDF
|
|
113
|
+
- **Max file size**: 650 MB
|
|
114
|
+
- **Fonts**: Must be embedded or standard system fonts
|
|
115
|
+
- **No password protection**
|
|
116
|
+
- **No form fields**
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## Page Count Estimator
|
|
121
|
+
|
|
122
|
+
At 11pt Georgia, 1.15 spacing, 6×9 with standard margins:
|
|
123
|
+
- ~250–280 words per page
|
|
124
|
+
- 20,000 words ≈ 75–80 pages
|
|
125
|
+
- 40,000 words ≈ 145–160 pages
|
|
126
|
+
- 60,000 words ≈ 215–240 pages
|
|
127
|
+
- 80,000 words ≈ 290–320 pages
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## Common KDP Rejection Reasons
|
|
132
|
+
|
|
133
|
+
1. Margins too small (especially inside/gutter)
|
|
134
|
+
2. Images below 300 DPI
|
|
135
|
+
3. Fonts not embedded
|
|
136
|
+
4. Blank pages at unexpected locations
|
|
137
|
+
5. File size over 650 MB
|
|
138
|
+
6. Page size doesn't match trim size selected at upload
|
|
139
|
+
7. Header/footer content in the margin bleed area
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# Continuity Log — Schema Reference
|
|
2
|
+
|
|
3
|
+
The continuity log is a JSON file (`continuity_log.json`) maintained
|
|
4
|
+
alongside the manuscript. This document describes every field.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Full Schema
|
|
9
|
+
|
|
10
|
+
```json
|
|
11
|
+
{
|
|
12
|
+
"book_title": "string — the book's working title",
|
|
13
|
+
"created": "ISO datetime — when the log was initialized",
|
|
14
|
+
"last_updated": "ISO datetime — last update timestamp",
|
|
15
|
+
"last_chapter": "integer — last chapter number completed",
|
|
16
|
+
|
|
17
|
+
"commitments": [
|
|
18
|
+
"string — book-level promises established in front matter/intro"
|
|
19
|
+
],
|
|
20
|
+
|
|
21
|
+
"established_facts": [
|
|
22
|
+
"string — factual details about the author's story, must stay consistent"
|
|
23
|
+
],
|
|
24
|
+
|
|
25
|
+
"metaphors": {
|
|
26
|
+
"by_chapter": {
|
|
27
|
+
"1": ["metaphor used in chapter 1", "another metaphor"],
|
|
28
|
+
"2": ["metaphor used in chapter 2"]
|
|
29
|
+
},
|
|
30
|
+
"available": ["strong images not yet used"],
|
|
31
|
+
"retired": ["all metaphors used — do not repeat"]
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
"insights": {
|
|
35
|
+
"1": "Core insight fully delivered in chapter 1",
|
|
36
|
+
"2": "Core insight delivered in chapter 2"
|
|
37
|
+
},
|
|
38
|
+
|
|
39
|
+
"tone_decisions": {
|
|
40
|
+
"register": "string — e.g., intimate/confessional in My Story",
|
|
41
|
+
"reader_address": "string — e.g., direct 'you' in Reflection",
|
|
42
|
+
"author_position": "string — e.g., always in-process, never above",
|
|
43
|
+
"emotional_ceiling": "string — e.g., darkest content in Ch.1"
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
"structural_patterns": {
|
|
47
|
+
"section_format": "string — e.g., My Story + My Reflection",
|
|
48
|
+
"avg_chapter_words": "integer — running average",
|
|
49
|
+
"opening_style": "string — e.g., immersive scene",
|
|
50
|
+
"closing_style": "string — e.g., single reframe sentence",
|
|
51
|
+
"chapter_word_counts": [2400, 2200, 2600]
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
"open_threads": [
|
|
55
|
+
{
|
|
56
|
+
"thread": "string — the thread description",
|
|
57
|
+
"introduced_in": "string — chapter number",
|
|
58
|
+
"closed": false,
|
|
59
|
+
"added": "ISO datetime"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
|
|
63
|
+
"closed_threads": [
|
|
64
|
+
{
|
|
65
|
+
"thread": "string",
|
|
66
|
+
"introduced_in": "string",
|
|
67
|
+
"closed": true,
|
|
68
|
+
"closed_in": "string — chapter where resolved",
|
|
69
|
+
"added": "ISO datetime"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
|
|
73
|
+
"chapter_summaries": {
|
|
74
|
+
"1": {
|
|
75
|
+
"title": "Chapter 1 title",
|
|
76
|
+
"summary": "One-paragraph summary of what was covered"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## Field Guidelines
|
|
85
|
+
|
|
86
|
+
### `commitments`
|
|
87
|
+
Book-level promises that must never be contradicted. Examples:
|
|
88
|
+
- "Author frames himself as someone who lived this, not an expert"
|
|
89
|
+
- "Book promises no quick fixes — lasting transformation only"
|
|
90
|
+
- "Author is always in-process, never looking back from arrival"
|
|
91
|
+
|
|
92
|
+
### `established_facts`
|
|
93
|
+
All narrative details stated in the manuscript that must remain consistent:
|
|
94
|
+
- "Father passed away during author's degree years"
|
|
95
|
+
- "Lived in a tiny penthouse apartment alone"
|
|
96
|
+
- "Walked miles to save money on transport"
|
|
97
|
+
- "Cooked rice and lentils, stretched groceries"
|
|
98
|
+
|
|
99
|
+
### `metaphors.retired`
|
|
100
|
+
Once a metaphor is used anywhere in the manuscript, it goes here.
|
|
101
|
+
The conflict checker (`conflict_check.py`) scans new chapters against this list.
|
|
102
|
+
|
|
103
|
+
### `insights`
|
|
104
|
+
One core insight per chapter. Track to avoid restating:
|
|
105
|
+
- Ch.1: "Loneliness as mirror of self-relationship"
|
|
106
|
+
- Ch.2: "Chasing connection from fear, not love, creates neediness"
|
|
107
|
+
- Ch.3: "Aloneness and loneliness are different — one is chosen"
|
|
108
|
+
|
|
109
|
+
### `open_threads`
|
|
110
|
+
Thematic or narrative threads introduced that haven't been resolved:
|
|
111
|
+
- "Ch.2 mentioned 'the small proof that my life has value' — needs deeper exploration"
|
|
112
|
+
- "Ch.3 established reader's 'wrong attempts' pattern — needs to pay off in Ch.7"
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## CLI Quick Reference
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
# Initialize
|
|
120
|
+
python log_manager.py init "My Book Title"
|
|
121
|
+
|
|
122
|
+
# Add chapter
|
|
123
|
+
python log_manager.py add-chapter 1 "Why It Hurts So Much"
|
|
124
|
+
|
|
125
|
+
# Add established fact
|
|
126
|
+
python log_manager.py add-fact "Author's father passed during degree years"
|
|
127
|
+
|
|
128
|
+
# Add insight delivered
|
|
129
|
+
python log_manager.py add-insight 1 "Loneliness as mirror of self-relationship"
|
|
130
|
+
|
|
131
|
+
# Add metaphor (auto-retires it)
|
|
132
|
+
python log_manager.py add-metaphor 1 "deafening scream inside my head"
|
|
133
|
+
|
|
134
|
+
# Add open thread
|
|
135
|
+
python log_manager.py add-thread "Ch.2 mentioned small proof of self-value — needs depth"
|
|
136
|
+
|
|
137
|
+
# Close a thread (by index)
|
|
138
|
+
python log_manager.py threads # list open threads
|
|
139
|
+
python log_manager.py close-thread 0 # close thread at index 0
|
|
140
|
+
|
|
141
|
+
# View full log
|
|
142
|
+
python log_manager.py show
|
|
143
|
+
|
|
144
|
+
# Summary only
|
|
145
|
+
python log_manager.py summary
|
|
146
|
+
|
|
147
|
+
# Conflict check before finalizing a chapter
|
|
148
|
+
python conflict_check.py chapter_5.md --log continuity_log.json
|
|
149
|
+
```
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# AI Pattern Quick Reference
|
|
2
|
+
|
|
3
|
+
All 25 documented AI writing patterns from Wikipedia's "Signs of AI Writing" guide.
|
|
4
|
+
Used by `scan_ai_patterns.py` and the humanizer skill.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## CONTENT PATTERNS (1–6)
|
|
9
|
+
|
|
10
|
+
| # | Pattern | Key Trigger Words |
|
|
11
|
+
|---|---------|------------------|
|
|
12
|
+
| 1 | Significance Inflation | stands/serves as, testament to, pivotal moment, underscores, evolving landscape |
|
|
13
|
+
| 2 | Notability Claims | national media outlets, active social media presence, leading expert |
|
|
14
|
+
| 3 | Superficial -ing Endings | highlighting..., symbolizing..., contributing to..., showcasing... |
|
|
15
|
+
| 4 | Promotional Language | vibrant, nestled, breathtaking, groundbreaking, renowned, stunning |
|
|
16
|
+
| 5 | Vague Attributions | experts argue, observers say, many believe, several sources |
|
|
17
|
+
| 6 | Challenges/Future Sections | Despite challenges... continues to thrive, Future Outlook |
|
|
18
|
+
|
|
19
|
+
## LANGUAGE & GRAMMAR (7–12)
|
|
20
|
+
|
|
21
|
+
| # | Pattern | Key Trigger Words |
|
|
22
|
+
|---|---------|------------------|
|
|
23
|
+
| 7 | AI Vocabulary | delve, tapestry, multifaceted, nuanced, embark, realm, foster, transformative |
|
|
24
|
+
| 8 | Copula Avoidance | serves as, stands as, represents a, boasts, features, offers a |
|
|
25
|
+
| 9 | Negative Parallelism | "It's not just X; it's Y" / "Not merely X, but Y" |
|
|
26
|
+
| 10 | Rule of Three | Exactly 3 abstract parallel items used as rhetorical device |
|
|
27
|
+
| 11 | Synonym Cycling | Excessive substitution: protagonist → main character → central figure |
|
|
28
|
+
| 12 | False Ranges | "from X to Y, from A to B" where items aren't on a real scale |
|
|
29
|
+
|
|
30
|
+
## STYLE PATTERNS (13–18)
|
|
31
|
+
|
|
32
|
+
| # | Pattern | Key Trigger Words |
|
|
33
|
+
|---|---------|------------------|
|
|
34
|
+
| 13 | Em Dash Overuse | — used as default connector more than 2× per page |
|
|
35
|
+
| 14 | Boldface Overuse | **Bold** applied mechanically in prose |
|
|
36
|
+
| 15 | Inline-Header Lists | **Header:** description as bullet items |
|
|
37
|
+
| 16 | Title Case in Headings | Every Main Word Capitalized In Heading |
|
|
38
|
+
| 17 | Emojis | 🚀 💡 ✅ in headings or bullets |
|
|
39
|
+
| 18 | Curly Quotes | "smart" curly quotes in manuscripts |
|
|
40
|
+
|
|
41
|
+
## COMMUNICATION PATTERNS (19–21)
|
|
42
|
+
|
|
43
|
+
| # | Pattern | Key Trigger Words |
|
|
44
|
+
|---|---------|------------------|
|
|
45
|
+
| 19 | Chatbot Artifacts | I hope this helps, Let me know, Of course!, Feel free to |
|
|
46
|
+
| 20 | Knowledge-Cutoff Disclaimers | "as of [date]", "while specific details are limited" |
|
|
47
|
+
| 21 | Sycophantic Tone | Great question!, You're absolutely right!, That's excellent |
|
|
48
|
+
|
|
49
|
+
## FILLER & HEDGING (22–25)
|
|
50
|
+
|
|
51
|
+
| # | Pattern | Key Trigger Words |
|
|
52
|
+
|---|---------|------------------|
|
|
53
|
+
| 22 | Filler Phrases | In order to, Due to the fact that, At this point in time |
|
|
54
|
+
| 23 | Hedging Overload | could potentially possibly be argued that might |
|
|
55
|
+
| 24 | Generic Positive Conclusions | The future looks bright, Exciting times ahead |
|
|
56
|
+
| 25 | Hyphen Overuse | cross-functional, data-driven, decision-making, well-known |
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## PROTECTED — NEVER STRIP (Vivid's DNA)
|
|
61
|
+
|
|
62
|
+
These constructions superficially match patterns above but are protected:
|
|
63
|
+
|
|
64
|
+
| Construction | Why Protected | Strip Instead |
|
|
65
|
+
|---|---|---|
|
|
66
|
+
| "Not the silence, but what it forced me to face" | Grounded in specific experience | "Not just X; it's Y" (abstract) |
|
|
67
|
+
| Parallel phrases building to emotional peak | Earned accumulation | Generic 3-item lists |
|
|
68
|
+
| Em dash around emotionally significant phrase | Rhythmic weight | Em dash as default connector |
|
|
69
|
+
| "But here's..." / "The hardest part wasn't..." | Signature phrases | Generic pivots |
|
|
70
|
+
| insidious, agonizing, desolate, suffocating | Name felt experience | vibrant, groundbreaking, stunning |
|
|
71
|
+
| Physical imagery: "pressed down on my chest" | Specific + grounded | Recycled: journey, storm, burden |
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# Thinkers Reference — Vivid's Genres
|
|
2
|
+
|
|
3
|
+
Curated reference of thinkers, works, and ideas aligned with Vivid's
|
|
4
|
+
writing genres: Philosophy/Essay, Self-help/Motivational, Non-fiction/Technical.
|
|
5
|
+
|
|
6
|
+
Use as scaffolding — not direct citation. Vivid arrives at these conclusions
|
|
7
|
+
through experience, then names them simply. Max 1 citation per chapter.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## SOLITUDE & INNER LIFE
|
|
12
|
+
|
|
13
|
+
| Thinker | Key Work | Core Idea | Chapter Applications |
|
|
14
|
+
|---|---|---|---|
|
|
15
|
+
| Rainer Maria Rilke | Letters to a Young Poet | Solitude as the place where creation and self-knowledge happen | Chapters on embracing aloneness, inner world |
|
|
16
|
+
| Blaise Pascal | Pensées | "All of humanity's problems stem from man's inability to sit quietly in a room alone" | Chapters on distraction, running from self |
|
|
17
|
+
| Henry David Thoreau | Walden | Deliberate solitude as the condition for genuine life | Chapters on choosing aloneness |
|
|
18
|
+
| Søren Kierkegaard | The Sickness Unto Death | The self must relate itself to itself | Chapters on self-relationship, identity |
|
|
19
|
+
| Michel de Montaigne | Essays | "The greatest thing in the world is to know how to belong to oneself" | Chapter closings, independence |
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## PHILOSOPHY OF IDENTITY & SELF
|
|
24
|
+
|
|
25
|
+
| Thinker | Key Work | Core Idea | Chapter Applications |
|
|
26
|
+
|---|---|---|---|
|
|
27
|
+
| Epictetus | Enchiridion | Distinguish what is in your control from what is not | Chapters on letting go, acceptance |
|
|
28
|
+
| Marcus Aurelius | Meditations | The inner citadel — strength from within regardless of external events | Emotional independence chapters |
|
|
29
|
+
| Albert Camus | The Myth of Sisyphus | Finding meaning in the absence of inherent meaning | Chapters on finding purpose alone |
|
|
30
|
+
| Jean-Paul Sartre | Existentialism is a Humanism | Existence precedes essence — you define yourself | Identity chapters |
|
|
31
|
+
| Viktor Frankl | Man's Search for Meaning | Meaning can be found in suffering; no one can take your inner freedom | Chapters on finding strength in hardship |
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## PSYCHOLOGY OF SELF & RELATIONSHIPS
|
|
36
|
+
|
|
37
|
+
| Thinker | Key Work | Core Idea | Chapter Applications |
|
|
38
|
+
|---|---|---|---|
|
|
39
|
+
| Carl Rogers | On Becoming a Person | Unconditional positive self-regard as the foundation of health | Self-acceptance chapters |
|
|
40
|
+
| Nathaniel Branden | The Six Pillars of Self-Esteem | Self-esteem as self-efficacy + self-respect | Self-worth chapters |
|
|
41
|
+
| John Bowlby | Attachment Theory | Anxious attachment drives compulsive connection-seeking | Chapters on chasing connection |
|
|
42
|
+
| Harriet Lerner | The Dance of Anger | Pursuing and distancing patterns in relationships | Chapters on relational patterns |
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## EASTERN & CONTEMPLATIVE FRAMEWORKS
|
|
47
|
+
|
|
48
|
+
| Framework | Core Idea | Chapter Applications |
|
|
49
|
+
|---|---|---|
|
|
50
|
+
| Non-attachment (Buddhist/Vedic) | Suffering arises from clinging — to people, outcomes, self-image | Chapters on letting go of outcomes |
|
|
51
|
+
| Witness consciousness (Advaita) | The observer within who watches without judgment | Chapters on self-reflection |
|
|
52
|
+
| Stoic practice | Focus exclusively on what is within your sphere of influence | Chapters on control, acceptance |
|
|
53
|
+
| Wabi-sabi (Japanese) | Finding beauty in imperfection and impermanence | Chapters on accepting the self as incomplete |
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## QUOTES — VIVID-APPROPRIATE (pre-validated)
|
|
58
|
+
|
|
59
|
+
All under 30 words. None overexposed.
|
|
60
|
+
|
|
61
|
+
**Solitude & Self:**
|
|
62
|
+
- "The capacity to be alone is the capacity to love." — Osho
|
|
63
|
+
- "In solitude the mind gains strength and learns to lean upon itself." — Laurence Sterne
|
|
64
|
+
- "I exist as I am, that is enough." — Walt Whitman
|
|
65
|
+
- "To be alone is to be different, to be different is to be alone." — Suzanne Gordon
|
|
66
|
+
|
|
67
|
+
**Identity & Strength:**
|
|
68
|
+
- "He who knows others is wise; he who knows himself is enlightened." — Lao Tzu
|
|
69
|
+
- "You are enough just as you are." — Meghan Markle (quoting Brené Brown — better to find original)
|
|
70
|
+
- "The privilege of a lifetime is to become who you truly are." — Carl Jung
|
|
71
|
+
- "Without great solitude, no serious work is possible." — Pablo Picasso
|
|
72
|
+
|
|
73
|
+
**Pain & Growth:**
|
|
74
|
+
- "The wound is the place where the Light enters you." — Rumi
|
|
75
|
+
- "Out of suffering have emerged the strongest souls." — Khalil Gibran
|
|
76
|
+
- "Rock bottom became the solid foundation on which I rebuilt my life." — J.K. Rowling
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## WHAT TO AVOID
|
|
81
|
+
|
|
82
|
+
### Sources that conflict with Vivid's voice:
|
|
83
|
+
- Tony Robbins, Brené Brown (pop psychology — too mainstream)
|
|
84
|
+
- Gary Vee, Grant Cardone (hustle culture)
|
|
85
|
+
- Marie Kondo, life-hack culture
|
|
86
|
+
- Any quote from a "motivational poster"
|
|
87
|
+
|
|
88
|
+
### Overexposed quotes (never use):
|
|
89
|
+
- "Be the change you wish to see in the world" (misattributed to Gandhi)
|
|
90
|
+
- "The unexamined life is not worth living" (Socrates — too academic)
|
|
91
|
+
- "Insanity is doing the same thing and expecting different results" (misattributed to Einstein)
|
|
92
|
+
- "You miss 100% of the shots you don't take" (Wayne Gretzky via Michael Scott)
|
|
93
|
+
- "In the middle of difficulty lies opportunity" (Einstein)
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## HOW TO USE THIS REFERENCE
|
|
98
|
+
|
|
99
|
+
1. Identify the chapter's core theme
|
|
100
|
+
2. Find 1–2 relevant thinkers from this list
|
|
101
|
+
3. Note the **core idea** — use this as scaffolding, not as text
|
|
102
|
+
4. Write the chapter so Vivid arrives at this idea through experience
|
|
103
|
+
5. If the quote is perfect and under 30 words: use it once, at the end, to confirm
|
|
104
|
+
6. Never open a chapter with a quote from a thinker — earn the insight first
|
|
Binary file
|