Why it exists
Without a decision log, the agent (and you) have no idea whether suggestions actually worked. With one, you can:- Hold the agent accountable: “You said this would lift downloads — did it?”
- Spot patterns: “Every metadata change in Q1 helped; nothing in Q3 did.”
- Onboard new teammates with the full reasoning history.
- Rebuild trust gradually by promoting auto-approve only on action types with consistent good outcomes.
Where it lives
A SQL view,cofounder_decision_log, joins:
cofounder_actions— the proposal: type, payload, status, timestampscofounder_memory_episodes— the outcome: summary, before/after metrics
What you see
Surfaced inline in the briefing under ”📜 Decision Log”:API
How the agent uses it
The decision log feeds back into the reasoner as memory context. When the agent considers proposing a similar action, it sees:- Whether you’ve ignored the same kind of suggestion before
- What the measured outcome of past attempts was
- Whether the action type has been net-positive for your app

