How To Contribute
There are many ways in which you can contribute to this project include: submitting bug reports and feature requests via GitHub issues, opening PRs with features, fixes, or tests, reviewing others’ PRs, and collaborating by commenting or answering questions in the Discord community.Development Setup
Firstly, you will need to set up your local copy of the cognee code repository. Keep in mind that we have two different repositories: our core repo, which contains core cognee functionalities, and our community repo, which contains community-maintained add-ons and custom packages. Once you have chosen the repo you are going to work on, you have to fork it, and clone it to your machine:Development Guidelines
While working on new features and fixes, make sure to keep these guidelines in mind:- Code Style - Make sure to follow the PEP8 style guide, and also the style of the project codebase. Reuse as much of the code as possible, and follow the existing package and file hierarchy.
- Tests - Make sure to add tests for new features, and that the tests pass before opening a PR
- Commits - Write clear and concise commit messages, following the commit and PR title style below
Commit & PR Title Style
The same style applies to commit messages and PR titles. If you use a coding agent (e.g. Claude Code) in the repository, it picks up these rules fromCLAUDE.md automatically.
Subject line (required):
- Use the format
(type): (short summary) - Write the summary as if it is giving an instruction — “Fix bug”, not “Fixed bug”
- Keep it to 50 characters or less
- Capitalize the first character of the summary
- Do not end it with a period
- Explain the motivation behind the change, what problem it solves, and any relevant background — the what and why, not the how; the code itself should make the “how” clear
- Separate the subject line from the body with a blank line. Generally, all commits should have separate subject and body.
Linting, Formatting, and Type Checking
Before creating a Pull Request, you need to make sure that your code is linted and formatted correctly. To do this, you first have to install ruff on your system. Ruff is part of the project’s dev dependencies, so you can install it with uv in the root of the core repo, or on its own throughpip.
--check variant instead:
ruff and ruff-format) and again
directly in CI’s Code Quality job. Install the hooks once so they run automatically on every commit:
.pre-commit-config.yaml,
while the ruff dependency in pyproject.toml allows a range of versions. If a locally installed ruff
disagrees with CI, run the pinned version through the hooks instead:
pyproject.toml under [tool.ruff] — most notably a line length of 100
and a list of excluded paths — and the rules the project deliberately switches off live under
[tool.ruff.lint] in the ignore list, most with a comment explaining why. The ASYNC220, ASYNC221,
ASYNC230, and ASYNC251 rules (blocking file, subprocess, and sleep calls inside async functions)
are in that list: the document loaders and the local storage layer do their file IO synchronously today,
and the parser holding the handle — not the open() call — is the blocking work, so the fix is moving
each loader’s parse off the event loop rather than wrapping the open() calls. That work is tracked
separately, and the rules are meant to be re-enabled when it lands. Don’t add new blocking IO to async
code on the strength of those rules being off.
Ruff is not the last gate, though. The Code Quality job runs these steps, in this order:
uv lock --check fails, run uv lock and commit the updated uv.lock.
The second ruff pass re-runs the exception-handling rules with --ignore-noqa, so a # noqa comment on
any of them counts as a finding rather than a waiver. A blind except Exception, a try/except that
only passes or continues, or a bare re-raise has to be fixed — log with the traceback, re-raise, or narrow
the exception type — not suppressed.
The last step is ty, the type checker. It ships in the project’s dev
extra, which is also how CI installs its environment, so run it the same way:
- It does not cover the whole repository yet.
[tool.ty.src]inpyproject.tomllists the directories that are checked — currently around fifteen paths undercognee/, such ascognee/infrastructure/llm,cognee/infrastructure/loaders,cognee/memory, andcognee/shared— and the generated BAML client is explicitly excluded. The list is meant to grow, so a cleanty check .means the checked directories are clean, not that every module in your PR was inspected. If you touch a directory that is not on the list yet, adding it is welcome but is a change of its own. - Optional dependencies are suppressed inline. Imports that only resolve when an extra is installed —
Pillow and
rapidocr_onnxruntimein the image loader, for example — carry a# ty: ignore[unresolved-import]comment, because CI type-checks with only thedevextra installed. Use that marker for the same situation, and keep it narrow: prefer fixing the underlying problem where a public API exists (for instanceImage.Resampling.LANCZOSrather than suppressingImage.LANCZOS) instead of silencing the diagnostic.
Submitting a Pull Request
After successfully linting and formatting your code, you can push your changes:- Go to the repository you made changes for (i.e. the core repo or the community repo)
- Click Compare & Pull Request and open a PR, being careful against which branch
you open it (
devfor core repo,mainfor community) - Fill in the PR template with details about your changes
Changelog Entries
If maintainers ask for a changelog entry, add it under theUnreleased section of CHANGELOG.md.
- Use
Addedfor new capabilities - Use
Changedfor behavior or documentation updates - Use
Fixedfor bug fixes
Contributing Guide Details
More details about the contributing process.
Community Guidelines
Be respectful and follow our code of conduct. Help others learn and grow, and provide constructive feedback.
Join our Discord Community
Join the community for real-time discussions with us and other users!