/ .gitignore
.gitignore
 1  # Dependencies
 2  node_modules/
 3  
 4  # Build output
 5  dist/
 6  
 7  # Native binaries (keep the launcher scripts)
 8  bin/agent-browser-*
 9  bin/.install-method
10  !bin/agent-browser
11  !bin/agent-browser.cmd
12  
13  # Rust build artifacts
14  cli/target/
15  cli/*.o
16  
17  # Logs
18  *.log
19  npm-debug.log*
20  
21  # IDE
22  .idea/
23  .vscode/
24  *.swp
25  *.swo
26  
27  # OS
28  .DS_Store
29  Thumbs.db
30  
31  # Python
32  __pycache__/
33  
34  # Test artifacts
35  *.png
36  *.jpeg
37  *.jpg
38  *.webm
39  test/e2e/.dogfood-output/
40  
41  # Package manager
42  package-lock.json
43  yarn.lock
44  
45  # Environment
46  .env
47  .env.local
48  
49  # Windows debug instance config
50  scripts/windows-debug/.instance
51  
52  # opensrc - source code for packages
53  opensrc/
54  
55  # Docs site
56  docs/node_modules/
57  docs/.next/
58  docs/out/
59  docs/package-lock.json
60  
61  # pnpm
62  .pnpm-store/
63  
64  # TypeScript
65  *.tsbuildinfo
66  
67  # next
68  .next/
69  out/