Thank you for your interest in improving this template! This document provides guidelines for contributing to make the template better for everyone.
The best way to contribute is to use this template for your own research projects and provide feedback on what works well and what could be improved.
- Bug reports help us fix problems
- Feature requests help us understand what's needed
- Documentation improvements help other users
- Bug fixes for any issues you encounter
- features that would benefit all users
- Improvements to existing functionality
- Tests to ensure code quality
git clone https://github.com/YOUR_USERNAME/template.git
cd template# Create virtual environment
uv run python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
pip install -e ".[dev]"# Recommended: match CI (see ../.github/README.md)
uv sync
uv run pytest tests/infra_tests/ --cov=infrastructure --cov-fail-under=60 -m "not requires_ollama"
uv run pytest projects/code_project/tests/ --cov=projects/code_project/src --cov-fail-under=90 -m "not requires_ollama"Legacy one-liners (if not using uv):
pytest
pytest --cov=src --cov-report=html- 90% minimum coverage for project code, 60% minimum for infrastructure
- All tests must pass before any changes are accepted
- Add tests for new functionality
- Update tests when fixing bugs
- Follow PEP 8 for Python code
- Use meaningful names for variables and functions
- Add docstrings for all public functions
- Keep functions focused and single-purpose
- Update README.md if adding features
- Add docstrings to new functions
- Update relevant guides in the docs/ directory
- Include examples for new functionality
- Agent
SKILL.md: If you add or changeinfrastructure/**/SKILL.md, runuv run python -m infrastructure.skills writeand commit.cursor/skill_manifest.jsonso CI tests and Cursor stay in sync
Use clear, descriptive commit messages:
feat: add automated figure generation
fix: resolve PDF rendering issue with special characters
docs: update installation instructions for Windows
test: add coverage for new statistical functions
git checkout -b feature/your-feature-name
# or
git checkout -b fix/issue-description- Implement the feature/fix
- Add/update tests
- Update documentation
- Ensure all tests pass
# Run the full test suite
pytest
# Check coverage
pytest --cov=src --cov-report=html
# Test the build pipeline
uv run python scripts/execute_pipeline.py --project {name} --core-only- Clear description of what the PR accomplishes
- Reference any issues being addressed
- Include screenshots if UI changes
- Describe testing performed
- Bug fixes that affect template usability
- Documentation improvements for clarity
- Test coverage improvements
- Performance optimizations
- New utility functions that benefit many users
- error handling and user feedback
- Additional output formats (HTML, Word, etc.)
- Integration examples with popular tools
- Cosmetic changes that don't improve functionality
- Very specific features that only benefit niche use cases
- Breaking changes without clear migration path
- Breaking changes to the core architecture
- Dependencies on proprietary software
- Platform-specific code that doesn't work cross-platform
- Changes that reduce test coverage
- Open an issue with the "question" label
- Check existing issues for similar questions
- Review the documentation in the docs/ directory
- Describe what you're trying to do
- Include error messages and stack traces
- Share your environment (OS, Python version, etc.)
- Provide minimal reproduction steps
../../.github/README.md- GitHub Actions, branch protection, local CI mirror../core/architecture.md- System design overview../core/workflow.md- Development workflow guidemarkdown-template-guide.md- Writing and formatting guideexamples.md- Usage examples and customizationREADME.md- Project overview and quick startthin-orchestrator-summary.md- Architecture implementation details
Every contribution, no matter how small, helps make this template better for researchers and developers worldwide. Thank you for your time and effort!
Happy contributing! 🚀