Tuesday, 28 April 2015

How to do Planning in Agile environment ?

Agile planning is nothing more than measuring the speed a team can turn user stories into working, production-ready software and then using that to figure out when they’ll be done.
  • Our to-do list on an agile project is called the master story list. It contains a list of all the features our customers would like to see in their software.
  • The speed at which we turn user stories into working software is called the team velocity.
  • It’s what we use for measuring our team’s productivity and for setting expectations about delivery dates in the future.
The engine for getting things done is the 'Agile Iteration' - one to two week sprints of work where we turn user stories into working, production-ready software.

To give us a rough idea about delivery dates, we take the total effort for the project, divide it by our estimated team velocity, and calculate how many iterations we think we’ll require to deliver our project. This becomes our project plan.
# iterations = total effort / estimated team velocity
For example:
# iterations = 100 pts / 10 pts per iteration = 10 iterations
Now, as we start delivering, one of two things is going to happen. We are going to discover that a) we are going faster than expected or b) we are going slower than we originally thought.

  • Faster than expected means you and your team are ahead of schedule. Slower than expected (more the norm) means you have too much to do and not enough time.
  • When faced with too much to do, agile teams will do less (kind of like what you and I do when faced with a really busy weekend). They will keep the most important stories, and drop the least important. This is called adaptive planning and it’s how Agile teams work within their budgets and keep their projects real.

No comments:

Post a Comment