File size: 1,357 Bytes
c26f879 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | # Contributing to GR00T-WholeBodyControl
We welcome contributions from the community! Here's how to get started.
## Reporting Issues
- Search [existing issues](https://github.com/NVlabs/GR00T-WholeBodyControl/issues) first
- Open a new issue with a clear description, error messages, and steps to reproduce
- Include your Python version, OS, GPU, and Isaac Lab version
## Pull Requests
1. Fork the repository
2. Create a feature branch (`git checkout -b my-feature`)
3. Make your changes
4. Run the pre-flight check: `python check_environment.py`
5. Commit and push to your fork
6. Open a pull request against `main`
### Guidelines
- Keep PRs focused on a single change
- Follow existing code style (no linter is enforced, but be consistent)
- Update documentation if your change affects user-facing behavior
- Add yourself to the PR description if you'd like credit
## Development Setup
See the [Installation Guide](https://nvlabs.github.io/GR00T-WholeBodyControl/getting_started/installation_training.html)
for setting up the training environment.
## Questions
For questions, open a [GitHub Discussion](https://github.com/NVlabs/GR00T-WholeBodyControl/issues)
or contact [gear-wbc@nvidia.com](mailto:gear-wbc@nvidia.com).
## License
By contributing, you agree that your contributions will be licensed under the
[Apache 2.0 License](LICENSE).
|