User stories are a common part of today’s SCRUM process. But, as with everything about SCRUM, there are some misconceptions around that topic.

This post seeks to address them and aims to give some ideas on how to write user stories that create value.

User stories are not mandatory

If you ever read the scrum-guide, you noticed the absence of the word user story. The reason for that is, that the term originates from extreme programming. (XP is another member of the agile tribes and the source of many other SCRUM practices. The daily stand up meeting, for example.)
The scrum-guide only mentions backlog items. You can be agile and follow SCRUM without ever using user stories.

Nevertheless, make them part of your SCRUM process. User stories are a great tool to enable team discussions and to shift focus on the customer. They outline the customers need and what value they expect. That helps to define the acceptance criteria and giving an estimation.

Basics of a user story

A user story is a short description of the customer’s needs, based on the customer’s point of view. The description matches the customer’s language and does not exceed three sentences. It covers the following:

  • Who?
  • What?
  • Why?

The who (not the band 🎸) describes the person having the need. The what is the feature solving the need. The why explains the business value gained from fulfilling the need.

Here is an example user story for a recipe mail service:

# As a <WHO>, I want <WHAT> so I can <WHY>

As a user, I want to mark ingredients as favorites so I can receive recipes based on them.

Now the team is able to discuss it on a technical level. They can decide which steps they have to take to fulfill the need. They estimate the resulting tasks in the same process. Planning poker helps a lot with the estimation, especially if the team is new to SCRUM.

The user story also gives a clear picture of the acceptance criteria. It is present in the why. In the example case:

# Given-When-Then

Given I am a user, When I mark ingredients as favorites, Then I receive recipes based on them.

Defining the acceptance criteria also outlines the scenarios for TDD/BDD approaches.

It is important to note that a user story is not a requirements document. It is a discussion starter for the team and stakeholders.

That is the reason they go so well with agile’s human-centered focus. The stakeholder and the team can discuss the story on a mutual, non-technical level. The team then captures the needed technical steps in tasks related to the user story.

Level of detail

As a rule of thumb, the estimate for completion of a user story fits into one sprint. If the estimates are higher, consider the user story an epic. An epic is a user story consisting of smaller related user stories.

As a user, I want to pay with PayPal for my orders so they can be shipped to me.

Breaking this down into smaller user stories:

As a user, I want to connect my PayPal account to my profile so I can use it for payments.

As a user, I want to select PayPal as the payment option during checkout so I can pay for my orders.

As a user, I want to filter my orders by paid with PayPal so I can get a clear overview of my PayPal transactions.

If the sub-stories are epics you are dealing with an initiative or a theme. These are user stories covering a long period and consisting of epics.

As a user, I want to pay for my orders with different methods so they can be shipped to me.

Such a general user story is a candidate for an initiative or a theme. The only way to fit a story like that into the size of a sprint is slicing it into epics. Slicing the example for each payment method is a reasonable vector. For example, one will handle credit card payments, another one PayPal.

Epics and Themes are useful to group related items together. They communicate their need in an unspecific manner. But user stories in the sprint should be clear and specific on what they need to achieve value.

Invest in user stories

After slicing, the team ends up with user stories they can work on. But one question remains: Are these good quality user stories?

One way to judge the quality of a user story is to apply the I.N.V.E.S.T. acronym.

I - Independent
# The story is not depending on other stories

N - Negotiable
# The stakeholders and the team are able to discuss the story

V - Valuable
# The story does not only formulate a need but also generates value

E - Estimatable
# The story is detailed enough so the team can put an estimate on it

S - Small
# The story fits into one sprint

T - Testable
# The outcome is testable

If a user story meets the above criteria consider it complete and put it in the sprint. Otherwise, the stakeholders and the team need further discussion.

Who should write them

Opinions differ on who should be the author of a user story. Sometimes the Product Owner is in favor, sometimes the customer. Why not both?
In addition, I include the team as valid authors. They use the product every day and offer valuable insights. Furthermore, this empowers the team to commit and take personal ownership.

User stories are a great addition to the SCRUM process. They will not only give you a better understanding of the customer. The correct application boosts the team’s efficiency and raises their overall commitment.

You hopefully got a better understanding of user stories and how to add them to your SCRUM process.

Going one step further

You could improve the knowledge gained by reading into:

  • user story cards
  • user story map
  • user journey map

Let me end this excursion with a quote for your meditation

If you define the problem correctly, you almost have the solution. — Steve Jobs