# Version control .git/ .gitignore .dockerignore # Claude Code .claude/ # Documentation and specs docs/ *.md README.md # Analysis artifacts analysis/ # Extension packages *.xpi extension-dist/ extension/ # Utility scripts scripts/ # Environment files (secrets must be injected via env vars, not baked in) .env .env.* # Docker compose files (not needed inside the image) docker-compose*.yml # Runtime data (mounted as volumes) data/ config/ logs/ downloads/ cookies/ # Frontend build intermediates frontend/node_modules/ frontend/dist/ # Python cache and test artifacts **/__pycache__/ **/*.py[cod] **/*.egg-info/ **/.pytest_cache/ **/.mypy_cache/ **/.ruff_cache/ **/.coverage **/htmlcov/ # Node dev artifacts **/npm-debug.log* **/yarn-debug.log* **/yarn-error.log* # OS artifacts .DS_Store Thumbs.db