Anchor the scripts/ gitignore pattern to the repo root

An unanchored "scripts/" matches at any depth, including
skills/<name>/scripts/, so every new skill's bundled tooling was
silently untrackable. Existing skills were unaffected only because
their files were already tracked.

The entry sits under "Local agent tooling" alongside .claude/ and
.agents/, so root-only was the intent.
This commit is contained in:
Timothy Kassis
2026-07-27 15:40:05 -07:00
parent 81e316bc89
commit 5a9c275418

3
.gitignore vendored
View File

@@ -17,6 +17,9 @@ research/
# Local agent tooling # Local agent tooling
.claude/ .claude/
.agents/ .agents/
# Anchored: an unanchored "scripts/" also matches skills/<name>/scripts/,
# which silently drops every new skill's bundled tooling from git.
/scripts/
skills-lock.json skills-lock.json