The deploy has a high risk of breaking the checkout.
O deploy tem alto risco de quebrar o checkout.Aula
Risco, impacto e esforço
Nível: B1
Objetivo
Avaliar tarefas de engenharia usando risco, impacto e esforço; aplicar uma matriz simples para priorizar o backlog e justificar a ordem de execução em planejamento.
Explicação
Em planejamento de produto e engenharia, três perguntas se repetem para cada tarefa:
- Risk (risco): qual a chance de algo dar errado? Mudança que toca em código de pagamento ou em dados tem risco alto. Mudança isolada em uma rota nova tem risco baixo.
- Impact (impacto): quanto essa tarefa importa para o usuário ou para o negócio? Uma feature usada por 90% dos clientes tem impacto alto. Uma melhoria interna de log tem impacto baixo.
- Effort (esforço): quanto trabalho (tempo, pessoas, complexidade) a tarefa exige? Reescrever um módulo é esforço alto. Corrigir um texto em uma string é esforço baixo.
Esses três eixos aparecem juntos em frases de planning: `It's a low-risk, high-impact change` ou `The effort is high, but so is the impact`.
A matriz simples de priorização
A matriz mais comum cruza impacto e esforço em quatro quadrantes:
| Low effort | High effort | |
|---|---|---|
| High impact | Quick win (fazer primeiro) | Big bet (planejar com cuidado) |
| Low impact | Fill-in (fazer quando der) | Money pit (evitar ou cortar) |
- Quick win: alto impacto, baixo esforço → fazer primeiro. Ex.: corrigir um texto de erro visível para todos os usuários.
- Big bet: alto impacto, alto esforço → planejar, dividir em fases, estimar com cuidado.
- Fill-in: baixo impacto, baixo esforço → fazer nos tempos ociosos.
- Money pit: baixo impacto, alto esforço → cortar ou reduzir o escopo.
O risco entra como um terceiro eixo mental: dentro do mesmo quadrante, a versão de baixo risco ganha da de alto risco quando há empate.
Confidence (confiança na estimativa)
Confidence mostra o quanto você confia na própria estimativa. Em planning é tão importante quanto o número em si:
- `We have high confidence in the effort estimate.`
- `We have low confidence in the impact estimate.`
Já fizemos algo parecido; o número é confiável.
Não temos dados de uso; o impacto pode ser alto ou baixo.
Frase útil em planning: `Let's time-box this — we have low confidence in the effort.`
Dependency (dependência) e bloqueios
Dependency é quando uma tarefa depende de outra. Use `depend on` (sempre `on`):
- `The migration depends on the security review.`
- `This task is a dependency for three other tasks.`
Blocker é o que está impedindo o time de avançar. Como verbo, use `block`: `The flaky test is blocking the release.` Como substantivo, use `blocker`: `The flaky test is a blocker for the release.`
Frases típicas de priorização
Para justificar a ordem de execução em planning, combine os termos:
- `Let's prioritize quick wins first, then the high-impact bets.`
- `We agreed to deprioritize the legacy refactor this quarter.`
- `There is a clear trade-off between effort and impact here.`
- `The auth work is a dependency for three other tasks.`
- `We have high confidence in this estimate.`
Exemplos
| Inglês | Tradução | Observação |
|---|---|---|
| It's a low-risk change with high impact. | É uma mudança de baixo risco com alto impacto. | Padrão clássico: low-risk + high-impact = quick win. |
| The effort is high, but so is the impact. | O esforço é alto, mas o impacto também é. | Big bet: alto impacto + alto esforço. |
| We have low confidence in the effort estimate. | Temos baixa confiança na estimativa de esforço. | Confidence mede a certeza sobre a própria estimativa. |
| This task depends on the security review. | Essa tarefa depende da revisão de segurança. | Depend: sempre depend ON, nunca depend from. |
| The flaky test is blocking the release. | O teste flaky está bloqueando o release. | Block como verbo: impede o progresso. |
| Let's deprioritize the legacy refactor this quarter. | Vamos despriorizar o refactor legado neste trimestre. | Decisão consciente: o time concorda em adiar. |
| There is a clear trade-off between effort and impact. | Há um trade-off claro entre esforço e impacto. | Trade-off: você troca uma coisa por outra. |
| The auth work is a dependency for three other tasks. | O trabalho de autenticação é uma dependência para outras três tarefas. | Dependency: tarefa que outras tarefas precisam. |
Erros comuns
- Confundir risk com impact: `low impact, high risk` significa 'pouco importa, mas pode dar muito errado'; `high impact, low risk` significa 'importa muito, e provavelmente vai dar certo'.
- Dizer `low efforts` (com s): effort é incontável em inglês, use sempre `low effort`.
- Usar `depend from` em vez de `depend on`: a preposição é sempre `on`.
- Confundir blocker (substantivo) com block (verbo): `It's a blocker` é ok, mas em planning prefira `It's blocking the release` ou `It's a blocker for the release`.
- Traduzir `risco` como `risk` só quando é negativo: em planejamento, `risk` quase sempre é negativo, mas `low risk` pode ser positivo ('mudança segura').
- Misturar `prioritize` com preposição errada: `prioritize for X` está errado; use `prioritize X` ou `prioritize X over Y`.
- Esquecer `in`: `We have low confidence in the estimate` (não `of the estimate`).
- Tratar `quick win` como verbo: `to quick win` não existe; é sempre substantivo, usado em `It's a quick win` ou `Let's do the quick wins first`.
Prática guiada
Para cada tarefa abaixo, classifique o quadrante (quick win, big bet, fill-in, money pit) e justifique em uma frase em inglês usando o vocabulário do tópico.
- Corrigir um texto de erro exibido para todos os usuários na tela de checkout.
→ `It's a quick win: high impact, low effort, low risk.`
- Reescrever do zero o módulo de relatórios para suportar múltiplos clientes.
→ `It's a big bet: high impact, high effort, medium risk.`
- Atualizar a documentação interna de uma API pouco usada.
→ `It's a fill-in: low impact, low effort.`
- Migrar manualmente um sistema legado de cobrança para um novo formato.
→ `It's a money pit: low impact, high effort — let's deprioritize it.`
Repare no padrão: a mesma estrutura `It's a [quadrant]: [combinação de adjetivos].` aparece em todas as frases, e o vocabulário (impact, effort, risk) se repete de forma natural.
Resumo
Risco mede a chance de dar errado, impacto mede o quanto importa, esforço mede o quanto custa fazer. A matriz 2x2 cruza impacto e esforço em quatro quadrantes: quick win (fazer primeiro), big bet (planejar), fill-in (tempo ocioso) e money pit (evitar). Confidence mede a certeza sobre as estimativas e dependency marca o que bloqueia o que. Em planning, esses termos aparecem juntos em frases como `low-risk, high-impact, low-effort, with high confidence, no dependencies`.
Vocabulário
Palavras principais
It's a low-risk change; we can ship it today.
É uma mudança de baixo risco; podemos lançar hoje.Touching the payments service is high-risk.
Mexer no serviço de pagamentos é de alto risco.The impact of the new feature is hard to measure.
O impacto da nova feature é difícil de medir.Onboarding is a high-impact area of the product.
Onboarding é uma área de alto impacto do produto.Refactoring internal helpers is a low-impact task.
Refatorar helpers internos é uma tarefa de baixo impacto.The effort to rewrite the parser was underestimated.
O esforço para reescrever o parser foi subestimado.Updating the error text is a low-effort fix.
Atualizar o texto de erro é um fix de baixo esforço.Migrating the database is a high-effort project.
Migrar o banco é um projeto de alto esforço.We have high confidence in the effort estimate.
Temos alta confiança na estimativa de esforço.The new dashboard has a dependency on the auth service.
O novo dashboard tem uma dependência do serviço de autenticação.The migration depends on the security review.
A migração depende da revisão de segurança.Let's prioritize quick wins first.
Vamos priorizar os quick wins primeiro.We agreed to deprioritize the legacy refactor this quarter.
Concordamos em despriorizar o refactor legado neste trimestre.There is a clear trade-off between effort and impact.
Há um trade-off claro entre esforço e impacto.Fixing the error message is a quick win.
Corrigir a mensagem de erro é um quick win.The flaky test is a blocker for the release.
O teste flaky é um bloqueador para o release.The flaky test is blocking the release pipeline.
O teste flaky está bloqueando o pipeline de release.História
História: Risco, impacto e esforço
Nível: B1
História em inglês
The planning meeting
On Monday morning, the product team gathered for the sprint planning meeting. The PM opened the backlog and asked the team to prioritize the top items. "We have twelve tasks to consider," she said, "and we can only ship six this sprint." The engineering lead suggested using a risk, impact and effort matrix. "Let's classify each task as low-risk or high-risk, low-impact or high-impact, and so on," he said. Everyone agreed it was a simple way to make the trade-offs visible.
Sorting the backlog
First, the team listed the obvious quick wins. Fixing the broken payment error message was low effort and high impact. Updating the onboarding tooltip was also a quick win — low effort, high impact, low risk. The migration of the legacy auth module was clearly a big bet — high impact, high effort, and medium risk. A documentation cleanup was a fill-in task: low impact, low effort. Finally, a manual data backfill was a money pit: high effort, low impact.
The dependency chain
Then the team looked at dependencies between tasks. The new dashboard feature depended on the auth migration, so it could not start first. The auth migration also depended on the security review, which was still in progress. "The security review is the blocker for half the sprint," the lead noted. A flaky test was blocking the release pipeline, so the team flagged it as the first quick win. The PM asked about confidence in the effort estimates.
The decision
The lead answered: "We have high confidence in the quick wins, but low confidence in the auth migration." "Given the trade-off, let's deprioritize the manual data backfill this quarter." "We'll start with the flaky test, then the two quick wins, and time-box the auth migration." The PM agreed and updated the roadmap. By the end of the meeting, the team had a clear order: quick wins first, dependencies second, big bets last. Everyone left the room aligned on the priorities for the sprint.
Tradução linha por linha
| Inglês | Tradução |
|---|---|
| On Monday morning, the product team gathered for the sprint planning meeting. | Na segunda-feira de manhã, o time de produto se reuniu para a planning da sprint. |
| The PM opened the backlog and asked the team to prioritize the top items. | A PM abriu o backlog e pediu ao time para priorizar os itens do topo. |
| "We have twelve tasks to consider," she said, "and we can only ship six this sprint." | "Temos doze tarefas para considerar", disse ela, "e só conseguimos entregar seis nesta sprint." |
| The engineering lead suggested using a risk, impact and effort matrix. | O tech lead sugeriu usar uma matriz de risco, impacto e esforço. |
| "Let's classify each task as low-risk or high-risk, low-impact or high-impact, and so on," he said. | "Vamos classificar cada tarefa como low-risk ou high-risk, low-impact ou high-impact, e assim por diante", disse ele. |
| Everyone agreed it was a simple way to make the trade-offs visible. | Todos concordaram que era uma forma simples de tornar os trade-offs visíveis. |
| First, the team listed the obvious quick wins. | Primeiro, o time listou os quick wins óbvios. |
| Fixing the broken payment error message was low effort and high impact. | Corrigir a mensagem de erro de pagamento quebrada era de baixo esforço e alto impacto. |
| Updating the onboarding tooltip was also a quick win — low effort, high impact, low risk. | Atualizar o tooltip de onboarding também era um quick win — baixo esforço, alto impacto, baixo risco. |
| The migration of the legacy auth module was clearly a big bet — high impact, high effort, and medium risk. | A migração do módulo legado de autenticação era claramente um big bet — alto impacto, alto esforço e risco médio. |
| A documentation cleanup was a fill-in task: low impact, low effort. | Uma limpeza de documentação era uma tarefa de fill-in: baixo impacto, baixo esforço. |
| Finally, a manual data backfill was a money pit: high effort, low impact. | Por fim, um backfill manual de dados era um money pit: alto esforço, baixo impacto. |
| Then the team looked at dependencies between tasks. | Em seguida, o time olhou para as dependências entre as tarefas. |
| The new dashboard feature depended on the auth migration, so it could not start first. | A nova feature de dashboard dependia da migração de autenticação, então não podia começar primeiro. |
| The auth migration also depended on the security review, which was still in progress. | A migração de autenticação também dependia da revisão de segurança, que ainda estava em andamento. |
| "The security review is the blocker for half the sprint," the lead noted. | "A revisão de segurança é o blocker para metade da sprint", observou o lead. |
| A flaky test was blocking the release pipeline, so the team flagged it as the first quick win. | Um teste flaky estava bloqueando o pipeline de release, então o time marcou-o como o primeiro quick win. |
| The PM asked about confidence in the effort estimates. | A PM perguntou sobre a confiança nas estimativas de esforço. |
| The lead answered: "We have high confidence in the quick wins, but low confidence in the auth migration." | O lead respondeu: "Temos alta confiança nos quick wins, mas baixa confiança na migração de autenticação." |
| "Given the trade-off, let's deprioritize the manual data backfill this quarter." | "Dado o trade-off, vamos despriorizar o backfill manual de dados neste trimestre." |
| "We'll start with the flaky test, then the two quick wins, and time-box the auth migration." | "Vamos começar pelo teste flaky, depois os dois quick wins, e time-box a migração de autenticação." |
| The PM agreed and updated the roadmap. | A PM concordou e atualizou o roadmap. |
| By the end of the meeting, the team had a clear order: quick wins first, dependencies second, big bets last. | Ao final da reunião, o time tinha uma ordem clara: quick wins primeiro, dependências em segundo, big bets por último. |
| Everyone left the room aligned on the priorities for the sprint. | Todos saíram da sala alinhados sobre as prioridades da sprint. |
Notas de vocabulário
- prioritize = verbo: decidir a ordem de execução das tarefas
- low-risk / high-risk = medem a chance de algo dar errado, não o valor da tarefa
- low-effort / high-effort = esforço é incontável em inglês: use sempre no singular
- quick win = high impact + low effort + low risk: rótulo clássico de planning
- big bet = high impact + high effort: projeto maior, exige planejamento
- money pit = low impact + high effort: candidato a cortar ou reduzir escopo
- depends on = depender de: sempre com a preposição on, nunca from
- blocker = substantivo para o que impede o progresso (verbo: block)
- low confidence in = qualifica a estimativa: confiança baixa em algo
- trade-off = troca consciente entre dois lados (effort vs. impact, por exemplo)
Perguntas de compreensão
- What did the engineering lead suggest using to prioritize the backlog?
- How many tasks could the team ship this sprint?
- Why was the auth migration classified as a big bet?
- What were two quick wins the team identified?
- What was the blocker for the auth migration?
- What was the team's confidence in the auth migration effort estimate?
- What did the team decide about the manual data backfill?
- In what order did the team agree to work?
Prática com a história
- Reescreva com quick win: Fixing the error text is easy and helps every user.
- Reescreva com trade-off: It's expensive but it will help many users.
- Traduza: Vamos despriorizar isso neste trimestre.
- Reescreva usando blocker: The security review is preventing the migration from starting.
- Complete: We have low ___ in the effort estimate.
Prática
Exercícios e teste
A próxima melhoria é transformar esses arquivos em perguntas com resposta no navegador. Por enquanto, esta página já organiza o estudo e permite seguir a aula inteira sem abrir os arquivos manualmente.