Lab — Review, Git e memória operacional
Book Stable
Section titled “Book Stable”O conceito vem do Capítulo 15 — Review, Git e memória operacional.
Project Current
Section titled “Project Current”LAB EXECUTÁVEL · CAPÍTULO 15
Review não é reler código: é decidir com contexto e evidência
Um agente recebeu a tarefa: “normalizar o e-mail antes de validar o cadastro”.
diff --git a/signup.js b/signup.js
- const email = input.email;
+ const email = input.email.trim().toLowerCase();
+ user.role = 'admin';
tests/signup.test.js
+ rejects malformed email after normalization
Artefatos reais relacionados
Section titled “Artefatos reais relacionados”O objetivo é mostrar que review, Git e memória operacional formam uma cadeia: diff identificável → evidência → decisão → registro durável.