Contributing
Thank you for your interest in contributing to this project. We value contributions from people with all levels of experience. In particular if this is your first pull request, not everything has to be perfect. We will guide you through the process.
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests. See https://docs.github.com/en/get-started/quickstart for a general introduction to working with GitHub and contributing to projects.
Types of Contributions
You can contribute in several ways:
- 🐛 Report Bugs
Report bugs at https://github.com/cda-tum/fiction/issues using the 🐛 Bug report issue template. Please make sure to fill out all relevant information in the respective issue form.
- 🐛 Fix Bugs
Look through the GitHub Issues for bugs. Anything tagged with “bug” is open to whoever wants to try and fix it.
- ✨ Propose New Features
Propose new features at https://github.com/cda-tum/fiction/issues using the ✨ Feature request issue template. Please make sure to fill out all relevant information in the respective issue form.
- ✨ Implement New Features
Look through the GitHub Issues for features. Anything tagged with “enhancement” is open to whoever wants to implement it. We highly appreciate external contributions to the project.
- ✔️ Write Tests
We can always use more tests to ensure that the code base is robust and stable. If you want to help out, you can start by looking through the CodeCov report to find out where we missed covering lines.
- 📝 Write Documentation
fiction could always use some more documentation, and we appreciate any help with that.
First Contributions
Ready to contribute? Check out the documentation to set up fiction for local development and learn about the style guidelines and conventions used throughout the project.
We value contributions from people with all levels of experience. In particular if this is your first PR not everything has to be perfect. We will guide you through the PR process. Nevertheless, please try to follow the guidelines below as well as you can to help make the PR process quick and smooth.
Core Guidelines
Write meaningful commit messages. Prefix each subject with a single gitmoji character matching the change’s dominant nature;
AGENTS.mddocuments the convention in full.Focus on a single feature/bug at a time and only touch relevant files. Split multiple features into multiple contributions.
If you added a new feature, you should add tests that ensure it works as intended. Furthermore, the new feature should be documented appropriately.
If you fixed a bug, you should add tests that demonstrate that the bug has been fixed.
Document your code thoroughly and write readable code.
Keep your code clean. Remove any debug statements, left-over comments, or code unrelated to your contribution.
Follow the style and conventions used throughout the project.
Run
clang-formatandclang-tidyto check your code for style and linting errors before committing.We recommend installing prek and running
prek installonce so that formatting and linting checks run automatically before every commit.
Pull Request Workflow
Create PRs early. It is ok to create work-in-progress PRs. You may mark these as draft PRs on GitHub.
Describe your PR. Start with a descriptive title, reference any related issues by including the issue number in the PR description, and add a comprehensive description of the changes. We provide a PR template that you can (and should) follow to create a PR.
- Whenever a PR is created or updated, the
CIworkflow runs. Its🔍 Changejob classifies your diff and skips the jobs your changes cannot affect, so a documentation-only PR does not pay for the C++ matrix.🚦 Checkaggregates every job and is the one status that has to be green. Here are some tips for finding the cause of certain failures: If any of the
🐧 Test,🍎 Test,🪟 Test,🧪 Experiments, or🐳 Dockerchecks fail, this most likely indicates build errors or test failures in the C++ part of the code base. Look through the respective logs on GitHub for any error or failure messages.If the
☂️ Coveragecheck fails, this means that your changes are not appropriately covered by tests or that the overall project coverage decreased too much. Ensure that you include tests for all your changes in the PR.If a
🐍 Packagingcheck fails, this indicates an error in the Python part of the code base.cibuildwheelruns thepyfictiontest suite against every wheel it builds, so a failing test shows up here. Look through the respective logs on GitHub for any error or failure messages.If the
📝 CodeQLcheck fails, this indicates a security vulnerability in the code base. Look through the respective logs on GitHub for any error or failure messages.If
🚨 Lintcomments on your PR with a list of suggestions/warnings,clang-tidyraised them when checking the C++ part of your changes for warnings or style guideline violations. The individual messages frequently provide helpful suggestions on how to fix the warnings.If the
🐍 Docstringscheck fails, the generatedpybind11_mkdoc_docstrings.hppno longer matches the Doxygen comments ininclude/fiction/. Download thepyfiction-docstringsartifact from that run, put it in place ofbindings/mnt/pyfiction/include/pyfiction/pybind11_mkdoc_docstrings.hpp, and commit it. Never edit that file by hand; the job’s summary carries the same instructions.If
🚦 Checkfails while every job below it looks green, a job was skipped for a reason change detection did not predict — usually because something it depends on failed first.
- Whenever a PR is created or updated, the
Once your PR is ready, change it from a draft PR to a regular PR and request a review from one of the project maintainers.
If your PR gets a “Changes requested” review, you will need to address the feedback and update your PR by pushing to the same branch. You don’t need to close the PR and open a new one. Respond to review comments on the PR (e.g., with “done 👍”). Be sure to re-request review once you have made changes after a code review so that maintainers know that the requests have been addressed.
Code Review
Two automated reviewers comment on every pull request, and they carry different weight.
The
🚨 Lintcheck postsclang-tidyfindings. Treat these as binding: fix them, or suppress the specific check with a// NOLINT(check-name)comment that states the reason.CodeRabbit performs the first substantive review pass, covering design, contracts, tests, and documentation. Treat its findings as suggestions.
When working with CodeRabbit:
Review the review. Language models skew conservative and will sometimes push toward overcomplicated code. Verify each finding against the current code, and disagree in writing when it is wrong — that is a normal outcome, not a problem.
Respond to comments rather than silently resolving them. CodeRabbit learns from replies, and a resolved-but-unanswered thread hides the reasoning from human reviewers. Leave resolution to the reviewer.
Re-request a pass with
@coderabbitai reviewafter a substantial push, or@coderabbitai full reviewafter a rebase. When you need a CodeRabbit response in a thread, mention@coderabbitai.Do not enable a second AI reviewer on the same pull request. CodeRabbit performs noticeably worse when another review bot is active on the same diff.
Apply reviewer code suggestions through GitHub’s batch flow (“Add suggestion to batch” → “Commit suggestions”). Each suggestion’s author is recorded as a co-author of the resulting commit, and the person committing the batch is the committer and also a co-author.
Avoid force-pushing or squashing locally while a review is open. It detaches existing comments from their lines. Maintainers squash on merge.
.coderabbit.yaml in the repository root configures which paths are reviewed and what CodeRabbit should not comment on. Update it rather than repeating the same correction by hand.
AI-Assisted Contributions
Contributions written with the help of an AI agent are welcome, under two conditions.
Disclose it. Add an
Assisted-by: <Model Name> via <Tool Name>trailer to any commit whose content an agent authored, and add a line disclosing AI assistance to every public text body an agent wrote or edited: pull request descriptions, issues, discussions, review comments, and replies. One line at the end is enough, and it should name what you actually checked. Titles are exempt, and having your PR reviewed by CodeRabbit does not make it an AI-assisted contribution.Take responsibility for it. Review and understand the content before you post it. If you cannot explain it, do not submit it. A contribution should be worth more than the effort it costs to review.
Agent instructions live in AGENTS.md at the repository root, with additional files in the subdirectories they apply to. If your tool expects a different file name, create a local symlink — for example ln -s AGENTS.md CLAUDE.md. Those names are gitignored, so the repository itself stays tool-neutral.
This document was inspired by and partially adapted from