This source did not publish a separate summary. Review SKILL.md before using the skill.
SKILL.md
Biotech Pitch Deck Narrative
Overview
Strategic communication tool that translates complex biotechnology innovations into compelling business narratives optimized for venture capital, pharmaceutical partnerships, and public market investors.
Key Capabilities:
Science Translation: Convert technical data into business value language
Convert technical concepts into investor-friendly language:
from scripts.narrative_engine import BiotechNarrativeEngine
engine = BiotechNarrativeEngine()
# Translate technical description
translation = engine.translate_science(
technical_description="""
Our proprietary AAV9-based gene therapy utilizes a codon-optimized
transgene under control of a liver-specific promoter to restore
functional enzyme in patients with MPS I deficiency.
""",
audience="generalist_vc",
preserve_accuracy=True
)
print(translation.business_narrative)
# "One-time gene therapy delivering a functional copy of the missing enzyme,
# potentially curing MPS I rather than managing symptoms"
Translation Strategies:
Technical Concept
Business Translation
Why It Works
"CRISPR-Cas9 gene editing"
"Precision genetic medicine platform"
Platform implies scalability
"Phase II clinical data"
"De-risked asset with human proof-of-concept"
Reduces perceived risk
"Off-target effects"
"Industry-leading specificity profile"
Competitive framing
"MOA via JAK-STAT pathway"
"Novel mechanism addressing root cause"
Value proposition
2. Narrative Architecture
Structure pitch deck flow for maximum impact:
# Generate complete narrative arc
narrative = engine.build_narrative(
company_stage="series_b",
science_type="gene_therapy",
clinical_stage="phase_2",
target_market="rare_disease",
key_differentiation="one_time_cure"
)
# Access each component
print(narrative.hook) # Opening grab
print(narrative.problem) # Market pain point
print(narrative.solution) # Your approach
print(narrative.traction) # Validation to date
print(narrative.ask) # Funding request
Narrative Structure:
Hook (30 seconds): Why this, why now, why you
Problem ($B+ market): Unmet medical need, current standard limitations
Solution: Your technology/platform, mechanism of action
Traction: Clinical data, partnerships, validation
Market: Size, competition, your advantage
Team: Track record, why you'll succeed
Ask: Funding amount, use of proceeds, milestones
3. Stage-Specific Optimization
Calibrate message depth for funding round:
# Optimize for different stages
seed_narrative = engine.optimize_for_stage(
base_narrative=narrative,
stage="seed",
focus="team_and_vision" # Seed cares about team and big idea
)
series_a_narrative = engine.optimize_for_stage(
base_narrative=narrative,
stage="series_a",
focus="proof_of_concept" # Series A needs validation
)
ipo_narrative = engine.optimize_for_stage(
base_narrative=narrative,
stage="ipo",
focus="commercial_readiness" # IPO requires near-term revenue
)
Stage Requirements:
Stage
Key Questions
Focus Areas
Seed ($500K-$2M)
Can you execute?
Team, vision, early validation
Series A ($10-30M)
Does it work?
POC data, IP position, market entry
Series B ($30-75M)
Will it scale?
Phase 2/3 data, BD traction, team expansion
Series C/IPO ($100M+)
Commercial execution
Registration trials, launch prep, revenue path
4. Investor Audience Calibration
Adapt tone and depth for different investor types:
# Calibrate for specific investor
calibrated = engine.calibrate_for_audience(
narrative=narrative,
investor_type="healthcare_vc", # vs "generalist_vc" or "pharma_corp"
technical_depth="moderate", # Depth of scientific detail
risk_tolerance="high" # Early vs late stage framing
)
Investor Types:
Generalist VC: Focus on market size, business model, team pedigree
Healthcare VC: Balance science rigor with commercial potential
Rewrite Section: Technical content → Business-friendly version
Audience Adaptation: Same content for different VC types
Lifecycle Status
Current Stage: Draft
Next Review Date: 2026-03-06
Known Issues: Help text in Chinese
Planned Improvements:
Translate all interface text to English
Add more investor personas
Enhance narrative templates
💼 Business Note: Successful biotech fundraising requires balancing scientific credibility with business appeal. This tool helps structure narratives, but the underlying science and team execution ultimately determine success. Always maintain integrity—overpromising destroys credibility with sophisticated investors.