From 6e268dc81b9bb5e11e2c435908d0aa698f5ab8ad Mon Sep 17 00:00:00 2001 From: Andrei Borza Date: Fri, 23 Jan 2026 15:23:59 +0100 Subject: [PATCH] chore(e2e): Modify e2e skill to also account for untracked files --- .claude/skills/e2e/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.claude/skills/e2e/SKILL.md b/.claude/skills/e2e/SKILL.md index dd57586cd69c..8c45d939a8cf 100644 --- a/.claude/skills/e2e/SKILL.md +++ b/.claude/skills/e2e/SKILL.md @@ -31,8 +31,8 @@ Extract the test app name from user input: If the user recently edited files in `packages/*`, identify which packages were modified: ```bash -# Check which packages have uncommitted changes -git status --porcelain | grep "^[ MARC][ MD] packages/" | cut -d'/' -f2 | sort -u +# Check which packages have uncommitted changes (including untracked files) +git status --porcelain | grep "^[ MARC?][ MD?] packages/" | cut -d'/' -f2 | sort -u ``` For each modified package, rebuild its tarball: