Contributor Guide¶
This guide complements Contributing and the root-level
CONTRIBUTING.md file. It provides a deeper walkthrough of the repository
layout, development workflows, and quality expectations so that new
contributors can become productive quickly.
Project Overview¶
BESSER builds upon the B-UML metamodel to generate deployable applications. Most contributions fall into one of these areas:
B-UML metamodel (
besser.BUML.metamodel): defines the core modeling constructs that generators consume.Generators (
besser.generators): translate models into code for specific stacks (e.g., Django, SQLAlchemy, Flutter).Utilities (
besser.utilities): cross-cutting helpers shared across the metamodel and generators. This package also exposes services that power the backend of the web modeling editor (REST APIs, validation helpers, deployment glue).Examples and tests (
tests): executable specifications that document expected behavior and protect against regressions.Documentation (
docs): user- and contributor-focused guidance built with Sphinx and published to Read the Docs.
Ways to Contribute¶
You don’t need to be a Python expert to help. Useful contributions include:
Code — new generators, metamodel improvements, bug fixes, performance work, refactors.
Documentation — clarifying existing pages, fixing typos, writing tutorials, adding examples to
docs/source/.Tests — improving coverage, adding regression tests, hardening the metamodel and converters.
Issue triage — reproducing reported bugs, narrowing down causes, suggesting workarounds.
Feedback — sharing how you use BESSER, what is missing, what is confusing. Open a discussion or issue.
Examples — contributing new sample models or use cases to BESSER-examples.
If you are looking for a starting point, browse issues labeled good first issue or help wanted.
Repository Layout¶
besser/Python packages that expose the BESSER APIs. Subpackages mirror major feature areas and collectively implement the backend of the web modeling editor:
BUML/metamodel/– Metamodel definitions (structural, state machine, GUI, agents, quantum, etc.).BUML/notations/– Concrete-syntax parsers (PlantUML, OCL, mockup-to-BUML, …).generators/– Code generators implementingGeneratorInterface.utilities/– Reusable helpers, configuration objects, backend for the web modeling editor (REST endpoints, validation, deployment glue).utilities/web_modeling_editor/frontend/– Frontend git submodule (separate repository).
docs/Source files for the documentation site. ReStructuredText lives in
docs/source/and static assets indocs/source/_static.tests/Pytest suites covering the metamodel, generators, utilities, and sample applications. Tests often double as executable examples.
docker-compose.ymlandDockerfileContainer definitions that reproduce the full stack locally, useful for verifying generator output or end-to-end flows.
Frontend assets for the BESSER Web Modeling Editor live in the separate
BESSER-WEB-MODELING-EDITOR
repository (vendored here as the
besser/utilities/web_modeling_editor/frontend submodule). Contribute UI
updates there; this repository focuses on the backend APIs, metamodel,
generators, and utilities consumed by that frontend.
Getting Started¶
Prerequisites¶
Python 3.10, 3.11, or 3.12 (CI tests against all three).
Git, including submodule support.
Node.js 20+ (only if you plan to run the web modeling editor frontend locally).
Fork, clone, and initialize¶
Fork the repository to your own GitHub account.
Clone your fork (with submodules so the frontend is available):
git clone --recurse-submodules https://github.com/<your-username>/BESSER.git cd BESSER
If you already cloned without
--recurse-submodules:git submodule update --init --recursive
Add the upstream remote so you can keep your fork in sync:
git remote add upstream https://github.com/BESSER-PEARL/BESSER.git
Create a virtual environment¶
python -m venv venv
# Activate it
source venv/bin/activate # Linux / macOS
venv\Scripts\activate # Windows (cmd / PowerShell)
Install dependencies¶
pip install -r requirements.txt
pip install -e . # editable install of the BESSER package
Optional but recommended:
pip install -r docs/requirements.txt # Sphinx + theme for building the docs
Some test modules require extra packages that are not in
requirements.txt: torch, tensorflow (for tests/generators/nn/),
and openpyxl (for the spreadsheet importer test). CI installs them;
locally, install them only if you intend to touch those areas.
Verify the install¶
python tests/BUML/metamodel/structural/library/library.py
python -m pytest -k library
If both run cleanly, you are ready to go.
Web Modeling Editor Frontend Setup¶
If you want to run or extend the Web Modeling Editor (WME) frontend, use the WME repository directly or the git submodule inside this repo. Prerequisites: Node.js 20+ and npm.
Using the submodule:
Initialize the submodule:
git submodule update --init --recursive.Install dependencies:
cd besser/utilities/web_modeling_editor/frontend && npm install.Start the backend API (from the repo root):
python besser/utilities/web_modeling_editor/backend/backend.py.Start the webapp dev server:
npm run dev(still in the frontend folder).
The Vite dev server runs on http://localhost:8080 and expects the backend at http://localhost:9000/besser_api in development mode.
Using the standalone WME repo:
Clone BESSER-WEB-MODELING-EDITOR.
Run
npm installandnpm run dev.Start the BESSER backend as above if you need live API integration.
Development Guidelines¶
Code style¶
Follow PEP 8 with 4-space indentation and a 120-character line limit (configured in
pyproject.toml).Use
snake_casefor functions/variables,PascalCasefor classes,UPPER_CASEfor constants.Add type hints for public APIs and write descriptive docstrings.
Order imports: standard library → third-party → local.
Additional formatting, naming, and AI-assistant rules are in
.github/copilot-instructions.md(also available as.cursorrulesfor Cursor users).
Linting¶
We use Ruff for linting (run automatically in CI):
pip install ruff
ruff check .
Fix lint warnings before opening a PR. CI will fail on lint errors.
Working in core packages¶
Generators (
besser/generators/) — inherit fromGeneratorInterface; place Jinja2 templates ingenerators/<name>/templates/; register the generator inbesser/utilities/web_modeling_editor/backend/config/generators.pyif it should be exposed via the web editor.Metamodel (
besser/BUML/metamodel/) — keep changes backward-compatible where possible; mirror existing patterns (private fields with validating setters,Element → NamedElement → …hierarchy).Notations (
besser/BUML/notations/) — use ANTLR grammars and the listener pattern, mirroring the existing PlantUML and OCL parsers.Backend (
besser/utilities/web_modeling_editor/backend/) — the FastAPI app uses a modular router architecture (routers, middleware, services, models). Prefer extending an existing module over creating bespoke helpers.Bidirectional converters — if you support a feature in
json_to_buml/, add the symmetric path inbuml_to_json/. Round-trips must be lossless.
Validation strategy¶
Three validation layers run together; respect each in the right place:
Construction — setter checks in metamodel classes (fail fast).
Metamodel —
.validate()returns{success, errors, warnings}.Constraints — OCL constraints evaluated against the model.
Collect validation errors instead of throwing on the first one, so users see the full picture.
Testing and Quality Checks¶
Run the full suite before pushing:
python -m pytest
While iterating, target the area you are changing:
python -m pytest tests/generators -k sqlalchemy
python -m pytest tests/BUML/metamodel/structural -k library
If you do not have torch, tensorflow, or openpyxl installed
locally, skip the modules that import them so collection does not fail:
python -m pytest tests/ \
--ignore=tests/generators/nn \
--ignore=tests/utilities/web_modeling_editor/backend/test_spreadsheet_import.py
Guidelines:
Add or update tests alongside any behavior change.
Reuse fixtures from
tests/conftest.py(e.g.,library_book_author_model,employee_self_assoc_model,player_team_domain_model) andtests/generators/conftest.pyinstead of duplicating models.Test round-trips for converters —
JSON → BUML → JSONmust be the identity.Validate behavior, not implementation details. Assertions on observable outputs age better than assertions on internal structure.
Documentation Workflow¶
Documentation lives in docs/source/ and is written in reStructuredText.
Keep it in sync with code: a new generator, endpoint, metamodel concept, or
workflow should be reflected in the docs.
Build locally to check formatting:
cd docs
make html # Linux / macOS
make.bat html # Windows
Open docs/build/html/index.html to preview.
Common pages to update:
buml_language.rst— metamodel additionsgenerators.rst— new generatorsweb_editor.rst— backend API changesutilities.rst— new utilitiescontributor_guide.rst/ai_assistant_guide.rst— workflow changes
Place images in docs/source/img/ or docs/source/_static/. Cross-link
related pages using :doc:, :mod:, or :ref: roles to help readers
navigate.
Branching and Commits¶
Branch naming¶
Create a topic branch off ``development`` (the integration branch). Use a prefix that matches the type of change:
Prefix |
Use for |
Example |
|---|---|---|
|
New features or capabilities |
|
|
Bug fixes |
|
|
Documentation-only changes |
|
|
Code restructuring without behavior changes |
|
|
Test additions or improvements |
|
|
Tooling, CI, dependency bumps, repo maintenance |
|
Use lowercase, hyphen-separated, descriptive names. Avoid personal
prefixes (arm/...) and avoid umbrella branches that bundle unrelated
changes.
Commit conventions¶
We follow Conventional Commits. Use one of these prefixes in your commit subject:
feat:— a new featurefix:— a bug fixdocs:— documentation-only changesrefactor:— code change that neither fixes a bug nor adds a featuretest:— adding or fixing testschore:— tooling, CI, dependency, or repo-maintenance changes
Keep subjects short, imperative, and lowercase, e.g.:
feat: add quantum circuit generator
fix: handle null cardinality in OCL parser
docs: clarify branch naming in CONTRIBUTING
Group related work into logically scoped commits — reviewers should be able to follow the reasoning commit by commit.
Creating Pull Requests¶
Target branch¶
Important
Open all pull requests against development, not master.
The master branch tracks released versions. The development branch
is where features are integrated and validated before release.
Maintainers periodically merge development into master as part of
the release process — contributors should not target master directly.
When opening the PR on GitHub, the base branch dropdown defaults to
master. Change it to development before clicking Create pull
request:
base repository: BESSER-PEARL/BESSER base: development ← change this!
head repository: <your-fork>/BESSER compare: feature/your-change
If you forget, no harm done — just edit the base branch on the existing PR (GitHub allows changing it after creation). Maintainers will also flag it.
Step-by-step¶
Sync your fork and branch off
development:git checkout development git pull upstream development git checkout -b feature/your-change
Commit your work using the Conventional Commits prefixes. Make focused commits — reviewers should be able to follow your reasoning commit by commit.
Run quality checks locally before pushing:
python -m pytest # tests ruff check . # lint cd docs && make html && cd .. # if you touched the docs
Push your branch:
git push -u origin feature/your-change
Open the PR on GitHub with
developmentas the base branch (see above). If the work is in progress and you want early feedback, open it as a draft PR — maintainers will review when you mark it ready.Rebase or merge
developmentinto your branch before requesting final review, so the PR reflects an up-to-date base:git fetch upstream git rebase upstream/development git push --force-with-lease
Respond to review feedback. Review is a collaborative conversation, not a gate. Push fixup commits during review and let the maintainer squash on merge if appropriate.
Writing a good PR description¶
A great PR description answers four questions: What changed? Why? How was it tested? What should reviewers pay attention to? Use this template (the PR template in this repo follows the same structure):
## What
A 1–3 sentence summary of the change. Stay concrete — name the files,
generators, endpoints, or metamodel concepts you touched.
## Why
The motivation. Link the issue (`Closes #123`), or describe the bug,
limitation, or use case driving the change. Reviewers should not have
to guess the intent.
## How
A brief explanation of the approach, *especially* for non-obvious design
choices. Mention alternatives you considered and why you discarded them.
Skip this section for trivial fixes.
## Testing
- Unit tests added/updated: `tests/path/to/test_thing.py`
- Manual checks: e.g., "ran `python tests/.../library.py` and inspected
output", or "tested in the web editor: created a class diagram with
inheritance, exported it, re-imported, round-trip preserved"
- Edge cases considered: …
## Screenshots / Recordings
(For UI or output changes. Drag-and-drop images or GIFs into the PR.)
## Follow-ups / Known limitations
Anything intentionally out of scope for this PR, or known gaps to address
later. Linking a follow-up issue is even better.
## Checklist
- [ ] Targeted `development` (not `master`)
- [ ] Tests added or updated
- [ ] Docs updated (`docs/source/...`) if user-facing behavior changed
- [ ] Lint passes (`ruff check .`)
- [ ] Frontend submodule pointer updated (if a cross-repo change)
Tips¶
Title matters. Use a Conventional Commits-style title that mirrors your main commit, e.g.
feat: add quantum circuit generator. Reviewers scan PR lists by title.Be specific, not generic. “Fix bug” is not a PR description. “Fix null-pointer in OCL parser when constraint references an unset attribute” is.
Show, don’t tell. For UI work, include before/after screenshots. For generator work, paste a snippet of the generated output. For metamodel work, paste the model that exercises the change.
Call out anything risky. Backward-incompatible changes, schema migrations, performance trade-offs, dependencies bumped — flag them explicitly so reviewers don’t miss them.
Keep it focused. One PR = one logical change. If you find yourself writing “this PR also …”, split it.
Example (good)¶
Title:
feat: add JSONSchema generator with array & enum supportWhat. Adds a new
JSONSchemaGeneratorunderbesser/generators/jsonschema/, registered in the backend generator registry. Supports primitive types, enums, arrays (via multiplicity), and nested associations.Why. Closes #412. Several users asked for JSON Schema export to drive validation in non-Python services.
How. Walks the
DomainModel, emitting one schema file perClass. Reuses the existing primitive-type mapping fromSQLGenerator(extracted intobesser/utilities/type_mapping.py). Templates use Jinja2, consistent with other generators.Testing. Added
tests/generators/jsonschema/with three fixtures (library, enums, self-association). Round-trip-validated outputs against thejsonschemaPython package. Manually exported from the web editor.Follow-ups. OneOf/AnyOf for inheritance is out of scope — tracked in #418.
Review and merging¶
All PRs must pass automated checks (tests on Python 3.10/3.11/3.12, Ruff lint, frontend lint+build, CodeQL).
At least one maintainer review is required, per the governance rules.
Maintainers choose the merge strategy (squash, rebase, or merge commit) based on the change.
Coordinating Changes Across BESSER and WME¶
If a change impacts both the BESSER backend and the WME frontend (for example, adding a new DSL with graphical notation):
Implement and commit the frontend change in the WME repository, targeting its
developbranch.Implement and commit the backend change in this repository, targeting
development.Update the git submodule pointer in this repo to the new WME commit:
cd besser/utilities/web_modeling_editor/frontend git pull origin develop cd ../../../.. git add besser/utilities/web_modeling_editor/frontend git commit -m "chore: bump frontend submodule"
Link the two pull requests in their descriptions and note the intended merge order.
For the WME-side steps, see the WME contributor guide: Adding a New Diagram Type. For the full cross-repo checklist, see End-to-End: New Diagram Type + DSL.
Need Help?¶
If you are unsure where to start, open a discussion in the issue tracker or reach out via info@besser-pearl.org. We are happy to mentor new contributors and pair on first issues.