# Contributing to ryansend Thanks for wanting to contribute! ## Sign off your commits Just add `-s` when you commit to certify you have the right to contribute the code: ```bash git commit -s -m "Add new feature" ``` This adds a `Signed-off-by` line with your name and email. See the [DCO](DCO) file for what this means (spoiler: it's simple). ## How to Contribute 1. **Fork** the repo 2. **Make** your changes in a feature branch 3. **Sign off** commits with `git commit -s` 4. **Test** locally (`cargo test`, `cargo fmt`, `cargo clippy`) 5. **Submit** a pull request Keep PRs focused on one thing, write clear commit messages, and make sure everything builds. ## Questions? Open an issue or start a discussion. Your contributions will be under the [MIT License](LICENSE) same as the rest of the project.