├── .eslintrc.json ├── .gitignore ├── CHANGELOG.md ├── README.md ├── components.json ├── cursor-chat-browser.bat ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── src ├── app │ ├── api │ │ ├── composers │ │ │ ├── [id] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── detect-environment │ │ │ └── route.ts │ │ ├── generate-pdf │ │ │ └── route.ts │ │ ├── get-username │ │ │ └── route.ts │ │ ├── logs │ │ │ └── route.ts │ │ ├── search │ │ │ └── route.ts │ │ ├── set-workspace │ │ │ └── route.ts │ │ ├── validate-path │ │ │ └── route.ts │ │ └── workspaces │ │ │ ├── [id] │ │ │ ├── route.ts │ │ │ └── tabs │ │ │ │ └── route.ts │ │ │ └── route.ts │ ├── config │ │ └── page.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── search │ │ └── page.tsx │ └── workspace │ │ └── [id] │ │ └── page.tsx ├── components │ ├── composer-list.tsx │ ├── copy-button.tsx │ ├── download-menu.tsx │ ├── footer.tsx │ ├── navbar.tsx │ ├── theme-provider.tsx │ ├── theme-toggle.tsx │ ├── ui │ │ ├── alert.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── loading.tsx │ │ ├── table.tsx │ │ └── tooltip.tsx │ ├── workspace-list.tsx │ └── workspace-logs-list.tsx ├── lib │ ├── config.ts │ ├── download.ts │ └── utils.ts ├── middleware.ts ├── styles │ └── prism-theme.css ├── types │ └── workspace.ts └── utils │ ├── path.ts │ └── workspace-path.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/components.json -------------------------------------------------------------------------------- /cursor-chat-browser.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/cursor-chat-browser.bat -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /src/app/api/composers/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/composers/[id]/route.ts -------------------------------------------------------------------------------- /src/app/api/composers/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/composers/route.ts -------------------------------------------------------------------------------- /src/app/api/detect-environment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/detect-environment/route.ts -------------------------------------------------------------------------------- /src/app/api/generate-pdf/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/generate-pdf/route.ts -------------------------------------------------------------------------------- /src/app/api/get-username/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/get-username/route.ts -------------------------------------------------------------------------------- /src/app/api/logs/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/logs/route.ts -------------------------------------------------------------------------------- /src/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/search/route.ts -------------------------------------------------------------------------------- /src/app/api/set-workspace/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/set-workspace/route.ts -------------------------------------------------------------------------------- /src/app/api/validate-path/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/validate-path/route.ts -------------------------------------------------------------------------------- /src/app/api/workspaces/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/workspaces/[id]/route.ts -------------------------------------------------------------------------------- /src/app/api/workspaces/[id]/tabs/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/workspaces/[id]/tabs/route.ts -------------------------------------------------------------------------------- /src/app/api/workspaces/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/api/workspaces/route.ts -------------------------------------------------------------------------------- /src/app/config/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/config/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/search/page.tsx -------------------------------------------------------------------------------- /src/app/workspace/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/app/workspace/[id]/page.tsx -------------------------------------------------------------------------------- /src/components/composer-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/composer-list.tsx -------------------------------------------------------------------------------- /src/components/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/copy-button.tsx -------------------------------------------------------------------------------- /src/components/download-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/download-menu.tsx -------------------------------------------------------------------------------- /src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/footer.tsx -------------------------------------------------------------------------------- /src/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/navbar.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/loading.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/workspace-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/workspace-list.tsx -------------------------------------------------------------------------------- /src/components/workspace-logs-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/components/workspace-logs-list.tsx -------------------------------------------------------------------------------- /src/lib/config.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/lib/download.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/styles/prism-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/styles/prism-theme.css -------------------------------------------------------------------------------- /src/types/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/types/workspace.ts -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /src/utils/workspace-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/src/utils/workspace-path.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-pedersen/cursor-chat-browser/HEAD/tsconfig.json --------------------------------------------------------------------------------