├── .gitignore ├── ENHANCE_FILE_SELECTION_PLAN.md ├── README.md ├── dist-electron ├── main.cjs ├── main.js ├── preload.cjs └── preload.js ├── electron ├── database.ts ├── main.ts ├── preload.ts └── tsconfig.json ├── eslint.config.js ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── ChatView.tsx │ ├── FileTree.tsx │ ├── LLMConfigManager.tsx │ └── ProjectSelectionView.tsx ├── contexts │ └── ThemeContext.tsx ├── index.css ├── main.tsx ├── types │ ├── chat.d.ts │ ├── electron.d.ts │ └── llmConfig.d.ts └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/.gitignore -------------------------------------------------------------------------------- /ENHANCE_FILE_SELECTION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/ENHANCE_FILE_SELECTION_PLAN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/README.md -------------------------------------------------------------------------------- /dist-electron/main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/dist-electron/main.cjs -------------------------------------------------------------------------------- /dist-electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/dist-electron/main.js -------------------------------------------------------------------------------- /dist-electron/preload.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/dist-electron/preload.cjs -------------------------------------------------------------------------------- /dist-electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/dist-electron/preload.js -------------------------------------------------------------------------------- /electron/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/electron/database.ts -------------------------------------------------------------------------------- /electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/electron/main.ts -------------------------------------------------------------------------------- /electron/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/electron/preload.ts -------------------------------------------------------------------------------- /electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/electron/tsconfig.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/ChatView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/components/ChatView.tsx -------------------------------------------------------------------------------- /src/components/FileTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/components/FileTree.tsx -------------------------------------------------------------------------------- /src/components/LLMConfigManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/components/LLMConfigManager.tsx -------------------------------------------------------------------------------- /src/components/ProjectSelectionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/components/ProjectSelectionView.tsx -------------------------------------------------------------------------------- /src/contexts/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/contexts/ThemeContext.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/types/chat.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/types/chat.d.ts -------------------------------------------------------------------------------- /src/types/electron.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/types/electron.d.ts -------------------------------------------------------------------------------- /src/types/llmConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/src/types/llmConfig.d.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naveenxyz/contextcraft/HEAD/vite.config.ts --------------------------------------------------------------------------------