(setq org-directory "~/missions") (setq org-capture-templates '( ;; ========================= ;; MCC — Intake / Triage ;; ========================= ("m" "MCC Intake" entry (file "~/missions/_MCC/10_backlog.org") "* %<%Y-%m-%d> [%^{CALLSIGN}] %^{Title}\n:PROPERTIES:\n:Owner: %^{Owner}\n:Priority: %^{P|P0|P1|P2}\n:END:\n\n** Context\n%?\n\n** Goal\n\n** Next action\n" :empty-lines 1) ;; ========================= ;; Mission Packet — Brief ;; ========================= ("p" "Mission Packet (00_brief)" entry (file+olp "%(org-capture-get :packet-file)" "Packets") "* %^{Title}\n#+TITLE: [%^{CALLSIGN}] %\\1\n\n* Meta\n- Routing :: %\\2\n- Owner :: %^{Owner}\n- Mode :: SIM\n- Priority :: %^{P|P0|P1|P2}\n\n* Context\n%?\n\n* Goal\n\n* Deliverables\n- [ ]\n\n* Acceptance\n- [ ]\n\n* Risks\n" :empty-lines 1) ;; ========================= ;; Results ;; ========================= ("r" "Mission Results" entry (file "%(org-capture-get :results-file)") "* Summary\n%?\n\n* Artifacts\n\n* Evidence\n\n* Recommendation\n- PROCEED\n- ITERATE\n- HOLD\n- SCRUB\n" :empty-lines 1) ;; ========================= ;; Decision ;; ========================= ("d" "Decision Record" entry (file "%(org-capture-get :decision-file)") "* Decision\n- %^{Decision|PROCEED|ITERATE|HOLD|SCRUB}\n\n* Owner\n- MCC\n\n* Rationale\n%?\n\n* Follow-up\n- [ ]\n" :empty-lines 1) ))