Back to blog
Sep 06, 2026
6 min read

The habits that make a team able to rely on you

Knowing how to code gets you hired. What keeps you on a team is a different set of skills, none of them technical: reviewing, writing things down, breaking work into pieces, and saying what you do not know. A stop on the full-stack roadmap about the job around the code.

This stop on my full-stack roadmap is about the part of the job that is not code. Every earlier stop made you someone who can build a thing. This one is about being someone a team can rely on, and the two are not the same. Plenty of people who can build beautifully are exhausting to work with, and plenty of average coders are the person everyone wants on their project. The difference is a handful of habits, all learnable.

Running the kitchen, not just cooking one dish

Picture a chef who can cook one perfect plate but leaves the station a mess, never writes the recipe down, cannot say how long the next dish will take, and bristles when someone tastes the sauce. Brilliant, and nobody can run a restaurant with them. Professional practice is the rest of running the kitchen: the recipes, the tickets, the checks, the estimates, and letting other people taste your food.

Code review: the check that makes everyone better

Code review is someone else reading your change before it merges, and you reading theirs. It catches bugs, but that is the smaller benefit. The larger one is that it spreads knowledge: after a year of reviews, everyone understands more of the system than the part they wrote.

Two sides to learn. Receiving: a comment on your code is about the code, not you, and “good catch, fixed” is the whole correct reaction. Giving: be specific, explain why, distinguish “this is broken” from “I would have done it differently”, and say what is good too. AI review tools now do a first pass on most pull requests, which is useful, and does not replace a human who knows what the change is for.

flowchart LR
  T[A ticket, one small thing] --> B[Branch and build it]
  B --> P[Pull request]
  P --> R[Review: human and automated]
  R --> M[Merge]
  M --> D[Deploy]
  D --> T

Write it down, so the next person is not you at 2am

Professionals write things down, and not because they enjoy it. Three documents cover most of it, and I wrote a whole post on which docs a project needs and when. The short version:

  • A README so anyone can run the project.
  • Architecture decision records (ADRs): a short note per big decision saying what you chose and why. Six months on, “why did we pick this database” is unanswerable without one.
  • Tickets and pull requests that say what changed and why, not just what.

TIP

The test for whether something needs writing down: would a new teammate, or you in three months, have to ask someone? If yes, it goes in a file, not a chat message that scrolls away.

Small pieces, and honest estimates

Issue tracking is breaking work into tickets small enough to finish in a day or two, each with a clear “done” condition. It is not bureaucracy. A ticket you can finish today is one you can estimate, review, and ship; a vague two-week task is one that quietly becomes four.

Which brings up the skill developers dread: estimation. The secret is that nobody is good at it, and the professionals are the ones who say so. “This is a day, unless the API is different from the docs, then it is three” is a professional estimate. “Two days” said confidently and then missed, silently, is not. Small tickets make estimates honest almost automatically.

IMPORTANT

Communication is the skill. Say what you do not know, say early when something is slipping, and say what you decided and why. A team can plan around bad news delivered on Tuesday. It cannot plan around good news that was never true.

Draw the boxes before you build them

System design at this level is not the interview version. It is the habit of sketching the pieces and how they connect (the front end, the API, the database, the queue, the third-party service) before writing code, so you find “wait, where does the file actually get stored” on paper instead of in production. A whiteboard photo in the pull request is worth more than a thousand lines of code that assumed the wrong shape.

One structural choice you will meet on teams: the monorepo, where several apps and shared packages live in one repository with shared tooling, managed by something like Turborepo. It keeps shared code in sync and one set of rules for everything, at the cost of a bigger repository. It is a team decision, and worth recognising when you walk into one.

The tools you actually reach for

JobPopular toolsNote
Code reviewGitHub pull requests, plus AI review (CodeRabbit)Free; AI does a first pass, humans decide
Issue trackingGitHub Issues, Linear, JiraGitHub Issues is free and enough for small teams
Docs and ADRsMarkdown in the repoFree; keep them next to the code
DiagramsExcalidraw, MermaidFree; sketch before building
MonorepoTurborepo, pnpm workspacesFree/OSS
Team healthDORA metrics (deploy frequency, lead time, failure rate, recovery time)The standard way teams measure delivery

Reliability is a habit, not a talent

The lesson from this stop is that the thing teams value most is not brilliance, it is predictability: the person whose pull requests are small and reviewed, whose decisions are written down, whose estimates come with their uncertainty attached, and who says so the moment something slips. None of that requires being the best coder in the room. All of it is learnable this month. And it compounds: a reliable teammate gets the interesting work, because people trust them with it.

Be the one they can plan around.

Sources

Read next