Sharing Knowledge in a Tech Team: A Guide to Collaboration Modes
Posted on July 20, 2026 • 6 min read • 1,131 wordsPair programming, mob, shadowing, ADRs, on-call rotation… An overview of the ways knowledge travels within a team, and how to choose the right one based on the nature of the knowledge you need to pass on.

In “When the last expert disappears,” we saw why a team’s memory is an invisible form of technical debt. What remains is how to fix it. Pair programming, mob, shadowing, code review, ADRs, on-call rotation: there is no shortage of practices, and that is precisely the problem — you don’t know which one to pick. This guide maps them out and gives a simple rule for deciding.
Before choosing a practice, you need to know what you are passing on. All team knowledge falls into two families, and they don’t obey the same laws.
From this follows the rule that structures this whole guide:
Tacit knowledge requires synchronous contact. Explicit knowledge travels asynchronously.
The classic mistake is trying to solve everything with documentation. A wiki will never capture an intuition — and conversely, pulling five people together to pass on a procedure that a manual could carry is a waste.
They come at a cost — several people on the same subject at the same time — and with a unique value: they are the only way to pass on what cannot be written down.
These modes also have formidably effective variants — ping-pong pairing, strong-style pairing, frequent rotation of pairs — which we cover in the article dedicated to synchronous modes.
They require neither the same place nor the same moment, and they produce a trace that survives departures. That is their strength.
The details of these practices — and how to write an ADR that will still be useful in three years — are the subject of the article on asynchronous modes.
The two previous categories concern the way you work. This one concerns the way you organize so that knowledge doesn’t concentrate.
These setups are developed in the article devoted to organizational setups.
| What you want to pass on | Nature | Suitable mode |
|---|---|---|
| A diagnostic reflex, an intuition | Tacit | Shadowing, pair, mob |
| Mastery of a critical system | Tacit | On-call rotation, game day |
| The why behind a decision | Explicit | ADR |
| An incident procedure | Explicit | Runbook |
| A code convention, a style | Mixed | Code review, pair |
| A team culture | Tacit | Mob, guilds, onboarding |
This table settles most of the hesitation: identify the nature of the knowledge first, and the mode almost imposes itself.
Adopting practices guarantees nothing: you still have to measure whether the knowledge actually circulated. The most honest test is also the simplest — the muted expert exercise: the expert stays in the room but keeps quiet while the team solves a real problem. The gaps appear within minutes, with no risk and no drama.
It’s the only true audit of your bus factor, and it deserves its own article: testing your bus factor.
Adopting everything at once is the surest way to sustain nothing. If you were to keep only three things, take this trio — it covers both kinds of knowledge at a modest cost:
And once a quarter, the muted expert exercise to check that the whole thing really holds.
There is no mode superior to the others, only modes suited to the nature of the knowledge. The tacit travels through contact, the explicit through writing — and a robust team combines the two rather than betting on one.
The real indicator isn’t the number of practices adopted, but a simple question: if your best person left tomorrow, what would remain? As long as the answer worries you, there is still knowledge left to circulate.
Agile Topics — Woody Zuill
A blog with many references on agile ways of working, and an introduction to mob programming by the person who popularized the practice: principles, format, and observed benefits.
Llewellyn’s Strong-Style Pairing
The “strong-style” pairing rule: an idea must go through the other person’s hands — highly effective for passing on tacit knowledge.
Google SRE Book — Incident response and postmortems
The blameless postmortem culture, to turn every incident into shared knowledge.
InnerSource Commons
Resources and patterns for applying open source methods inside an organization.