5-Minute Quick Start

Just paste one prompt into Claude Code and ScholaRAG will be set up automatically.

1Paste this prompt into Claude Code

setup-prompt.txt
Please set up ScholaRAG for me:

1. Clone https://github.com/HosungYou/ScholaRAG.git
2. Navigate into ScholaRAG directory
3. Create Python virtual environment (venv)
4. Activate the virtual environment
5. Install CLI dependencies: pip install click pyyaml
6. Initialize my first project: python scholarag_cli.py init
7. Guide me through Stage 1 of the systematic review workflow

My research topic: [Enter your research topic here]

2Answer 3 questions

  • Project Name:e.g., AI-Healthcare-Adoption
  • Research Question:e.g., How does AI improve healthcare outcomes?
  • Research Domain:e.g., healthcare, education, technology

Step 3: Wait 3 minutes

Claude Code will automatically clone the repository, set up the environment, and initialize your project.

Manual Installation (Advanced)
terminal
# Clone the repository
git clone https://github.com/HosungYou/ScholaRAG.git
cd ScholaRAG

# Create and activate virtual environment
python3 -m venv venv
source venv/bin/activate  # Windows: venv\Scripts\activate

# Install dependencies
pip install click pyyaml

# Initialize project
python scholarag_cli.py init