├── .devcontainer └── devcontainer.json ├── .eslintrc.json ├── .github └── workflows │ ├── issues.yml │ ├── publish.yaml │ └── testAndReport.yml ├── .gitignore ├── .npmignore ├── README.md ├── _tests_ ├── analyse.test.mts ├── anthropic.test.mts ├── directoryProcessor.test.mts ├── gemini.test.mts ├── getDirStructure.test.mts ├── listConfig.test.mts ├── listModels.test.mts ├── openai.test.mts ├── prepareReport.test.mts ├── setExpertise.test.mts ├── setup.test.mts ├── updateConfig.test.mts └── utils.test.mts ├── anthropic.mts ├── cli-markdown.d.mts ├── commands ├── analyse.mts ├── getDirStructure.mts ├── listConfig.mts ├── listModels.mts ├── prepareReport.mts ├── setExpertise.mts ├── setup.mts └── updateConfig.mts ├── directoryProcessor.mts ├── gemini.mts ├── index.mts ├── llmInterface.mts ├── modelUtils.mts ├── onboarding.md ├── openai.mts ├── package.json ├── prompts.mts ├── renovate.json ├── terminalRenderrer.mts ├── tsconfig.json ├── utils.mts └── vitest.config.ts /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/testAndReport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/.github/workflows/testAndReport.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/README.md -------------------------------------------------------------------------------- /_tests_/analyse.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/analyse.test.mts -------------------------------------------------------------------------------- /_tests_/anthropic.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/anthropic.test.mts -------------------------------------------------------------------------------- /_tests_/directoryProcessor.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/directoryProcessor.test.mts -------------------------------------------------------------------------------- /_tests_/gemini.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/gemini.test.mts -------------------------------------------------------------------------------- /_tests_/getDirStructure.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/getDirStructure.test.mts -------------------------------------------------------------------------------- /_tests_/listConfig.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/listConfig.test.mts -------------------------------------------------------------------------------- /_tests_/listModels.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/listModels.test.mts -------------------------------------------------------------------------------- /_tests_/openai.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/openai.test.mts -------------------------------------------------------------------------------- /_tests_/prepareReport.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/prepareReport.test.mts -------------------------------------------------------------------------------- /_tests_/setExpertise.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/setExpertise.test.mts -------------------------------------------------------------------------------- /_tests_/setup.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/setup.test.mts -------------------------------------------------------------------------------- /_tests_/updateConfig.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/updateConfig.test.mts -------------------------------------------------------------------------------- /_tests_/utils.test.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/_tests_/utils.test.mts -------------------------------------------------------------------------------- /anthropic.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/anthropic.mts -------------------------------------------------------------------------------- /cli-markdown.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/cli-markdown.d.mts -------------------------------------------------------------------------------- /commands/analyse.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/commands/analyse.mts -------------------------------------------------------------------------------- /commands/getDirStructure.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/commands/getDirStructure.mts -------------------------------------------------------------------------------- /commands/listConfig.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/commands/listConfig.mts -------------------------------------------------------------------------------- /commands/listModels.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/commands/listModels.mts -------------------------------------------------------------------------------- /commands/prepareReport.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/commands/prepareReport.mts -------------------------------------------------------------------------------- /commands/setExpertise.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/commands/setExpertise.mts -------------------------------------------------------------------------------- /commands/setup.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/commands/setup.mts -------------------------------------------------------------------------------- /commands/updateConfig.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/commands/updateConfig.mts -------------------------------------------------------------------------------- /directoryProcessor.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/directoryProcessor.mts -------------------------------------------------------------------------------- /gemini.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/gemini.mts -------------------------------------------------------------------------------- /index.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/index.mts -------------------------------------------------------------------------------- /llmInterface.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/llmInterface.mts -------------------------------------------------------------------------------- /modelUtils.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/modelUtils.mts -------------------------------------------------------------------------------- /onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/onboarding.md -------------------------------------------------------------------------------- /openai.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/openai.mts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/package.json -------------------------------------------------------------------------------- /prompts.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/prompts.mts -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/renovate.json -------------------------------------------------------------------------------- /terminalRenderrer.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/terminalRenderrer.mts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/utils.mts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrashamTrivedi/SourceSailor-CLI/HEAD/vitest.config.ts --------------------------------------------------------------------------------