Files
SecondBrain/10 Knowledge/Templates/Decision Template.md
T

83 lines
1.3 KiB
Markdown

<%*
const year = tp.date.now("YYYY");
const date = tp.date.now("YYYY-MM-DD");
const baseFolder = "20 Work/Decisions";
const yearFolder = `${baseFolder}/${year}`;
if (!app.vault.getAbstractFileByPath(yearFolder)) {
await app.vault.createFolder(yearFolder);
}
await tp.file.move(`${yearFolder}/${date}`);
-%>
# {{title}}
- 🟡 **Proposed** — Decision is being considered; not final yet.
- 🟢 **Decided** — Decision has been made and is currently valid.
- 🔴 **Rejected** — Option/proposal was explicitly considered and rejected.
-**Superseded** — Was previously a valid decision, but a newer decision replaced it.
**Date:** {{date}}
**Status:** 🟡 Proposed
**Decision Owner:**
**People Involved:**
## Context
What situation led to this decision?
## Problem
What problem are we trying to solve?
## Options Considered
### Option 1
**Description:**
**Pros:**
-
**Cons:**
-
### Option 2
**Description:**
**Pros:**
-
**Cons:**
-
## Decision
What did we decide?
## Why
Why was this option chosen?
## Risks / Trade-offs
What are we accepting by making this decision?
## Next Steps
- [ ]
- [ ]
## Outcome
_To be completed later._
What actually happened after the decision?
## Lessons Learned
What would I do differently next time?
## Related
- [[]]