Contributor Guide
This page is for people changing AGILAB itself. If you only want to try the product, start with Quick-Start instead.
Contributor target
Your first contribution should prove three things:
You can reproduce the public first proof.
Your pull request has one clear scope.
The validation you ran matches that scope.
Baseline setup
Run this once from a clean source checkout:
git clone https://github.com/ThalesGroup/agilab.git
cd agilab
git config core.hooksPath .githooks
uv --preview-features extra-build-dependencies sync --group dev
uv --preview-features extra-build-dependencies run python tools/newcomer_first_proof.py
If the proof fails, do not branch into clusters, private app repositories, or
large refactors yet. Use Newcomer First-Failure Recovery first, or open a
GitHub issue with [CONTRIBUTOR] in the title and include the command plus
the first failing log lines.
Choose one lane
Pick the closest lane before editing:
Lane |
Good first scope |
First validation |
|---|---|---|
Docs only |
README, CONTRIBUTING, docs text, screenshots, links |
|
App or example |
Built-in app, example README, app args, analysis view |
Targeted app/page |
UI helper |
Streamlit page state, sidebar/header, workflow/orchestrate helper |
Targeted root |
Workflow or release tooling |
GitHub workflows, badges, release proof, package policy |
Matching |
Shared core |
|
Ask for maintainer approval first, then run the focused core regression plan |
Prefer docs, app-local, or UI-helper changes for a first pull request. Shared core has the highest blast radius because it can affect installation, worker packaging, cluster execution, and packaged public examples.
Validation map
Use the smallest command that proves your change:
Change type |
Preferred local check |
|---|---|
Root docs only |
|
Sphinx docs source |
|
Workflow parity |
|
Skill catalog |
|
Badge or coverage tooling |
|
Shared-core typing |
|
Run broader test suites only when the touched area needs them. Do not trigger GitHub Actions when the same failure can be reproduced locally.
Pull request evidence
Paste a short evidence block in every pull request:
Scope:
Validation:
Risk area: docs | app | UI | workflow | shared core | security | dependency
Generated artifacts updated: yes/no
Also state whether the change touches public documentation, dependencies, security, release tooling, generated files, or shared core. These areas need more careful review than an app-local or docs-only change.
Review expectations
Pull requests need maintainer review before merge.
Shared core, release tooling, security-sensitive, dependency, and packaging changes require review from an owner of that area.
main, release tags, and publication workflows are maintainer-owned.By submitting a pull request, you certify the Developer Certificate of Origin 1.1 for your contribution. A separate CLA is not required for normal BSD-3-Clause contributions unless maintainers explicitly request one for a specific corporate or large-code contribution.
Reference
The complete repository policy is in the root CONTRIBUTING.md file. Agent
and IDE runbooks live in AGENTS.md and Agent Workflows.