From 87fa4ff5c4ff26b1a19967864e4159acce0cb8c2 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Mon, 2 Mar 2026 19:40:35 -0500 Subject: [PATCH] docs(skills): Add TDD Mandatory Enforcement to Tier 3 Worker skill --- .gemini/skills/mma-tier3-worker/SKILL.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.gemini/skills/mma-tier3-worker/SKILL.md b/.gemini/skills/mma-tier3-worker/SKILL.md index efbec14..7c76dda 100644 --- a/.gemini/skills/mma-tier3-worker/SKILL.md +++ b/.gemini/skills/mma-tier3-worker/SKILL.md @@ -9,6 +9,7 @@ You are the Tier 3 Worker. Your role is to implement specific, scoped technical ## Responsibilities - Implement code strictly according to the provided prompt and specifications. +- **TDD Mandatory Enforcement**: You MUST write a failing test and verify it fails (the "Red" phase) BEFORE writing any implementation code. Do NOT write tests that contain only `pass` or lack meaningful assertions. A test is only valid if it accurately reflects the intended behavioral change and fails in the absence of the implementation. - Write failing tests first, then implement the code to pass them. - Ensure all changes are minimal, functional, and conform to the requested standards. - Utilize provided tool access (read_file, write_file, etc.) to perform implementation and verification.