adr-tools

Many teams discuss and maintain ADRs using tools like Confluence and Wiki. We all know perfectly well that this is a “write once, read never” approach.

On my team I decided right away to keep ADRs inside the project’s end-to-end technical documentation using adr-tools. That gives us:

Creating, reviewing, and superseding ADRs goes through the same Merge Request flow as code. While reviewing an MR, it’s easy to suggest edits or attach patches that can be applied right away.

The adr-tools version is pinned at the root of the docs repository in asdf’s .tool-versions file. That guarantees my coworkers use a strictly defined version of the tool:

cat .tool-versions
adr-tools 3.0.0

adr-tools has a very simple command-line interface:

In practice, adr-tools is probably the only reliable and portable tool for maintaining ADRs. The template proposed by Michael Nygard is the best, if not the only one, among the alternatives.

References