diff --git a/snippets/markdown-mode/adr b/snippets/markdown-mode/adr new file mode 100644 index 0000000..6572168 --- /dev/null +++ b/snippets/markdown-mode/adr @@ -0,0 +1,18 @@ +# -*- mode: snippet -*- +# name: ADR - Architectural Decision Record +# key: adr +# -- +# ADR-${1:0001}: ${2:Title} + +- **Date:** `(format-time-string "%Y-%m-%d")` +- **Status:** ${3:Proposed} + +## 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 diff --git a/snippets/org-mode/adr b/snippets/org-mode/adr new file mode 100644 index 0000000..c8b095b --- /dev/null +++ b/snippets/org-mode/adr @@ -0,0 +1,19 @@ +# -*- 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