DEV Community

Muhammad Aamir Yameen
Muhammad Aamir Yameen

Posted on

Why I built the evening reflection feature before the morning planner

When I was planning the feature set for Thinkora — my all-in-one Android productivity app — I made a counter-intuitive call early on: I built the evening reflection screen before I built the morning planner.

Every competitor leads with the morning. Day starts with a dashboard, a planner, a "what's important today" prompt. The morning is loud, feature-rich, dopamine-coded.

The evening, in almost every productivity app, is empty. The day ends in the same dashboard it started in. No closure. No review. Nothing.

This always felt backwards to me. So I tested a hypothesis.

The hypothesis

Users who reflect at night retain more of the next day's plan than users who plan harder in the morning.

This isn't a controlled study — it's a pattern from beta testing. But the signal was strong enough to commit to: testers who used the evening reflection screen for 7+ days showed measurably higher task-completion rates the following week, regardless of how much time they spent planning in the morning.

Reflection was the leading indicator. Planning was the lagging one.

The implementation: Daily Pulse

Daily Pulse is deliberately tiny. Three free-text fields:

What worked today?
What didn't?
What do you want to carry into tomorrow?
That's it. No mood slider. No streak counter. No required tags. No notification if you skip it. No "you broke your 14-day chain" red badge.

The implementation rules I locked in early:

It must be skippable without guilt. The day a productivity app starts shaming you for missing reflection is the day reflection becomes performative.
It must take under 90 seconds. If it takes longer, you stop doing it on hard days — which are the days it matters most.
It must surface answer #3 in the next morning's Morning Brew. Reflection without continuity is journaling. Reflection that influences tomorrow is a system.
The engineering bit

Daily Pulse writes to a local-first WatermelonDB table. The previous night's "carry forward" is read by Morning Brew on the next sunrise (using device local time, not server time — important for travelers).

There is no server roundtrip. There is no analytics event on the content. The only telemetry I collect is "feature opened" and "feature submitted" — never what was written.

Why this matters past my app

If you're building anything habit-shaped, the reflex is to over-engineer the entry point: more inputs, more taps, more configurability. The actual leverage is almost always in shrinking the loop and making the next-day continuity tight.

People don't stick to systems because the system is comprehensive. They stick because the system feels light on a bad day.

Daily Pulse is the lightest thing in Thinkora. It's also one of the most-retained.

Free on Google Play: https://play.google.com/store/apps/details?id=com.thinkora

Top comments (0)