Thank you for your interest in contributing!
git clone https://github.com/dgenio/agent-kernel.git
cd agent-kernel
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"make fmt # auto-format with ruff
make lint # lint with ruff
make type # type-check with mypy
make test # run pytest with coverage
make ci # all of the above + examples- Keep PRs focused — one logical change per PR.
- Add or update tests for every behaviour change.
- All checks in
make cimust pass. - Follow the existing code style (ruff-enforced).
- Write docstrings on all public interfaces.
Please report security vulnerabilities privately via GitHub Security Advisories. Do not open a public issue for a security bug.