Open garethaledavies opened 1 year ago
Does this only include the scale templates without any use in a predefined poker template? This would limit it's use to custom templates, wouldn't it?
Yeah, Iโm looking at trying some Poker in disguise to support some new market areas. Iโll probably want to ship both specific templates and their matching scales. Eg. RICE prioritization, MoSCoW prioritization. @Dschoordsch Iโll look at writing the migrations, maybe thereโs one where weโve updated scales in the past?
For MoSCoW, Iโm thinking we have a scale with 4 cards on a single dimension like โPriorityโ: M, S, C, W (must have, should have, could have, wonโt have).
For RICE (Reach, Impact, Confidence, Effort) Iโm thinking each issue has those 4 dimensions, and then then using a scale of cards, maybe fibonacci 1, 2, 3, 5, 8 or something similar. They can export and run average scores until we build that in someday (in the future, where everythingโs betterโข).
@garethaledavies have you prototyped any of these scales and templates? Iโm gonna create a few custom ones as a prototype for RICE and MoSCoW.
We don't have a new migration which adds the templates. These are still stored in rethink, but we only have 1 type of migrations now.
yarn pg:migrate create addNewPokerScales
. Then we have 2 files where you can copy from:
MeetingTemplate
now lives in Postgres, so here is an example where we add a new meeting template: https://github.com/ParabolInc/parabol/blob/d07fda6bbfbacf1180493abd4914af1c44f9a7b7/packages/server/postgres/migrations/1696443115482_addCustomerFeedbackTemplate.ts#L134-L154Priority? Must/Should/Could/Wonโt Have: C See the discussion in Sprint Poker #โโ12
Powered by Parabol
Stale issue
Currently we only have a handful of publicly available templates in Sprint Poker.
As we did with retros, adding more templates to Sprint Poker makes it more valuable.
Here are a selection of scale templates to add to the product.
Modified Fibonacci 0, 0.5, 1, 2, 3, 5, 8, 13, 20, 40, 100, ?, Pass
Powers of Two 0, 2, 4, 8, 16, 32, 64, 128, ?, Pass
Fruit ๐, ๐, ๐ฅญ, ๐, ๐, ?, Pass
Animals ๐ญ,๐,๐,๐ด,๐
Cost ๐ช, ๐ต, ๐ฐ, ๐ฆ
Large, Uncertain, Small L, S, ?, Pass
Priority level P0, P1, P2, P3, P4, P5, ?, Pass
Low, Mid, High scale Lo, Mid, Hi, ?, Pass
Thumb scale ๐, ๐, ?, Pass
Yes/No scale Y, N, ?, Pass
Smiles ๐ซ, ๐, ๐, ๐, ๐คฉ, ?, Pass
Stars 1โญ, 2โญ, 3โญ, 4โญ, 5โญ, ?, Pass
Traffic Lights ๐ข, ๐ก, ๐ด, ?, Pass
Ready/Not Ready R, NR, ?, Pass
Growth Share Matrix โญ, โ, ๐ฎ, ๐ถ
SWOT S, W, O, T, ?, Pass
In our research, there were other complex prioritization frameworks we could create in Poker. I will save these for a separate issue.