claude-presentation-master 2.1.2 → 3.0.1

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 CHANGED
@@ -20,15 +20,17 @@
20
20
 
21
21
  ---
22
22
 
23
- ## What's New in v2.1.0
23
+ ## What's New in v3.0.1
24
24
 
25
+ - **Knowledge-Driven Orchestration** — All decisions route through RuVector knowledge base (6,300+ lines of expert methodology)
26
+ - **VisionQA Engine** — Optional Claude multimodal visual analysis for slide rendering validation
27
+ - **NanoBanana Pro Integration** — AI image generation using Google Gemini (optional, with GOOGLE_AI_API_KEY)
28
+ - **Multi-Agent Consensus Validation** — Expert agents (Duarte, Reynolds, Minto, Tufte, Gallo, Anderson) provide weighted assessments
29
+ - **Semantic Completeness Validator** — Ensures presentation covers all key topics from source content
25
30
  - **7 Specialized Presentation Types** — TED Keynote, Sales Pitch, Consulting Deck, Investment Banking, Investor Pitch, Technical Presentation, All Hands
26
- - **Strategy Pattern Architecture** — Each type uses its own expert methodology (Duarte for keynotes, Minto for consulting, etc.)
27
31
  - **Investment Banking Charts** — Football field, waterfall, sources & uses tables, comparable companies analysis
28
- - **Professional Typography** — Google Fonts for each presentation type (Libre Baskerville for IB, Space Grotesk for technical, etc.)
29
- - **Hallucination Detection** — Zero-tolerance fact checking ensures all content is sourced from your input
30
- - **Auto-Remediation** — Automatically fixes quality issues until 95/100 threshold is met
31
- - **100% Zero Cost** — No API keys, no subscriptions, runs entirely on your machine
32
+ - **Professional Typography** — Google Fonts for each presentation type
33
+ - **100% Zero Cost by Default** — No API keys required, optional AI features when keys available
32
34
 
33
35
  ---
34
36
 
@@ -325,6 +327,26 @@ npx claude-presentation-master generate test.md -m keynote -f html -o ./demo
325
327
 
326
328
  ---
327
329
 
330
+ ## Example Slides
331
+
332
+ <div align="center">
333
+
334
+ ### Keynote Style (TED-inspired)
335
+ ![Keynote Example](assets/screenshots/example-keynote.png)
336
+ *Bold statements with dramatic contrast — designed for inspiration*
337
+
338
+ ### Sales Pitch
339
+ ![Sales Example](assets/screenshots/example-sales.png)
340
+ *Persuasive metrics with trust-building colors — designed to close deals*
341
+
342
+ ### Consulting Deck (McKinsey-style)
343
+ ![Consulting Example](assets/screenshots/example-consulting.png)
344
+ *Action titles with supporting data — designed for executive decisions*
345
+
346
+ </div>
347
+
348
+ ---
349
+
328
350
  ## Quick Start
329
351
 
330
352
  ### From the Command Line (npx)
@@ -2349,6 +2349,77 @@
2349
2349
  font-weight: var(--font-weight-bold);
2350
2350
  }
2351
2351
 
2352
+ /* Per RuVector knowledge base (Knaflic): Minimal borders for data tables */
2353
+ .reveal .slides .data-table.minimal-borders {
2354
+ border-collapse: collapse;
2355
+ }
2356
+
2357
+ .reveal .slides .data-table.minimal-borders th,
2358
+ .reveal .slides .data-table.minimal-borders td {
2359
+ border: none;
2360
+ border-bottom: 1px solid var(--color-border);
2361
+ padding: var(--space-3) var(--space-4);
2362
+ }
2363
+
2364
+ .reveal .slides .data-table.minimal-borders th {
2365
+ background: transparent;
2366
+ border-bottom: 2px solid var(--color-primary);
2367
+ }
2368
+
2369
+ .reveal .slides .data-table.minimal-borders tbody tr:last-child td {
2370
+ border-bottom: none;
2371
+ }
2372
+
2373
+ /* ==========================================================================
2374
+ KEY INSIGHT BOX - Per RuVector (Berinato: Context First)
2375
+ ========================================================================== */
2376
+
2377
+ .reveal .slides .key-insight-box {
2378
+ background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
2379
+ border-left: 4px solid var(--color-primary);
2380
+ border-radius: var(--radius-lg);
2381
+ padding: var(--space-6);
2382
+ text-align: center;
2383
+ }
2384
+
2385
+ .reveal .slides .key-insight-box .insight-icon {
2386
+ font-size: var(--font-size-4xl);
2387
+ margin-bottom: var(--space-4);
2388
+ }
2389
+
2390
+ .reveal .slides .key-insight-box .key-insight {
2391
+ font-size: var(--font-size-lg);
2392
+ line-height: 1.6;
2393
+ color: var(--color-text-primary);
2394
+ margin: 0;
2395
+ }
2396
+
2397
+ /* ==========================================================================
2398
+ VISUAL SUMMARY - Per RuVector (Duarte: Amplify through simplification)
2399
+ ========================================================================== */
2400
+
2401
+ .reveal .slides .visual-summary {
2402
+ background: var(--color-bg-secondary);
2403
+ border-radius: var(--radius-xl);
2404
+ padding: var(--space-6);
2405
+ text-align: center;
2406
+ }
2407
+
2408
+ .reveal .slides .visual-summary .summary-header {
2409
+ font-size: var(--font-size-sm);
2410
+ text-transform: uppercase;
2411
+ letter-spacing: 0.1em;
2412
+ color: var(--color-text-tertiary);
2413
+ margin-bottom: var(--space-4);
2414
+ }
2415
+
2416
+ .reveal .slides .visual-summary .primary-point {
2417
+ font-size: var(--font-size-xl);
2418
+ font-weight: var(--font-weight-semibold);
2419
+ color: var(--color-primary);
2420
+ line-height: 1.4;
2421
+ }
2422
+
2352
2423
  /* ==========================================================================
2353
2424
  SLIDE TYPE: VIDEO
2354
2425
  ========================================================================== */
@@ -0,0 +1,91 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <style>
5
+ * { margin: 0; padding: 0; box-sizing: border-box; }
6
+ body {
7
+ font-family: 'IBM Plex Sans', -apple-system, sans-serif;
8
+ background: #ffffff;
9
+ color: #003366;
10
+ height: 100vh;
11
+ padding: 50px 70px;
12
+ }
13
+ h1 {
14
+ font-size: 2rem;
15
+ font-weight: 600;
16
+ margin-bottom: 40px;
17
+ border-bottom: 3px solid #003366;
18
+ padding-bottom: 15px;
19
+ }
20
+ .content {
21
+ display: flex;
22
+ gap: 50px;
23
+ }
24
+ .left {
25
+ flex: 1;
26
+ }
27
+ .right {
28
+ flex: 1;
29
+ }
30
+ h2 {
31
+ font-size: 1.3rem;
32
+ font-weight: 600;
33
+ margin-bottom: 20px;
34
+ color: #003366;
35
+ }
36
+ ul {
37
+ list-style: none;
38
+ }
39
+ li {
40
+ padding: 12px 0;
41
+ border-bottom: 1px solid #e0e0e0;
42
+ font-size: 1.1rem;
43
+ color: #333;
44
+ }
45
+ li:before {
46
+ content: "→";
47
+ color: #0066cc;
48
+ margin-right: 12px;
49
+ }
50
+ .metric-box {
51
+ background: #f5f7fa;
52
+ padding: 25px;
53
+ margin-bottom: 20px;
54
+ border-left: 4px solid #003366;
55
+ }
56
+ .metric-value {
57
+ font-size: 2.5rem;
58
+ font-weight: 700;
59
+ color: #003366;
60
+ }
61
+ .metric-label {
62
+ color: #666;
63
+ margin-top: 5px;
64
+ }
65
+ </style>
66
+ </head>
67
+ <body>
68
+ <h1>Digital transformation will reduce costs 25% and improve NPS by 15 points</h1>
69
+ <div class="content">
70
+ <div class="left">
71
+ <h2>Recommended Actions</h2>
72
+ <ul>
73
+ <li>Migrate to cloud infrastructure (Q1-Q2)</li>
74
+ <li>Implement customer portal redesign</li>
75
+ <li>Automate invoice processing</li>
76
+ <li>Deploy predictive analytics</li>
77
+ </ul>
78
+ </div>
79
+ <div class="right">
80
+ <div class="metric-box">
81
+ <div class="metric-value">$42M</div>
82
+ <div class="metric-label">3-Year NPV</div>
83
+ </div>
84
+ <div class="metric-box">
85
+ <div class="metric-value">35%</div>
86
+ <div class="metric-label">IRR</div>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </body>
91
+ </html>
@@ -0,0 +1,32 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <style>
5
+ * { margin: 0; padding: 0; box-sizing: border-box; }
6
+ body {
7
+ font-family: 'DM Sans', -apple-system, sans-serif;
8
+ background: #000000;
9
+ color: white;
10
+ height: 100vh;
11
+ display: flex;
12
+ flex-direction: column;
13
+ justify-content: center;
14
+ align-items: center;
15
+ padding: 60px;
16
+ }
17
+ h1 {
18
+ font-size: 5rem;
19
+ font-weight: 700;
20
+ text-align: center;
21
+ line-height: 1.1;
22
+ max-width: 900px;
23
+ }
24
+ .highlight {
25
+ color: #e62b1e;
26
+ }
27
+ </style>
28
+ </head>
29
+ <body>
30
+ <h1>By 2030, <span class="highlight">85%</span> of jobs will be ones that don't exist today.</h1>
31
+ </body>
32
+ </html>
@@ -0,0 +1,64 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <style>
5
+ * { margin: 0; padding: 0; box-sizing: border-box; }
6
+ body {
7
+ font-family: 'Poppins', -apple-system, sans-serif;
8
+ background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
9
+ color: white;
10
+ height: 100vh;
11
+ display: flex;
12
+ flex-direction: column;
13
+ justify-content: center;
14
+ align-items: center;
15
+ padding: 60px;
16
+ }
17
+ h1 {
18
+ font-size: 4rem;
19
+ font-weight: 700;
20
+ margin-bottom: 20px;
21
+ text-align: center;
22
+ }
23
+ .subtitle {
24
+ font-size: 1.8rem;
25
+ opacity: 0.9;
26
+ margin-bottom: 60px;
27
+ }
28
+ .stats {
29
+ display: flex;
30
+ gap: 80px;
31
+ }
32
+ .stat {
33
+ text-align: center;
34
+ }
35
+ .stat-number {
36
+ font-size: 3.5rem;
37
+ font-weight: 700;
38
+ color: #10b981;
39
+ }
40
+ .stat-label {
41
+ font-size: 1.2rem;
42
+ opacity: 0.8;
43
+ }
44
+ </style>
45
+ </head>
46
+ <body>
47
+ <h1>Cut Costs by 40%</h1>
48
+ <p class="subtitle">500+ companies already did</p>
49
+ <div class="stats">
50
+ <div class="stat">
51
+ <div class="stat-number">$2.4M</div>
52
+ <div class="stat-label">Average Savings</div>
53
+ </div>
54
+ <div class="stat">
55
+ <div class="stat-number">92%</div>
56
+ <div class="stat-label">Customer Retention</div>
57
+ </div>
58
+ <div class="stat">
59
+ <div class="stat-number">3 Days</div>
60
+ <div class="stat-label">Implementation</div>
61
+ </div>
62
+ </div>
63
+ </body>
64
+ </html>