Contributing to Flow Go
February 3, 2026 ยท View on GitHub
Thank you for your interest in contributing to Flow!
The following is a set of guidelines for contributing to Flow Go. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
Table of Contents
How Can I Contribute?
Reporting Bugs
Before Submitting A Bug Report
Please search existing issues to see if the problem has already been reported. If it has and the issue is still open, add a comment to the existing issue instead of opening a new one.
How Do I Submit A (Good) Bug Report?
Descriptive and detailed bug reports are incredibly valuable to help maintainers reproduce and diagnose the problem. When writing a bug report, consider the following guidelines for making it as impactful as possible.
- Use a clear and descriptive title for the issue to identify the problem.
- Describe the exact steps which reproduce the problem in as many details as possible. When listing steps, don't just say what you did, but explain how you did it.
- Provide specific examples to demonstrate the steps. Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you're providing snippets in the issue, use Markdown code blocks.
- Describe the behavior you observed after following the steps and point out what exactly is the problem with that behavior.
- Explain which behavior you expected to see instead and why.
- Include error messages and stack traces which show the output / crash and clearly demonstrate the problem.
Provide more context by answering these questions:
- Can you reliably reproduce the issue? If not, provide details about how often the problem happens and under which conditions it normally happens.
Include details about your configuration and environment:
- What is the version of Flow you're using?
- What is the name and version of the Operating System you're using?
Suggesting Enhancements
Before Submitting An Enhancement Suggestion
Please search existing issues to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
How Do I Submit A (Good) Enhancement Suggestion?
Enhancement suggestions are tracked as GitHub issues. When suggesting an enhancement, consider the following guidelines for
- Use a clear and descriptive title for the issue to identify the suggestion.
- Provide a step-by-step description of the suggested enhancement in as many details as possible.
- Provide specific examples to demonstrate the steps. Include copy/pasteable snippets which you use in those examples, as Markdown code blocks.
- Describe the current behavior and explain which behavior you expected to see instead and why.
- Explain why this enhancement would be useful to users.
Your First Code Contribution
Unsure where to begin contributing to Flow Go?
You can start by looking through these good-first-issue and help-wanted issues:
- Good first issues: issues which should only require a few lines of code, and a test or two.
- Help wanted issues:
issues which should be a bit more involved than
good-first-issueissues.
Both issue lists are sorted by total number of comments. While not perfect, number of comments is a reasonable proxy for impact a given change will have.
When you're ready to start, see the development workflow, PR checklist, and style guide for more information.
Pull Request Checklist
When you're ready for your contribution to be reviewed, please ensure it satisfies the following when creating your pull request:
- Ensure your PR is up-to-date with
masterand has no conflicts - Ensure your PR passes existing tests and the linter
- Ensure your PR adds relevant tests for any fixed bugs or added features
- Ensure your PR adds or updates any relevant documentation
A reviewer will be assigned automatically when your PR is created.
We use GitHub Actions to ensure that the master branch never breaks.
Once a PR is approved and CI passes, you can add it to the merge queue.
If the PR fails in the merge queue, you will need to fix it and try again.
See GitHub's merge queue documentation for more details.
Style Guide
The following is a brief summary of the coding style used in Flow.
The best way to familiarize yourself with the patterns and styles in use in this project is to read through some code!
Git Commit Messages
- Use the present tense ("Add feature" not "Added feature")
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
- Limit the first line to 72 characters or less
- Reference issues and pull requests liberally after the first line
Go Style Guide
The majority of this project is written in Go.
We try to follow the coding guidelines from the Go community.
- Code should be formatted using
go fmt - Code should pass the linter:
make lint - Code should follow the guidelines covered in Effective Go and Go Code Review Comments
- Code should be commented
- Code should pass all tests:
make test