Quick Start#
Five minutes from zero to a generated paper.
1. Install#
macOS / Linux
curl -fsSL https://eurekaclaw.ai/install.sh | bash
eurekaclaw onboard # interactive setup wizard (creates .env)
Windows (under development — not fully supported yet)
powershell -c "irm https://eurekaclaw.ai/install_win.ps1 | iex"
Manual install (Linux/MacOS)
git clone https://github.com/EurekaClaw/EurekaClaw
cd EurekaClaw
make install # pip install -e "." + npm install (frontend)
cp .env.example .env
Manual install (Windows)
git clone https://github.com/EurekaClaw/EurekaClaw
cd EurekaClaw
powershell -ExecutionPolicy Bypass -File install_win.ps1 # pip install -e "." + npm install (frontend)
cp .env.example .env
Edit .env and add your ANTHROPIC_API_KEY (or see Authentication).
2. Install Skills#
eurekaclaw install-skills
Required. This step downloads the built-in seed skills (proof strategies, domain heuristics, lemma templates) that EurekaClaw needs to run. Skipping it will cause proofs to fail with
No skills availableor produce significantly degraded results.
3. Run Your First Proof#
eurekaclaw prove "The sum of the first n natural numbers equals n(n+1)/2" \
--domain "combinatorics" --output ./results
Expected output:
━━━━━━━━━━━━━━━ Survey Complete ━━━━━━━━━━━━━━━
Papers found 3
Open problems 1
Key objects induction, arithmetic series
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━━━━━━━━ Theory Complete ━━━━━━━━━━━━━━━
Status proved
Lemmas 2 (1 known · 1 new)
Confidence ✓ high on 2
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🦞 Paper saved to: ./results/<session_id>/paper.pdf
4. Read the Output#
Open ./results/<session_id>/paper.pdf for the compiled paper, or check:
File |
Contains |
|---|---|
|
Compiled PDF (needs pdflatex + bibtex) |
|
Full LaTeX source |
|
Proof state — lemmas, confidence scores |
|
Planning state |
Next Steps#
Learn all three input modes, gate control, and tuning options.
Set models, token limits, and pipeline behavior via .env.
Launch the visual interface for live progress and settings sliders.