Skip to content

Detailed Info: Add Ons

Anne LoVerso edited this page Sep 2, 2021 · 3 revisions

Add-Ons should look like this:

[
  {
    "step": <step number>,
    "weight": <number>,
    "task": "<task filename>"
  }
]

The [ ] at the top and bottom indicate this is a list of objects. Each object is enclosed in { } and every object has three properties - "step", "weight", and "task"

  • step should be the number of the step that this task belongs in.
  • weight is a number that represents the order of the task in that step. Lower numbers come first
  • task should be the filename of the task details, which can be found (or created) in the tasks folder.

An example Add-On file. This example has 2 objects in it. You can just 1, or as many as you want.

[
  {
    "step": 4,
    "weight": 50,
    "task": "floor-plan-approval-doh"
  },
  {
    "step": 4,
    "weight": 10,
    "task": "food-safety-course"
  }
]

Running velocity:

sprint 4: 11

sprint 5: 9

sprint 6: 7

sprint 7: 12

sprint 8: 9

sprint 8: 12

3-week average: 11

Clone this wiki locally