# ---------------------------------------------------------------
# scada-tag-audit -- .gitignore
# Generated by praxis init v0.5.0 on 2026-08-16
# ---------------------------------------------------------------
# DEFAULT: solo-operator mode. All agentic tooling, docs, hooks,
# commands, skills, and substrate artifacts are treated as PERSONAL
# workflow -- NOT committed to this repo. Only your PRODUCT code and
# team-shared files (README, LICENSE, source code, tests) do.
#
# If this project becomes a team project (2+ humans collaborating),
# switch to team-shared mode: comment out or remove the "Agentic
# substrate" section below. That commits hooks + commands + skills
# + docs so the team stays aligned.
# ---------------------------------------------------------------

# ============ Agentic substrate (personal by default) ============
# All praxis-installed tooling and documentation.
.claude/
docs/agentic-ai/
CLAUDE.md
TODO.md
.praxis-tickets.json
.praxis-version
.praxis-registry-local.json

# ============ Ephemeral state (ALWAYS ignore) ============
# Regenerated each session -- committing is pure noise.
.claude/state/
.tmp/
*.tmp
.praxis-test-*.tmp

# ============ Node / JavaScript ============
node_modules/
dist/
build/
.next/
.turbo/
*.tsbuildinfo
.npm/
.yarn/
.pnp.*

# ============ Python ============
__pycache__/
*.pyc
*.pyo
*.egg-info/
*.egg
.venv/
venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

# ============ PyInstaller ============
*.spec

# ============ Env / secrets ============
.env
.env.local
.env.*.local
*.pem
*.key
!*.pub.key

# ============ Editor / OS ============
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db
desktop.ini

# ============ Logs / caches ============
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.cache/
coverage/

# ============ Assets inbox (ephemeral drops) ============
# Client material / assets get dropped in inbox/ then triaged out.
assets/inbox/*
!assets/inbox/.gitkeep
!assets/inbox/README.md
