CONCEPT Cited by 2 sources
Developer velocity¶
Developer velocity is the composite metric tracking how quickly and confidently an engineering org can ship changes. It spans multiple sub-metrics depending on how the org defines it, commonly:
- Merge throughput — PRs merged per developer per time unit.
- Build reliability — fraction of
main-branch builds that succeed (see concepts/build-reliability). - Time-to-merge — wall clock from ready-to-merge to merged.
- Incident rate from changes — how often deploys break production.
- Developer satisfaction — explicit survey data on friction + confidence.
The load-bearing shape: velocity is measured at the org / repo altitude, not at the individual-engineer altitude. Single-engineer IDE speedups are developer-experience wins; velocity is about the merge-to-main + deploy-to-prod pipeline throughput the whole organisation shares.
Atlassian frames Bitbucket Merge Queues as a velocity lever — not a reliability lever in isolation. The reliability gains (semantic-merge failures near-zeroed, incidents dropped 3–5/week → rare) combine with modest build-time improvement (40 → 35 min) and authorship clarity to produce the velocity outcome: "our engineers stopped thinking about merging altogether. They just queue and code." (Source: sources/2026-04-29-atlassian-inside-atlassians-merge-queues)
Dropbox frames the same metric from the opposite side: monorepo size was the velocity cost, and pruning the repo was the intervention (see sources/2026-03-25-dropbox-reducing-monorepo-size-developer-velocity).
Seen in¶
- sources/2026-04-29-atlassian-inside-atlassians-merge-queues — merge queue as velocity lever via build-reliability + authorship clarity.
- sources/2026-03-25-dropbox-reducing-monorepo-size-developer-velocity — monorepo-size pruning as velocity lever.
Related¶
- concepts/build-reliability
- concepts/ci-reliability
- concepts/semantic-merge-conflict
- concepts/merge-queue
- concepts/monorepo
- concepts/trunk-based-development
- patterns/validate-against-future-state-of-main
- patterns/eject-failing-pr-keep-queue-running
- systems/bitbucket-merge-queues
- systems/bitbucket-pipelines
- companies/atlassian