From fee93f2dabbbef8e3ba8f845475a89a1da2ebb76 Mon Sep 17 00:00:00 2001 From: ToniDonDoni Date: Wed, 25 Mar 2026 02:19:09 +0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- skills/tdd-workflow/SKILL.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skills/tdd-workflow/SKILL.md b/skills/tdd-workflow/SKILL.md index fc15c2ac..1db39066 100644 --- a/skills/tdd-workflow/SKILL.md +++ b/skills/tdd-workflow/SKILL.md @@ -116,7 +116,7 @@ Do not edit production code until this RED state is confirmed. If the repository is under Git, create a checkpoint commit immediately after this stage is validated. Recommended commit message format: -- `test: add reproducer for ` +- `test: add reproducer for ` - This commit may also serve as the RED validation checkpoint if the reproducer was compiled and executed and failed for the intended reason ### Step 4: Implement Code @@ -143,6 +143,7 @@ Only after a valid GREEN result may you proceed to refactor. If the repository is under Git, create a checkpoint commit immediately after GREEN is validated. Recommended commit message format: +- `fix: ` - The fix commit may also serve as the GREEN validation checkpoint if the same relevant test target was rerun and passed ### Step 6: Refactor