Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude/skills/e2e/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading