/ .gitignore
.gitignore
  1  # === Rust ===
  2  /target/
  3  /target
  4  **/target/
  5  **/fuzz/target/
  6  **/*.rs.bk
  7  *.rs.bk
  8  *.rmeta
  9  
 10  # === Build artifacts ===
 11  /build/
 12  /dist/
 13  **/dist/
 14  /*.wasm
 15  *.dSYM
 16  *.o
 17  *.obj
 18  *.so
 19  *.dll
 20  *.dylib
 21  *.rlib
 22  
 23  # === Logs and diagnostics ===
 24  *.log
 25  *.tmp
 26  *.swp
 27  *.bak
 28  *.old
 29  *.orig
 30  *.rej
 31  *.swo
 32  *.swn
 33  *.DS_Store
 34  
 35  # === Tauri-specific ===
 36  /src-tauri/gen/
 37  /src-tauri/node_modules/
 38  /src-tauri/.output/
 39  /src-tauri/.vite/
 40  /src-tauri/.parcel-cache/
 41  /src-tauri/.tauri-build/
 42  /src-tauri/bundle/
 43  /src-tauri/target/
 44  /src-tauri/debug.log
 45  /src-tauri/Cargo.lock
 46  /src-tauri/src/generated/
 47  
 48  # === Node/npm ===
 49  node_modules/
 50  npm-debug.log*
 51  yarn-debug.log*
 52  yarn-error.log*
 53  .pnpm-debug.log*
 54  .vscode/
 55  .idea/
 56  .eslintcache
 57  
 58  # === iOS / Xcode ===
 59  *.xcworkspace
 60  *.xcuserstate
 61  *.xcuserdata
 62  *.xcodeproj/*
 63  !*.xcodeproj/project.pbxproj
 64  !*.xcodeproj/xcshareddata
 65  *.pbxuser
 66  *.mode1v3
 67  *.mode2v3
 68  *.perspectivev3
 69  *.xcuserdatad
 70  *.ipa
 71  *.app
 72  *.lldb
 73  *.plist
 74  *.entitlements
 75  UniversalOutput/*
 76  *.xcframework/*
 77  *.a
 78  
 79  # === iOS Simulator & Derived Data ===
 80  ~/Library/Developer/Xcode/DerivedData/
 81  ~/Library/Developer/CoreSimulator/Devices/
 82  .DS_Store
 83  
 84  # === Python scripts & testing ===
 85  __pycache__/
 86  /*.pyc
 87  /.mypy_cache/
 88  .venv/
 89  **/.venv/
 90  /failing_tests_with_sources.txt
 91  /concat_files.txt
 92  /project_tree.txt
 93  
 94  # === MkDocs ===
 95  /site/
 96  
 97  # === Release artifacts & signatures ===
 98  *.zip
 99  *.tar
100  *.tgz
101  *.gz
102  *.auths.json
103  
104  # === Misc ===
105  package-lock.json
106  yarn.lock
107  pnpm-lock.yaml
108  *.code-workspace
109  *.iml
110  *.sublime-workspace
111  *.sublime-project
112  *.flow
113  .flow/
114  
115  # === Local environment ===
116  .env
117  
118  # === Ignore build artifacts ===
119  RustAgentDemo/DerivedData/
120  RustAgentDemo/build/
121  # Rust build artifacts
122  RustAgentDemo/*.a
123  
124  # Product specific
125  concat_output.txt
126  CLAUDE.md
127  .cargo/cargo-deny.log
128  
129  # Git worktrees
130  .worktrees/
131  
132  # Stale E2E test artifacts (nested git repos created by test runs)
133  tests/e2e/.auths-ci/