mirror of
https://github.com/run-llama/vibe-llama.git
synced 2026-06-30 21:57:55 -04:00
1.3 KiB
1.3 KiB
Contributing to vibe-llama
Thank you for your interest in contributing to this project! Please review these guidelines before getting started.
Issue Reporting
When to Report an Issue
- You've discovered bugs but lack the knowledge or time to fix them
- You have feature requests but cannot implement them yourself
⚠️ Important: Always search existing open and closed issues before submitting to avoid duplicates.
How to Report an Issue
- Open a new issue
- Provide a clear, concise title that describes the problem or feature request
- Include a detailed description of the issue or requested feature
Code Contributions
When to Contribute
- You've identified and fixed bugs
- You've optimized or improved existing code
- You've developed new features that would benefit the community
How to Contribute
-
Fork the repository and checkout a feature branch
-
Set up pre-commit hooks
pip install pre-commit pre-commit install -
Make your changes and test
pytest tests/Ensure all tests pass. Add tests for new features.
-
Commit your changes
-
Verify pre-commit compliance Ensure your changes pass all linting checks.
-
Submit a pull request Include a comprehensive description of your changes.
Thank you for contributing!