Thank you for your interest in contributing to Project N.O.M.A.D.! Community contributions are what keep this project growing and improving. Please read this guide fully before getting started — it will save you (and the maintainers) a lot of time.
Note: Acceptance of contributions is not guaranteed. All pull requests are evaluated based on quality, relevance, and alignment with the project's goals. The maintainers of Project N.O.M.A.D. ("Nomad") reserve the right accept, deny, or modify any pull request at their sole discretion.
- Code of Conduct
- Before You Start
- Getting Started
- Development Workflow
- Commit Messages
- Release Notes
- Versioning
- Submitting a Pull Request
- Feedback & Community
Please read and review our full Code of Conduct before contributing. In short: please be respectful and considerate in all interactions with maintainers and other contributors.
We are committed to providing a welcoming environment for everyone. Disrespectful or abusive behavior will not be tolerated.
Open an issue first. Before writing any code, please open an issue to discuss your proposed change. This helps avoid duplicate work and ensures your contribution aligns with the project's direction.
When opening an issue:
- Use a clear, descriptive title
- Describe the problem you're solving or the feature you want to add
- If it's a bug, include steps to reproduce it and as much detail about your environment as possible
- Ensure you redact any personal or sensitive information in any logs, configs, etc.
Please note: this is the Getting Started guide for developing and contributing to Nomad, NOT installing Nomad for regular use!
- A Debian-based OS (Ubuntu recommended)
sudo/root privileges- Docker installed and running
- A stable internet connection (required for dependency downloads)
- Node.js (for frontend/admin work)
- Click Fork at the top right of this repository
- Clone your fork locally:
git clone https://github.com/YOUR_USERNAME/project-nomad.git cd project-nomad - Add the upstream remote so you can stay in sync:
git remote add upstream https://github.com/Crosstalk-Solutions/project-nomad.git
Because Nomad relies heavily on Docker, we actually recommend against installing a release version of the project on the same local machine where you are developing. This can lead to conflicts with ports, volumes, and other resources. Instead, you can run your development version in a separate Docker environment while keeping your local machine clean. It certainly can be done, but it adds complexity to your setup and workflow. If you choose to install a release version locally, please ensure you have a clear strategy for managing potential conflicts and resource usage.
-
Sync with upstream before starting any new work. We prefer rebasing over merge commits to keep a clean, linear git history as much as possible (this also makes it easier for maintainers to review and merge your changes). To sync with upstream:
git fetch upstream git checkout main git rebase upstream/main
-
Create a feature branch off
mainwith a descriptive name:git checkout -b fix/issue-123 # or git checkout -b feature/add-new-tool -
Make your changes. Follow existing code style and conventions. Test your changes locally against a running N.O.M.A.D. instance before submitting.
-
Add release notes (see Release Notes below).
-
Commit your changes using Conventional Commits.
-
Push your branch and open a pull request.
This project uses Conventional Commits. All commit messages must follow this format:
<type>(<scope>): <description>
Common types:
| Type | When to use |
|---|---|
feat |
A new user-facing feature |
fix |
A bug fix |
docs |
Documentation changes only |
refactor |
Code change that isn't a fix or feature and does not affect functionality |
chore |
Build process, dependency updates, tooling |
test |
Adding or updating tests |
Scope is optional but encouraged — use it to indicate the area of the codebase affected (e.g., api, ui, maps).
Examples:
feat(ui): add dark mode toggle to Command Center
fix(api): resolve container status not updating after restart
docs: update hardware requirements in README
chore(deps): bump docker-compose to v2.24
Human-readable release notes live in admin/docs/release-notes.md and are displayed directly in the Command Center UI.
When your changes include anything user-facing, add a summary to the ## Unreleased section at the top of that file under the appropriate heading:
- Features — new user-facing capabilities
- Bug Fixes — corrections to existing behavior
- Improvements — enhancements, refactors, docs, or dependency updates
Use the format - **Area**: Description to stay consistent with existing entries.
Example:
## Unreleased
### Features
- **Maps**: Added support for downloading South America regional maps
### Bug Fixes
- **AI Chat**: Fixed document upload failing on filenames with special charactersWhen a release is triggered, CI automatically stamps the version and date, commits the update, and publishes the content to the GitHub release. You do not need to do this manually.
This project uses Semantic Versioning. Versions are managed in the root package.json and updated automatically by semantic-release. The project-nomad Docker image uses this version. The admin/package.json version stays at 0.0.0 and should not be changed manually.
- Push your branch to your fork:
git push origin your-branch-name
- Open a pull request against the
mainbranch of this repository - In the PR description:
- Summarize what your changes do and why
- Reference the related issue (e.g.,
Closes #123) - Note any relevant testing steps or environment details
- Be responsive to feedback — maintainers may request changes. Pull requests with no activity for an extended period may be closed.
Have questions or want to discuss ideas before opening an issue? Join the community:
- Discord: Join the Crosstalk Solutions server — the best place to get help, share your builds, and talk with other N.O.M.A.D. users
- Website: www.projectnomad.us
- Benchmark Leaderboard: benchmark.projectnomad.us
Project N.O.M.A.D. is licensed under the Apache License 2.0.