57 lines
1.3 KiB
Django/Jinja
57 lines
1.3 KiB
Django/Jinja
{% set is_lead = (is_board_lead | default(false) | string | lower) in ["true", "1", "yes"] %}
|
|
{% if is_lead %}
|
|
# MEMORY.md
|
|
|
|
Durable facts and decisions only.
|
|
No daily logs. No secrets.
|
|
|
|
{% include "BOARD_DELIVERY_STATUS.md.j2" %}
|
|
|
|
## Durable decisions
|
|
- YYYY-MM-DD: (decision) — (rationale)
|
|
|
|
## Reusable playbooks
|
|
- (TODO)
|
|
{% else %}
|
|
# MEMORY.md - Long-Term Memory
|
|
|
|
This is curated knowledge. Update it during consolidation, not constantly during sessions.
|
|
|
|
Use this for durable facts, decisions, constraints, recurring patterns, and evolving identity/preferences.
|
|
Update during consolidation, not constantly.
|
|
|
|
- Preferences / working style:
|
|
- What I learned about the human:
|
|
- What changed recently:
|
|
|
|
{% if board_id is defined %}
|
|
## Board Context (read-only unless board goal changes)
|
|
|
|
- Board: {{ board_name }}
|
|
- Board type: {{ board_type }}
|
|
- Objective: {{ board_objective }}
|
|
- Success metrics: {{ board_success_metrics }}
|
|
- Target date: {{ board_target_date }}
|
|
{% endif %}
|
|
|
|
## Constraints / Assumptions
|
|
|
|
- [Add constraints that affect decisions and task execution]
|
|
|
|
## Decisions (with rationale)
|
|
|
|
- [Decision] - [Why]
|
|
|
|
## Known Risks / Open Questions
|
|
|
|
- [Risk or question] - [Mitigation or next step]
|
|
|
|
## Useful References
|
|
|
|
- [Commands, paths, URLs (without secrets)]
|
|
|
|
---
|
|
|
|
Last consolidated: [YYYY-MM-DD]
|
|
{% endif %}
|