Skip to content

Contributing

Thank you for considering a contribution to agentdelta!

For the full contribution guide — setup, workflow, PR conventions, review timeline — see CONTRIBUTING.md in the repo root.

Dev setup

git clone https://github.com/sandeep-alluru/agentdelta
cd agentdelta
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pre-commit install

Make targets

make test       # pytest with branch coverage (fails under 85%)
make lint       # ruff check + format check
make typecheck  # mypy
make fmt        # ruff format (auto-fix)
make all        # lint + typecheck + test