claude-presentation-master 2.1.2 → 3.6.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.
package/README.md CHANGED
@@ -20,15 +20,25 @@
20
20
 
21
21
  ---
22
22
 
23
- ## What's New in v2.1.0
23
+ ## What's New in v3.0.2
24
24
 
25
+ - **🖼️ Automatic Background Images** — Every slide now has a contextual background image from Unsplash (free, no API key)
26
+ - **Smart Image Matching** — Images are selected based on slide type and content keywords
27
+ - **Cinematic Dark Overlay** — 40% opacity images with gradient overlay for guaranteed text readability
28
+ - **Playwright Visual QA** — Screenshot verification of every slide to ensure visual quality
29
+ - **QA Image Verification** — Visual QA now validates that background images are present
30
+
31
+ ### Previous in v3.0.1
32
+
33
+ - **Knowledge-Driven Orchestration** — All decisions route through RuVector knowledge base (6,300+ lines of expert methodology)
34
+ - **VisionQA Engine** — Optional Claude multimodal visual analysis for slide rendering validation
35
+ - **NanoBanana Pro Integration** — AI image generation using Google Gemini (optional, with GOOGLE_AI_API_KEY)
36
+ - **Multi-Agent Consensus Validation** — Expert agents (Duarte, Reynolds, Minto, Tufte, Gallo, Anderson) provide weighted assessments
37
+ - **Semantic Completeness Validator** — Ensures presentation covers all key topics from source content
25
38
  - **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
39
  - **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
40
+ - **Professional Typography** — Google Fonts for each presentation type
41
+ - **100% Zero Cost by Default** — No API keys required, optional AI features when keys available
32
42
 
33
43
  ---
34
44
 
@@ -325,6 +335,26 @@ npx claude-presentation-master generate test.md -m keynote -f html -o ./demo
325
335
 
326
336
  ---
327
337
 
338
+ ## Example Slides
339
+
340
+ <div align="center">
341
+
342
+ ### Keynote Style (TED-inspired)
343
+ ![Keynote Example](assets/screenshots/example-keynote.png)
344
+ *Bold statements with dramatic contrast — designed for inspiration*
345
+
346
+ ### Sales Pitch
347
+ ![Sales Example](assets/screenshots/example-sales.png)
348
+ *Persuasive metrics with trust-building colors — designed to close deals*
349
+
350
+ ### Consulting Deck (McKinsey-style)
351
+ ![Consulting Example](assets/screenshots/example-consulting.png)
352
+ *Action titles with supporting data — designed for executive decisions*
353
+
354
+ </div>
355
+
356
+ ---
357
+
328
358
  ## Quick Start
329
359
 
330
360
  ### From the Command Line (npx)
@@ -576,7 +606,7 @@ Specify it explicitly: `presentationType: 'consulting_deck'`
576
606
  Yes — that's exactly what it's designed for.
577
607
 
578
608
  **What about images?**
579
- The engine generates placeholder boxes. Replace with your actual images.
609
+ Every slide automatically gets a contextual background image from Unsplash (free, no API key required). Images are at 40% opacity with a cinematic dark overlay to ensure text readability. The image keywords are selected based on slide type and content.
580
610
 
581
611
  **Can I lower the quality threshold?**
582
612
  Yes, but not recommended: `qaThreshold: 80`
@@ -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
  ========================================================================== */