## Contributing We welcome contributions! Here's how to get started. ### Development Setup 1. Fork and clone the repository: ```bash git clone https://github.com/YOUR_USERNAME/kaldo.git cd kaldo ``` 2. Install in development mode: ```bash pip install -e . ``` 3. Run tests to verify your setup: ```bash pytest ``` ### Making Changes 1. Create a feature branch: ```bash git checkout -b feature/your-feature-name ``` 2. Make your changes and ensure tests pass 3. Push and create a pull request: ```bash git push -u origin feature/your-feature-name ``` ### Pull Request Checklist - [ ] Tests pass locally - [ ] New features include tests - [ ] Code follows existing style - [ ] Documentation updated if needed ### Questions? Visit our [discussions page](https://github.com/nanotheorygroup/kaldo/discussions) for questions, feature requests, and workflow sharing.