Files
scientific-agent-skills/.gitignore
Timothy Kassis 5a9c275418 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.
2026-07-27 15:40:05 -07:00

26 lines
337 B
Plaintext

# OS
.DS_Store
# Python
.venv/
.python-version
__pycache__/
.pytest_cache/
# Secrets
.env
# Project
temp/
research/
# Local agent tooling
.claude/
.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
uv.lock