├── .github ├── CODEOWNERS └── workflows │ ├── release.yml │ └── validate.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── agent-demo.mp4 └── float-demo.mp4 ├── caido.config.ts ├── demo └── index.php ├── eslint.config.ts ├── package.json ├── packages └── frontend │ ├── package.json │ ├── src │ ├── agents │ │ ├── collectionAutoExecute.ts │ │ ├── create.ts │ │ ├── index.ts │ │ ├── prompt.ts │ │ ├── todos.ts │ │ ├── tools │ │ │ ├── addCookie.ts │ │ │ ├── addEnvironment.ts │ │ │ ├── addFinding.ts │ │ │ ├── addLearning.ts │ │ │ ├── addTodo.ts │ │ │ ├── deleteCookie.ts │ │ │ ├── deleteEnvironment.ts │ │ │ ├── environementContext.ts │ │ │ ├── fetchReplayEntries.ts │ │ │ ├── grepRequest.ts │ │ │ ├── grepResponse.ts │ │ │ ├── index.ts │ │ │ ├── navigateReplayEntry.ts │ │ │ ├── removeLearnings.ts │ │ │ ├── removeRequestHeader.ts │ │ │ ├── removeRequestQuery.ts │ │ │ ├── replaceRequestText.ts │ │ │ ├── runJavaScript.ts │ │ │ ├── searchRequests.ts │ │ │ ├── sendRequest.ts │ │ │ ├── setRequestBody.ts │ │ │ ├── setRequestHeader.ts │ │ │ ├── setRequestMethod.ts │ │ │ ├── setRequestPath.ts │ │ │ ├── setRequestQuery.ts │ │ │ ├── setRequestRaw.ts │ │ │ ├── updateCookie.ts │ │ │ ├── updateEnvironment.ts │ │ │ ├── updateLearning.ts │ │ │ └── updateTodo.ts │ │ ├── transport.ts │ │ ├── types │ │ │ ├── agent.ts │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── runtime.ts │ │ │ └── todos.ts │ │ └── utils │ │ │ ├── environment.ts │ │ │ ├── markdownJoiner.ts │ │ │ └── substituteEnvironmentVariables.ts │ ├── components │ │ ├── agent │ │ │ ├── ChatContent │ │ │ │ ├── Container.vue │ │ │ │ ├── Error.vue │ │ │ │ ├── NoMessages.vue │ │ │ │ ├── NoSelection.vue │ │ │ │ ├── Success.vue │ │ │ │ ├── index.ts │ │ │ │ └── useContent.ts │ │ │ ├── ChatInput │ │ │ │ ├── Container.vue │ │ │ │ ├── ModelSelector │ │ │ │ │ ├── Container.vue │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── Anthropic.vue │ │ │ │ │ │ ├── DeepSeek.vue │ │ │ │ │ │ ├── Google.vue │ │ │ │ │ │ ├── OpenAI.vue │ │ │ │ │ │ ├── Qwen.vue │ │ │ │ │ │ ├── Unknown.vue │ │ │ │ │ │ ├── XAI.vue │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useSelector.ts │ │ │ │ ├── PromptSelector │ │ │ │ │ ├── Container.vue │ │ │ │ │ ├── PromptPopover.vue │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useSelector.ts │ │ │ │ ├── index.ts │ │ │ │ └── useChat.ts │ │ │ ├── ChatMessage │ │ │ │ ├── Assistant │ │ │ │ │ ├── Container.vue │ │ │ │ │ ├── Markdown │ │ │ │ │ │ ├── Container.vue │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── Reasoning │ │ │ │ │ │ ├── Container.vue │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── useReasoning.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── Container.vue │ │ │ │ ├── Tool │ │ │ │ │ ├── Container.vue │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useMessage.ts │ │ │ │ ├── User │ │ │ │ │ ├── Container.vue │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useMessage.ts │ │ │ │ └── index.ts │ │ │ ├── ChatTodos │ │ │ │ ├── Container.vue │ │ │ │ ├── index.ts │ │ │ │ └── useTodos.ts │ │ │ ├── ChatTopbar │ │ │ │ ├── Container.vue │ │ │ │ └── index.ts │ │ │ ├── Container.vue │ │ │ ├── index.ts │ │ │ └── useAutoScroll.ts │ │ ├── confirmation │ │ │ ├── Container.vue │ │ │ └── index.ts │ │ ├── float │ │ │ ├── Actions.vue │ │ │ ├── Container.vue │ │ │ ├── index.ts │ │ │ └── useDragResize.ts │ │ ├── inputDialog │ │ │ ├── genericInputDialog │ │ │ │ └── Container.vue │ │ │ ├── index.ts │ │ │ └── launchInputDialog │ │ │ │ ├── Container.vue │ │ │ │ └── types.ts │ │ ├── learnings │ │ │ ├── Container.vue │ │ │ └── index.ts │ │ ├── prompts │ │ │ ├── Container.vue │ │ │ ├── index.ts │ │ │ └── useForm.ts │ │ ├── renaming │ │ │ ├── Container.vue │ │ │ └── index.ts │ │ ├── settings │ │ │ ├── Container.vue │ │ │ ├── index.ts │ │ │ └── useForm.ts │ │ └── tutorial │ │ │ ├── AgentsIntro.vue │ │ │ ├── Container.vue │ │ │ ├── FloatIntro.vue │ │ │ └── index.ts │ ├── dom │ │ ├── agentIndicators.ts │ │ ├── drawer.ts │ │ └── index.ts │ ├── float │ │ ├── actionUtils.ts │ │ ├── actions │ │ │ ├── activeEditorAddHeader.ts │ │ │ ├── activeEditorAddQueryParameter.ts │ │ │ ├── activeEditorRemoveHeader.ts │ │ │ ├── activeEditorRemoveQueryParameter.ts │ │ │ ├── activeEditorReplaceBody.ts │ │ │ ├── activeEditorReplaceByString.ts │ │ │ ├── activeEditorReplaceSelection.ts │ │ │ ├── activeEditorSetMethod.ts │ │ │ ├── activeEditorSetRaw.ts │ │ │ ├── activeEditorUpdatePath.ts │ │ │ ├── addFilter.ts │ │ │ ├── addLearning.ts │ │ │ ├── addMatchAndReplace.ts │ │ │ ├── addScope.ts │ │ │ ├── createAutomateSession.ts │ │ │ ├── createEnvironment.ts │ │ │ ├── createFinding.ts │ │ │ ├── createHostedFile.ts │ │ │ ├── createHostedFileAdvanced.ts │ │ │ ├── createReplaySession.ts │ │ │ ├── deleteEnvironment.ts │ │ │ ├── deleteEnvironmentVariable.ts │ │ │ ├── deleteFilter.ts │ │ │ ├── deleteScope.ts │ │ │ ├── filterAppendQuery.ts │ │ │ ├── httpqlSetQuery.ts │ │ │ ├── index.ts │ │ │ ├── navigate.ts │ │ │ ├── removeHostedFile.ts │ │ │ ├── removeLearnings.ts │ │ │ ├── renameReplayTab.ts │ │ │ ├── replayRequestReplace.ts │ │ │ ├── runConvertWorkflow.ts │ │ │ ├── runWorkflow.ts │ │ │ ├── sendReplayTab.ts │ │ │ ├── toast.ts │ │ │ ├── updateEnvironmentVariable.ts │ │ │ ├── updateFilter.ts │ │ │ ├── updateLearning.ts │ │ │ └── updateScope.ts │ │ ├── ai.ts │ │ ├── context.ts │ │ ├── float.ts │ │ ├── index.ts │ │ ├── prompt.ts │ │ ├── testShift.ts │ │ └── types.ts │ ├── index.ts │ ├── plugins │ │ └── sdk.ts │ ├── renaming │ │ ├── ai.ts │ │ └── index.ts │ ├── stores │ │ ├── agents.ts │ │ ├── config │ │ │ ├── index.ts │ │ │ ├── models.ts │ │ │ ├── prompts.ts │ │ │ └── store.ts │ │ ├── float.ts │ │ └── ui.ts │ ├── styles │ │ └── index.css │ ├── types.ts │ ├── utils │ │ ├── caido.ts │ │ ├── common.ts │ │ ├── index.ts │ │ └── optional.ts │ └── views │ │ └── App.vue │ ├── tailwind.config.js │ └── tsconfig.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── tsconfig.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/README.md -------------------------------------------------------------------------------- /assets/agent-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/assets/agent-demo.mp4 -------------------------------------------------------------------------------- /assets/float-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/assets/float-demo.mp4 -------------------------------------------------------------------------------- /caido.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/caido.config.ts -------------------------------------------------------------------------------- /demo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/demo/index.php -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/package.json -------------------------------------------------------------------------------- /packages/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/package.json -------------------------------------------------------------------------------- /packages/frontend/src/agents/collectionAutoExecute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/collectionAutoExecute.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/create.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/prompt.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/todos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/todos.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/addCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/addCookie.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/addEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/addEnvironment.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/addFinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/addFinding.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/addLearning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/addLearning.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/addTodo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/addTodo.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/deleteCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/deleteCookie.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/deleteEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/deleteEnvironment.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/environementContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/environementContext.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/fetchReplayEntries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/fetchReplayEntries.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/grepRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/grepRequest.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/grepResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/grepResponse.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/navigateReplayEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/navigateReplayEntry.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/removeLearnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/removeLearnings.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/removeRequestHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/removeRequestHeader.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/removeRequestQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/removeRequestQuery.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/replaceRequestText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/replaceRequestText.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/runJavaScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/runJavaScript.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/searchRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/searchRequests.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/sendRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/sendRequest.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/setRequestBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/setRequestBody.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/setRequestHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/setRequestHeader.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/setRequestMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/setRequestMethod.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/setRequestPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/setRequestPath.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/setRequestQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/setRequestQuery.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/setRequestRaw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/setRequestRaw.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/updateCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/updateCookie.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/updateEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/updateEnvironment.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/updateLearning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/updateLearning.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/tools/updateTodo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/tools/updateTodo.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/transport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/transport.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/types/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/types/agent.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/types/config.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/types/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/types/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/types/runtime.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/types/todos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/types/todos.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/utils/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/utils/environment.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/utils/markdownJoiner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/utils/markdownJoiner.ts -------------------------------------------------------------------------------- /packages/frontend/src/agents/utils/substituteEnvironmentVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/agents/utils/substituteEnvironmentVariables.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatContent/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatContent/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatContent/Error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatContent/Error.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatContent/NoMessages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatContent/NoMessages.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatContent/NoSelection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatContent/NoSelection.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatContent/Success.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatContent/Success.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatContent/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ChatContent } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatContent/useContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatContent/useContent.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/Anthropic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/Anthropic.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/DeepSeek.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/DeepSeek.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/Google.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/Google.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/OpenAI.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/OpenAI.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/Qwen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/Qwen.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/Unknown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/Unknown.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/XAI.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/XAI.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/icons/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ModelSelector } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/ModelSelector/useSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/ModelSelector/useSelector.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/PromptSelector/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/PromptSelector/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/PromptSelector/PromptPopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/PromptSelector/PromptPopover.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/PromptSelector/index.ts: -------------------------------------------------------------------------------- 1 | export { default as PromptSelector } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/PromptSelector/useSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/PromptSelector/useSelector.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ChatInput } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatInput/useChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatInput/useChat.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Assistant/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/Assistant/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Assistant/Markdown/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/Assistant/Markdown/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Assistant/Markdown/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Markdown } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Assistant/Reasoning/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/Assistant/Reasoning/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Assistant/Reasoning/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Reasoning } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Assistant/Reasoning/useReasoning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/Assistant/Reasoning/useReasoning.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Assistant/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ChatMessageAssistant } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Tool/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/Tool/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Tool/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ChatMessageTool } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/Tool/useMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/Tool/useMessage.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/User/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/User/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/User/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ChatMessageUser } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/User/useMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatMessage/User/useMessage.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatMessage/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ChatMessage } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatTodos/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatTodos/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatTodos/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ChatTodos } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatTodos/useTodos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatTodos/useTodos.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatTopbar/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/ChatTopbar/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/ChatTopbar/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ChatTopbar } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Drawer } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/agent/useAutoScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/agent/useAutoScroll.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/confirmation/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/confirmation/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/confirmation/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ConfirmationDialog } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/float/Actions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/float/Actions.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/float/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/float/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/float/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ShiftFloat } from "./Container.vue"; 2 | -------------------------------------------------------------------------------- /packages/frontend/src/components/float/useDragResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/float/useDragResize.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/inputDialog/genericInputDialog/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/inputDialog/genericInputDialog/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/inputDialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/inputDialog/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/inputDialog/launchInputDialog/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/inputDialog/launchInputDialog/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/inputDialog/launchInputDialog/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/inputDialog/launchInputDialog/types.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/learnings/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/learnings/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/learnings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/learnings/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/prompts/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/prompts/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/prompts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/prompts/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/prompts/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/prompts/useForm.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/renaming/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/renaming/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/renaming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/renaming/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/settings/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/settings/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/settings/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/settings/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/settings/useForm.ts -------------------------------------------------------------------------------- /packages/frontend/src/components/tutorial/AgentsIntro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/tutorial/AgentsIntro.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/tutorial/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/tutorial/Container.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/tutorial/FloatIntro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/tutorial/FloatIntro.vue -------------------------------------------------------------------------------- /packages/frontend/src/components/tutorial/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/components/tutorial/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/dom/agentIndicators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/dom/agentIndicators.ts -------------------------------------------------------------------------------- /packages/frontend/src/dom/drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/dom/drawer.ts -------------------------------------------------------------------------------- /packages/frontend/src/dom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/dom/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actionUtils.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorAddHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorAddHeader.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorAddQueryParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorAddQueryParameter.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorRemoveHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorRemoveHeader.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorRemoveQueryParameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorRemoveQueryParameter.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorReplaceBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorReplaceBody.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorReplaceByString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorReplaceByString.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorReplaceSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorReplaceSelection.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorSetMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorSetMethod.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorSetRaw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorSetRaw.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/activeEditorUpdatePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/activeEditorUpdatePath.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/addFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/addFilter.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/addLearning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/addLearning.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/addMatchAndReplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/addMatchAndReplace.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/addScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/addScope.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/createAutomateSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/createAutomateSession.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/createEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/createEnvironment.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/createFinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/createFinding.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/createHostedFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/createHostedFile.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/createHostedFileAdvanced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/createHostedFileAdvanced.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/createReplaySession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/createReplaySession.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/deleteEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/deleteEnvironment.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/deleteEnvironmentVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/deleteEnvironmentVariable.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/deleteFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/deleteFilter.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/deleteScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/deleteScope.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/filterAppendQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/filterAppendQuery.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/httpqlSetQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/httpqlSetQuery.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/navigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/navigate.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/removeHostedFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/removeHostedFile.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/removeLearnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/removeLearnings.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/renameReplayTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/renameReplayTab.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/replayRequestReplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/replayRequestReplace.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/runConvertWorkflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/runConvertWorkflow.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/runWorkflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/runWorkflow.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/sendReplayTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/sendReplayTab.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/toast.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/updateEnvironmentVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/updateEnvironmentVariable.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/updateFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/updateFilter.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/updateLearning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/updateLearning.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/actions/updateScope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/actions/updateScope.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/ai.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/context.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/float.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/float.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/prompt.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/testShift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/testShift.ts -------------------------------------------------------------------------------- /packages/frontend/src/float/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/float/types.ts -------------------------------------------------------------------------------- /packages/frontend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/plugins/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/plugins/sdk.ts -------------------------------------------------------------------------------- /packages/frontend/src/renaming/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/renaming/ai.ts -------------------------------------------------------------------------------- /packages/frontend/src/renaming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/renaming/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/stores/agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/stores/agents.ts -------------------------------------------------------------------------------- /packages/frontend/src/stores/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/stores/config/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/stores/config/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/stores/config/models.ts -------------------------------------------------------------------------------- /packages/frontend/src/stores/config/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/stores/config/prompts.ts -------------------------------------------------------------------------------- /packages/frontend/src/stores/config/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/stores/config/store.ts -------------------------------------------------------------------------------- /packages/frontend/src/stores/float.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/stores/float.ts -------------------------------------------------------------------------------- /packages/frontend/src/stores/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/stores/ui.ts -------------------------------------------------------------------------------- /packages/frontend/src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/styles/index.css -------------------------------------------------------------------------------- /packages/frontend/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/types.ts -------------------------------------------------------------------------------- /packages/frontend/src/utils/caido.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/utils/caido.ts -------------------------------------------------------------------------------- /packages/frontend/src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/utils/common.ts -------------------------------------------------------------------------------- /packages/frontend/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/utils/index.ts -------------------------------------------------------------------------------- /packages/frontend/src/utils/optional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/utils/optional.ts -------------------------------------------------------------------------------- /packages/frontend/src/views/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/src/views/App.vue -------------------------------------------------------------------------------- /packages/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/tailwind.config.js -------------------------------------------------------------------------------- /packages/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/packages/frontend/tsconfig.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caido-community/shift/HEAD/tsconfig.json --------------------------------------------------------------------------------