Files
emacs-org/snippets/org-mode/adr

20 lines
398 B
Plaintext

# -*- mode: snippet -*-
# name: ADR - Architectural Decision Record
# key: adr
# --
* ADR-${1:0001}: ${2:Title}
:PROPERTIES:
:date: `(format-time-string "%Y-%m-%d")`
:status: ${3:Proposed}
:END:
** Context
${4:Describe the context and problem statement.}
** Decision
${5:Describe the decision and rationale.}
** Consequences
${6:Describe the resulting context after applying the decision.}
$0