USE CASE AGILE (en)

🍍

TRELLO

# Exercise: Agile Project Management - Nutrition App for CPAM

Project Context

The CPAM (French Health Insurance) wants to develop a nutrition application to help its beneficiaries adopt a healthier diet and prevent nutrition-related diseases (diabetes, obesity, etc.). This application will offer personalized recommendations, meal tracking, health challenges, and food composition information.

Objective of the Exercise

Practice Agile project management principles by organizing and planning the development of the application using the Scrum methodology.

πŸ›  Use Trello for this exercise.

1. Team Formation and Roles


2. Definition of the Product Backlog

Each team must:

  1. Identify the key features of the application (e.g., user registration, nutritional recommendations, meal tracking, integration with connected devices, etc.).
    • User registration and authentication.
    • Generation of personalized nutritional recommendations.
    • Meal tracking with manual input and image recognition.
    • Integration with connected devices (scales, smartwatches, etc.).
    • Implementation of health challenges and personalized reminders.
    • Dashboard for progress tracking and meal history.
    • Access to a database of healthy recipes tailored to the user's needs.
    • List of food items with their composition.
  1. Write User Stories following this format: "As a [user], I want [action] so that [benefit]."
    • "As a user, I want to create an account and log in so that I can access my personalized data."
    • "As a user, I want to receive tailored nutritional recommendations so that I can improve my diet."
    • "As a user, I want to record my daily meals so that I can track my nutrition and receive personalized advice."
    • "As a user, I want to synchronize the app with my smartwatch so that I can automatically integrate my health data."
    • "As a user, I want to participate in nutrition challenges so that I can stay motivated and improve my eating habits."
    • "As a user, I want to access a database of healthy recipes so that I can easily prepare balanced meals."
    • "As a user, I want to know the composition of food items."
  1. Prioritize these User Stories based on their value to the user.
    • High Priority: Registration/authentication, nutritional recommendations, meal tracking.
    • Medium Priority: Synchronization with connected devices, health challenges.
    • Low Priority: Recipe database, detailed meal history.

3. Creating a SCRUM Board

Scrum Board Example:

Product BacklogSprint BacklogTo DoIn ProgressTo TestDoneβ›” BlockedπŸ‘€ Code Review
Nutritional recommendationsUser interfaceMeal APIAPI for connected devicesTest meal displayRegistration UI βœ”
Meal trackingNotification systemTracking statisticsFood database integrationMobile compatibility checkDashboard UI βœ”

πŸ“Œ The Sprint Backlog contains the User Stories selected for the sprint.

⚑ Important: A User Story is too broad to be completed at once β†’ break it down into tasks.

πŸ“Œ The "To Do" column contains the technical tasks necessary to complete the User Stories.


Incremental

The incremental approach in Scrum means that the application evolves gradually with each sprint by delivering features usable by the end user. Here's how we see this incremental aspect in the exercise:

1. Defining the Increment in the Exercise

πŸ”Ή In each Sprint, the team develops a functional part of the product.

πŸ”Ή Each sprint ends with a usable deliverable (e.g., an interface, a working API).

πŸ”Ή The application progressively expands over the sprints with new features.

βœ… Each sprint adds a functional block that improves the product.

βœ… We don't build an entire product in six months, but we deliver usable parts every two weeks.

βœ… We continuously improve instead of planning everything upfront.

Iterative

Iterative β†’ We improve existing features by incorporating user feedback.

Concrete example in our project:

  1. Sprint 1: First version of meal entry. βœ…
  1. Sprint 2: Adding synchronization with connected devices (incremental). βœ…
  1. Sprint 3: Improving the meal entry design and fixing bugs (iterative). βœ…

3. Sprint Planning

🍍

1️⃣ Sprint Planning:

  • The team selects User Stories and places them in the Sprint Backlog.
  • Each User Story is broken down into tasks, which are placed in the To Do column.
    • A User Story is broken down into tasks.

      Example:

      User Story: "As a user, I want to record my meals so that I can track my nutrition."

      Associated Tasks:
      βœ… Design the user interface for meal input.
      βœ… Develop the API for saving meals in the database.
      βœ… Create the meals database.
      βœ… Implement field validation (e.g., ensure correct input quantities).
      βœ… Write tests to verify module functionality.

    • πŸ‘₯ Who decides on the tasks?

      β€’ Developers: They are the ones doing the work, so they define the necessary technical tasks.

      β€’ Scrum Master: Ensures that the planning is realistic and smooth.

      β€’ Product Owner (PO): Steps in if clarification on the user needs is required.

    • Example of a Task Card

      πŸ“ Title: Develop Meal Logging API

      πŸ“Œ Description:

      Create a REST API to log a meal in the database with a name, quantity, and date.

      βœ… Acceptance Criteria:

      βœ” Accept POST requests with valid fields.

      βœ” Store data in the database.

      βœ” Return a confirmation or error message.

      πŸ‘€ Assigned to: Alice

      ⏳ Estimation: 3 points

      🚦 Status: To Do

      πŸ”— Dependencies: Requires the creation of the meal database.

      πŸ’¬ Notes: Verify user input validation.

  • A 2-week sprint provides a good balance between flexibility and tangible progress.
  • The goal is to have an incremental version of the product usable at the end of the sprint.
🍍

2️⃣ Sprint Execution:

  • Developers pick tasks from the To Do column and move them to "In Progress".
  • Once completed, they move to "Testing", then "Done".

3️⃣ Sprint Review:

  • Once all tasks of a User Story are completed, the team demonstrates the delivered functionality.

Planning Poker Estimation

What is Planning Poker?

Planning Poker is an Agile estimation method used to assess the effort required to complete a User Story. It helps the team reach a consensus on task complexity while avoiding individual biases.

1. Objective of Planning Poker

βœ… Obtain a collective and consensual estimation of a User Story's complexity.

βœ… Prevent a single person from influencing others with their estimation.

βœ… Encourage discussion and understanding of tasks.

2. How Planning Poker Works

πŸ’‘ Materials: A set of Planning Poker cards (or an online tool). Each card represents an effort value based on the Fibonacci sequence:

1, 2, 3, 5, 8, 13, 21, 34, … (sometimes including ∞ and ? for uncertainty).

πŸ“Œ Step 1: Presenting the User Story

πŸ“Œ Step 2: Choosing Estimations

πŸ“Œ Step 3: Revealing the Cards

πŸ“Œ Step 4: Discussing Discrepancies

πŸ“Œ Step 5: Re-estimation (if necessary)

πŸ“Œ Step 6: Assigning the Final Estimation

3. Examples of Planning Poker in Action

Example 1: Easy Estimation

πŸ”Ή User Story: "As a user, I want to change my password."

πŸ”Ή Team votes: All vote β€œ2”.

βœ… Immediate consensus β†’ The story is estimated at 2 points.

Example 2: Disagreement on Estimation

πŸ”Ή User Story: "As a user, I want to receive recommendations based on my meal history."

πŸ”Ή Team votes:

πŸ”Ή Discussion:

πŸ”Ή Examples of User Stories estimated using Planning Poker:

User StoryInitial EstimationDiscussionFinal Estimation
Log a meal5 - 8 - 5 - 3API already exists, simplification possible.5
Generate nutrition recommendations8 - 13 - 21Algorithm complexity needs review.13
User login and registration2 - 3 - 3 - 2Simple with Firebase.3

How Does a Break Card Work in Planning Poker?

πŸ”Ή Each team member has a Break Card in addition to number cards.

πŸ”Ή During voting, a member can play this card instead of a number.

πŸ”Ή If one or more Break Cards appear:

4. Simulation of Scrum Events

During the exercise, each team will simulate Scrum ceremonies:

Daily Stand-up (5 minutes per team)

Each member shares their progress, blockers, and goals for the day.

When to Report a Need?

πŸ’‘ As early as possible to avoid delays:

βœ… During a Daily Scrum: If a developer discovers a technical gap blocking progress.

Who Should Be Notified of a Technical Need?

πŸ”Ή Scrum Master: To assess if it’s a blocker and facilitate team discussions.

πŸ”Ή Product Owner (PO): To discuss the impact on the backlog and product value.

πŸ”Ή Development Team: To determine if an internal solution can be found.

StepResponsibleActions
πŸ“Œ Need IdentificationDeveloperReports it during Daily Scrum or directly to Scrum Master/PO.
πŸ” Impact AnalysisScrum Master + TeamEvaluates if the team can handle it internally or needs external expertise.
πŸ’° Cost & Resource DecisionProduct Owner + Stakeholders (Finance, CTO, Manager…)Assesses budget impact and decides whether to invest or adjust project scope.
πŸ›  Solution ImplementationDevelopment TeamCan suggest internal training, tool purchase, or expert recruitment.

Sprint Review

Presentation of completed developments.

Typical Sprint Review Flow:

  1. Presentation of completed work: Demonstration of new features or improvements.
  1. Stakeholder feedback: Discussion on alignment with user needs and expectations.
  1. Discussion on product evolution: Possible adjustments to the Product Backlog based on feedback.
  1. Preparation for the next Sprint: Adjusting priorities for the next phase of the project.

Sprint Retrospective

Discussion on what worked well and what could be improved.

Typical Sprint Retrospective Flow:

  1. What went well? 🌟
    • Identify positive aspects and Sprint successes.
  1. What could be improved? πŸ”
    • Discuss difficulties and obstacles encountered.
  1. What actions should be implemented to improve? βœ…
    • Define concrete actions to apply in the next Sprint.
🍍

Different Objectives

βœ… Sprint Review β†’ Product-oriented

βœ… Sprint Retrospective β†’ Team and process-oriented

1. Where to Document Sprint Review Feedback? πŸ“

πŸ“Œ In a shared tracking document or space (e.g., Notion, Confluence, Google Docs, Trello, Jira).

πŸ“Œ Directly in the Product Backlog if adjustments are needed.

πŸ“Œ In a Sprint Review Report.

A good way to track retrospective feedback is to use a continuous improvement board, for example, in Trello or Notion:

πŸ‘ What Worked WellπŸ”„ What Can Be Improvedβœ… Actions to Implement
Good team communicationToo many technical meetingsLimit meetings to 30 minutes
Deployment without major bugsLack of automated testsAdd tasks for writing tests

6. Learning Objectives


Learning Objectives: