blockbuster-therapy-predictor
Predict which early-stage biotechnology platforms (PROTAC, mRNA, gene editing, etc.) have the highest potential to become blockbuster therapies. Analyzes clinical trial progression, patent landscape maturity, and venture capital funding trends to generate investment and R&D prioritization scores. Trigger when: User asks about technology investment potential, platform selection, or therapeutic modality comparison.
Best use case
blockbuster-therapy-predictor is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Predict which early-stage biotechnology platforms (PROTAC, mRNA, gene editing, etc.) have the highest potential to become blockbuster therapies. Analyzes clinical trial progression, patent landscape maturity, and venture capital funding trends to generate investment and R&D prioritization scores. Trigger when: User asks about technology investment potential, platform selection, or therapeutic modality comparison.
Teams using blockbuster-therapy-predictor should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/blockbuster-therapy-predictor/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How blockbuster-therapy-predictor Compares
| Feature / Agent | blockbuster-therapy-predictor | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Predict which early-stage biotechnology platforms (PROTAC, mRNA, gene editing, etc.) have the highest potential to become blockbuster therapies. Analyzes clinical trial progression, patent landscape maturity, and venture capital funding trends to generate investment and R&D prioritization scores. Trigger when: User asks about technology investment potential, platform selection, or therapeutic modality comparison.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
SKILL.md Source
# Blockbuster Therapy Predictor
Comprehensive analytics tool for forecasting breakthrough therapeutic technologies by integrating multi-dimensional data sources including clinical development pipelines, intellectual property landscapes, and capital market indicators.
## Features
- **Multi-Source Data Integration**: Aggregates clinical trials, patents, and funding data
- **Predictive Scoring**: Calculates Blockbuster Index combining maturity, market potential, and momentum
- **Technology Landscape Mapping**: Tracks 10+ emerging therapeutic platforms
- **Investment Intelligence**: Provides data-driven R&D and investment recommendations
- **Trend Analysis**: Identifies acceleration patterns and inflection points
## Usage
### Basic Usage
```bash
# Run complete analysis with all technologies
python scripts/main.py
# Analyze specific technologies
python scripts/main.py --tech PROTAC,mRNA,CRISPR
# Output in JSON format
python scripts/main.py --output json
```
### Parameters
| Parameter | Type | Default | Required | Description |
|-----------|------|---------|----------|-------------|
| `--mode` | str | full | No | Analysis mode: full or quick |
| `--tech` | str | None | No | Comma-separated list of technologies to analyze |
| `--output` | str | console | No | Output format: console or json |
| `--threshold` | float | 0 | No | Minimum blockbuster index threshold (0-100) |
| `--save` | str | None | No | Save report to file path |
### Advanced Usage
```bash
# Analyze high-potential technologies only (index ≥70)
python scripts/main.py \
--threshold 70 \
--output json \
--save high_potential_report.json
# Quick analysis of specific platforms
python scripts/main.py \
--mode quick \
--tech CAR-T,ADC,Bispecific \
--output console
```
## Output
### Console Output
```
🏆 BLOCKBUSTER THERAPY PREDICTOR Report
Generated: 2026-02-15 10:30:00
Technologies analyzed: 10
📊 Technology Rankings
Rank Technology Blockbuster Index Maturity Market Potential Momentum Recommendation
🥇 1 mRNA 85.2 78.5 92.1 88.0 Strongly Recommended
🥈 2 CAR-T 82.3 85.2 78.5 75.0 Strongly Recommended
🥉 3 CRISPR 79.8 72.3 88.2 68.0 Recommended
```
### JSON Output Structure
```json
{
"generated_at": "2026-02-15T10:30:00",
"total_routes": 10,
"rankings": [
{
"rank": 1,
"tech_name": "mRNA",
"blockbuster_index": 85.2,
"maturity_score": 78.5,
"market_potential_score": 92.1,
"momentum_score": 88.0,
"recommendation": "Strongly Recommended",
"key_drivers": ["Multiple Phase III trials", "Rapid patent growth"],
"risk_factors": ["Regulatory uncertainties"],
"timeline_prediction": "First product expected in 2-4 years"
}
]
}
```
## Scoring Methodology
### Blockbuster Index Formula
```
Blockbuster Index = (Market Potential × 0.5) + (Maturity × 0.3) + (Momentum × 0.2)
```
### Component Scores
| Component | Weight | Factors |
|-----------|--------|---------|
| **Market Potential** | 50% | Market size, unmet need, competition |
| **Maturity** | 30% | Clinical stage, patent depth, funding stage |
| **Momentum** | 20% | Patent growth, funding activity, clinical progress |
### Investment Recommendation Thresholds
| Blockbuster Index | Recommendation | Action |
|-------------------|----------------|--------|
| ≥ 80 | **Strongly Recommended** | Prioritize R&D investment |
| 60-79 | **Recommended** | Active monitoring and early partnerships |
| 40-59 | **Watch** | Monitor milestones; reassess in 6-12 months |
| < 40 | **Cautious** | Minimal investment; consider divestment |
## Supported Technologies
| Technology | Category | Description |
|------------|----------|-------------|
| PROTAC | Protein Degradation | Proteolysis Targeting Chimera |
| mRNA | Nucleic Acid Drugs | Messenger RNA therapy platform |
| CRISPR | Gene Editing | CRISPR-Cas gene editing technology |
| CAR-T | Cell Therapy | Chimeric Antigen Receptor T-cell therapy |
| Bispecific | Antibody Drugs | Bispecific antibody technology |
| ADC | Antibody Drugs | Antibody-Drug Conjugate |
| RNAi | Nucleic Acid Drugs | RNA interference therapy |
| Gene Therapy | Gene Therapy | AAV vector gene therapy |
| Allogeneic | Cell Therapy | Universal/Allogeneic cell therapy |
| Cell Therapy | Cell Therapy | General cell therapy platform |
## Technical Difficulty: **MEDIUM**
⚠️ **AI自主验收状态**: 需人工检查
This skill requires:
- Python 3.8+ environment
- Basic understanding of biotech investment analysis
- Access to clinical trial, patent, and funding databases (optional)
## Dependencies
### Required Python Packages
```bash
pip install -r requirements.txt
```
### Requirements File
```
dataclasses
enum
```
## Risk Assessment
| Risk Indicator | Assessment | Level |
|----------------|------------|-------|
| Code Execution | Python scripts executed locally | Medium |
| Network Access | No external API calls in mock mode | Low |
| File System Access | Read/write report files only | Low |
| Instruction Tampering | Standard prompt guidelines | Low |
| Data Exposure | Output files saved to workspace | Low |
## Security Checklist
- [x] No hardcoded credentials or API keys
- [x] No unauthorized file system access (../)
- [x] Output does not expose sensitive information
- [x] Prompt injection protections in place
- [x] Input file paths validated (no ../ traversal)
- [x] Output directory restricted to workspace
- [x] Script execution in sandboxed environment
- [x] Error messages sanitized (no stack traces exposed)
- [x] Dependencies audited
## Prerequisites
```bash
# Python dependencies
pip install -r requirements.txt
```
## Evaluation Criteria
### Success Metrics
- [ ] Successfully executes main functionality
- [ ] Output meets quality standards
- [ ] Handles edge cases gracefully
- [ ] Performance is acceptable
### Test Cases
1. **Basic Functionality**: Run without arguments → Expected output with all technologies
2. **Technology Filter**: Use --tech flag → Only specified technologies analyzed
3. **JSON Output**: Use --output json → Valid JSON format output
4. **Threshold Filter**: Use --threshold 70 → Only technologies with index ≥70 shown
## Lifecycle Status
- **Current Stage**: Draft
- **Next Review Date**: 2026-03-15
- **Known Issues**: None
- **Planned Improvements**:
- Integration with real-time data APIs
- Additional technology platforms
- Enhanced visualization capabilities
## References
See `references/` for:
- Historical blockbuster case studies
- Clinical trial data sources
- Patent analysis methodologies
- Investment scoring frameworks
## Limitations
- **Data Source**: Uses mock data for demonstration; real-time data integration required for production use
- **Prediction Accuracy**: Model provides indicative scores; not investment advice
- **Technology Coverage**: Limited to pre-configured technology platforms
- **Market Dynamics**: Cannot predict black swan events or regulatory changes
- **Regional Bias**: Data primarily focused on US/EU markets
---
**⚠️ DISCLAIMER: This tool provides quantitative analysis for decision support only. All investment and R&D decisions should incorporate qualitative domain expertise, regulatory consultation, and comprehensive due diligence. Past performance of historical blockbusters does not guarantee future success of emerging technologies.**Related Skills
Therapy
A supportive AI agent skill for mental health awareness and therapy preparation. Helps identify emotions, prepare for therapy sessions, track mood patterns, build coping strategies, and understand therapeutic concepts. Not a therapist. A self-awareness tool to complement professional care.
---
name: article-factory-wechat
humanizer
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
find-skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
tavily-search
Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.
baidu-search
Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
agent-autonomy-kit
Stop waiting for prompts. Keep working.
Meeting Prep
Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.
self-improvement
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
botlearn-healthcheck
botlearn-healthcheck — BotLearn autonomous health inspector for OpenClaw instances across 5 domains (hardware, config, security, skills, autonomy); triggers on system check, health report, diagnostics, or scheduled heartbeat inspection.
linkedin-cli
A bird-like LinkedIn CLI for searching profiles, checking messages, and summarizing your feed using session cookies.
notebooklm
Google NotebookLM 非官方 Python API 的 OpenClaw Skill。支持内容生成(播客、视频、幻灯片、测验、思维导图等)、文档管理和研究自动化。当用户需要使用 NotebookLM 生成音频概述、视频、学习材料或管理知识库时触发。