When doing agile what are the specific criteria of defining the scope of a user story? What factors should I take into account when defining the scope? Is there any specific formula you use for this purpose?
|
A "User Story" in extreme programming is supposed to be the smallest possible unit of business value. Some handy suggestions for rules:
"As a stakeholder-name I want to action-description so that business-reason-why"
|
|||||||
|
Well, the basic rule is that a story should be small enough (in story points) to fit in an iteration. Actually, to me, a story shouldn't exceed the half of the team velocity (the number of point achieved per iteration). Above, you put to much risks on your iteration and you don't want to do this. In this case, split your big story into smaller ones to reduce uncertainty. That said, does your product backlog need to contain only "small" enough user stories? I don't think so. I even believe that this would be a bad thing. By splitting stories that won't be implemented in, lets say the 3 next iterations, into small ones, you're taking the risk to have to rework them (which is waste) before to include them in an iteration. What's the point of doing this for stories that won't be implemented before 3 or 6 months? Instead, do it rather just in time. In other words, you backlog should have an "iceberg structure" with fine grained stories on top, bigger stories at the "release level" and even more bigger for next releases as illustrated below (credits to Boris Gloger):
Then, during each iteration (i.e. before the next one), take some time to split most important stories into smaller one to prepare them for the next iteration planning. This is something people refers as product backlog grooming. Regarding the granularity, Agile uses the following terminology [Cohn2004] :
But to me, Themes, Epics don't really imply size... Themes aren’t necessarily bigger or smaller than Epics. They're just labels. |
||||
|
|
|
This is a great question. The key to doing it well is great collaboration between the PO and the team. The PO owns the backlog and is the only one who keeps it updated. But the team has to provide him/her feedback to be able to build it out effectively. I find that if the PO and tam haven't worked together before it takes a while to get used to what "size" story the team can accomplish in a given period of time and thus at first a lot more collaboration is required. I think the ideal story takes 2 days of team time or less. Obviously based on your team size and ability more or less complicated stories can get done in that period of time. My current team is small (3 dev 1 test) so we find that anything scored 8 or higher is suspect and needs splitting because it will likely take more than 2 days. The PO doesn't know and can't score stories so he only has gut feel to help him write the stories. So lots of time the team will have to help him re-write them smaller. This is done BEFORE the sprint planning meeting. The PO will get better over time just like the team at estimating size and will be able to look back in the backlog and see what things look like what the new thing is and that will help him size them correctly. He will eventually automatically break a "Save" story up into "delete", "add new" and "edit existing" stories on his own after the team has helped him do that a few times. Anyway, my answer is 2 days or less for every story. |
|||
|
|
Since all of the answers here have some useful remarks in them, I decided to sum the whole thing up and add a couple of my own ideas. First of all, there are couple of constraints that have effect on how to scope the user stories:
Based on these constraints we can infer some rules:
|
||||
|
|
|
Stories shall bring value to customers, and have acceptance criteria so that it's easy to know if a story is complete. Also, size matters here, the team shall be able to complete between 5 and 10 stories in on iteration. If necessary, user stories can be split or grouped. |
|||||
|
|
As for figuring out what specifics you need to include, talk to the team—if you give them a rundown of the user story, they'll ask you questions that you can add to specific requirements for completing the user story. At my office, we have weekly meetings (aside from sprint planning) where we take 30-60 minutes to look through stories on the backlog alongside the PM, giving the team a chance to clarify any ambiguity and size the story. We look out 2-3 sprints worth of work, which gives the PM plenty of time to reformulate or break up stories if they sound to big when they're being introduced to the team. |
|||
|
|
