Community demos and projects built on or from ROOST projects. Projects listed in this repo are not developed or endorsed by ROOST, and may not be intended for production use. Check each project’s documentation for details.
-
Built on, from, or to be used with an existing ROOST open source project
-
If related to online trust & safety but not a ROOST project specifically, please add it to Awesome Safety Tools) instead
-
If related to an open-weight LLM or other safety model, please see the ROOST Model Community
-
-
Accessible on the web, ideally with source code
Projects live in _data/projects.yml. Open a pull request or file an issue to add your own project, ensuring you include:
- Title
- Description
- URL
- Tags (see existing projects for reference)
Someone from @roostorg/roosters will review and merge your pull request if approved!
If you want to hack on this project locally, it's a fairly simple static site built with Jekyll and served by GitHub Pages.
-
Prerequisites: you'll need to install Ruby, Bundler, and Jekyll.
-
Project dependencies are managed as Ruby gems with Bundler. Run
bundle installto get everything set up the first time. -
Build and serve the site locally with Jekyll using
bundle exec jekyll serve, then navigate to http://localhost:4000.To make it accessible on your local network (e.g. to test from a mobile device), append
--host 0.0.0.0, then navigate tohttp://your-local-ip-address:4000from the other device.
See the GitHub docs for more information.