SlideShare a Scribd company logo
2
Most read
4
Most read
6
Most read
Monitor
Progress

Agile Software
Development
Project Progress

By: Pradeep Patel
What is AGILE?
Agile Software Development is
a group of software
development methods based
on iterative and incremental
development, where
requirements and solutions
evolve through collaboration
between selforganizing, cross-functional
teams.

It promotes adaptive
planning, evolutionary
development and
delivery, a time-boxed iterative
approach, and encourages
rapid and flexible response to
change.
An information
radiator displaying the up-todate summary of status, is
placed prominently in an office

Agile methods break tasks into
small increments with minimal
planning and do not directly
involve long-term planning.
Iterations are short time
frames (timeboxes) that
typically last from one to four
week

A common characteristic of
agile development are daily
status meetings or "standups". In a brief session, team
members report to each other
what they did the previous
day, what they intend to do
today, and what their
roadblocks are.
At the end of the iteration a
working product is
demonstrated to stakeholders
Pre-Agile Methodologies

Initiation

Planning

Execution

Monitoring
and Control

Closure

Waterfall Model
It is a sequential design process, in which progress
is seen as flowing steadily downwards through the
phases of
Conception, Initiation, Analysis, Design, Constructi
on, Testing, Production/Implementation, and
Maintenance.
It places emphasis on documentation (such as
requirements documents and design documents)
as well as source code.
Why it fails?
If clients change their requirements after the design is finalized, the design must be
modified to accommodate the new requirements. This effectively means invalidating a
good deal of working hours, which means increased cost, especially if a large amount of
the project's resources has already been invested in.
There are few other models that had been used in the past, however most of them are
based on Water Fall model and will not be discussed here
AGILE-Iterative and Incremental development
Image Source: Wikipedia

Inception:
Identifies project
scope, requirements (functional
and non-functional) and risks at
a high level but in enough detail
that work can be estimated.

Elaboration
Delivers a working architecture
that mitigates the top risks and
fulfills the non-functional
requirements.

PHASES

Construction:
Incrementally fills-in the architecture
with production-ready code
produced from
analysis, design, implementation, an
d testing of the functional
requirements.

Transition:
Delivers the system into the
production operating
environment.
AGILE-Manifesto
Individuals and
interactions
Working software
Customer
collaboration
Responding to
change

• over processes and tools

• over comprehensive
documentation
• over contract negotiation
• over following a plan

Individuals and interactions : Self-organization and motivation are important, as are interactions
like co-location and pair programming.

Working software
Customer collaboration
software development cycle,
Responding to change

: Working software will be more useful and welcome than just
presenting documents to clients .
: Requirements cannot be fully collected at the beginning of the
therefore continuous customer or stakeholder involvement is very
important.
: Agile development is focused on quick responses to change and continuous
development
Our highest priority is to satisfy the customer through early and continuous delivery
of valuable software.

AGILE
Principles

Welcome changing requirements, even late in development. Agile processes harness change
for the customer's competitive advantage.
Deliver working software frequently, from a couple of weeks to a couple of months, with
a preference to the shorter timescale.
Business people and developers must work together daily throughout the project.
Build projects around motivated individuals. Give them the environment and support they
need, and trust them to get the job done.
The most efficient and effective method of conveying information to and within a
development team is face-to-face conversation.
Working software is the primary measure of progress.
Agile processes promote sustainable development. The sponsors, developers, and users should
be able to maintain a constant pace indefinitely.
Continuous attention to technical excellence and good design enhances agility.
Simplicity--the art of maximizing the amount of work not done--is essential.
The best architectures, requirements, and designs emerge from self-organizing teams.
At regular intervals, the team reflects on how to become more effective, then tunes and
adjusts its behavior accordingly.
AGILE- Methods(Putting Agile to Practice)
Scrum
Lean software development
Kanban
Scrum-ban
Test-driven development (TDD)

Extreme Programming (XP)
Continuous integration (CI)
Feature Driven Development (FDD)
Dynamic Systems Development Method (DSDM)
Agile Unified Process (AUP)
Agile Modeling

Crystal Clear
Graphical System Design (GSD)
Story-driven modeling
Velocity tracking
Crystal Methods
Acceptance Test Driven Development (ATDD)

Software Development Rhythms
AGILE-SCRUM

A Scrum process is distinguished from other agile processes by specific concepts
and practices, divided into the three categories
Roles
Artifacts
Time Boxes..
AGILE – Effective User Story Contents
A user story should contain the following main items
Title: <a name for the user story>
As a <user or persona>
I want to <take this action>
So that <I get this benefit>
The story should also include validation steps — steps to take to validate that the working requirement for the user
story is correct
When I <take this action>, this happens <description of action>
Optional Information that a story can contain
An ID: A Unique identifier for the story.
The value and effort estimate: Value is how beneficial a user story is to the organization creating that product.
Effort is the ease or difficulty in creating that user story.
The person who created the user story: Anyone on the project team can create a user story.
For user stories that are too large to be completed in a single iteration or sprint, some teams use Epics.
Epics are basically a higher-level story that’s fulfilled by a group of related user stories.
AGILE –Extreme Programming(XP)-Values
Simplicity: We will do what is needed and asked for, but no more. This will maximize the value
created for the investment made to date. We will take small simple steps to our goal and
mitigate failures as they happen. We will create something we are proud of and maintain it
long term for reasonable costs.
Communication: Everyone is part of the team and we communicate face to face daily. We will work together
on everything from requirements to code. We will create the best solution to our problem that we can
together
Feedback: We will take every iteration commitment seriously by delivering working software. We
demonstrate our software early and often then listen carefully and make any changes needed. We will talk
about the project and adapt our process to it, not the other way around.
Respect: Everyone gives and feels the respect they deserve as a valued team member. Everyone
contributes value even if it's simply enthusiasm. Developers respect the expertise of the customers and vice
versa. Management respects our right to accept responsibility and receive authority over our own work.
Courage: We will tell the truth about progress and estimates. We don't document excuses for failure
because we plan to succeed. We don't fear anything because no one ever works alone. We will adapt to
changes when ever they happen.
AGILE –Extreme Programming(XP)-Rules
Planning
Coding

User stories are written.
Release planning creates the release schedule.
Make frequent small releases.
The project is divided into iterations.
Iteration planning starts each iteration

The customer is always available.
Code must be written to agreed standards.
Code the unit test first.
All production code is pair programmed.
Only one pair integrates code at a time.
Integrate often.
Set up a dedicated integration computer.
Use collective ownership.

Managing
Give the team a dedicated open work
space.
Set a sustainable pace.
A stand up meeting starts each day.
The Project Velocity is measured.
Move people around.
Fix XP when it breaks.

Designing

Choose a system metaphor.
Use CRC cards for design sessions.
Create spike solutions to reduce risk.
No functionality is added early.
Refactor whenever and wherever possible
Simplicity

Testing

All code must have unit tests.
All code must pass all unit tests before it can
be released.
When a bug is found tests are created.
Acceptance tests are run often and the score
is published.
AGILE- XP Practices
Coding standard: Team members should follow established and adopted coding guidelines and standards.
Collective ownership: Team members may view and edit other team members’ code or any other project artifact. Collective
ownership encourages transparency and accountability for work quality.
Continuous integration: Team members should check in changes to their code frequently, integrating the system to ensure
that their changes work, so the rest of the team is always working with the latest version of the system.
Automated CI should be considered using tools like
Test-Driven Development (TDD): In TDD the first step is to quickly code a new test basically just enough code for the test to
fail. This test could either be high-level acceptance or a more detailed developer test. Functional code is then updated to
make it pass the new test
Customer tests: Detailed requirements are captured just-in-time (JIT) in the form of acceptance tests (also called story tests).
Refactoring: Refactoring is a small change to something, such as source code, database schema, or user interface, to
improve its design and make it easier to understand and modify.
Pair programming: Two programmers work together on the same artifact at the same time. One programmer types the code
while the other programmer looks at the bigger picture and provides real-time code review.
Planning game: This includes high-level release planning to think through and monitor the big issues throughout the project
as well as detailed JIT iteration/sprint planning.
Simple design: Programmers should seek the simplest way to write their code while still implementing the appropriate
functionality.
Small releases: Frequent deployment of valuable, working software into production is encouraged.
Sustainable pace: The team should be able to sustain an energized approach to work at a constant and gradually improving
velocity.
Whole team: Team members should collectively have all the skills required to deliver the solution. Stakeholders or their
representatives should be available to answer questions and make decisions in a timely manner .
AGILE -Kanban
Stop starting and start finishing!
Four basic principles (how you need to think)
Five for properties (what you need to do).

Basic Principles

Core Properties

Start with what you do now

Visualize the workflow

Agree to pursue incremental, evolutionary change

Limit WIP(Work in Progress)

Respect the current process, roles, responsibilities & titles

Manage flow
Make Process Policies Explicit

Encourage acts of leadership at all levels

Improve Collaboratively
(using models & the scientific method)
• The Theory of Constraints (the study of bottlenecks)
• The System of Profound Knowledge (a study of variation and
how it affects processes)
• Lean Economic Model (based on the concepts of ―waste‖ )

http://www.everydaykanban.com/what-is-kanban/
AGILE –Agile Modeling(AM)
Agile Modeling (AM) is a practicebased methodology for effective
modeling and documentation of
software-based systems.

At a high level AM is a collection
of best practices, depicted in the
pattern language map .

At a more detailed level AM is a
collection
of values, principles, and practices for
modeling software that can be applied
on a software development project in
an effective and light-weight manner

With an Agile Model Driven Development (AMDD) approach, typically just enough high-level modeling at the beginning of a project is done to
understand the scope and potential architecture of the system.
During construction iterations modeling is done as part of your iteration planning activities and then take a JIT model storming approach where
modeling is done for several minutes as a precursor to several hours of coding.
AMDD recommends that practitioners take a test-driven approach.

Agile Modeling practices
Active stakeholder participation: Stakeholders (or their representatives) provide info, make decisions, and are actively involved in the development process.
Architecture envisioning: This practice involves high-level architectural modeling to identify a viable technical strategy for your solution.
Document continuously: Write

documentation for your deliverables throughout the life cycle in parallel to the creation of the rest of the solution.

Document late: Write deliverable documentation as late as possible to avoid speculative ideas likely to change in favor of stable information.
Executable specifications: Specify detailed requirements in the form of executable customer tests and your detailed design as executable developer tests .
Iteration modeling: Iteration modeling helps identify what needs to be built and how.
Just barely good enough artifacts: A model needs to be sufficient for the situation at hand and no more.
Look-ahead modeling: Invest time modeling requirements you intend to implement in upcoming iterations.
Model storming: Do JIT modeling to explore the details behind a requirement or to think through a design issue .
Multiple models: An effective developer has a range of models in his toolkit, enabling him to apply the right model for the situation at hand.

Prioritized requirements: Implement requirements in priority order, as defined by your stakeholders.
Requirements envisioning: Invest time at the start of project to identify the scope of the project and create the initial prioritized stack of requirements.
Single-source information: Capture info in one place only.
TDD: Quickly code a new test and update your functional code to make it pass the new test .
AGILE-AMDD continued……
AGILE -Tools
JIRA and it add-ins like GreenHopper, Confluence(Collaboration), Bamboo(Continuous Integration) and
Crucible(Code Review)
VersionOne
Rally and its add-in like AccuBridge
Mingle
VSTS with Scrum Templates and its add-ins and templates like UrbanTurtle, Conchango etc.
Excel and template from Jeff Sutherland
PivotalTracker
Scrumworks
Hudson(Continuous Integration)
Scrumpad
TargetProcess
Agilo
BrightGreen
Outsystems
Redmine
ScrumDesk
Tinypm
Trac
Zen
CruseControl (Continuous Integration)
GoogleDocs spreadsheet template (and also collaboration)
SharePoint (Collaboration)
SVN- Subversion (Version Control)
AGILE –Tools..Continued….
Agile Bench
Agilefant
Agile Tracking Tool
Arpoh
Assembla
Express
IceScrum
LiquidPlanner
Mendix
PangoScrum
Planigle
Polarion
Scrumboard
Scrum’d
ScrumNinja
Serena Agile On Demand
Silver Catalyst
Sprintometer
Virtual SCRUM Board
WRAP
Bugzilla (Bug Tracking)
Cucumber (TDD)
CVS – Concurrent Versions System
Elluminate (Web Conferencing)
Rspec (TDD)
Selenium (Automated Testing)
StickySorter (Collaboration)
Team City (Continuous Integration)
Twiki (Collaboration)
WebEx (Web Conferencing)
http://setandbma.wordpress.com/2010/02/17/agile-tool-expert-recommendation/
AGILE –Additional Resources
Agile for Dummies-IBM
Scrum Reference Card

Agile Data
Thank You

Pradeep Patel
MCTS, MCPD, PMP

blogs.pdotsolutions.com
techconnect. pdotsolutions.com

More Related Content

PPTX
Digital transformation-It's not all about Digital Technologies
PDF
Sales and Operation Planning
PDF
Marketing Operations Grid
PDF
PM detail
PDF
Target Operating Model Strategy Management Governance Organization Leadership...
PDF
Supply Chain Management Review Powerpoint Presentation Slides
PDF
AzureDay_Services
PDF
Process innovation framework
Digital transformation-It's not all about Digital Technologies
Sales and Operation Planning
Marketing Operations Grid
PM detail
Target Operating Model Strategy Management Governance Organization Leadership...
Supply Chain Management Review Powerpoint Presentation Slides
AzureDay_Services
Process innovation framework

What's hot (19)

PPT
Target operating model definition
PPTX
The Evolution of the Enterprise Operating Model - Ryan Lockard
PPTX
Make Every Touchpoint Count: How to Drive Revenue in an Increasingly Online W...
PDF
Strategy+Digital Transformation
PDF
Customer Driven Digital Transformation
PDF
ASPIRE Guideline.2016 release.AGCO_GP_G011
PDF
Accenture: Bennet Harvey
PDF
Salesforce implementation guide 2021 here’s everything business owner should ...
PDF
Innovating Business Model of System Integrators- In Motion Weighing
PDF
Innovative Procurement Strategies for Thriving in a Networked Economy
PPT
Final wireframes from screen concept to user interaction v0.4
PPT
The Business of Software, Distribution, and System Integration
PPTX
Operating model - Restructuring - Case study
PDF
Oracle & USJade Power Breakfast Presentations: Sales & Operations Planning
PDF
Verticurl whitepaper on Demand Center top mistakes
PDF
Kinetic Data White Paper, Innovation And Differentiation For Outsourced Serv...
PDF
Operational Excellence
PPT
IT Service Delivery Model Overview
Target operating model definition
The Evolution of the Enterprise Operating Model - Ryan Lockard
Make Every Touchpoint Count: How to Drive Revenue in an Increasingly Online W...
Strategy+Digital Transformation
Customer Driven Digital Transformation
ASPIRE Guideline.2016 release.AGCO_GP_G011
Accenture: Bennet Harvey
Salesforce implementation guide 2021 here’s everything business owner should ...
Innovating Business Model of System Integrators- In Motion Weighing
Innovative Procurement Strategies for Thriving in a Networked Economy
Final wireframes from screen concept to user interaction v0.4
The Business of Software, Distribution, and System Integration
Operating model - Restructuring - Case study
Oracle & USJade Power Breakfast Presentations: Sales & Operations Planning
Verticurl whitepaper on Demand Center top mistakes
Kinetic Data White Paper, Innovation And Differentiation For Outsourced Serv...
Operational Excellence
IT Service Delivery Model Overview
Ad

Similar to Agile software development (20)

PPTX
Agile with process 3 best for all types of
PPTX
Hardware Firewall with all the detail of
PPTX
Agile Software Development Methodologies
PPT
Agile intro resources
PDF
ch2-Agile-Software-Development-engineerning.pdf
PPTX
Chapter 5
PDF
Agile project management using scrum
PPTX
Fundamentals of Agile
PPTX
Software Development Process Models (SCRUM Methodology)
PPTX
Agile software process
PPT
Agiel sw development
PPTX
Introduction to Agile and Lean Software Development
PPTX
7.agila model
ODP
Presentation on Agile Testing
PPTX
Benefits of Agile Software Development for Senior Management
PDF
A littlebook about agile
PDF
Introduction to Agile Software Development Process
PPTX
Software engineering MODULE3__Agile.pptx
PDF
Agile Methodologies & Key Principles
PDF
Agile with process 3 best for all types of
Hardware Firewall with all the detail of
Agile Software Development Methodologies
Agile intro resources
ch2-Agile-Software-Development-engineerning.pdf
Chapter 5
Agile project management using scrum
Fundamentals of Agile
Software Development Process Models (SCRUM Methodology)
Agile software process
Agiel sw development
Introduction to Agile and Lean Software Development
7.agila model
Presentation on Agile Testing
Benefits of Agile Software Development for Senior Management
A littlebook about agile
Introduction to Agile Software Development Process
Software engineering MODULE3__Agile.pptx
Agile Methodologies & Key Principles
Ad

Recently uploaded (20)

PDF
Nidhal Samdaie CV - International Business Consultant
PDF
Business model innovation report 2022.pdf
PDF
IFRS Notes in your pocket for study all the time
PDF
kom-180-proposal-for-a-directive-amending-directive-2014-45-eu-and-directive-...
PDF
Katrina Stoneking: Shaking Up the Alcohol Beverage Industry
PDF
Reconciliation AND MEMORANDUM RECONCILATION
PDF
Types of control:Qualitative vs Quantitative
PDF
SIMNET Inc – 2023’s Most Trusted IT Services & Solution Provider
PDF
MSPs in 10 Words - Created by US MSP Network
PPTX
5 Stages of group development guide.pptx
DOCX
Euro SEO Services 1st 3 General Updates.docx
PPTX
AI-assistance in Knowledge Collection and Curation supporting Safe and Sustai...
PPTX
Probability Distribution, binomial distribution, poisson distribution
PDF
DOC-20250806-WA0002._20250806_112011_0000.pdf
PDF
Unit 1 Cost Accounting - Cost sheet
PPTX
Amazon (Business Studies) management studies
PPTX
New Microsoft PowerPoint Presentation - Copy.pptx
PDF
Laughter Yoga Basic Learning Workshop Manual
PDF
Roadmap Map-digital Banking feature MB,IB,AB
PDF
20250805_A. Stotz All Weather Strategy - Performance review July 2025.pdf
Nidhal Samdaie CV - International Business Consultant
Business model innovation report 2022.pdf
IFRS Notes in your pocket for study all the time
kom-180-proposal-for-a-directive-amending-directive-2014-45-eu-and-directive-...
Katrina Stoneking: Shaking Up the Alcohol Beverage Industry
Reconciliation AND MEMORANDUM RECONCILATION
Types of control:Qualitative vs Quantitative
SIMNET Inc – 2023’s Most Trusted IT Services & Solution Provider
MSPs in 10 Words - Created by US MSP Network
5 Stages of group development guide.pptx
Euro SEO Services 1st 3 General Updates.docx
AI-assistance in Knowledge Collection and Curation supporting Safe and Sustai...
Probability Distribution, binomial distribution, poisson distribution
DOC-20250806-WA0002._20250806_112011_0000.pdf
Unit 1 Cost Accounting - Cost sheet
Amazon (Business Studies) management studies
New Microsoft PowerPoint Presentation - Copy.pptx
Laughter Yoga Basic Learning Workshop Manual
Roadmap Map-digital Banking feature MB,IB,AB
20250805_A. Stotz All Weather Strategy - Performance review July 2025.pdf

Agile software development

  • 2. What is AGILE? Agile Software Development is a group of software development methods based on iterative and incremental development, where requirements and solutions evolve through collaboration between selforganizing, cross-functional teams. It promotes adaptive planning, evolutionary development and delivery, a time-boxed iterative approach, and encourages rapid and flexible response to change. An information radiator displaying the up-todate summary of status, is placed prominently in an office Agile methods break tasks into small increments with minimal planning and do not directly involve long-term planning. Iterations are short time frames (timeboxes) that typically last from one to four week A common characteristic of agile development are daily status meetings or "standups". In a brief session, team members report to each other what they did the previous day, what they intend to do today, and what their roadblocks are. At the end of the iteration a working product is demonstrated to stakeholders
  • 3. Pre-Agile Methodologies Initiation Planning Execution Monitoring and Control Closure Waterfall Model It is a sequential design process, in which progress is seen as flowing steadily downwards through the phases of Conception, Initiation, Analysis, Design, Constructi on, Testing, Production/Implementation, and Maintenance. It places emphasis on documentation (such as requirements documents and design documents) as well as source code. Why it fails? If clients change their requirements after the design is finalized, the design must be modified to accommodate the new requirements. This effectively means invalidating a good deal of working hours, which means increased cost, especially if a large amount of the project's resources has already been invested in. There are few other models that had been used in the past, however most of them are based on Water Fall model and will not be discussed here
  • 4. AGILE-Iterative and Incremental development Image Source: Wikipedia Inception: Identifies project scope, requirements (functional and non-functional) and risks at a high level but in enough detail that work can be estimated. Elaboration Delivers a working architecture that mitigates the top risks and fulfills the non-functional requirements. PHASES Construction: Incrementally fills-in the architecture with production-ready code produced from analysis, design, implementation, an d testing of the functional requirements. Transition: Delivers the system into the production operating environment.
  • 5. AGILE-Manifesto Individuals and interactions Working software Customer collaboration Responding to change • over processes and tools • over comprehensive documentation • over contract negotiation • over following a plan Individuals and interactions : Self-organization and motivation are important, as are interactions like co-location and pair programming. Working software Customer collaboration software development cycle, Responding to change : Working software will be more useful and welcome than just presenting documents to clients . : Requirements cannot be fully collected at the beginning of the therefore continuous customer or stakeholder involvement is very important. : Agile development is focused on quick responses to change and continuous development
  • 6. Our highest priority is to satisfy the customer through early and continuous delivery of valuable software. AGILE Principles Welcome changing requirements, even late in development. Agile processes harness change for the customer's competitive advantage. Deliver working software frequently, from a couple of weeks to a couple of months, with a preference to the shorter timescale. Business people and developers must work together daily throughout the project. Build projects around motivated individuals. Give them the environment and support they need, and trust them to get the job done. The most efficient and effective method of conveying information to and within a development team is face-to-face conversation. Working software is the primary measure of progress. Agile processes promote sustainable development. The sponsors, developers, and users should be able to maintain a constant pace indefinitely. Continuous attention to technical excellence and good design enhances agility. Simplicity--the art of maximizing the amount of work not done--is essential. The best architectures, requirements, and designs emerge from self-organizing teams. At regular intervals, the team reflects on how to become more effective, then tunes and adjusts its behavior accordingly.
  • 7. AGILE- Methods(Putting Agile to Practice) Scrum Lean software development Kanban Scrum-ban Test-driven development (TDD) Extreme Programming (XP) Continuous integration (CI) Feature Driven Development (FDD) Dynamic Systems Development Method (DSDM) Agile Unified Process (AUP) Agile Modeling Crystal Clear Graphical System Design (GSD) Story-driven modeling Velocity tracking Crystal Methods Acceptance Test Driven Development (ATDD) Software Development Rhythms
  • 8. AGILE-SCRUM A Scrum process is distinguished from other agile processes by specific concepts and practices, divided into the three categories Roles Artifacts Time Boxes..
  • 9. AGILE – Effective User Story Contents A user story should contain the following main items Title: <a name for the user story> As a <user or persona> I want to <take this action> So that <I get this benefit> The story should also include validation steps — steps to take to validate that the working requirement for the user story is correct When I <take this action>, this happens <description of action> Optional Information that a story can contain An ID: A Unique identifier for the story. The value and effort estimate: Value is how beneficial a user story is to the organization creating that product. Effort is the ease or difficulty in creating that user story. The person who created the user story: Anyone on the project team can create a user story. For user stories that are too large to be completed in a single iteration or sprint, some teams use Epics. Epics are basically a higher-level story that’s fulfilled by a group of related user stories.
  • 10. AGILE –Extreme Programming(XP)-Values Simplicity: We will do what is needed and asked for, but no more. This will maximize the value created for the investment made to date. We will take small simple steps to our goal and mitigate failures as they happen. We will create something we are proud of and maintain it long term for reasonable costs. Communication: Everyone is part of the team and we communicate face to face daily. We will work together on everything from requirements to code. We will create the best solution to our problem that we can together Feedback: We will take every iteration commitment seriously by delivering working software. We demonstrate our software early and often then listen carefully and make any changes needed. We will talk about the project and adapt our process to it, not the other way around. Respect: Everyone gives and feels the respect they deserve as a valued team member. Everyone contributes value even if it's simply enthusiasm. Developers respect the expertise of the customers and vice versa. Management respects our right to accept responsibility and receive authority over our own work. Courage: We will tell the truth about progress and estimates. We don't document excuses for failure because we plan to succeed. We don't fear anything because no one ever works alone. We will adapt to changes when ever they happen.
  • 11. AGILE –Extreme Programming(XP)-Rules Planning Coding User stories are written. Release planning creates the release schedule. Make frequent small releases. The project is divided into iterations. Iteration planning starts each iteration The customer is always available. Code must be written to agreed standards. Code the unit test first. All production code is pair programmed. Only one pair integrates code at a time. Integrate often. Set up a dedicated integration computer. Use collective ownership. Managing Give the team a dedicated open work space. Set a sustainable pace. A stand up meeting starts each day. The Project Velocity is measured. Move people around. Fix XP when it breaks. Designing Choose a system metaphor. Use CRC cards for design sessions. Create spike solutions to reduce risk. No functionality is added early. Refactor whenever and wherever possible Simplicity Testing All code must have unit tests. All code must pass all unit tests before it can be released. When a bug is found tests are created. Acceptance tests are run often and the score is published.
  • 12. AGILE- XP Practices Coding standard: Team members should follow established and adopted coding guidelines and standards. Collective ownership: Team members may view and edit other team members’ code or any other project artifact. Collective ownership encourages transparency and accountability for work quality. Continuous integration: Team members should check in changes to their code frequently, integrating the system to ensure that their changes work, so the rest of the team is always working with the latest version of the system. Automated CI should be considered using tools like Test-Driven Development (TDD): In TDD the first step is to quickly code a new test basically just enough code for the test to fail. This test could either be high-level acceptance or a more detailed developer test. Functional code is then updated to make it pass the new test Customer tests: Detailed requirements are captured just-in-time (JIT) in the form of acceptance tests (also called story tests). Refactoring: Refactoring is a small change to something, such as source code, database schema, or user interface, to improve its design and make it easier to understand and modify. Pair programming: Two programmers work together on the same artifact at the same time. One programmer types the code while the other programmer looks at the bigger picture and provides real-time code review. Planning game: This includes high-level release planning to think through and monitor the big issues throughout the project as well as detailed JIT iteration/sprint planning. Simple design: Programmers should seek the simplest way to write their code while still implementing the appropriate functionality. Small releases: Frequent deployment of valuable, working software into production is encouraged. Sustainable pace: The team should be able to sustain an energized approach to work at a constant and gradually improving velocity. Whole team: Team members should collectively have all the skills required to deliver the solution. Stakeholders or their representatives should be available to answer questions and make decisions in a timely manner .
  • 13. AGILE -Kanban Stop starting and start finishing! Four basic principles (how you need to think) Five for properties (what you need to do). Basic Principles Core Properties Start with what you do now Visualize the workflow Agree to pursue incremental, evolutionary change Limit WIP(Work in Progress) Respect the current process, roles, responsibilities & titles Manage flow Make Process Policies Explicit Encourage acts of leadership at all levels Improve Collaboratively (using models & the scientific method) • The Theory of Constraints (the study of bottlenecks) • The System of Profound Knowledge (a study of variation and how it affects processes) • Lean Economic Model (based on the concepts of ―waste‖ ) http://www.everydaykanban.com/what-is-kanban/
  • 14. AGILE –Agile Modeling(AM) Agile Modeling (AM) is a practicebased methodology for effective modeling and documentation of software-based systems. At a high level AM is a collection of best practices, depicted in the pattern language map . At a more detailed level AM is a collection of values, principles, and practices for modeling software that can be applied on a software development project in an effective and light-weight manner With an Agile Model Driven Development (AMDD) approach, typically just enough high-level modeling at the beginning of a project is done to understand the scope and potential architecture of the system. During construction iterations modeling is done as part of your iteration planning activities and then take a JIT model storming approach where modeling is done for several minutes as a precursor to several hours of coding. AMDD recommends that practitioners take a test-driven approach. Agile Modeling practices Active stakeholder participation: Stakeholders (or their representatives) provide info, make decisions, and are actively involved in the development process. Architecture envisioning: This practice involves high-level architectural modeling to identify a viable technical strategy for your solution. Document continuously: Write documentation for your deliverables throughout the life cycle in parallel to the creation of the rest of the solution. Document late: Write deliverable documentation as late as possible to avoid speculative ideas likely to change in favor of stable information. Executable specifications: Specify detailed requirements in the form of executable customer tests and your detailed design as executable developer tests . Iteration modeling: Iteration modeling helps identify what needs to be built and how. Just barely good enough artifacts: A model needs to be sufficient for the situation at hand and no more. Look-ahead modeling: Invest time modeling requirements you intend to implement in upcoming iterations. Model storming: Do JIT modeling to explore the details behind a requirement or to think through a design issue . Multiple models: An effective developer has a range of models in his toolkit, enabling him to apply the right model for the situation at hand. Prioritized requirements: Implement requirements in priority order, as defined by your stakeholders. Requirements envisioning: Invest time at the start of project to identify the scope of the project and create the initial prioritized stack of requirements. Single-source information: Capture info in one place only. TDD: Quickly code a new test and update your functional code to make it pass the new test .
  • 16. AGILE -Tools JIRA and it add-ins like GreenHopper, Confluence(Collaboration), Bamboo(Continuous Integration) and Crucible(Code Review) VersionOne Rally and its add-in like AccuBridge Mingle VSTS with Scrum Templates and its add-ins and templates like UrbanTurtle, Conchango etc. Excel and template from Jeff Sutherland PivotalTracker Scrumworks Hudson(Continuous Integration) Scrumpad TargetProcess Agilo BrightGreen Outsystems Redmine ScrumDesk Tinypm Trac Zen CruseControl (Continuous Integration) GoogleDocs spreadsheet template (and also collaboration) SharePoint (Collaboration) SVN- Subversion (Version Control)
  • 17. AGILE –Tools..Continued…. Agile Bench Agilefant Agile Tracking Tool Arpoh Assembla Express IceScrum LiquidPlanner Mendix PangoScrum Planigle Polarion Scrumboard Scrum’d ScrumNinja Serena Agile On Demand Silver Catalyst Sprintometer Virtual SCRUM Board WRAP Bugzilla (Bug Tracking) Cucumber (TDD) CVS – Concurrent Versions System Elluminate (Web Conferencing) Rspec (TDD) Selenium (Automated Testing) StickySorter (Collaboration) Team City (Continuous Integration) Twiki (Collaboration) WebEx (Web Conferencing) http://setandbma.wordpress.com/2010/02/17/agile-tool-expert-recommendation/
  • 18. AGILE –Additional Resources Agile for Dummies-IBM Scrum Reference Card Agile Data
  • 19. Thank You Pradeep Patel MCTS, MCPD, PMP blogs.pdotsolutions.com techconnect. pdotsolutions.com