Reduce cognitive load. Your commits already know what you did.
A full-stack developer tool that solves a specific friction: reconstructing yesterday's work across GitHub, Jira, and Slack from memory every morning. Groups commits by day and branch, links tasks automatically, and formats updates for every tool that needs it.
Engineers context-switch constantly: a bug for one team, a feature branch, a pairing session. Then 9am comes and you have to reconstruct your yesterday from memory while someone is already talking, then manually update GitHub, Jira, Slack, and smart goals. That cognitive load adds up.
Standup Tracker reduces that tax. Your commits already know what you did, grouped by day and branch, with your tasks already linked. What you complete gets formatted for every tool that needs it, so the update takes seconds instead of minutes. Tasks don't go stale because the work you're already doing becomes the communication.
When a user creates a standup, the UI updates immediately. If the request fails, it rolls back. The subtlety is that a naive rollback restores the current cache state, which may have changed if another request landed in the meantime.
How I solved it:
Snapshot the cache before the mutation and cancel any in-flight background refetches. The `cancelQueries` call makes it race safe: without it, a background refetch could overwrite the snapshot before the optimistic update lands.
Jira OAuth requires two serverless functions that share no memory. The redirect handler knows the user's ID and generates a CSRF state. The callback handler needs both, but has no way to get them.
How I solved it:
A short-lived HttpOnly cookie. The redirect encodes state + userId into the cookie. The callback reads it, validates the CSRF state, and clears the cookie. SameSite=Lax (not Strict) is required for the OAuth redirect to work.
Adding a screen reader live region to toasts caused 13 Playwright tests to fail. The live region was working perfectly. The tests were wrong.
How I solved it:
Scoped toast assertions to Sonner's `[data-title]` attribute, which exists only on the visible toast element. The sr-only div became invisible to the test, and the accessibility feature stayed.