SQLMesh is a project of the Linux Foundation. We welcome contributions from anyone — whether you're fixing a bug, improving documentation, or proposing a new feature.
The TSC is responsible for technical oversight of the SQLMesh project, including coordinating technical direction, approving contribution policies, and maintaining community norms.
Initial TSC voting members are the project's Maintainers:
| Name | GitHub Handle | Affiliation | Role |
|---|---|---|---|
| Alexander Butler | z3z1ma | Harness | TSC Member |
| Alexander Filipchik | afilipchik | Cloud Kitchens | TSC Member |
| Reid Hooper | rhooper9711 | Benzinga | TSC Member |
| Yuki Kakegawa | StuffbyYuki | Jump.ai | TSC Member |
| Toby Mao | tobymao | Fivetran | TSC Chair |
| Alex Wilde | alexminerv | Minerva | TSC Member |
Contributors: Anyone who contributes code, documentation, or other technical artifacts to the project.
Maintainers: Contributors who have earned the ability to modify source code, documentation, or other technical artifacts. A Contributor may become a Maintainer by majority approval of the TSC. A Maintainer may be removed by majority approval of the TSC.
- Fork the repository on GitHub
- Create a branch for your changes
- Make your changes and commit them with a sign-off (see DCO section below)
- Submit a pull request against the
mainbranch
File issues at github.com/sqlmesh/sqlmesh/issues.
All contributions must include a Signed-off-by line in the commit message per the Developer Certificate of Origin. This certifies that you wrote the contribution or have the right to submit it under the project's open source license.
Use git commit -s to add the sign-off automatically:
git commit -s -m "Your commit message"To fix a commit that is missing the sign-off:
git commit --amend -sTo add a sign-off to multiple commits:
git rebase HEAD~N --signoffSee docs/development.md for full setup instructions. Key commands:
python -m venv .venv
source .venv/bin/activate
make install-dev
make style # Run before submitting
make fast-test # Quick test suite- Run
make stylebefore submitting a pull request - Follow existing code patterns and conventions in the codebase
- New files should include an SPDX license header:
# SPDX-License-Identifier: Apache-2.0
- Describe your changes clearly in the pull request description
- Ensure all CI checks pass
- Include a DCO sign-off on all commits (
git commit -s) - Be responsive to review feedback from maintainers
Code contributions are licensed under the Apache License 2.0. Documentation contributions are licensed under Creative Commons Attribution 4.0 International (CC-BY-4.0). See the LICENSE file and the technical charter for details.