Openbook

Why Documentation Is the Backbone of Remote Work

Documentation is the infrastructure that makes remote work possible. What to write down, where each kind of knowledge lives, and how to keep it alive.

Remote & Async WorkOpenbook Team13 min read

A colocated team can run on tribal knowledge. Someone asks the room, someone answers, and the office itself acts as a slow, lossy, but functional shared memory. A remote team has no room to ask. Every piece of knowledge that isn't written down exists only inside individual heads, reachable only through interruption — and interruption across time zones can mean a one-day round trip for a one-sentence answer.

That is why documentation on a remote team is not an admin chore or a compliance exercise. It is infrastructure, in the literal sense: the thing everything else runs on. Async communication doesn't work without a written substrate to refer to. Onboarding doesn't work when the map of how things work lives in five people's memories. Decisions don't stick when nobody can find why they were made. Teams that treat writing as overhead end up paying for it in meetings, repeated questions, and a permanent dependence on synchronous access to specific people.

This post covers the full loop: what remote teams actually need to write down, where each kind of knowledge should live, how to write documents people actually use, and — the part most teams fail at — how to keep documentation alive without turning anyone into the docs police.

Documentation is what makes async possible at all

Async work has a dependency chain that teams rarely spell out:

  1. To work async, people must make progress without waiting on other people.
  2. To make progress without waiting, they need to answer their own questions.
  3. To answer their own questions, the answers must exist somewhere findable.

That third step is documentation. Skip it and "async-first" degrades into "chat-first" — people still depend on other humans for answers, they just wait longer for them. The team gets the latency of async with the dependency structure of sync, which is the worst of both.

Run the illustrative math on a single undocumented answer. Say the deploy process lives only in one senior engineer's head, and it gets asked about twice a month. Each ask costs the asker a wait (minutes to hours), the answerer a context switch (studies of task switching put the re-immersion cost after an interruption in the tens of minutes), and the team a small risk that the verbal answer was incomplete. Writing the runbook takes the senior engineer 45 minutes, once. It pays for itself in about six weeks and then compounds forever — including at 3 a.m. during an incident, when the author is asleep and the runbook is not.

Multiply that by every process, decision, and piece of context a team of ten holds, and the difference between a documented and undocumented remote team is not marginal. It is the difference between a team where the org chart is the bottleneck and one where it isn't.

The failure modes of undocumented remote teams

You can diagnose a documentation deficit from symptoms, all of which look like something else:

  • Meetings that exist to transfer information. If a recurring meeting's main output is people knowing things, it's a document with a scheduling problem.
  • The same questions in chat, repeatedly. Search your chat history for "how do I" and "where is." Every repeat is a missing or unfindable doc.
  • Onboarding measured in months. New hires on undocumented teams learn by scheduling calls with tenured people, serially. Their ramp time is gated by other people's calendars.
  • Decision amnesia. Six months later, nobody remembers why the team chose Postgres, or the vendor, or the pricing model — so the debate happens again, with the same arguments, sometimes reaching the opposite conclusion.
  • Key-person risk. One person's vacation degrades the team's ability to operate. This is the bus factor problem, and on remote teams it's worse because there's no desk to lean over. We've written about capturing tribal knowledge as its own discipline.
  • Silent divergence. Two people hold different understandings of the same process, and nobody discovers it until the understandings collide in production.

None of these announce themselves as "we don't write enough." They announce themselves as too many meetings, slow onboarding, and mysterious friction. Documentation is the common fix.

What to write down: the four layers

"Document everything" is bad advice — it produces bloated wikis nobody trusts. The useful move is to know the categories of knowledge that pay off in writing and deliberately cover them. There are four.

1. How things work (procedures and systems)

The mechanical layer: how to deploy, how to run payroll, how to file an expense, how the billing system talks to the CRM, how to publish a blog post. The test for whether a procedure needs a doc: would a competent new hire need to ask a human to do this? If yes, write it.

Format matters here. Procedures want numbered steps, exact commands or button names, screenshots where the UI is confusing, and a "when this goes wrong" section. Lightweight SOPs beat prose; checklists beat paragraphs. A useful discipline: have the next person who performs the procedure do it purely from the doc, without asking anyone, and fix every point where they got stuck. A procedure doc that has survived one cold run is worth five that haven't.

2. Why things are the way they are (decisions and context)

The layer teams skip most, and the one with the longest half-life. Every significant decision — architecture, vendor, policy, pricing, org design — deserves a short record: what was decided, when, by whom, what alternatives were considered, and why this one won.

Decision records are cheap (ten minutes at decision time) and disproportionately valuable, because they prevent the two expensive failure modes: relitigating settled questions, and cargo-culting decisions whose reasons have expired. When someone asks "why don't we just use X?", the answer is a link, not a meeting. A minimal template:

# Decision: <one-line summary>
Date: 2025-10-14
Deciders: <names>
Status: Accepted

## Context
What situation forced a choice, in 3–5 sentences.

## Decision
What we're doing.

## Alternatives considered
- Option B — rejected because...
- Option C — rejected because...

## Consequences
What this commits us to; what we'd revisit and when.

3. What is happening now (status and plans)

Current-state knowledge: what each project is trying to achieve, its status, its risks, who owns what. This layer is different from the first two because it changes weekly, which means it belongs in living surfaces — boards, status rooms, written check-ins — rather than in wiki pages that instantly stale. The rule of thumb: if it changes more often than monthly, it belongs in a tool designed for change, not in a document.

The classic mistake is writing "Project Falcon status" wiki pages that are perpetually three weeks out of date, which then poison trust in the rest of the wiki. Status wants structure and automatic recency: a board everyone updates as part of doing the work, or a weekly status report built on standing questions — the same three or four prompts every week, so the act of working is also the act of updating, and staleness is visible at a glance.

4. How we work together (norms)

The social layer: response-time expectations, meeting norms, how decisions get made, how code review works, what "done" means, how to raise a concern. Unwritten norms are learned by violation — a new hire finds out the norm exists by breaking it. Written norms (a team charter, a "how we work" page, an engineering handbook) let people be correct on day one. This layer is small — often under ten pages for a whole company — but it does outsized work in onboarding and conflict prevention.

What not to document

Equally important, because bloat destroys trust in the whole corpus:

  • Things that change too fast to maintain (see layer 3 — put them in living tools).
  • Things better expressed by the artifact itself. Don't write a doc describing the board; link the board. Don't paraphrase the code; comment the code.
  • Speculation and drafts presented as truth. Mark them as drafts or keep them in personal space until ratified.
  • Duplicates. The second copy of any fact is a future contradiction. Link, don't copy.

Where it lives: a home for each layer

Scattered documentation is nearly as bad as no documentation — if answers might be in the wiki, or chat, or someone's personal drive, or email, people stop looking and go back to asking. The goal is a small number of predictable homes with a clear rule for what goes where.

Knowledge type Wants Good home
Procedures, handbook, reference Stable structure, hierarchy, versioned prose Wiki (markdown, reviewable)
Working docs, specs, meeting notes Flexible structure, rich editing, nesting Docs with a page tree
Decision records Chronology, findability, immutability A dedicated decision log section in the wiki or docs
Q&A — questions with canonical answers Voting, accepted answers, dedup by search An internal Q&A room, Stack Overflow-style
Current status Structure plus constant change Boards and status rooms, not documents
Announcements and narrative updates Reach and reactions, then archive Feed posts, pinned when they matter

Two notes on this table.

The wiki/docs split is a real decision, and teams blur it at their peril: reference material wants the discipline of a wiki (stable URLs, deliberate structure, markdown that diffs cleanly), while working documents want the freedom of a block editor. We've written a full comparison in Wiki or Docs? — most teams need both, with a one-line routing rule: if it should still be true in a year, it goes in the wiki.

Q&A deserves more respect than it gets. A large fraction of team knowledge is naturally question-shaped — "why does staging use a different auth flow?" — and forcing it into wiki-article shape means it never gets written. An internal Q&A space with search, votes, and accepted answers captures this knowledge at the moment someone actually needs it, which is the cheapest possible time to write it down.

This is a place where tool sprawl actively hurts: when the wiki, the docs, the Q&A, the boards, and the chat are five products with five searches, "it's written down somewhere" and "nobody can find it" become the same sentence. It's a core reason we built Openbook the way we did — Wiki, Docs, Q&A, boards, and feeds are rooms in one space with one global search, so a question has one place to be asked and an answer has one place to be found.

Writing docs people actually use

A documentation culture fails just as surely from unusable docs as from missing ones. A few practices separate docs that get read from docs that get archived.

Title with the reader's query, not the author's category. Nobody searches for "Infrastructure Overview — Q3 Revision." They search "how to deploy to production." Name pages the way a stressed teammate would search for them; you are writing search results, not book chapters. A quick calibration exercise: before publishing, type the question you think the page answers into your search box. If the new page wouldn't plausibly be the top hit for that phrasing, rename it until it would be.

Answer first, context after. Put the command, the decision, or the steps in the first screen. History and rationale go below. A doc that makes the reader scroll past three paragraphs of background to find the answer trains them not to open docs.

Write for the person with the least context. The author always knows too much. Spell out acronyms once, link prerequisites, state which system you mean. A ten-second courtesy per doc, repaid on every read.

Date and own everything. Every page shows when it was last verified and who to ask. An undated page forces the reader to guess whether it's current — and a reader who guesses wrong once distrusts the whole wiki.

Keep pages small and linked. One topic per page. Big omnibus pages go stale in patches (the top is current, section 7 is from two years ago) and are impossible to own. Small pages have a clear owner, a clear scope, and a clear staleness signal.

Use templates. A decision-record template, a runbook template, a project-brief template. Templates cut the activation energy of writing (the blank page is the enemy) and make the corpus scannable because every doc of a type has the same shape.

Keeping it alive: maintenance is the actual hard part

Every team has written documentation. Far fewer have documentation they trust, because docs decay silently — the system changed, the doc didn't, and now the doc is a trap. Reader trust, once lost, is very expensive to recover: after two encounters with wrong docs, people revert to asking humans, and the whole investment stops paying.

Maintenance is a system, not a virtue. The pieces:

Ownership per page, not per wiki. "The team owns the docs" means nobody does. Every page has a named owner — usually whoever owns the system it describes. Ownership means: you fix it when it's wrong, and you answer the review ping.

Review dates, enforced cheaply. Each page gets a review interval by volatility: runbooks and procedures every quarter; architecture and policy every six to twelve months; decision records never (they are history, not current truth — mark them superseded instead of editing them). The mechanism can be as simple as a "Last verified: 2025-10" line plus a recurring monthly task: "scan for pages older than their interval, ping owners." Thirty minutes a month keeps a mid-sized wiki honest.

Fix-forward norm. The person who finds the error fixes it, or at minimum flags it inline ("⚠ Out of date as of Oct — steps 3–5 changed") right then. A wrong doc with a warning is fine; a wrong doc that looks authoritative is poison. Make small edits socially frictionless — no approval process for fixing a typo'd command.

Delete bravely. An archive of obsolete pages that still ranks in search results is negative-value documentation. Archive means removed from search or clearly labeled superseded with a link to the replacement — not "moved to a folder called Old."

Docs in the definition of done. The most reliable maintenance mechanism is upstream: a change isn't finished until the affected docs are updated. Put it in the pull-request checklist, the project close-out checklist, the launch checklist. This converts documentation from a separate activity (always losable to deadline pressure) into a step of the work itself.

Building the habit without nagging

Culture-building here has a well-known failure mode: one enthusiast exhorts everyone to "document more," writes most of the wiki themselves, burns out, and the corpus fossilizes. Sustainable documentation culture is built from incentives and defaults, not exhortation. Tactics that work:

  • Answer with links, gently. When someone asks a documented question, answer it and link the doc: "Here you go — also captured at [link] for next time." When it's undocumented, the answerer writes the answer as a doc or Q&A answer and links that. Over a quarter, this single habit converts a team's chat traffic into a knowledge base.
  • Leaders write first. If the founder's strategy lives in meetings and the manager's decisions live in DMs, no policy will make the team write. If leadership publishes decision records and written weekly updates, writing becomes what competent people here do.
  • Praise specific docs publicly. "Priya's migration runbook saved the on-call last night" in the team feed does more than any policy. Recognition is the cheapest incentive you have; kudos for documents teach the team that writing is seen.
  • Make writing part of real workflows. Meeting notes as a standard artifact of every meeting. Decision records as the exit criterion of every significant debate. Project briefs as the entry criterion of every project. Habit attaches to existing rituals far more easily than it forms standalone.
  • Lower the friction floor. If writing a doc requires choosing among five tools and asking where it goes, people skip it. One obvious home per knowledge type (see the table above), templates one click away, and markdown that doesn't fight the author.

We've covered the incentive design at greater length in Building a Documentation Culture (Without Nagging); the summary is that people write when writing is the easiest path to being seen as helpful, and not before.

A starter kit: what to write this month

If your team is starting from scattered chat history and memory, don't announce a documentation initiative. Write these seven artifacts, in this order, and let momentum do the rest:

  1. "How we work" page — response-time expectations, meeting norms, where things live. One page. This is the constitution; everything else links from it.
  2. Onboarding path — the ordered list of what a new hire reads and does in week one. Even a ten-bullet version transforms the next hire's ramp, and each new hire improves it as they go: their confusion is your gap report.
  3. Top-five runbooks — the five procedures people most often ask about or that only one person can do. Ask the team which five; they know.
  4. Decision log, seeded — create the section and backfill the five most-relitigated decisions from memory. Imperfect recollection beats none; mark it "reconstructed."
  5. Glossary — every internal codename, acronym, and system name with one sentence each. Ten minutes to write, disproportionately loved by new hires.
  6. Project one-pagers — for each active project: goal, owner, status link. One paragraph each, linking to living boards for detail.
  7. A Q&A space, opened — seed it by mining chat for the ten most-repeated questions and posting them with answers.

That's roughly two focused days of writing, spread across the team. The result is not complete documentation — it's the skeleton that makes every subsequent doc obvious to place and easy to find, which is what a documentation culture actually needs to start compounding.

Everything above is tool-agnostic, but the friction floor is real: knowledge scattered across five products stays scattered. Openbook puts Wiki, Docs, Q&A, boards, and check-ins in one workspace with one search, so your team's answers have one home. Start free at openbook.work — the starter kit above maps onto a fresh space in an afternoon.

Keep reading

Remote & Async Work14 min read

How to Write a Team Communication Charter

A step-by-step guide to writing a team communication charter: channel map, response-time SLAs, urgency levels, meeting rules, plus a complete example.

July 14, 2026

Remote & Async Work14 min read

Protecting Deep Work on a Remote Team

How remote teams protect focus: focus blocks, notification tiers, maker and manager schedules, and team agreements that make deep work the default.

June 5, 2026

Remote & Async Work13 min read

Meeting-Free Days: Do They Actually Work?

What the evidence says about meeting-free days, the pitfalls that quietly kill them, how to actually protect the day, and alternatives like meeting budgets.

May 22, 2026

Put these ideas to work

Openbook gives your team one home for feeds, boards, docs, check-ins and more — free to start.