Convivio Cookbook
  • Introduction
  • Our Business
    • The Convivio brand
    • What do we do?
    • Our work for clients
    • Our Purpose
    • Our Pulse
      • Big Rocks
      • Problems
    • Company Policies
      • Environmental Policy
      • Anti-Bribery Policy
      • Fair Tax Policy
        • Dividends policy
        • 2020 Results and Tax
        • 2019 Results and Tax
        • 2018 Results and Tax
        • 2017 Results and Tax
  • Our Team
    • Help! I'm new. How do I get started?
    • Starting at Convivio
    • Staff Benefits
    • Being a buddy
    • Having a buddy
    • Free-Range Working
    • Convivio Fridays
    • Notes: give & receive feedback
    • Security Screening
    • Submit Expenses
    • Purchases
    • Your home working environment
    • People Analytics
    • Recruitment
      • Help Card: Writing a Person Profile
      • Help Card: Writing a Job Description and Advert
      • Help Card: Publishing a Job Advert
      • Help Card: Reviewing CVs
      • Help Card: Preparing and Conducting Structured Interviews
      • Help Card: Preparing and Conducting Remote Working Interviews
    • Team Policies
      • Security Policy
        • Acceptable Use Policy
        • Business Continuity Management
        • Data Usage Policy
        • Document Access Policy
        • Mobile Equipment Policy
        • Two-Factor Authentication (2FA)
        • VPN Guide
      • Equal Opportunities
      • Grievance Procedure
      • Disciplinary Procedure
    • Taking time off work
      • Holiday
      • Sickness
    • Peer reviews
    • Mental Health
      • Mental Health Training
      • Mental Health First Aid
      • Returning to work
      • Resources
    • Continuing Professional Development
      • CPD Annual Planning
      • CPD Sprints & Scrums
      • CPD Annual Review
      • CPD Annual Retrospective
  • Our Clients
    • Principles For Building New Client Relationships
    • Researching
    • Connecting
    • Nurturing
    • Assessing
    • Learning and Thinking
    • Pre-qualification questionnaires
    • Proposing
    • Agreeing
    • Beginning
    • Inspiration
  • Our Marketing
    • Content Publishing
      • Git Repository Conventions
      • Help Card: Writing a Case Study
    • Brand Guidelines
      • Content Guidelines
      • Branded Documents and Reports
  • Our Tools
    • Infrastructure
      • External Firewalls
  • Internal Projects
    • How we improve our business
  • Client Projects
    • Delivery Launch
    • Delivery Team
      • Convivio People
      • The Coach
      • User Researcher
      • Other Team Members
    • Digital Strategy
    • Discovery
      • Discovery Briefing
      • Discovery Planning
      • Discovery Modules
      • Discovery Findings
      • Discovery Principles
      • Prepare for prototyping
    • Prototyping
      • Inputs to Prototyping
      • Prototyping Objectives
      • Prototyping Inception
      • Prototyping Sprints
      • Prototyping Outputs
    • Build
      • Inputs to Build
      • Build Kickoff
      • User Stories
      • Backlog Management
      • Backlog Scouting
      • Sprint Planning
      • Sprinting
        • Daily Standup
        • Story Lifecycle
        • Design in Sprints
        • User Testing in Sprints
        • Quality Control in Sprints
      • Sprint Review
      • Sprint Retrospective
    • Service Management
    • Digital Service Standards
      • Delivery Methodologies
        • Scrum
        • Kanban
        • Lean
          • Technical Standards
        • Code Quality
        • Testing
        • Automation
          • Security Standards
          • Quality Standards
          • Risk Standards
    • Delivery Governance
      • Steering Group
      • Risk Management
        • Risk Attitude
        • Assessing Risks
    • Delivery Help Cards
      • Help Card - Sprint Planning
      • Help Card - Sprint Review
      • Help Card - Sprint Retrospective
      • Help Card - Product Owner Feedback
      • Help Card - Common Issues
      • Help Card - Slack
      • Help Card - Github
      • Help Card - Trello
  • Our Recipes
    • Convivio Classic Cocktails
      • Ingredients
      • Tips and Techniques
      • Martini
      • Negroni
      • Manhattan
      • Old Fashioned
    • Potage Dubarry (or, creamy cauliflower soup) with spiced green pepper
    • Roasted Sweet Potato in a Herb and Nut Salad, with Maple Chilli Dressing
    • Aubergine Curry
    • Vegetarian Paella
    • Easy Ice Cream
Powered by GitBook
On this page
  • Writing
  • Wireframing
  • Technical Research
  • Implementation
  • Visual Design
  • Local Testing
  • Code Review
  • Regression Testing
  • Demo Recording
  • Quality Assurance
  • Delivery
  • Usability testing
  1. Client Projects
  2. Build
  3. Sprinting

Story Lifecycle

PreviousDaily StandupNextDesign in Sprints

Last updated 7 years ago

Each story has a unique lifecycle depending on its complexity and requirements. We’ve tried to capture the general lifecycle of a story here, but like most things it can be subject to change.

Writing

Each piece of work to be done is captured as a .

Wireframing

A high level overview of each user facing interface. What information do users need to see and what elements do they interact with to progress in their journey?

Technical Research

There are always multiple ways to build a piece of functionality so when a developer picks up a ticket their first job is to find the best tools to start the task. We encourage developers , so initial research is always important when starting off.

Sometimes, in hindsight, the technical choices made initially may prove not to be the best approach, and improvements are made through re-evaluation and peer review.

Implementation

This is the 'getting stuff' done stage, sitting down and turning key strokes into deliverable code. Throughout this process a developer is constantly thinking about and .

Visual Design

The output is reviewed by a designer and the look and feel are adapted for good usability and brand consistency.

Local Testing

Once functionality has been implemented it’s time to test it out locally.

  • Does it match the acceptance criteria?

  • Does it pass any edge-case requirements?

  • Are there any PHP notices or warnings? and so on.

Most of these should be addressed before code leaves a developers machine.

Code Review

Once a developer is happy with their code it gets sent for code review by another developer or the tech lead on the project. This stage gives people the chance to look over the code and spot any obvious errors or mistakes. These problems can then be ironed out before delivery.

Code review can happen in a number of different ways, depending on the scale of additions made.

Smaller-scale changes might need only a visual check over the code for the quality of what's been written.

At the other end of the spectrum, larger-scale changes may demand that the reviewer checks the code out locally and gives it a thorough going-over to check the viability and stability of the additions, maybe running functional or integration tests locally in the process.

Regression Testing

Now that the code has passed review we run a sequence of automated tests. These make sure that the new additions still function with all the upstream work that’s gone on since we started the story. New functionality mustn't break anything others have built along the way.

Demo Recording

This is our proof of life. The demonstration acts both as a record that we’ve produced the functionality and as a self-documenting user reference on how the new functionality works. As more and more demos are created we amass a library of material that can be used both for reference and for training purposes.

Quality Assurance

Before the code is released to the live production system, a stage of quality assurance is usually required. This is often a combined effort of internal and client team members, often non-technical users, who are able to spot errors and omissions that automated testing tools and technical teams who're 'too close' to the code may miss.

Many times an embarrassing error is caught by an eagle-eyed quality assurance review!

Delivery

Now that the story is complete we can deploy it to production, ready for use. High five!

Usability testing

Some stories may require validation after delivery. Do they solve the problem as effectively as we anticipated? Did we introduce any problems that we didn't identify before?

user story
best practices
code quality
not to re-invent the wheel