leadership_readme

Thoughts on working together, and supporting organizations

View the Project on GitHub NewAlexandria/leadership_readme

Agile Configurations

Step-by-step guides

💡Thing not to do

Implementation

Update the Planning epic in Jira to implement the workflow by doing the following:

The Planning boards should be linked in a common place. Everyone should take responsibility for making sure that the work they own (feature / Charter / epic) stays up to date, along with ensuring that checkpoints are scheduled.

Jira - See Step-by-step guides board setup for epics and charters

Charter/epic planning board card

Charter / epic card fields

PLAN board - New epic & Charter creation

This happens after approval to begin exploratory work, such as from the exec team. For Tech Charters, this happens once a Biz Charter has been completely prepped for triaging. Eng. stakeholders have likely been involved or exposed during the Biz Charter stage(s).

  1. create plan card
  2. add Components for product type, or service area
  3. add labels for targeted delivery quarter
  4. add labels for Charter type (biz, tech, launch)
  5. assign 3 people (unless unknown):
    • reporter: the Business person, probably from the biz Charter.
    • approver: the Product person guiding specs, QA, etc.
    • assignee: the engineer writing the tech Charter / leading it.
  6. create Charter in wiki
  7. use your team’s space. We recommend placing it under an ‘All Charters’ page.
  8. add labels to wiki page
  9. paste URL for PLAN card into wiki, creating a link
  10. share the wiki link to draw discussion to there
  11. use this instead of slack / email when possible, to avoid needing to trasncribe
  12. select text on a wiki page, and comment inline
  13. If there is a slack channel for this project, link the wiki page’s slack notification to that channel.
  14. Consider setting the URL as the channel topic, or pinning, for convenience
  15. If any cards are created on an epic, they have their project field set to the team that will work on them.
  16. multiple teams can collaborate on a single epic, this way.

How to Read an Plan card (Charter)

Charter Card Collaborators

Jira board setup

This happens during the Backlog Build stage of the Charter

🚨 Do not use the normal ‘create new board’ GUI that Jira provides. Clone & rename a board, as below

  1. Copy from existing team board Query / filter (option under row ‘…’ button)
  2. Edit query (see example; right)
  3. Copy from an existing Board (option under ‘…’ button)
  4. Change color-coding of cards to be based one something helpful
  5. located in the board’s settings
  6. Add URL for new board to the related epic (PLAN card)
  7. add the URL to the slack channel topic, too, maybe (smile)
  8. optional
  9. Add components for each type.
  10. Bulk move types to components
  11. Bulk move all cards to epics
  12. Add the new PLAN to the exclusion list of the project that hosts the board. This is done in the filter for the project team backlog.

Jira board removal when done

  1. delete board
  2. Delete board query
  3. DO NOT DELETE epics or cards
  4. Move Charter wiki page to be a child of Archived page
  5. add a label for archived
  6. this is all located in the team’s Charter section, e.g. Eng. All Charters
  7. Update the filter for the project team backlog; remove the PLAN from the exclusion.

Example backlog board query

This example covers the range of board configs we use today:

  1. includes and epic from the PLAN board in the backlog of work
  2. targets the Project,
  3. excludes epics that have their own board for this team,
  4. excludes components that have their own board for this team
  5. excludes things that are done (does not rely on release / fixVersion)
  6. orders the cards by force-rank (manual dragging)
KEY in (PLAN-47) or (
  project = PLAT
  AND ("Epic Link" not in (PLAN-1) or "Epic Link" is EMPTY)
  AND component not in (Emails)
  AND (
    status not in (done, Closed, Completed)
    OR (status in (done, Closed, Completed)
    AND updated >= 1d)
  )
) ORDER BY Rank ASC