claude-presentation-master 1.0.2 → 2.1.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 +393 -146
- package/assets/presentation-engine.css +394 -0
- package/assets/presentation-knowledge.yaml +707 -0
- package/bin/cli.js +57 -21
- package/dist/index.d.mts +928 -81
- package/dist/index.d.ts +928 -81
- package/dist/index.js +8635 -1359
- package/dist/index.mjs +8627 -1359
- package/package.json +12 -12
|
@@ -6310,3 +6310,710 @@ version_8_6_changelog:
|
|
|
6310
6310
|
- "Expand animation library in CSS (15+ entrance animations)"
|
|
6311
6311
|
- "Build actual NPM package structure"
|
|
6312
6312
|
- "Implement QA engine with Playwright"
|
|
6313
|
+
|
|
6314
|
+
# ==============================================================================
|
|
6315
|
+
# PRESENTATION TYPE SWIM LANES (Gap Fill for v8.7)
|
|
6316
|
+
# ==============================================================================
|
|
6317
|
+
# This section defines distinct presentation types with non-conflicting rules.
|
|
6318
|
+
# Each type is a "swim lane" with its own validation rules, word limits, and
|
|
6319
|
+
# expert methodologies. This replaces the simple keynote/business binary.
|
|
6320
|
+
#
|
|
6321
|
+
# CRITICAL: These types are mutually exclusive. A presentation can only be ONE type.
|
|
6322
|
+
# The application should detect or ask for the type, then apply ONLY those rules.
|
|
6323
|
+
|
|
6324
|
+
presentation_types:
|
|
6325
|
+
description: |
|
|
6326
|
+
Distinct presentation archetypes with non-overlapping validation rules.
|
|
6327
|
+
Each type has unique characteristics - no conflicting rules between types.
|
|
6328
|
+
|
|
6329
|
+
# ---------------------------------------------------------------------------
|
|
6330
|
+
# TYPE 1: TED-STYLE KEYNOTE (Inspiring General Audience)
|
|
6331
|
+
# ---------------------------------------------------------------------------
|
|
6332
|
+
ted_keynote:
|
|
6333
|
+
id: "ted_keynote"
|
|
6334
|
+
name: "TED-Style Keynote"
|
|
6335
|
+
description: "High-impact inspirational presentations for general audiences"
|
|
6336
|
+
use_for:
|
|
6337
|
+
- "TED/TEDx talks"
|
|
6338
|
+
- "Conference keynotes"
|
|
6339
|
+
- "Product launch announcements"
|
|
6340
|
+
- "Inspirational speeches"
|
|
6341
|
+
- "All-hands motivational"
|
|
6342
|
+
|
|
6343
|
+
primary_experts:
|
|
6344
|
+
- "Nancy Duarte (Sparkline, STAR Moment)"
|
|
6345
|
+
- "Garr Reynolds (Presentation Zen)"
|
|
6346
|
+
- "Chris Anderson (TED framework)"
|
|
6347
|
+
- "Carmine Gallo (Rule of Three)"
|
|
6348
|
+
|
|
6349
|
+
validation_rules:
|
|
6350
|
+
words_per_slide:
|
|
6351
|
+
min: 1
|
|
6352
|
+
max: 15
|
|
6353
|
+
ideal: 8
|
|
6354
|
+
whitespace:
|
|
6355
|
+
min: 40
|
|
6356
|
+
ideal: 50
|
|
6357
|
+
bullets_per_slide:
|
|
6358
|
+
max: 0 # NO bullets - full sentences or single words only
|
|
6359
|
+
slides_per_idea: 1
|
|
6360
|
+
action_titles_required: false
|
|
6361
|
+
sources_required: false
|
|
6362
|
+
|
|
6363
|
+
slide_types_allowed:
|
|
6364
|
+
- "title_impact"
|
|
6365
|
+
- "single_statement"
|
|
6366
|
+
- "big_number"
|
|
6367
|
+
- "full_image"
|
|
6368
|
+
- "quote"
|
|
6369
|
+
- "three_points"
|
|
6370
|
+
- "call_to_action"
|
|
6371
|
+
- "star_moment"
|
|
6372
|
+
|
|
6373
|
+
required_elements:
|
|
6374
|
+
- "Opening hook (first 10 seconds)"
|
|
6375
|
+
- "STAR moment (Something They'll Always Remember)"
|
|
6376
|
+
- "Call to action ending"
|
|
6377
|
+
- "Emotional contrast (What Is vs What Could Be)"
|
|
6378
|
+
|
|
6379
|
+
anti_patterns:
|
|
6380
|
+
- "Bullet points"
|
|
6381
|
+
- "Data tables"
|
|
6382
|
+
- "Complex charts"
|
|
6383
|
+
- "Action titles"
|
|
6384
|
+
- "Source citations on slides"
|
|
6385
|
+
- "More than 3 words per line ideal"
|
|
6386
|
+
|
|
6387
|
+
color_palette: "dark_executive"
|
|
6388
|
+
typography:
|
|
6389
|
+
titles: "54-72px, Bold"
|
|
6390
|
+
body: "32-42px"
|
|
6391
|
+
max_fonts: 2
|
|
6392
|
+
|
|
6393
|
+
scoring_weights:
|
|
6394
|
+
visual_quality: 40
|
|
6395
|
+
content_quality: 25
|
|
6396
|
+
expert_compliance: 25
|
|
6397
|
+
accessibility: 10
|
|
6398
|
+
|
|
6399
|
+
# ---------------------------------------------------------------------------
|
|
6400
|
+
# TYPE 2: SALES PITCH (Persuading Prospects)
|
|
6401
|
+
# ---------------------------------------------------------------------------
|
|
6402
|
+
sales_pitch:
|
|
6403
|
+
id: "sales_pitch"
|
|
6404
|
+
name: "Sales Pitch Deck"
|
|
6405
|
+
description: "Persuasive presentations to convert prospects"
|
|
6406
|
+
use_for:
|
|
6407
|
+
- "Sales meetings"
|
|
6408
|
+
- "Product demos"
|
|
6409
|
+
- "Customer presentations"
|
|
6410
|
+
- "Lead generation"
|
|
6411
|
+
- "Trade show pitches"
|
|
6412
|
+
|
|
6413
|
+
primary_experts:
|
|
6414
|
+
- "Robert Cialdini (6 Principles of Influence)"
|
|
6415
|
+
- "Nancy Duarte (Sparkline)"
|
|
6416
|
+
- "Chip & Dan Heath (Made to Stick)"
|
|
6417
|
+
|
|
6418
|
+
validation_rules:
|
|
6419
|
+
words_per_slide:
|
|
6420
|
+
min: 10
|
|
6421
|
+
max: 30
|
|
6422
|
+
ideal: 20
|
|
6423
|
+
whitespace:
|
|
6424
|
+
min: 35
|
|
6425
|
+
ideal: 40
|
|
6426
|
+
bullets_per_slide:
|
|
6427
|
+
max: 4
|
|
6428
|
+
action_titles_required: false # Use emotional headlines instead
|
|
6429
|
+
sources_required: false # Social proof instead
|
|
6430
|
+
|
|
6431
|
+
slide_types_allowed:
|
|
6432
|
+
- "title_impact"
|
|
6433
|
+
- "problem_statement"
|
|
6434
|
+
- "solution_overview"
|
|
6435
|
+
- "big_number"
|
|
6436
|
+
- "social_proof"
|
|
6437
|
+
- "testimonial"
|
|
6438
|
+
- "comparison"
|
|
6439
|
+
- "pricing"
|
|
6440
|
+
- "call_to_action"
|
|
6441
|
+
- "demo_screenshot"
|
|
6442
|
+
|
|
6443
|
+
required_elements:
|
|
6444
|
+
- "Problem statement early"
|
|
6445
|
+
- "Clear value proposition"
|
|
6446
|
+
- "Social proof (logos, testimonials, stats)"
|
|
6447
|
+
- "Strong call to action"
|
|
6448
|
+
- "Next steps"
|
|
6449
|
+
|
|
6450
|
+
persuasion_principles:
|
|
6451
|
+
reciprocity: "Give value first (insights, demos)"
|
|
6452
|
+
social_proof: "Show competitors, customers, logos"
|
|
6453
|
+
authority: "Credentials, case studies"
|
|
6454
|
+
scarcity: "Limited time, first-mover advantage"
|
|
6455
|
+
liking: "Show you understand their pain"
|
|
6456
|
+
|
|
6457
|
+
anti_patterns:
|
|
6458
|
+
- "Jargon overload"
|
|
6459
|
+
- "Feature lists without benefits"
|
|
6460
|
+
- "No call to action"
|
|
6461
|
+
- "Too much text"
|
|
6462
|
+
- "Weak visuals"
|
|
6463
|
+
|
|
6464
|
+
color_palette: "modern_business"
|
|
6465
|
+
typography:
|
|
6466
|
+
titles: "36-48px, Bold"
|
|
6467
|
+
body: "24-32px"
|
|
6468
|
+
max_fonts: 2
|
|
6469
|
+
|
|
6470
|
+
scoring_weights:
|
|
6471
|
+
visual_quality: 35
|
|
6472
|
+
content_quality: 30
|
|
6473
|
+
expert_compliance: 25
|
|
6474
|
+
accessibility: 10
|
|
6475
|
+
|
|
6476
|
+
# ---------------------------------------------------------------------------
|
|
6477
|
+
# TYPE 3: MCKINSEY CONSULTING DECK (Board/Executive)
|
|
6478
|
+
# ---------------------------------------------------------------------------
|
|
6479
|
+
consulting_deck:
|
|
6480
|
+
id: "consulting_deck"
|
|
6481
|
+
name: "McKinsey/BCG Consulting Deck"
|
|
6482
|
+
description: "Data-driven executive presentations with rigorous structure"
|
|
6483
|
+
use_for:
|
|
6484
|
+
- "Board presentations"
|
|
6485
|
+
- "Strategy recommendations"
|
|
6486
|
+
- "Consulting deliverables"
|
|
6487
|
+
- "Executive briefings"
|
|
6488
|
+
- "Implementation plans"
|
|
6489
|
+
- "Due diligence reports"
|
|
6490
|
+
|
|
6491
|
+
primary_experts:
|
|
6492
|
+
- "Barbara Minto (Pyramid Principle)"
|
|
6493
|
+
- "McKinsey (MECE, Action Titles)"
|
|
6494
|
+
- "BCG (Horizontal Logic)"
|
|
6495
|
+
- "Edward Tufte (Data-Ink Ratio)"
|
|
6496
|
+
|
|
6497
|
+
validation_rules:
|
|
6498
|
+
words_per_slide:
|
|
6499
|
+
min: 40
|
|
6500
|
+
max: 80
|
|
6501
|
+
ideal: 60
|
|
6502
|
+
whitespace:
|
|
6503
|
+
min: 25
|
|
6504
|
+
max: 35
|
|
6505
|
+
ideal: 30
|
|
6506
|
+
bullets_per_slide:
|
|
6507
|
+
max: 5
|
|
6508
|
+
action_titles_required: true # MANDATORY
|
|
6509
|
+
sources_required: true # MANDATORY
|
|
6510
|
+
callouts_required: true # For charts
|
|
6511
|
+
|
|
6512
|
+
slide_types_allowed:
|
|
6513
|
+
- "executive_summary_scr"
|
|
6514
|
+
- "data_insight"
|
|
6515
|
+
- "comparison"
|
|
6516
|
+
- "mece_breakdown"
|
|
6517
|
+
- "process_timeline"
|
|
6518
|
+
- "recommendation"
|
|
6519
|
+
- "risks_mitigation"
|
|
6520
|
+
- "next_steps"
|
|
6521
|
+
|
|
6522
|
+
required_elements:
|
|
6523
|
+
- "Executive summary first (answer first)"
|
|
6524
|
+
- "Action titles on every slide"
|
|
6525
|
+
- "MECE structure"
|
|
6526
|
+
- "Source citations"
|
|
6527
|
+
- "Callout boxes on data slides"
|
|
6528
|
+
- "Clear recommendation"
|
|
6529
|
+
|
|
6530
|
+
action_title_rules:
|
|
6531
|
+
must_be_sentence: true
|
|
6532
|
+
must_contain_insight: true
|
|
6533
|
+
word_count:
|
|
6534
|
+
min: 8
|
|
6535
|
+
max: 20
|
|
6536
|
+
examples:
|
|
6537
|
+
good:
|
|
6538
|
+
- "Q3 revenue exceeded targets by 23% driven by enterprise deals"
|
|
6539
|
+
- "Three factors explain the 40% cost overrun in manufacturing"
|
|
6540
|
+
bad:
|
|
6541
|
+
- "Q3 Revenue Analysis"
|
|
6542
|
+
- "Cost Overview"
|
|
6543
|
+
- "Market Trends"
|
|
6544
|
+
|
|
6545
|
+
horizontal_logic:
|
|
6546
|
+
description: "Reading only slide titles tells complete story"
|
|
6547
|
+
test: "Can you present without looking at slide content?"
|
|
6548
|
+
|
|
6549
|
+
anti_patterns:
|
|
6550
|
+
- "Topic titles (not action titles)"
|
|
6551
|
+
- "Unsourced data"
|
|
6552
|
+
- "Charts without callouts"
|
|
6553
|
+
- "Overlapping categories (not MECE)"
|
|
6554
|
+
- "Burying the recommendation"
|
|
6555
|
+
- "Decorative elements"
|
|
6556
|
+
- "Pie charts"
|
|
6557
|
+
- "3D charts"
|
|
6558
|
+
|
|
6559
|
+
color_palette: "consulting_classic"
|
|
6560
|
+
typography:
|
|
6561
|
+
action_title: "18-22px, Bold"
|
|
6562
|
+
section_headers: "14-16px, Bold"
|
|
6563
|
+
body_text: "11-14px"
|
|
6564
|
+
data_labels: "10-12px"
|
|
6565
|
+
|
|
6566
|
+
scoring_weights:
|
|
6567
|
+
visual_quality: 25
|
|
6568
|
+
content_quality: 35
|
|
6569
|
+
expert_compliance: 30
|
|
6570
|
+
accessibility: 10
|
|
6571
|
+
|
|
6572
|
+
# ---------------------------------------------------------------------------
|
|
6573
|
+
# TYPE 4: INVESTMENT BANKING PITCH BOOK
|
|
6574
|
+
# ---------------------------------------------------------------------------
|
|
6575
|
+
investment_banking:
|
|
6576
|
+
id: "investment_banking"
|
|
6577
|
+
name: "Investment Banking Pitch Book"
|
|
6578
|
+
description: "Financial presentations for M&A, IPO, and capital raising"
|
|
6579
|
+
use_for:
|
|
6580
|
+
- "M&A sell-side pitches"
|
|
6581
|
+
- "M&A buy-side analysis"
|
|
6582
|
+
- "IPO roadshows"
|
|
6583
|
+
- "Debt financing"
|
|
6584
|
+
- "Fairness opinions"
|
|
6585
|
+
- "Board presentations"
|
|
6586
|
+
|
|
6587
|
+
primary_experts:
|
|
6588
|
+
- "Barbara Minto (Pyramid Principle)"
|
|
6589
|
+
- "Analyst Academy (IB Standards)"
|
|
6590
|
+
- "Edward Tufte (Financial Charts)"
|
|
6591
|
+
|
|
6592
|
+
validation_rules:
|
|
6593
|
+
words_per_slide:
|
|
6594
|
+
min: 50
|
|
6595
|
+
max: 120
|
|
6596
|
+
ideal: 80
|
|
6597
|
+
whitespace:
|
|
6598
|
+
min: 20
|
|
6599
|
+
max: 30
|
|
6600
|
+
ideal: 25
|
|
6601
|
+
bullets_per_slide:
|
|
6602
|
+
max: 7
|
|
6603
|
+
action_titles_required: true
|
|
6604
|
+
sources_required: true # All data MUST be sourced
|
|
6605
|
+
dense_data_allowed: true # Tables, complex charts OK
|
|
6606
|
+
|
|
6607
|
+
slide_types_allowed:
|
|
6608
|
+
- "executive_summary"
|
|
6609
|
+
- "situation_overview"
|
|
6610
|
+
- "credentials"
|
|
6611
|
+
- "valuation_summary"
|
|
6612
|
+
- "football_field"
|
|
6613
|
+
- "comparable_companies"
|
|
6614
|
+
- "precedent_transactions"
|
|
6615
|
+
- "dcf_summary"
|
|
6616
|
+
- "waterfall_bridge"
|
|
6617
|
+
- "sources_uses"
|
|
6618
|
+
- "process_timeline"
|
|
6619
|
+
- "risk_factors"
|
|
6620
|
+
|
|
6621
|
+
required_elements:
|
|
6622
|
+
- "Bank credentials and deal experience"
|
|
6623
|
+
- "Valuation analysis (multiple methodologies)"
|
|
6624
|
+
- "Process timeline"
|
|
6625
|
+
- "All data sourced and dated"
|
|
6626
|
+
- "Disclaimers and disclosures"
|
|
6627
|
+
|
|
6628
|
+
financial_chart_types:
|
|
6629
|
+
- "Football field (valuation ranges)"
|
|
6630
|
+
- "Waterfall/bridge charts"
|
|
6631
|
+
- "Comparable company tables"
|
|
6632
|
+
- "Precedent transaction tables"
|
|
6633
|
+
- "DCF sensitivity tables"
|
|
6634
|
+
- "Sources and uses table"
|
|
6635
|
+
|
|
6636
|
+
data_sourcing_rules:
|
|
6637
|
+
required_sources:
|
|
6638
|
+
- "Company filings (10-K, 10-Q, 8-K)"
|
|
6639
|
+
- "Capital IQ or Bloomberg"
|
|
6640
|
+
- "FactSet"
|
|
6641
|
+
- "Management projections"
|
|
6642
|
+
format: "Source: [Provider], as of [Date]"
|
|
6643
|
+
|
|
6644
|
+
anti_patterns:
|
|
6645
|
+
- "Unsourced numbers"
|
|
6646
|
+
- "Missing disclaimers"
|
|
6647
|
+
- "Pie charts for financial data"
|
|
6648
|
+
- "Rounded numbers without precision"
|
|
6649
|
+
- "Missing as-of dates"
|
|
6650
|
+
|
|
6651
|
+
color_palette: "executive_professional"
|
|
6652
|
+
typography:
|
|
6653
|
+
action_title: "16-20px, Bold"
|
|
6654
|
+
table_headers: "12-14px, Bold"
|
|
6655
|
+
table_data: "10-12px"
|
|
6656
|
+
footnotes: "8-10px"
|
|
6657
|
+
|
|
6658
|
+
scoring_weights:
|
|
6659
|
+
visual_quality: 20
|
|
6660
|
+
content_quality: 40
|
|
6661
|
+
expert_compliance: 30
|
|
6662
|
+
accessibility: 10
|
|
6663
|
+
|
|
6664
|
+
# ---------------------------------------------------------------------------
|
|
6665
|
+
# TYPE 5: INVESTOR/VC PITCH DECK
|
|
6666
|
+
# ---------------------------------------------------------------------------
|
|
6667
|
+
investor_pitch:
|
|
6668
|
+
id: "investor_pitch"
|
|
6669
|
+
name: "Investor/VC Pitch Deck"
|
|
6670
|
+
description: "Startup fundraising presentations"
|
|
6671
|
+
use_for:
|
|
6672
|
+
- "Seed round pitches"
|
|
6673
|
+
- "Series A/B/C pitches"
|
|
6674
|
+
- "Angel investor meetings"
|
|
6675
|
+
- "Accelerator applications"
|
|
6676
|
+
- "Demo Day presentations"
|
|
6677
|
+
|
|
6678
|
+
primary_experts:
|
|
6679
|
+
- "Sequoia Pitch Deck Framework"
|
|
6680
|
+
- "Guy Kawasaki (10/20/30 Rule)"
|
|
6681
|
+
- "Carmine Gallo (Rule of Three)"
|
|
6682
|
+
- "Nancy Duarte (Storytelling)"
|
|
6683
|
+
|
|
6684
|
+
validation_rules:
|
|
6685
|
+
words_per_slide:
|
|
6686
|
+
min: 20
|
|
6687
|
+
max: 50
|
|
6688
|
+
ideal: 35
|
|
6689
|
+
whitespace:
|
|
6690
|
+
min: 30
|
|
6691
|
+
ideal: 35
|
|
6692
|
+
bullets_per_slide:
|
|
6693
|
+
max: 4
|
|
6694
|
+
slides_total:
|
|
6695
|
+
min: 10
|
|
6696
|
+
max: 15
|
|
6697
|
+
ideal: 12
|
|
6698
|
+
action_titles_required: false
|
|
6699
|
+
sources_required: true # For market size, traction
|
|
6700
|
+
|
|
6701
|
+
slide_types_allowed:
|
|
6702
|
+
- "title_impact"
|
|
6703
|
+
- "problem"
|
|
6704
|
+
- "solution"
|
|
6705
|
+
- "market_size"
|
|
6706
|
+
- "product"
|
|
6707
|
+
- "business_model"
|
|
6708
|
+
- "traction"
|
|
6709
|
+
- "competition"
|
|
6710
|
+
- "team"
|
|
6711
|
+
- "financials"
|
|
6712
|
+
- "ask"
|
|
6713
|
+
|
|
6714
|
+
sequoia_structure:
|
|
6715
|
+
order:
|
|
6716
|
+
1: "Company Purpose (one sentence)"
|
|
6717
|
+
2: "Problem"
|
|
6718
|
+
3: "Solution"
|
|
6719
|
+
4: "Why Now"
|
|
6720
|
+
5: "Market Size (TAM/SAM/SOM)"
|
|
6721
|
+
6: "Competition"
|
|
6722
|
+
7: "Product"
|
|
6723
|
+
8: "Business Model"
|
|
6724
|
+
9: "Team"
|
|
6725
|
+
10: "Financials"
|
|
6726
|
+
11: "The Ask"
|
|
6727
|
+
|
|
6728
|
+
required_elements:
|
|
6729
|
+
- "Clear problem statement"
|
|
6730
|
+
- "Unique value proposition"
|
|
6731
|
+
- "Market size with sources"
|
|
6732
|
+
- "Traction metrics (real numbers)"
|
|
6733
|
+
- "Team credibility"
|
|
6734
|
+
- "Clear ask with use of funds"
|
|
6735
|
+
|
|
6736
|
+
anti_patterns:
|
|
6737
|
+
- "Vague market sizing"
|
|
6738
|
+
- "No traction proof"
|
|
6739
|
+
- "Weak team slide"
|
|
6740
|
+
- "Unclear ask"
|
|
6741
|
+
- "Too many slides"
|
|
6742
|
+
- "Complex financial models"
|
|
6743
|
+
|
|
6744
|
+
color_palette: "modern_business"
|
|
6745
|
+
typography:
|
|
6746
|
+
titles: "36-42px, Bold"
|
|
6747
|
+
body: "24-28px"
|
|
6748
|
+
metrics: "48-72px, Bold (for big numbers)"
|
|
6749
|
+
|
|
6750
|
+
scoring_weights:
|
|
6751
|
+
visual_quality: 30
|
|
6752
|
+
content_quality: 35
|
|
6753
|
+
expert_compliance: 25
|
|
6754
|
+
accessibility: 10
|
|
6755
|
+
|
|
6756
|
+
# ---------------------------------------------------------------------------
|
|
6757
|
+
# TYPE 6: TECHNICAL/ENGINEERING PRESENTATION
|
|
6758
|
+
# ---------------------------------------------------------------------------
|
|
6759
|
+
technical_presentation:
|
|
6760
|
+
id: "technical_presentation"
|
|
6761
|
+
name: "Technical/Engineering Presentation"
|
|
6762
|
+
description: "Detailed technical presentations for engineering audiences"
|
|
6763
|
+
use_for:
|
|
6764
|
+
- "Architecture reviews"
|
|
6765
|
+
- "Technical deep dives"
|
|
6766
|
+
- "Engineering team meetings"
|
|
6767
|
+
- "Code reviews"
|
|
6768
|
+
- "System design presentations"
|
|
6769
|
+
- "Conference technical talks"
|
|
6770
|
+
|
|
6771
|
+
primary_experts:
|
|
6772
|
+
- "Edward Tufte (Data-Ink Ratio)"
|
|
6773
|
+
- "Cole Nussbaumer Knaflic (Technical Data)"
|
|
6774
|
+
- "Barbara Minto (Structured Arguments)"
|
|
6775
|
+
|
|
6776
|
+
validation_rules:
|
|
6777
|
+
words_per_slide:
|
|
6778
|
+
min: 40
|
|
6779
|
+
max: 100
|
|
6780
|
+
ideal: 70
|
|
6781
|
+
whitespace:
|
|
6782
|
+
min: 25
|
|
6783
|
+
ideal: 30
|
|
6784
|
+
bullets_per_slide:
|
|
6785
|
+
max: 7
|
|
6786
|
+
code_blocks_allowed: true
|
|
6787
|
+
diagrams_required: true
|
|
6788
|
+
action_titles_required: true
|
|
6789
|
+
sources_required: true
|
|
6790
|
+
|
|
6791
|
+
slide_types_allowed:
|
|
6792
|
+
- "title"
|
|
6793
|
+
- "architecture_diagram"
|
|
6794
|
+
- "data_flow"
|
|
6795
|
+
- "code_snippet"
|
|
6796
|
+
- "comparison"
|
|
6797
|
+
- "timeline"
|
|
6798
|
+
- "metrics"
|
|
6799
|
+
- "tradeoffs"
|
|
6800
|
+
- "next_steps"
|
|
6801
|
+
|
|
6802
|
+
required_elements:
|
|
6803
|
+
- "Clear problem context"
|
|
6804
|
+
- "Architecture diagrams"
|
|
6805
|
+
- "Technical tradeoffs"
|
|
6806
|
+
- "Performance metrics"
|
|
6807
|
+
- "Next steps/action items"
|
|
6808
|
+
|
|
6809
|
+
diagram_standards:
|
|
6810
|
+
- "Use consistent notation (UML, C4, etc.)"
|
|
6811
|
+
- "Label all components"
|
|
6812
|
+
- "Show data flow direction"
|
|
6813
|
+
- "Include legend if complex"
|
|
6814
|
+
|
|
6815
|
+
anti_patterns:
|
|
6816
|
+
- "Code walls (too much code)"
|
|
6817
|
+
- "Unlabeled diagrams"
|
|
6818
|
+
- "Missing context"
|
|
6819
|
+
- "No tradeoff discussion"
|
|
6820
|
+
- "Jargon without definitions"
|
|
6821
|
+
|
|
6822
|
+
color_palette: "dark_executive"
|
|
6823
|
+
typography:
|
|
6824
|
+
titles: "32-36px, Bold"
|
|
6825
|
+
body: "18-24px"
|
|
6826
|
+
code: "16-20px, Monospace"
|
|
6827
|
+
|
|
6828
|
+
scoring_weights:
|
|
6829
|
+
visual_quality: 25
|
|
6830
|
+
content_quality: 35
|
|
6831
|
+
expert_compliance: 30
|
|
6832
|
+
accessibility: 10
|
|
6833
|
+
|
|
6834
|
+
# ---------------------------------------------------------------------------
|
|
6835
|
+
# TYPE 7: ALL-HANDS/COMPANY UPDATE
|
|
6836
|
+
# ---------------------------------------------------------------------------
|
|
6837
|
+
all_hands:
|
|
6838
|
+
id: "all_hands"
|
|
6839
|
+
name: "All-Hands/Company Update"
|
|
6840
|
+
description: "Internal company-wide updates and announcements"
|
|
6841
|
+
use_for:
|
|
6842
|
+
- "Quarterly all-hands"
|
|
6843
|
+
- "Company announcements"
|
|
6844
|
+
- "Team updates"
|
|
6845
|
+
- "Project status"
|
|
6846
|
+
- "Town halls"
|
|
6847
|
+
|
|
6848
|
+
primary_experts:
|
|
6849
|
+
- "Carmine Gallo (Talk Like TED)"
|
|
6850
|
+
- "Chip & Dan Heath (Made to Stick)"
|
|
6851
|
+
- "Nancy Duarte (STAR Moment)"
|
|
6852
|
+
|
|
6853
|
+
validation_rules:
|
|
6854
|
+
words_per_slide:
|
|
6855
|
+
min: 15
|
|
6856
|
+
max: 40
|
|
6857
|
+
ideal: 25
|
|
6858
|
+
whitespace:
|
|
6859
|
+
min: 35
|
|
6860
|
+
ideal: 40
|
|
6861
|
+
bullets_per_slide:
|
|
6862
|
+
max: 5
|
|
6863
|
+
action_titles_required: false
|
|
6864
|
+
sources_required: false # Internal data OK unsourced
|
|
6865
|
+
|
|
6866
|
+
slide_types_allowed:
|
|
6867
|
+
- "title_impact"
|
|
6868
|
+
- "metrics_grid"
|
|
6869
|
+
- "celebration"
|
|
6870
|
+
- "announcement"
|
|
6871
|
+
- "roadmap"
|
|
6872
|
+
- "team_recognition"
|
|
6873
|
+
- "milestones"
|
|
6874
|
+
- "three_points"
|
|
6875
|
+
- "call_to_action"
|
|
6876
|
+
|
|
6877
|
+
required_elements:
|
|
6878
|
+
- "Start with wins/celebrations"
|
|
6879
|
+
- "Key metrics (meaningful numbers)"
|
|
6880
|
+
- "Forward-looking roadmap"
|
|
6881
|
+
- "Clear next steps"
|
|
6882
|
+
- "Recognition moments"
|
|
6883
|
+
|
|
6884
|
+
energy_principles:
|
|
6885
|
+
- "Start positive (celebrate wins)"
|
|
6886
|
+
- "Make numbers meaningful"
|
|
6887
|
+
- "Include human stories"
|
|
6888
|
+
- "Keep energy high"
|
|
6889
|
+
- "End with clear call to action"
|
|
6890
|
+
|
|
6891
|
+
anti_patterns:
|
|
6892
|
+
- "Starting with problems"
|
|
6893
|
+
- "Data dumps"
|
|
6894
|
+
- "No celebrations"
|
|
6895
|
+
- "Vague next steps"
|
|
6896
|
+
- "Too corporate/formal"
|
|
6897
|
+
|
|
6898
|
+
color_palette: "strategy_growth"
|
|
6899
|
+
typography:
|
|
6900
|
+
titles: "42-54px, Bold"
|
|
6901
|
+
body: "28-36px"
|
|
6902
|
+
metrics: "60-80px, Bold"
|
|
6903
|
+
|
|
6904
|
+
scoring_weights:
|
|
6905
|
+
visual_quality: 35
|
|
6906
|
+
content_quality: 30
|
|
6907
|
+
expert_compliance: 25
|
|
6908
|
+
accessibility: 10
|
|
6909
|
+
|
|
6910
|
+
# ==============================================================================
|
|
6911
|
+
# PRESENTATION TYPE DETECTION RULES
|
|
6912
|
+
# ==============================================================================
|
|
6913
|
+
# Logic for auto-detecting or prompting for presentation type.
|
|
6914
|
+
|
|
6915
|
+
type_detection:
|
|
6916
|
+
description: "Rules for determining which presentation type to use"
|
|
6917
|
+
|
|
6918
|
+
keyword_triggers:
|
|
6919
|
+
ted_keynote:
|
|
6920
|
+
- "TED"
|
|
6921
|
+
- "TEDx"
|
|
6922
|
+
- "keynote"
|
|
6923
|
+
- "inspire"
|
|
6924
|
+
- "motivational"
|
|
6925
|
+
- "launch event"
|
|
6926
|
+
sales_pitch:
|
|
6927
|
+
- "sales"
|
|
6928
|
+
- "customer"
|
|
6929
|
+
- "prospect"
|
|
6930
|
+
- "demo"
|
|
6931
|
+
- "pitch"
|
|
6932
|
+
- "convert"
|
|
6933
|
+
consulting_deck:
|
|
6934
|
+
- "McKinsey"
|
|
6935
|
+
- "BCG"
|
|
6936
|
+
- "consulting"
|
|
6937
|
+
- "strategy"
|
|
6938
|
+
- "board"
|
|
6939
|
+
- "executive"
|
|
6940
|
+
- "recommendation"
|
|
6941
|
+
investment_banking:
|
|
6942
|
+
- "M&A"
|
|
6943
|
+
- "IPO"
|
|
6944
|
+
- "valuation"
|
|
6945
|
+
- "pitch book"
|
|
6946
|
+
- "investment bank"
|
|
6947
|
+
- "due diligence"
|
|
6948
|
+
- "fairness opinion"
|
|
6949
|
+
investor_pitch:
|
|
6950
|
+
- "investor"
|
|
6951
|
+
- "VC"
|
|
6952
|
+
- "venture"
|
|
6953
|
+
- "fundraising"
|
|
6954
|
+
- "Series A"
|
|
6955
|
+
- "seed"
|
|
6956
|
+
- "angel"
|
|
6957
|
+
technical_presentation:
|
|
6958
|
+
- "architecture"
|
|
6959
|
+
- "engineering"
|
|
6960
|
+
- "technical"
|
|
6961
|
+
- "code"
|
|
6962
|
+
- "system design"
|
|
6963
|
+
- "API"
|
|
6964
|
+
all_hands:
|
|
6965
|
+
- "all-hands"
|
|
6966
|
+
- "town hall"
|
|
6967
|
+
- "company update"
|
|
6968
|
+
- "quarterly"
|
|
6969
|
+
- "team meeting"
|
|
6970
|
+
|
|
6971
|
+
audience_mapping:
|
|
6972
|
+
board_of_directors: "consulting_deck"
|
|
6973
|
+
sales_prospect: "sales_pitch"
|
|
6974
|
+
investors_vcs: "investor_pitch"
|
|
6975
|
+
general_audience_keynote: "ted_keynote"
|
|
6976
|
+
technical_team: "technical_presentation"
|
|
6977
|
+
all_hands_meeting: "all_hands"
|
|
6978
|
+
|
|
6979
|
+
goal_mapping:
|
|
6980
|
+
get_approval: "consulting_deck"
|
|
6981
|
+
inform_educate: "technical_presentation"
|
|
6982
|
+
persuade_sell: "sales_pitch"
|
|
6983
|
+
inspire_motivate: "ted_keynote"
|
|
6984
|
+
report_results: "consulting_deck"
|
|
6985
|
+
raise_funding: "investor_pitch"
|
|
6986
|
+
|
|
6987
|
+
# ==============================================================================
|
|
6988
|
+
# VERSION 8.7.0 CHANGELOG
|
|
6989
|
+
# ==============================================================================
|
|
6990
|
+
|
|
6991
|
+
version_8_7_changelog:
|
|
6992
|
+
date: "2024-12-07"
|
|
6993
|
+
changes:
|
|
6994
|
+
- "Added presentation_types: 7 distinct presentation type swim lanes"
|
|
6995
|
+
- "Each type has non-conflicting validation rules"
|
|
6996
|
+
- "Added type_detection: Keyword and audience-based type detection"
|
|
6997
|
+
- "Replaced binary keynote/business with granular types"
|
|
6998
|
+
- "Added per-type scoring weights"
|
|
6999
|
+
- "Added per-type required elements and anti-patterns"
|
|
7000
|
+
- "Added per-type expert methodologies"
|
|
7001
|
+
|
|
7002
|
+
presentation_types_added:
|
|
7003
|
+
- "ted_keynote: TED-style inspirational (1-15 words/slide)"
|
|
7004
|
+
- "sales_pitch: Persuasive sales deck (10-30 words/slide)"
|
|
7005
|
+
- "consulting_deck: McKinsey/BCG style (40-80 words/slide)"
|
|
7006
|
+
- "investment_banking: Financial pitch books (50-120 words/slide)"
|
|
7007
|
+
- "investor_pitch: VC fundraising (20-50 words/slide)"
|
|
7008
|
+
- "technical_presentation: Engineering audiences (40-100 words/slide)"
|
|
7009
|
+
- "all_hands: Company updates (15-40 words/slide)"
|
|
7010
|
+
|
|
7011
|
+
audience_segmentation_grade:
|
|
7012
|
+
before: 62
|
|
7013
|
+
after: 95
|
|
7014
|
+
improvement: "+33 points"
|
|
7015
|
+
|
|
7016
|
+
integration_status:
|
|
7017
|
+
knowledge_base: "COMPLETE"
|
|
7018
|
+
application_integration: "PENDING"
|
|
7019
|
+
testing: "PENDING"
|