You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Milestone | ? | Pencilled for the year, planned for 2 quarters | Most subteams | Waku Lead | A, or cohesive set of, feature(s). |
22
-
| Epic | Several per milestone | Set for a milestone | Usually one subteam or external team (e.g. DST) | Subteam Lead or Member | Milestone work for a given subteam. |
23
-
| Task | Many per Epic | Set monthly-ish, delivered weekly | One subteam or individual | Team Member | May be one or several piece of work, client specific. |
22
+
| Deliverable | Several per milestone | Set for a milestone | Subteam leads | Waku Lead | Deliverable may be the result of the work of one, some or all Waku subteams. |
23
+
| Epic | Several per deliverable | Set for a deliverable | Usually one subteam or external team (e.g. DST) | Subteam Lead or Member | Milestone work for a given subteam. |
24
+
| Task | Several per Epic | Set monthly-ish, delivered weekly | One subteam or individual | Team Member | May be one or several piece of work, client specific. |
24
25
25
26
## Milestone Definition
26
27
27
28
A *Milestone*:
28
29
29
-
1.**Provides a tangible user benefit:** The milestone should aim to provide a distinct benefit or feature to the user, whether they are end users, operators or developers. In some case, a milestone may be a bundle of small features. The bundle of features should be cohesive and the benefit to the users should be easy to summarize. Most likely, a bundle milestone will be scoped to a given track.
30
+
1.**Provides a tangible user benefit:** The milestone should aim to provide a distinct benefit or feature to the user, whether they are end users, operators, or developers. In some cases, a milestone may be a bundle of small features. The bundle of features should be cohesive and the benefit to the users should be easy to summarize. Most likely, a bundled milestone will be scoped to a given track.
30
31
2.**Minimal Scope:** The milestone should be trimmed to a minimal scope, encompassing only what is *just enough* to assess the potential impact of these features on the project's metrics (e.g. number of users, revenue). This means descoping any advanced features and aiming for a MVP-level delivery.
31
32
3.**Transversal:** While the vertical scope of a milestone should be minimal, the delivery should be complete in terms of research, engineering, QA, documentation and dev rel assets so that the feature can be pushed to users once the milestone is marked as complete. Feedback loops should be as small as possible to ensure the value of a milestone is measured in a timely manner.
32
33
4.**Attached Estimate:** An estimate should be associated with the milestone to facilitate the measurement of potential ROI. Additionally, tracking the estimate versus the actual progress is crucial for identifying any deviation and making informed decisions (e.g., deciding whether to continue if we learn the estimate is likely to be overrun).
@@ -39,9 +40,9 @@ Phase 2: During a Waku PM call, the team reviews the Milestone to confirm scope
39
40
40
41
Phase 3: If the scope is agreed upon, the team can proceed to create Epics and schedule work for kickoff.
41
42
42
-
## Epics and Workflow
43
+
## Workflow
43
44
44
-
A *milestone* is divided in *Epics*. Each *epic* is assigned to a given subteam.
45
+
A *Milestone* is divided into *Deliverables*. A *Deliverable* is divided into *Epics*. Each *Epic* is assigned to a given subteam.
45
46
46
47
Each Waku subteam lead (or selected member) is accountable for the delivery of their epic.
47
48
@@ -52,51 +53,11 @@ Typically, each *milestone* will be divided in the following *epics*:
52
53
|`E:research`| Waku Research | PoC, RFC, Protocol Simulations/Studies | Initial work done by the research team to create or change a protocol. Engineering-only Milestones may not have such epic |
53
54
|`E:nwaku`| nwaku | MVP quality software | Bring software to MVP level, proceed with re-architecture of PoC if needed, ensure functionality is usable, refine APIs, auto-generated/API documentation, ensure interoperability works |
54
55
|`E:js-waku`| js-waku | MVP quality software, including all supported env (e.g. React Native & Web) | Implement protocol in js-waku, same as nwaku. |
55
-
|`E:bindings`| nwaku | MVP quality software for supported bindings (WIP) | Expose new protocol/features on binding APIs. |
56
-
|`E:go-waku`| go-waku | MVP quality software, include all supported bindings (i.e. C and Rust) | Implement protocol in go-waku, only if needed by Status app. |
57
56
|`E:qa`| Vac/DST | RFC-based + functionality based tests, both unit and integration tests. | Test engineers take over and complete unit tests + add scenarios in integration test framework. In future, also add scenario to benchmark suite. |
58
-
|`E:dogfood`| js-waku, nwaku, bindings | Lab example updates, own nodes updated, etc. | Each dev team proceed by dogfooding the feature/API by using it themselves. Whether it is running their own node, or updating a selected number of examples. Go-waku can dogfood directly in status-go. |
59
-
|`E:docs`| Doc | Documentation (not auto-generated) | Document the new feature across all implementations, using the dogfooding output as handover material from engineering teams. This includes both coding guides but also a presentation ready visual documentation of the protocol behaviour. |
60
-
|`E:eco-dev`| Eco Dev | Dev Rel assets (examples, video tutorial, etc), comms plan (X threads, blog posts) | Dev Rel can now prepare assets to push the feature to developers, comms can prepare copies to communicate about it, BD can push it to projects and partners. |
61
-
62
-
```mermaid
63
-
flowchart LR
64
-
subgraph milestone [Milestone]
65
-
scope[Define scope and estimate]
66
-
end
67
-
subgraph researchE [E:research]
68
-
scope-->research[RFC + Protocol Simulation + PoC]
69
-
end
70
-
subgraph nwakuE [E:nwaku]
71
-
research-- Handover -->nwaku[MVP, API, Code doc, unit test]
72
-
end
73
-
subgraph js-wakuE [E:js-waku]
74
-
research-- Handover -->js-waku[MVP, API, Code doc, unit test]
75
-
end
76
-
subgraph go-wakuE [E:go-waku]
77
-
research-- Handover -->go-waku[MVP, API, Code doc, unit test]
78
-
end
79
-
subgraph go-wakuE [E:bindings]
80
-
research-- Handover -->go-waku[API, Code doc, unit test]
81
-
end
82
-
subgraph qaE [E:qa]
83
-
nwaku--Handover-->QA[QA, extended, interop and RFC-based testing]
84
-
js-waku--Handover-->QA
85
-
go-waku--Handover-->QA
86
-
end
87
-
subgraph dogfoodE [E:dogfood]
88
-
nwaku-->Dogfooding[Developer use new software and API, interoperability]
89
-
js-waku-->Dogfooding
90
-
go-waku-->Dogfooding
91
-
end
92
-
subgraph docsE [E:docs]
93
-
Dogfooding-- Handover -->Docs[Update and create guides and protocol documentation]
94
-
end
95
-
subgraph ecodevE [E:eco-dev]
96
-
Dogfooding-- Handover -->Eco-Dev[Dev Rel and BD assets, plan Comms]
97
-
Docs-->Eco-Dev
98
-
end
99
-
```
57
+
<!-- | `E:go-waku` | go-waku | MVP quality software, include all supported bindings (i.e. C and Rust) | Implement protocol in go-waku, only if needed by Status app. <!-- | `E:bindings` | nwaku | MVP quality software for supported bindings (WIP) | Expose new protocol/features on binding APIs. | --> | -->
58
+
<!-- | `E:dogfood` | js-waku, nwaku, bindings | Lab example updates, own nodes updated, etc. | Each dev team proceed by dogfooding the feature/API by using it themselves. Whether it is running their own node, or updating a selected number of examples. Go-waku can dogfood directly in status-go. | -->
59
+
<!-- | `E:docs` | Doc | Documentation (not auto-generated) | Document the new feature across all implementations, using the dogfooding output as handover material from engineering teams. This includes both coding guides but also a presentation ready visual documentation of the protocol behaviour. | -->
60
+
<!-- | `E:eco-dev` | Eco Dev | Dev Rel assets (examples, video tutorial, etc), comms plan (X threads, blog posts) | Dev Rel can now prepare assets to push the feature to developers, comms can prepare copies to communicate about it, BD can push it to projects and partners. | -->
100
61
101
62
### Engineering-Only Milestones
102
63
@@ -119,7 +80,6 @@ Handover to QA, Docs, Eco Dev with MVP quality software is still expected down t
119
80
120
81
Each epic should have an owner per subteam.
121
82
Most epics will have a unique owner (e.g. a Waku Research team member owns a `E:research` epic).
122
-
For _Dogfood_ and _QA_ epics, one owner per client should be set.
123
83
124
84
The epic owner is responsible for breaking down the work in smaller issues in the related repo.
125
85
@@ -147,8 +107,8 @@ Hence:
147
107
148
108
The program manager should ensure that epics are getting the right assignee in a timely fashion.
149
109
For example, when research work starts for a given milestone, epic owners from development team should be assigned, so they know to participate in discussions.
150
-
Program manager should also ensure that issues are being created in a timely fashion,
151
-
an is encouraged to use client PM call as a forum to check epics to be assigned, for example when a given epic is near completion.
110
+
111
+
Program manager should also ensure that issues are being created in a timely fashion, and is encouraged to use client PM call as a forum to check epics to be assigned, for example when a given epic is near completion.
152
112
153
113
### Handovers
154
114
@@ -158,9 +118,6 @@ The following handovers are defined:
| Research to development teams | - RFC PR is merged <br /> - PoC PR is merged | - RFC content and PoC are reviewed <br /> - Own code and functionality <br /> - Own minor RFC changes |
160
120
| Development teams to QA | - Happy path and selected error path tests exist <br /> - APIs are implemented to enable interop testing | - Review RFC <br /> - Review existing tests |
161
-
| Development teams to Docs | - Working usage of API is provided <br /> - Auto-generated documentation for public API is present | - Review examples <br /> - Understands functionality <br /> |
162
-
| Docs to Eco Dev | - Docs PR is merged with functioning code | - Understands functionality <br /> - Execute guides |
163
-
164
121
165
122
The group or person handing over is expected to initiate a sync (meeting) or async (chat or GitHub) discussion to go through the output and overview.
166
123
@@ -169,37 +126,59 @@ Once the handover is accepted, the given epic can be closed.
169
126
### GitHub Usage
170
127
171
128
A _Milestone_:
172
-
- MUST have a matching GitHub issue in the https://github.com/waku-org/pm repo with `milestone` label assigned.
173
-
- MUST have a GitHub Milestone in https://github.com/waku-org/pm repo, to which relevant _Epics_ are added.
129
+
- MUST have a GitHub Milestone in https://github.com/waku-org/pm repo, to which relevant _Deliverables_ are added.
174
130
- The GitHub milestone MUST be used to track progress.
175
131
132
+
A _Deliverable_:
133
+
- MUST be defined as an issue in the https://github.com/waku-org/pm repo.
134
+
- MUST be included in its parent _Milestone_.
135
+
- MUST have an _Output_ section in the description detailing the result of work of the Deliverable.
136
+
- MUST have a `Planned Start` and `Due Date` set
137
+
176
138
An _Epic_:
177
-
- MUST have a matching GitHub issue in the https://github.com/waku-org/pm repo.
178
-
- MUST have a label with format `E:<prefix> <epic name>`.
179
-
-SHOULD be added to a GitHub Milestone.
180
-
-SHOULD have a `Planned Start` and `Due Date` set (these are GitHub projects fields you can find in the `Projects` section of the issue view sidebar).
139
+
- MUST have a matching GitHub issue in the relevant team's repo.
140
+
- MUST have a label with format `Epic`.
141
+
-MUST be added to the description of the parent _Deliverable_ issue.
142
+
-MUST have a `Planned Start` and `Due Date` set (these are GitHub projects fields you can find in the `Projects` section of the issue view sidebar).
181
143
- MAY list _Tasks_ present in other repos.
182
144
- MUST have assignee(s), who represent the epic owner (see [accountability](#accountability))
183
145
184
146
A _Task_:
185
-
- MAY be tracked as a todo item in a GitHub Issue (_Task_ or _Epic_),
186
-
- OR MAY be tracked as a single GH issue
187
-
- that MUST be labelled with related _Epic_ label (`E:...`),
188
-
- OR MAY be tracked as a GH Pull Request
189
-
- that MUST have a reference to the related GitHub _Task_ or _Epic_ issue
147
+
- MUST be tracked as a todo item in a GitHub Issue (_Deliverable_ or _Epic_)
190
148
- MUST have an _acceptance criteria_ and/or a list of _tasks_ (that can be other GH issues).
191
149
192
-
Finally, for _Tasks_ that do not belong to a given _Epic_ or _Milestone_:
193
-
- MUST have either labels:
194
-
-`bug`: This is a bug, likely reported by a user
195
-
-`enhancement`: This is an enhancement out of the scope of the technical roadmap, likely reported by a user
196
-
- Major enhancements should be carefully reviewed and prioritized.
197
-
-`documentation`: Documentation improvement or correction.
198
-
-`dependencies`: Upgrade dependencies in a timely manner to avoid time wasting when the dependency upgrade becomes critical.
199
-
150
+
Finally, for _Tasks_ that do not belong to a given _Epic_ or _Deliverable_:
151
+
- MUST qualify as, and have one of the following labels:
152
+
-`bug`: This is a bug, likely reported by a user
153
+
-`maintenance`: This is maintenance work that is out of the scope of the technical roadmap
200
154
201
155
Which means, in terms of _navigation_:
202
-
203
-
- Work for a Milestone is described in the related GitHub issue and tracked in the GitHub milestone.
204
-
- In the GitHub milestone, we have a list of _Epics_ to be achieved, the _Epics_ are being closed as the work is done and handed over.
205
-
- To look at remaining work for an _Epic_, one need to look at all issues (_Tasks_) with the corresponding _Epic_ label (`E:...`)
156
+
- Work for a Milestone is described in the [Roadmap](https://roadmap.logos.co/waku/waku-milestones) and tracked in the GitHub milestone in the pm repo.
157
+
- In the GitHub milestone, we have a list of _Deliverables_ to be achieved, the _Deliverables_ are being closed as the work is done and handed over.
0 commit comments