Make a code contribution
We welcome all forms of contributions to Prefect, whether it’s small typo fixes in our documentation, bug fixes or feature enhancements! If this is your first time making an open source contribution we will be glad to work with you and help you get up to speed.For small changes such as typo fixes you can simply open a pull request - we typically review small changes like these within the day.
For larger changes including all bug fixes, we ask that you first open an issue or comment on the issue that you are planning to work on.
Design principles
Prefect contributions should serve the project and its users, not just the immediate implementation request. We evaluate code, documentation, and issue proposals against these principles:- User-centered: Changes should solve a real workflow orchestration need for Prefect users and explain the user-facing value.
- Correct and reliable: Prefer behavior that is explicit, deterministic, observable, and safe under failure.
- Minimal and focused: Keep changes scoped to one clear problem and avoid broad rewrites or new abstractions without a strong reason.
- Consistent with Prefect’s architecture: Follow existing public APIs, orchestration boundaries, async patterns, settings behavior, and integration conventions.
- Well-tested and documented: Cover meaningful behavior with tests and update documentation when users need to understand new or changed behavior.
Issue first, code second
For anything larger than a small documentation or typo fix, open an issue or join the existing issue before opening a pull request. Issues give maintainers and contributors a place to confirm the problem, discuss scope, identify architectural constraints, and decide whether the change belongs in Prefect. An open issue is not automatically an invitation to open a pull request. Some issues require maintainer ownership because they touch architecture, product direction, compatibility, security, or release planning. Use the issue discussion to narrow the work before writing code. For complex issues, propose a detailed approach and wait for a maintainer to confirm that the approach and contributor ownership are appropriate before submitting a pull request. A pull request is not the best place to discover that a feature does not fit the project, duplicates existing behavior, or requires a different design.Using AI tools responsibly
You may use AI tools to explore the codebase, draft documentation, sketch tests, refactor code, or review your own work. You are responsible for every issue, pull request, and comment you submit. Treat AI output as a starting point, not as evidence that a change is correct. Before opening an issue or pull request:- Reproduce the behavior yourself and include a minimal reproducible example for bugs when possible.
- Keep each pull request focused on one bug fix, feature, or documentation improvement.
- Explain the user-facing problem, why your approach fits Prefect’s existing architecture, and any tradeoffs.
- Run the relevant checks locally and include behavior-focused tests for code changes.
- Update documentation when your change affects user-facing behavior.
What maintainers look for
Reviews focus on whether the change should become part of Prefect and whether it can be maintained over time. The strongest pull requests:- Solve a clear user problem with enough context for reviewers to understand the value.
- Fit Prefect’s existing architecture, public APIs, and compatibility expectations.
- Prefer clear, idiomatic code over cleverness, excessive abstraction, or broad rewrites.
- Include tests that protect behavior instead of mirroring private implementation details.
- Update documentation for user-facing behavior changes, or explain why documentation is not needed.
- Explain meaningful tradeoffs, migration concerns, or follow-up work in the pull request description.
Fork the repository
All contributions to Prefect need to start on a fork of the repository. Once you have successfully forked the Prefect repo, clone a local version to your machine:Install Prefect for development
Once you have cloned your fork of the repo you can install an editable version of Prefect for quick iteration. We recommend usinguv for dependency management when developing. Refer to the uv docs for installation instructions.
To set up a virtual environment and install a development version of prefect:
prefect was installed correctly:
pre-commit and pre-push hooks to run with every commit:
pre-commit hooks against all files:
Write tests
Prefect relies on unit testing to ensure proposed changes don’t negatively impact any functionality. For all code changes, including bug fixes, we ask that you write at least one corresponding test. One rule of thumb - especially for bug fixes - is that you should write a test that fails prior to your changes and passes with your changes. This ensures the test will fail and prevent the bug from resurfacing if other changes are made in the future. Prefer tests that assert user-visible behavior or public contracts instead of private implementation details. All tests can be found in thetests/ directory of the repository.
You can run the test suite with pytest:
Submit your pull request
Before submitting a pull request:- Confirm the related issue is linked, unless the change is a small documentation or typo fix.
- Keep the scope to one feature, bug fix, or documentation improvement.
- Describe the problem, the approach, and any tradeoffs or alternatives considered.
- Run the relevant tests and checks locally.
- Add or update documentation for user-facing behavior changes.
Working with a development UI
If you plan to use the UI during development, you will need to build a development version of the UI first. Using the Prefect UI in development requires installation of npm. We recommend using nvm to manage Node.js versions. Once installed, runnvm use from the root of the Prefect repository to initialize the proper version of npm and node.
Start a development UI that reloads on code changes:
prefect server start:
Working with a development server
The Prefect CLI provides several helpful commands to aid development of server-side changes. You can start all services with hot-reloading on code changes (note that this requires installation of UI dependencies):Add database migrations
If your code changes necessitate modifications to a database table, first update the SQLAlchemy model insrc/prefect/server/database/orm_models.py.
For example, to add a new column to the flow_run table, add a new column to the FlowRun model:
PREFECT_SERVER_DATABASE_CONNECTION_URL is set to.
See how to set the database connection URL for each database type.
To generate a new migration file, run:
add_flow_run_new_columnadd_flow_run_new_column_idxrename_flow_run_old_column_to_new_column
--autogenerate flag automatically generates a migration file based on the changes to the models.
The new migration is in the src/prefect/server/database/migrations/versions/ directory. Each database type has its
own subdirectory. For example, the SQLite migrations are stored in src/prefect/server/database/migrations/versions/sqlite/.
After inspecting the migration file, apply the migration to the database by running:
MIGRATION-NOTES.md to
document the changes.