Thank you for your interest in contributing! This project is maintained as a community resource for learning and using predictive analytics in cloud infrastructure.
Please read COMMUNITY.md to understand the project's purpose and boundaries.
- Bug fixes in existing code
- Performance improvements with synthetic data benchmarks
- Documentation updates (clarifications, examples, typos)
- Example scenarios using synthetic/public data
- Tests with synthetic telemetry data
- Algorithm improvements (if generalizable to any infrastructure)
- Real production telemetry or logs
- Customer data or anonymized customer data without explicit consent
- CloudSealed-specific implementations
- Credentials, API keys, or tokens in any form
- Changes to remove/modify MIT license
- Check existing issues/PRs to avoid duplicates
- Open an issue first for significant changes (discuss before implementing)
- Fork and branch:
git checkout -b feature/your-feature-name - Keep data synthetic: All examples use generated data
- Update docs: Explain what your change does
- Add tests: Use synthetic data; all tests must be reproducible
- Run locally: Ensure
dotnet buildand tests pass - Create PR: Link the issue, describe changes clearly
You MUST NOT commit:
- Real telemetry or logs
- Customer/company-specific data (even anonymized)
- Cloud credentials (keys, tokens, connection strings)
- Production configuration
You CAN use:
- Synthetic data generated with
Randomseeded values - Public datasets (cite source, respect license)
- Realistic but fake scenarios (e.g., "Company A" with made-up metrics)
# Ensure no secrets are committed
git-secrets --scan
# Verify no real company/customer names in data
grep -r "YOUR_COMPANY\|customer\|client" src/- Follow standard C# conventions (PascalCase for public members)
- XML comments for public APIs
- Meaningful variable names
- Keep functions focused and testable
When adding a feature:
- Update README.md if it's user-facing
- Add inline comments explaining the "why"
- Include example usage in docstrings
- Document inputs/outputs clearly
- Write tests for any new algorithms
- Use synthetic data only
- Tests must be reproducible (fixed seeds)
- Verify tests pass:
dotnet test
By contributing, you agree that your work will be distributed under the MIT license. You confirm you have the right to contribute and that you're not violating any third-party licenses.
- Check COMMUNITY.md FAQ
- Open an issue with
[question]tag - Review existing PRs for examples
Thank you for contributing to the community! 🙏