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
5 changes: 4 additions & 1 deletion .claude/skills/syft-pr-review/prefetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ gh pr view "$PR" --json files \
| sort -rn >"$OUT/files.txt"

# Lock files, notebooks and generated data are counted and skipped, not read.
grep -E '(\.lock|lock\.json|\.ipynb|\.min\.(js|css)|\.svg|\.png|\.csv|\.parquet)$' \
# `.claude/` too: agent tooling is not the PR author's work, and it rides along
# in the diff whenever a skill edit is landed on the branch before it lands on
# the base. Reviewing it would attribute it to the wrong person.
grep -E '(\.lock|lock\.json|\.ipynb|\.min\.(js|css)|\.svg|\.png|\.csv|\.parquet)$|(^| )\.claude/' \
"$OUT/files.txt" >"$OUT/files-skippable.txt" || true

# ----------------------------------------------------------------- history ---
Expand Down
Loading