CoUGARs is a low-cost, configurable AUV platform designed for multi-agent autonomy research by the Field Robotic Systems Lab (FROST Lab) at Brigham Young University.
Prerequisites: 64-bit Linux, free disk space (10+ GB recommended), and a dedicated NVIDIA GPU (for HoloOcean simulation).
-
Install Docker and VSCode Dev Containers.
-
Add a GitHub SSH key and clone the
cougars-devrepository.git clone git@github.com:cougars-auv/cougars-dev.git
-
Choose a development workflow:
Simulation (HoloOcean):
-
Build a runtime image for HoloOcean-ROS on the
cougars-auvorganization's fork. When prompted to run./build_container.sh, specify the branchnelson/cougars-devusing./build_container.sh -b nelson/cougars-dev. -
Open the
cougars-devrepository in VSCode and use the Command Palette (Ctrl + Shift + P) to select "Dev Containers: Reopen in Container." When prompted to choose adevcontainer.jsonfile, clickCoUGARs Dev (GPU). -
Once the containers load, open a new terminal window using
Ctrl + Alt + Shift + `and launch a HoloOcean scenario in theholoocean-ctcontainer using./holoocean_launch.sh.cd ~/cougars-dev/scripts && ./holoocean_launch.sh
-
Open a new terminal, build the
ros2_wsworkspace, and select the matching launch configuration using./sim_launch.sh.cd ~/cougars-dev/ros2_ws && colcon build cd ~/cougars-dev/scripts && ./sim_launch.sh
Recorded Data (
rosbag2):-
Open the
cougars-devrepository in VSCode and use the Command Palette (Ctrl + Shift + P) to select "Dev Containers: Reopen in Container." When prompted to choose adevcontainer.jsonfile, clickCoUGARs Dev. -
Once the containers load, copy your
rosbag2bag into thebagsfolder at the root of the repository. -
Open a new terminal window using
Ctrl + Alt + Shift + `, build theros2_wsworkspace, and select the bag using./bag_launch.sh.cd ~/cougars-dev/ros2_ws && colcon build cd ~/cougars-dev/scripts && ./bag_launch.sh
-
Note: This repository uses vcstool to manage nested repositories. If not all repositories appear in the Git sidebar, open settings (
Ctrl + ,), set "Git: Repository Scan Max Depth" to 3, and reload the window.
-
Create a Branch: Create a new branch using the format
name/feature(e.g.,nelson/repo-docs). -
Make Changes: Develop and debug your new feature. Add good documentation.
If you need to add dependencies, update the
package.xml, the Dockerfiles under.docker/,cougars.repos, ordependencies.reposin your branch and test building the image locally. -
Sync Frequently: Regularly integrate the latest changes from
maininto your branch (via rebase or merge) to prevent future conflicts. -
Submit a PR: Open a pull request, ensure required tests pass, and merge once approved. Upon merge to
main, GitHub Actions will automatically build and push updated images to Docker Hub with any new dependencies.
We adhere to the Semantic Versioning (SemVer 2.0.0) standard to release new versions of this repository:
Given a version number
MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes
- MINOR version when you add functionality in a backward compatible manner
- PATCH version when you make backward compatible bug fixes
-
Create a Release Branch: Create a dedicated release branch (e.g.,
release/v1.2.x) frommain.Do not create separate branches for patch versions (e.g.,
v1.2.1). Simply merge fixes into the minor release branch and bump the patch version on the new tag when ready to release. -
Tag Nested Repositories: Check the repositories listed in
cougars.repos. If there are untagged updates, update the<version>in thepackage.xmlfiles and push new version tags (e.g.,v2.3.4). Since sub-repositories version independently ofcougars-dev, you can either use an existing up-to-date tag or create a new one. -
Lock Dependencies: On the release branch, pin all nested repositories in
cougars.reposto their specific release tags (instead of branches likemain). Commit these updates. -
Tag and Push: Create and push a version tag (e.g.,
v1.2.3) on your release commit:git tag v1.2.3 git push origin v1.2.3
Pushing the tag automatically rebuilds and publishes the Docker images using a
<target>-<version>format (e.g.,frostlab/cougars:base-v1.2.3) and opens a draft GitHub Release with auto-generated notes. -
Publish a GitHub Release: Review the draft release in GitHub and click Publish.
Please cite our relevant publications if you find this repository useful for your research:
@misc{durrant2025lowcostmultiagentfleetacoustic,
title={Low-cost Multi-agent Fleet for Acoustic Cooperative Localization Research},
author={Nelson Durrant and Braden Meyers and Matthew McMurray and Clayton Smith and Brighton Anderson and Tristan Hodgins and Kalliyan Velasco and Joshua G. Mangelson},
year={2025},
eprint={2511.08822},
archivePrefix={arXiv},
primaryClass={cs.RO},
url={https://arxiv.org/abs/2511.08822},
}@misc{meyers2025testingevaluationunderwatervehicle,
title={Testing and Evaluation of Underwater Vehicle Using Hardware-In-The-Loop Simulation with HoloOcean},
author={Braden Meyers and Joshua G. Mangelson},
year={2025},
eprint={2511.07687},
archivePrefix={arXiv},
primaryClass={cs.RO},
url={https://arxiv.org/abs/2511.07687},
}@inproceedings{potokar2022holooceanunderwaterroboticssim,
author={Easton Potokar and Spencer Ashford and Michael Kaess and Joshua G. Mangelson},
title={Holo{O}cean: An Underwater Robotics Simulator},
booktitle={Proc. IEEE Intl. Conf. on Robotics and Automation, ICRA},
address={Philadelphia, PA, USA},
month={May},
year={2022}
}

