Skip to Content
CommunityContribute

Contribute

DDK is open source under the Apache-2.0 licence, and contributions of every size are welcome. This page is the short version; the full runbook is CONTRIBUTING.md in the repository.

Ways to help

From issue to merge

File or find the issue

No change lands without a GitHub issue — the issue is the plan. Each issue carries exactly one milestone, which is the release it targets (see the Roadmap).

Cut a branch from develop

Branch names follow <type>/<issue#>-<slug>, for example fix/42-proxy-url-trailing-slash or docs/13-verified-apis-update. Always branch from develop; never from or into main.

git checkout develop && git pull --ff-only git checkout -b docs/13-verified-apis-update

Run the pre-PR gate

Run the same checks CI runs, from python/:

pip install -e ".[dev,llm,cli]" pytest -q # tests mypy # mypy --strict ruff check . # lint lint-imports # the framework-free core contract

If you touched an adapter, also run python scripts/verify_frameworks.py.

Open a pull request into develop

The PR body includes Closes #<issue#>, a ## Summary, a ## Test plan and a ## Post-deploy steps section (write None. when nothing applies). PRs are squash-merged, so develop reads as one commit per issue.

Contributing from a fork

Not a member of the Donkey-Development-Kit organisation? The flow is the same, from a fork:

git clone https://github.com/<you>/donkey-development-kit.git cd donkey-development-kit git remote add upstream https://github.com/Donkey-Development-Kit/donkey-development-kit.git git fetch upstream git checkout -b docs/13-verified-apis-update upstream/develop

Open the PR from your fork into Donkey-Development-Kit:develop and tick Allow edits by maintainers. A maintainer sets the milestone and labels, runs the secret-gated checks that GitHub does not run on fork PRs, and merges.

Keep the docs in sync

When code changes what DDK does, the docs change in the same pull request — or a documentation follow-up issue is filed and linked. After editing pages here, regenerate the AI-readable docs and commit the result:

cd website npm run generate:llms

Verification discipline. DDK never documents or codes against an endpoint, header or class name that has not been confirmed against the real platform. If you can’t confirm one, say so in the issue rather than guessing — see the verification ledger .

Last updated on