Projects
The container for one study — a question, from open exploration to a clear answer. Everything belonging to that question lives here.
Why it matters: One place to see what's done and what's open — and how each piece feeds the outcome.
What it holds
- Title + goal (the How-Might-We) + methodology & current phase
- Linked studies (reports), councils, notes, sections, personas
- Emergent themes +
study_tags(which theme each study carries) - Status (active / done)
Data shape
A real, trimmed record (stored as JSON):
{
"id": "proj_a91…", "slug": "weekly-planning",
"title": "Weekly planning", "goal": "How might we make weekly planning effortless?",
"methodology": "double_diamond", "phase": "develop",
"persona_ids": ["persona_7f3…"],
"study_ids": ["syn_22b…"], "council_ids": ["council_4c1…"],
"notes": [ { "id": "note_8e…", "text": "Monday triage is the worst", "kind": "note" } ],
"sections": [ { "id": "sec_1…", "title": "Problem exploration" } ],
"themes": ["triage", "trust"], "study_tags": { "syn_22b…": ["triage"] },
"status": "active"
}What it's made of
A project is the container Node; the relations between its nodes are typed Edges (based_on, feeds_into, refines, answers).