The problem
Build Together is two collaboration tools in one app, an Easy Retro-style board for retrospectives and a planning poker tool for estimation. Both need several people in the same session at once, seeing each other’s changes without refreshing, without stepping on each other, and without the app falling over when someone’s connection drops.
Roughly fifty developers worked on this codebase, organized on the Spotify model. At that headcount the hard part is whether the next person can read the feature, and whether fifty people’s changes still add up to one coherent app at the end of the sprint.
What I built
I worked as one of the developers on the app, which is built in raw TCA (The Composable Architecture) against a Swift Vapor backend. Changes push out to everyone in the session as they happen, your own actions land instantly rather than waiting on the server to agree, and a dropped connection reconnects on its own without anyone noticing it went. It runs on both iPhone and Mac, because people have this open during a meeting on whatever device is already in front of them.
For one two-week sprint I served as platform for my group, running the ceremonies, reviewing incoming pull requests, and doing QA on what came out of them. That fortnight was the most useful thing I did on the project. Reviewing other people’s TCA at volume is how you find out which parts of an architecture transfer to people who weren’t in the room when it was chosen.
Decisions that mattered
Retro boards and planning poker are dense, and everything on them is moving at once because several people are moving it. Casual state management produces bugs nobody can reproduce. TCA is more ceremony upfront, but it keeps the reconciliation between what the server said and what you’re looking at in one place you can audit, instead of letting it seep into every screen. On a fifty-person codebase that ceremony is how a reviewer holds a change in their head.
Keeping the live connection out of individual screens is what let the instant-feedback and reconnection behavior work identically in the retro board and the poker flow, rather than being built twice and drifting apart by the third sprint.
What shipped
A cross-platform app where a room of people can run a retro or a planning poker session together, watch changes land live, and never notice when someone’s WiFi hiccups and reconnects behind the scenes.
The squad ran its own retros on it. Fifty developers who know exactly where the bodies are buried chose it anyway, in a meeting they have to sit through regardless. It’s currently in App Store review.