As a software engineer and later as a engineering manager, a valuable lesson I’ve learned is that writing is a powerful tool for engineers who want to make a lasting impact. I believe that effective software engineering is centered around the ability to communicate well. The ability to clearly communicate ideas, document technical decisions, and provide direction can amplify your influence far beyond just writing code.
Why Writing Matters in Software Engineering
At its core, software engineering is about solving problems and building systems that scale. But no engineer works in isolation. We work in teams, and the ability to communicate effectively determines how efficiently ideas are shared, decisions are made, and systems evolve over time. Writing is a fundamental skill that enables engineers to:
- Share technical decisions and rationale in a way that others can understand and build upon.
- Influence the direction of projects and organizations through clear and compelling documentation.
- Reduce ambiguity and miscommunication, which helps avoid costly engineering mistakes.
- Provide mentorship and guidance that can be referenced long after verbal conversations are forgotten.
When engineers take writing seriously, they don’t just write better documentation—they become thought leaders who shape the technical direction of their teams and companies. They also help to establish a legacy that is valuable for the future within their respective projects, teams, and organizations.
So all of this begs to ask the question, how can you become a better writer as a software engineer?
How to Become a Better Writer as a Software Engineer
1. Write Like a Reader
Before publishing anything—whether it’s a design doc, a pull request description, a weekly status update, a blog post, or an email—step into the reader’s shoes. Ask yourself:
- If I were reading this for the first time, would I understand it?
- Are there any assumptions I’m making that should be stated explicitly?
- Does this document stand alone, or does it require too much outside context?
Clear writing anticipates the reader’s needs and removes unnecessary friction in understanding. We often can make the mistake of implied knowledge on the topic we are writing about, and so need to consider if a new reader would fully understand what I'm saying without that implied context? If not, then we can think about how we might provide that context with clarity.
Ah, but what do I mean by clarity?
2. Be Concise Without Sacrificing Clarity
Engineers often assume that longer documents equate to more thoroughness. Verbose !== thoroughness. In reality, verbosity can obscure meaning. Aim for clarity with minimal words:
- Use short, direct sentences.
- Remove redundant words or phrases.
- Favor simple language over jargon when possible.
- Structure your writing with headers and bullet points to improve readability.
- We also like our acronyms in engineering, but consider when its helpful to use them vs. explain them.
What is an example of when we might use principles of clarity as an engineer? How about on your pull request...
3. Master the Art of the Diff Description
Your pull request (PR) descriptions should be clear and contextual. A good diff description includes:
- What changed? (e.g., "Refactored API authentication flow to use JWT tokens.")
- Why? (e.g., "Reduces latency and eliminates dependency on session storage.")
- How does this impact users and other systems? (e.g., "Users will need to re-authenticate once after deployment.")
A well-written diff helps reviewers understand your changes quickly, leading to faster approvals and fewer back-and-forths.
The description on your pull request is a much different format than something more long form, such as a technical document. What can help you to write better technical documentation?
4. Develop a Framework for Writing Technical Docs
Technical documentation should be structured in a way that is easy to consume. A simple framework includes:
- Title: Clearly states the purpose of the document.
- Background/Context: Explains why this topic matters.
- Proposed Solution: Details what you’re suggesting and why.
- Alternatives Considered: Shows that you’ve thought critically about other approaches.
- Next Steps: Defines actionable takeaways.
Following a repeatable structure helps you and others write more effectively over time. I will mention that there are some great templates out there to help with this type of structure, but that's maybe a topic for a different time.
5. Seek and Embrace Feedback
Just like code reviews, writing benefits from iterative improvement. Ask colleagues to review your documents and PR descriptions. Encourage them to point out areas where your writing could be clearer or more concise. Over time, patterns will emerge, and you’ll naturally refine your writing style. I also find it helpful to hear what I've written in spoken form. So consider reading out loud what you've written down as a way to editorialize your writing. There are also additional tools for syntax, grammar, punctuation, etc. that can be helpful. And lastly I will mention that using AI can help you to refine and clarify your ideas.
6. Read Good Technical Writing
One of the best ways to improve your writing is to read well-written technical content. Follow engineers who write clearly on platforms like Medium, company engineering blogs, and open-source documentation. Notice how they structure their ideas and explain complex topics.
7. Practice, Then Practice Some More
Like any skill, writing improves with practice. Start a technical blog, document your personal projects, or contribute to open-source documentation. The more you write, the better you get.
The Leverage of Strong Writing
Engineers who write well don’t just improve their own work—they elevate their entire team. Strong writing helps scale influence, unlocks better decision-making, and ultimately leads to greater impact. Whether you're an early-career developer or aiming for the highest engineering levels, mastering written communication is one of the best investments you can make.
Take writing seriously. Your future self—and your colleagues—will thank you.