├── .dockerignore ├── .env.test ├── .github └── workflows │ ├── README.md │ └── docker-build.yml ├── .gitignore ├── Dockerfile ├── README.docker.md ├── README.md ├── backend ├── agent.py ├── anti_bot_detection.py ├── browser_controller.py ├── cdp_streamer.py ├── main.py ├── proxy_manager.py ├── smart_browser_controller.py ├── universal_extractor.py ├── vision_model.py └── vnc_proxy.py ├── docker-compose.prod.yml ├── docker-compose.yml ├── frontend ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── App.tsx │ ├── components │ │ ├── BrowserPilotDashboard.tsx │ │ ├── DecisionLog.tsx │ │ ├── Header.tsx │ │ ├── JobForm.tsx │ │ ├── ProxyStats.tsx │ │ ├── ScreenshotGallery.tsx │ │ ├── StatusDisplay.tsx │ │ ├── StreamingViewer.tsx │ │ └── TokenUsage.tsx │ ├── index.css │ ├── main.tsx │ ├── services │ │ └── WebSocketManager.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- 1 | GOOGLE_API_KEY=dummy_key_for_test 2 | -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/README.docker.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/README.md -------------------------------------------------------------------------------- /backend/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/agent.py -------------------------------------------------------------------------------- /backend/anti_bot_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/anti_bot_detection.py -------------------------------------------------------------------------------- /backend/browser_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/browser_controller.py -------------------------------------------------------------------------------- /backend/cdp_streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/cdp_streamer.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/proxy_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/proxy_manager.py -------------------------------------------------------------------------------- /backend/smart_browser_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/smart_browser_controller.py -------------------------------------------------------------------------------- /backend/universal_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/universal_extractor.py -------------------------------------------------------------------------------- /backend/vision_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/vision_model.py -------------------------------------------------------------------------------- /backend/vnc_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/backend/vnc_proxy.py -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | new-ui-browserpilot 2 | -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/components/BrowserPilotDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/BrowserPilotDashboard.tsx -------------------------------------------------------------------------------- /frontend/src/components/DecisionLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/DecisionLog.tsx -------------------------------------------------------------------------------- /frontend/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/Header.tsx -------------------------------------------------------------------------------- /frontend/src/components/JobForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/JobForm.tsx -------------------------------------------------------------------------------- /frontend/src/components/ProxyStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/ProxyStats.tsx -------------------------------------------------------------------------------- /frontend/src/components/ScreenshotGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/ScreenshotGallery.tsx -------------------------------------------------------------------------------- /frontend/src/components/StatusDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/StatusDisplay.tsx -------------------------------------------------------------------------------- /frontend/src/components/StreamingViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/StreamingViewer.tsx -------------------------------------------------------------------------------- /frontend/src/components/TokenUsage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/components/TokenUsage.tsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/services/WebSocketManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/src/services/WebSocketManager.ts -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-naymul/BrowserPilot/HEAD/requirements.txt --------------------------------------------------------------------------------