pmerson / ADR-template

A md template for Architecture Decision Records (ADRs)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ADR template

Markdown template for Architecture Decision Records (ADRs). Here's the template...

Usage guidelines

  • Each ADR is a plain text, 1-2 page document
  • ADRs should be numbered
  • ADRs should be stored within each software project repo
  • Create a separate repo for crosscutting ADRs
  • Track ADRs in the backlog
  • Review ADRs
  • Create ADRs for significant design decisions
  • This template is a suggestion that you may want to adopt or adapt. In any case, establishing and sharing a template for ADRs in your team or organization is a good idea.

Examples of ADRs using this template

(These examples are project-specific, of course. The decision and rationale make sense in that project's context.)

References

This template is based on:

See also this presentation by Ken Power at OOP.

Why this template?

  • This template addresses a subtle yet fundamental deficiency of the ADR structure originally proposed by Michael Nygard:
    his proposed structure (Context; Decision; Status; Consequences) has no evident placeholder for the rationale behind the design decision.
  • The justification, the rationale, the "why" behind the design decision should stand out as a separate section in the template for at least three reasons:
    • It is remarkably important! (Authors cited further below agree.)
    • A separate section reminds the author of the ADR that that information must be captured.
    • The rationale section avoids cluttering other sections with rationale discussion. Devs may reference the ADRs several times to re-read the decision and consequences. They need to read the rationale just once, so rationale should not be mixed in the other sections.
  • Mark Richards and Neal Ford say "Why is more important than how" is the Second Law of Software Architecture (Fundamentals of Software Architecture).
  • We say in our book "Record Rationale" is Rule 5 of the Seven Rules for Sound Documentation (Documenting Software Architectures, Second Edition).
  • George Fairbanks proposed Architecture Haiku, which can be seen as an alternative approach to ADR. Haiku contents includes "design rationales".

License

MIT License

Copyright (c) 2023 Paulo Merson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A md template for Architecture Decision Records (ADRs)

License:MIT License