├── .env.example ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── src ├── assets │ └── techStackData.ts ├── extension.ts ├── git.d.ts └── utils │ ├── geminiUtils.ts │ ├── gitUtils.ts │ ├── githubUtils.ts │ ├── promptUtils.ts │ ├── readmeUtils.ts │ └── terminalUtils.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | .env 4 | out -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/techStackData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/assets/techStackData.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/git.d.ts -------------------------------------------------------------------------------- /src/utils/geminiUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/utils/geminiUtils.ts -------------------------------------------------------------------------------- /src/utils/gitUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/utils/gitUtils.ts -------------------------------------------------------------------------------- /src/utils/githubUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/utils/githubUtils.ts -------------------------------------------------------------------------------- /src/utils/promptUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/utils/promptUtils.ts -------------------------------------------------------------------------------- /src/utils/readmeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/utils/readmeUtils.ts -------------------------------------------------------------------------------- /src/utils/terminalUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/src/utils/terminalUtils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdgspace/GhostDev/HEAD/tsconfig.json --------------------------------------------------------------------------------