Documentation
README
Creating a CORAL task
A CORAL task is three things that must line up. Scaffold them with coral init, then iterate edit โ coral validate until the grader scores the seed.
my-task/
โโโ task.yaml # config: name, description, grader entrypoint, agent count
โโโ seed/ # starter code agents see at t=0 (this is workspace.repo_path)
โ โโโ solution.py
โโโ grader/ # standalone Python package โ gets its own isolated venv
โโโ pyproject.toml
โโโ src/my_task_grader/
โโโ __init__.py
โโโ grader.py # class Grader(TaskGrader): ...
This is the opening of the README. Read the full README on GitHub.