From 6ae30a99203b1b9dfb3db442f9a03e82a44986d7 Mon Sep 17 00:00:00 2001 From: Steve Nims Date: Mon, 8 Dec 2025 17:26:36 -0500 Subject: [PATCH] fix(command-development): correct grep pattern in testing-strategies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The grep command for verifying bash command syntax was searching for the escaped pattern `!\`` instead of the actual syntax `!``. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../skills/command-development/references/testing-strategies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/plugin-dev/skills/command-development/references/testing-strategies.md b/plugins/plugin-dev/skills/command-development/references/testing-strategies.md index 588bdcd..422fb62 100644 --- a/plugins/plugin-dev/skills/command-development/references/testing-strategies.md +++ b/plugins/plugin-dev/skills/command-development/references/testing-strategies.md @@ -677,7 +677,7 @@ echo "Test: \$1 and \$2" > .claude/commands/test-args.md grep "allowed-tools" .claude/commands/my-command.md # Verify command syntax -grep '!\`' .claude/commands/my-command.md +grep '!`' .claude/commands/my-command.md # Test command manually date