From 625676fe1c433f6a8aeb310adc130d59313a9fd0 Mon Sep 17 00:00:00 2001 From: gaurav0107 Date: Mon, 18 May 2026 09:11:08 +0530 Subject: [PATCH] docs(test-driven-development): replace unresolved @-prefix with backticked filename The reference `@testing-anti-patterns.md` on line 359 of skills/test-driven-development/SKILL.md uses an `@` prefix that no markdown processor or skill loader resolves. The intended target file lives at skills/test-driven-development/testing-anti-patterns.md (the sibling that the surrounding section is pointing readers at). Replace the `@`-prefixed token with a plain backticked filename so the path is unambiguous and matches the citation style already used throughout this SKILL.md. Fixes #1529. --- skills/test-driven-development/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/test-driven-development/SKILL.md b/skills/test-driven-development/SKILL.md index 7a751fa946..bf12f34a63 100644 --- a/skills/test-driven-development/SKILL.md +++ b/skills/test-driven-development/SKILL.md @@ -356,7 +356,7 @@ Never fix bugs without a test. ## Testing Anti-Patterns -When adding mocks or test utilities, read @testing-anti-patterns.md to avoid common pitfalls: +When adding mocks or test utilities, read `testing-anti-patterns.md` to avoid common pitfalls: - Testing mock behavior instead of real behavior - Adding test-only methods to production classes - Mocking without understanding dependencies