# Salesforce Flow & DevOps Skills - .gitignore

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual Environments
.venv/
venv/
ENV/
env/
.virtualenv/
*.virtualenv

# Claude Code specific
.claude/cache/
.claude/temp/
.claude/logs/
.claude/settings.local.json

# Backup files
*.backup.*
*.bak
*~

# OS Files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini

# IDE
.vscode/
.idea/
*.code-workspace
*.swp
*.swo
*.swn
.project
.classpath
.settings/

# Logs
*.log
logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Salesforce
.sfdx/
.sf/
null/
.localdevserver/
node_modules/
force-app/*/
!force-app/main/

# Skill runtime artifacts (keep local, don't track)
validation/

# Test files (keep examples, ignore test outputs)
test-output/
coverage/
.nyc_output/
junit/

# Temporary files
tmp/
temp/
*.tmp

# Secrets and credentials
.env
.env.local
.env.*.local
secrets.json
credentials.json
auth.json
*.pem
*.key

# Package managers
package-lock.json
yarn.lock
Pipfile.lock

# Build artifacts
*.class
*.jar
*.war
*.ear

# Documentation build artifacts
docs/_build/
site/

# Cache
.cache/
.pytest_cache/
.mypy_cache/
.ruff_cache/

# Installer output directories (generated)
.clinerules/
.opencode/
.codex/
.factory/
.cursor/rules/

# Pi agent local state
.pi/

# Coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
coverage.xml
*.cover

# Ignore specific backup patterns from scripts
*.backup_*

# Keep important files (negation patterns)
!.gitignore
!.github/
!LICENSE
!README*.md
!CHANGELOG.md
!CONTRIBUTING.md
!*.sh

# Keep skill structure files
!SKILL.md
!skills/
!assets/
!references/
!scripts/
