# Git .git .gitignore # CI/CD .github .gitea # Documentation docs/ wiki/ *.md !README.md # IDE .vscode/ .idea/ *.swp *.swo # Screenshots and temp files screenshots/ tmp/ *.log *.png *.jpg *.jpeg *.txt !config/*.toml # Python *.py __pycache__/ # Test artifacts plans/ .claude/ # Docker docker/ # Build artifacts (rebuilt in container) target/ **/node_modules/ **/dist/ # Environment files (use docker env) .env .env.local .env.*.local # OS .DS_Store Thumbs.db # Large binary files *.traineddata