Thanks for your interest in helping build CoMLRL! This guide walks you through reporting issues, contributing changes, and keeping the codebase healthy.

Development Guidelines#

  1. Fork the upstream repository.
  2. Clone your fork and synchronize with upstream:
      git clone https://github.com/<your-username>/CoMLRL.git
      cd CoMLRL
      git remote add upstream https://github.com/OpenMLRL/CoMLRL.git
      git fetch upstream
      git checkout -b feature/<short-description> upstream/main
      git fetch upstream && git rebase upstream/main
  3. Implement new features or fix bugs, updating documentation as needed.
  4. Open a pull request to the upstream repository and wait for review.