Generate academic paper PDF from experiment analysis results.
Generate academic paper PDF from experiment analysis using the EasyPaper service.
# Get PYTHON_PATH from .env
PYTHON_PATH=$(grep "^PYTHON_PATH=" .env | cut -d'=' -f2)
PYTHON_PATH=${PYTHON_PATH:-python3}
python scripts/generate.py --hypothesis-id 1 --experiment-id 1
This skill requires agentsociety2 to be installed in the Python environment.
Use the PYTHON_PATH from your .env file to ensure the correct Python interpreter is used. See CLAUDE.md for details.
| Parameter | Type | Required |
|---|
| Description |
|---|
| --hypothesis-id | string | Yes | Hypothesis ID |
| --experiment-id | string | Yes | Experiment ID |
| --workspace | string | No | Workspace path (default: current directory) |
| --target-pages | integer | No | Target page count (default: 6) |
| --template | string | No | Path to LaTeX template .zip file |
| --style | string | No | Style guide name (e.g., 'ICML', 'NeurIPS') |
| --no-review | flag | No | Disable EasyPaper's review loop |
| --output-dir | string | No | Output directory (default: auto-generated) |
hypothesis_{id}/experiment_{id}/final_paper_{timestamp}/
├── paper.pdf # Final PDF output
├── metadata.json # Paper metadata used
└── iteration_*_final/ # LaTeX source files
Available styles: plain, ICML, COLM, NeurIPS, and others supported by EasyPaper.