├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── wiki │ ├── building-code-agent.md │ └── claudex-architecture-exploration.md └── workflows │ ├── npm-publish.yml │ ├── release.yml │ └── version-bump.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── CLAUDEX.md ├── LICENSE.md ├── README.md ├── blogs ├── building-code-agent.md ├── claudex-architecture-exploration.md └── claudex-prompt-engineering.md ├── bunfig.toml ├── package.json ├── pnpm-lock.yaml ├── src ├── ProjectOnboarding.tsx ├── Tool.ts ├── commands.ts ├── commands │ ├── approvedTools.ts │ ├── bug.tsx │ ├── clear.ts │ ├── compact.ts │ ├── config.tsx │ ├── cost.ts │ ├── ctx_viz.ts │ ├── doctor.ts │ ├── help.tsx │ ├── init.ts │ ├── listen.ts │ ├── login.tsx │ ├── logout.tsx │ ├── mcp.ts │ ├── model.tsx │ ├── onboarding.tsx │ ├── pr_comments.ts │ ├── release-notes.ts │ ├── resume.tsx │ ├── review.ts │ └── terminalSetup.ts ├── components │ ├── ApproveApiKey.tsx │ ├── AsciiLogo.tsx │ ├── AutoUpdater.tsx │ ├── Bug.tsx │ ├── Config.tsx │ ├── ConsoleOAuthFlow.tsx │ ├── Cost.tsx │ ├── CostThresholdDialog.tsx │ ├── CustomSelect │ │ ├── option-map.ts │ │ ├── select-option.tsx │ │ ├── select.tsx │ │ ├── use-select-state.ts │ │ └── use-select.ts │ ├── FallbackToolUseRejectedMessage.tsx │ ├── FileEditToolUpdatedMessage.tsx │ ├── Help.tsx │ ├── HighlightedCode.tsx │ ├── InvalidConfigDialog.tsx │ ├── Link.tsx │ ├── LogSelector.tsx │ ├── Logo.tsx │ ├── MCPServerApprovalDialog.tsx │ ├── MCPServerDialogCopy.tsx │ ├── MCPServerMultiselectDialog.tsx │ ├── Message.tsx │ ├── MessageResponse.tsx │ ├── MessageSelector.tsx │ ├── ModelSelector.tsx │ ├── Onboarding.tsx │ ├── PressEnterToContinue.tsx │ ├── PromptInput.tsx │ ├── SentryErrorBoundary.ts │ ├── Spinner.tsx │ ├── StructuredDiff.tsx │ ├── TextInput.tsx │ ├── TokenWarning.tsx │ ├── ToolUseLoader.tsx │ ├── TrustDialog.tsx │ ├── binary-feedback │ │ ├── BinaryFeedback.tsx │ │ ├── BinaryFeedbackOption.tsx │ │ ├── BinaryFeedbackView.tsx │ │ └── utils.ts │ ├── messages │ │ ├── AssistantBashOutputMessage.tsx │ │ ├── AssistantLocalCommandOutputMessage.tsx │ │ ├── AssistantRedactedThinkingMessage.tsx │ │ ├── AssistantTextMessage.tsx │ │ ├── AssistantThinkingMessage.tsx │ │ ├── AssistantToolUseMessage.tsx │ │ ├── UserBashInputMessage.tsx │ │ ├── UserCommandMessage.tsx │ │ ├── UserKodingInputMessage.tsx │ │ ├── UserPromptMessage.tsx │ │ ├── UserTextMessage.tsx │ │ └── UserToolResultMessage │ │ │ ├── UserToolCanceledMessage.tsx │ │ │ ├── UserToolErrorMessage.tsx │ │ │ ├── UserToolRejectMessage.tsx │ │ │ ├── UserToolResultMessage.tsx │ │ │ ├── UserToolSuccessMessage.tsx │ │ │ └── utils.tsx │ └── permissions │ │ ├── BashPermissionRequest │ │ └── BashPermissionRequest.tsx │ │ ├── FallbackPermissionRequest.tsx │ │ ├── FileEditPermissionRequest │ │ ├── FileEditPermissionRequest.tsx │ │ └── FileEditToolDiff.tsx │ │ ├── FileWritePermissionRequest │ │ ├── FileWritePermissionRequest.tsx │ │ └── FileWriteToolDiff.tsx │ │ ├── FilesystemPermissionRequest │ │ └── FilesystemPermissionRequest.tsx │ │ ├── PermissionRequest.tsx │ │ ├── PermissionRequestTitle.tsx │ │ ├── hooks.ts │ │ ├── toolUseOptions.ts │ │ └── utils.ts ├── constants │ ├── betas.ts │ ├── claude-asterisk-ascii-art.tsx │ ├── figures.ts │ ├── keys.ts │ ├── macros.ts │ ├── models.ts │ ├── oauth.ts │ ├── product.ts │ ├── prompts.ts │ └── releaseNotes.ts ├── context.ts ├── cost-tracker.ts ├── entrypoints │ ├── cli.tsx │ └── mcp.ts ├── history.ts ├── hooks │ ├── useApiKeyVerification.ts │ ├── useArrowKeyHistory.ts │ ├── useCanUseTool.ts │ ├── useCancelRequest.ts │ ├── useDoublePress.ts │ ├── useExitOnCtrlCD.ts │ ├── useInterval.ts │ ├── useLogMessages.ts │ ├── useLogStartupTime.ts │ ├── useNotifyAfterTimeout.ts │ ├── usePermissionRequestLogging.ts │ ├── useSlashCommandTypeahead.ts │ ├── useTerminalSize.ts │ └── useTextInput.ts ├── messages.ts ├── permissions.ts ├── query.ts ├── screens │ ├── ConfigureNpmPrefix.tsx │ ├── Doctor.tsx │ ├── LogList.tsx │ ├── REPL.tsx │ └── ResumeConversation.tsx ├── services │ ├── browserMocks.ts │ ├── claude.ts │ ├── mcpClient.ts │ ├── mcpServerApproval.tsx │ ├── notifier.ts │ ├── oauth.ts │ ├── openai.ts │ ├── sentry.ts │ ├── statsig.ts │ ├── statsigStorage.ts │ └── vcr.ts ├── tools.ts ├── tools │ ├── AgentTool │ │ ├── AgentTool.tsx │ │ ├── constants.ts │ │ └── prompt.ts │ ├── ArchitectTool │ │ ├── ArchitectTool.tsx │ │ └── prompt.ts │ ├── BashTool │ │ ├── BashTool.tsx │ │ ├── BashToolResultMessage.tsx │ │ ├── OutputLine.tsx │ │ ├── prompt.ts │ │ └── utils.ts │ ├── FileEditTool │ │ ├── FileEditTool.tsx │ │ ├── prompt.ts │ │ └── utils.ts │ ├── FileReadTool │ │ ├── FileReadTool.tsx │ │ └── prompt.ts │ ├── FileWriteTool │ │ ├── FileWriteTool.tsx │ │ └── prompt.ts │ ├── GlobTool │ │ ├── GlobTool.tsx │ │ └── prompt.ts │ ├── GrepTool │ │ ├── GrepTool.tsx │ │ └── prompt.ts │ ├── MCPTool │ │ ├── MCPTool.tsx │ │ └── prompt.ts │ ├── MemoryReadTool │ │ ├── MemoryReadTool.tsx │ │ └── prompt.ts │ ├── MemoryWriteTool │ │ ├── MemoryWriteTool.tsx │ │ └── prompt.ts │ ├── NotebookEditTool │ │ ├── NotebookEditTool.tsx │ │ └── prompt.ts │ ├── NotebookReadTool │ │ ├── NotebookReadTool.tsx │ │ └── prompt.ts │ ├── StickerRequestTool │ │ ├── StickerRequestTool.tsx │ │ └── prompt.ts │ ├── ThinkTool │ │ ├── ThinkTool.tsx │ │ └── prompt.ts │ └── lsTool │ │ ├── lsTool.tsx │ │ └── prompt.ts └── utils │ ├── Cursor.ts │ ├── PersistentShell.ts │ ├── array.ts │ ├── ask.tsx │ ├── auth.ts │ ├── autoUpdater.ts │ ├── betas.ts │ ├── browser.ts │ ├── cleanup.ts │ ├── commands.ts │ ├── config.ts │ ├── conversationRecovery.ts │ ├── diff.ts │ ├── env.ts │ ├── errors.ts │ ├── exampleCommands.ts │ ├── execFileNoThrow.ts │ ├── file.ts │ ├── format.tsx │ ├── generators.ts │ ├── git.ts │ ├── http.ts │ ├── imagePaste.ts │ ├── json.ts │ ├── log.ts │ ├── markdown.ts │ ├── messages.tsx │ ├── model.ts │ ├── permissions │ └── filesystem.ts │ ├── ripgrep.ts │ ├── sessionState.ts │ ├── state.ts │ ├── style.ts │ ├── terminal.ts │ ├── theme.ts │ ├── thinking.ts │ ├── tokens.ts │ ├── unaryLogging.ts │ ├── user.ts │ └── validate.ts ├── tsconfig.json └── yoga.wasm /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/wiki/building-code-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.github/wiki/building-code-agent.md -------------------------------------------------------------------------------- /.github/wiki/claudex-architecture-exploration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.github/wiki/claudex-architecture-exploration.md -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.github/workflows/version-bump.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/CLAUDEX.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/README.md -------------------------------------------------------------------------------- /blogs/building-code-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/blogs/building-code-agent.md -------------------------------------------------------------------------------- /blogs/claudex-architecture-exploration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/blogs/claudex-architecture-exploration.md -------------------------------------------------------------------------------- /blogs/claudex-prompt-engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/blogs/claudex-prompt-engineering.md -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/bunfig.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/ProjectOnboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/ProjectOnboarding.tsx -------------------------------------------------------------------------------- /src/Tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/Tool.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/commands/approvedTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/approvedTools.ts -------------------------------------------------------------------------------- /src/commands/bug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/bug.tsx -------------------------------------------------------------------------------- /src/commands/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/clear.ts -------------------------------------------------------------------------------- /src/commands/compact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/compact.ts -------------------------------------------------------------------------------- /src/commands/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/config.tsx -------------------------------------------------------------------------------- /src/commands/cost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/cost.ts -------------------------------------------------------------------------------- /src/commands/ctx_viz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/ctx_viz.ts -------------------------------------------------------------------------------- /src/commands/doctor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/doctor.ts -------------------------------------------------------------------------------- /src/commands/help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/help.tsx -------------------------------------------------------------------------------- /src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/init.ts -------------------------------------------------------------------------------- /src/commands/listen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/listen.ts -------------------------------------------------------------------------------- /src/commands/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/login.tsx -------------------------------------------------------------------------------- /src/commands/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/logout.tsx -------------------------------------------------------------------------------- /src/commands/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/mcp.ts -------------------------------------------------------------------------------- /src/commands/model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/model.tsx -------------------------------------------------------------------------------- /src/commands/onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/onboarding.tsx -------------------------------------------------------------------------------- /src/commands/pr_comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/pr_comments.ts -------------------------------------------------------------------------------- /src/commands/release-notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/release-notes.ts -------------------------------------------------------------------------------- /src/commands/resume.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/resume.tsx -------------------------------------------------------------------------------- /src/commands/review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/review.ts -------------------------------------------------------------------------------- /src/commands/terminalSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/commands/terminalSetup.ts -------------------------------------------------------------------------------- /src/components/ApproveApiKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/ApproveApiKey.tsx -------------------------------------------------------------------------------- /src/components/AsciiLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/AsciiLogo.tsx -------------------------------------------------------------------------------- /src/components/AutoUpdater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/AutoUpdater.tsx -------------------------------------------------------------------------------- /src/components/Bug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Bug.tsx -------------------------------------------------------------------------------- /src/components/Config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Config.tsx -------------------------------------------------------------------------------- /src/components/ConsoleOAuthFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/ConsoleOAuthFlow.tsx -------------------------------------------------------------------------------- /src/components/Cost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Cost.tsx -------------------------------------------------------------------------------- /src/components/CostThresholdDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/CostThresholdDialog.tsx -------------------------------------------------------------------------------- /src/components/CustomSelect/option-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/CustomSelect/option-map.ts -------------------------------------------------------------------------------- /src/components/CustomSelect/select-option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/CustomSelect/select-option.tsx -------------------------------------------------------------------------------- /src/components/CustomSelect/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/CustomSelect/select.tsx -------------------------------------------------------------------------------- /src/components/CustomSelect/use-select-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/CustomSelect/use-select-state.ts -------------------------------------------------------------------------------- /src/components/CustomSelect/use-select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/CustomSelect/use-select.ts -------------------------------------------------------------------------------- /src/components/FallbackToolUseRejectedMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/FallbackToolUseRejectedMessage.tsx -------------------------------------------------------------------------------- /src/components/FileEditToolUpdatedMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/FileEditToolUpdatedMessage.tsx -------------------------------------------------------------------------------- /src/components/Help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Help.tsx -------------------------------------------------------------------------------- /src/components/HighlightedCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/HighlightedCode.tsx -------------------------------------------------------------------------------- /src/components/InvalidConfigDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/InvalidConfigDialog.tsx -------------------------------------------------------------------------------- /src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Link.tsx -------------------------------------------------------------------------------- /src/components/LogSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/LogSelector.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/MCPServerApprovalDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/MCPServerApprovalDialog.tsx -------------------------------------------------------------------------------- /src/components/MCPServerDialogCopy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/MCPServerDialogCopy.tsx -------------------------------------------------------------------------------- /src/components/MCPServerMultiselectDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/MCPServerMultiselectDialog.tsx -------------------------------------------------------------------------------- /src/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Message.tsx -------------------------------------------------------------------------------- /src/components/MessageResponse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/MessageResponse.tsx -------------------------------------------------------------------------------- /src/components/MessageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/MessageSelector.tsx -------------------------------------------------------------------------------- /src/components/ModelSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/ModelSelector.tsx -------------------------------------------------------------------------------- /src/components/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Onboarding.tsx -------------------------------------------------------------------------------- /src/components/PressEnterToContinue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/PressEnterToContinue.tsx -------------------------------------------------------------------------------- /src/components/PromptInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/PromptInput.tsx -------------------------------------------------------------------------------- /src/components/SentryErrorBoundary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/SentryErrorBoundary.ts -------------------------------------------------------------------------------- /src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/Spinner.tsx -------------------------------------------------------------------------------- /src/components/StructuredDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/StructuredDiff.tsx -------------------------------------------------------------------------------- /src/components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/TextInput.tsx -------------------------------------------------------------------------------- /src/components/TokenWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/TokenWarning.tsx -------------------------------------------------------------------------------- /src/components/ToolUseLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/ToolUseLoader.tsx -------------------------------------------------------------------------------- /src/components/TrustDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/TrustDialog.tsx -------------------------------------------------------------------------------- /src/components/binary-feedback/BinaryFeedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/binary-feedback/BinaryFeedback.tsx -------------------------------------------------------------------------------- /src/components/binary-feedback/BinaryFeedbackOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/binary-feedback/BinaryFeedbackOption.tsx -------------------------------------------------------------------------------- /src/components/binary-feedback/BinaryFeedbackView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/binary-feedback/BinaryFeedbackView.tsx -------------------------------------------------------------------------------- /src/components/binary-feedback/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/binary-feedback/utils.ts -------------------------------------------------------------------------------- /src/components/messages/AssistantBashOutputMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/AssistantBashOutputMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/AssistantLocalCommandOutputMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/AssistantLocalCommandOutputMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/AssistantRedactedThinkingMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/AssistantRedactedThinkingMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/AssistantTextMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/AssistantTextMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/AssistantThinkingMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/AssistantThinkingMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/AssistantToolUseMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/AssistantToolUseMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserBashInputMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserBashInputMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserCommandMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserCommandMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserKodingInputMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserKodingInputMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserPromptMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserPromptMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserTextMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserTextMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserToolResultMessage/UserToolCanceledMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserToolResultMessage/UserToolCanceledMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserToolResultMessage/UserToolErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserToolResultMessage/UserToolErrorMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserToolResultMessage/UserToolRejectMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserToolResultMessage/UserToolRejectMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserToolResultMessage/UserToolResultMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserToolResultMessage/UserToolResultMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserToolResultMessage/UserToolSuccessMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserToolResultMessage/UserToolSuccessMessage.tsx -------------------------------------------------------------------------------- /src/components/messages/UserToolResultMessage/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/messages/UserToolResultMessage/utils.tsx -------------------------------------------------------------------------------- /src/components/permissions/BashPermissionRequest/BashPermissionRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/BashPermissionRequest/BashPermissionRequest.tsx -------------------------------------------------------------------------------- /src/components/permissions/FallbackPermissionRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/FallbackPermissionRequest.tsx -------------------------------------------------------------------------------- /src/components/permissions/FileEditPermissionRequest/FileEditPermissionRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/FileEditPermissionRequest/FileEditPermissionRequest.tsx -------------------------------------------------------------------------------- /src/components/permissions/FileEditPermissionRequest/FileEditToolDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/FileEditPermissionRequest/FileEditToolDiff.tsx -------------------------------------------------------------------------------- /src/components/permissions/FileWritePermissionRequest/FileWritePermissionRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/FileWritePermissionRequest/FileWritePermissionRequest.tsx -------------------------------------------------------------------------------- /src/components/permissions/FileWritePermissionRequest/FileWriteToolDiff.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/FileWritePermissionRequest/FileWriteToolDiff.tsx -------------------------------------------------------------------------------- /src/components/permissions/FilesystemPermissionRequest/FilesystemPermissionRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/FilesystemPermissionRequest/FilesystemPermissionRequest.tsx -------------------------------------------------------------------------------- /src/components/permissions/PermissionRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/PermissionRequest.tsx -------------------------------------------------------------------------------- /src/components/permissions/PermissionRequestTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/PermissionRequestTitle.tsx -------------------------------------------------------------------------------- /src/components/permissions/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/hooks.ts -------------------------------------------------------------------------------- /src/components/permissions/toolUseOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/toolUseOptions.ts -------------------------------------------------------------------------------- /src/components/permissions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/components/permissions/utils.ts -------------------------------------------------------------------------------- /src/constants/betas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/betas.ts -------------------------------------------------------------------------------- /src/constants/claude-asterisk-ascii-art.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/claude-asterisk-ascii-art.tsx -------------------------------------------------------------------------------- /src/constants/figures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/figures.ts -------------------------------------------------------------------------------- /src/constants/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/keys.ts -------------------------------------------------------------------------------- /src/constants/macros.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/macros.ts -------------------------------------------------------------------------------- /src/constants/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/models.ts -------------------------------------------------------------------------------- /src/constants/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/oauth.ts -------------------------------------------------------------------------------- /src/constants/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/product.ts -------------------------------------------------------------------------------- /src/constants/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/prompts.ts -------------------------------------------------------------------------------- /src/constants/releaseNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/constants/releaseNotes.ts -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/cost-tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/cost-tracker.ts -------------------------------------------------------------------------------- /src/entrypoints/cli.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/entrypoints/cli.tsx -------------------------------------------------------------------------------- /src/entrypoints/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/entrypoints/mcp.ts -------------------------------------------------------------------------------- /src/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/history.ts -------------------------------------------------------------------------------- /src/hooks/useApiKeyVerification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useApiKeyVerification.ts -------------------------------------------------------------------------------- /src/hooks/useArrowKeyHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useArrowKeyHistory.ts -------------------------------------------------------------------------------- /src/hooks/useCanUseTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useCanUseTool.ts -------------------------------------------------------------------------------- /src/hooks/useCancelRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useCancelRequest.ts -------------------------------------------------------------------------------- /src/hooks/useDoublePress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useDoublePress.ts -------------------------------------------------------------------------------- /src/hooks/useExitOnCtrlCD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useExitOnCtrlCD.ts -------------------------------------------------------------------------------- /src/hooks/useInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useInterval.ts -------------------------------------------------------------------------------- /src/hooks/useLogMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useLogMessages.ts -------------------------------------------------------------------------------- /src/hooks/useLogStartupTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useLogStartupTime.ts -------------------------------------------------------------------------------- /src/hooks/useNotifyAfterTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useNotifyAfterTimeout.ts -------------------------------------------------------------------------------- /src/hooks/usePermissionRequestLogging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/usePermissionRequestLogging.ts -------------------------------------------------------------------------------- /src/hooks/useSlashCommandTypeahead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useSlashCommandTypeahead.ts -------------------------------------------------------------------------------- /src/hooks/useTerminalSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useTerminalSize.ts -------------------------------------------------------------------------------- /src/hooks/useTextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/hooks/useTextInput.ts -------------------------------------------------------------------------------- /src/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/messages.ts -------------------------------------------------------------------------------- /src/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/permissions.ts -------------------------------------------------------------------------------- /src/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/query.ts -------------------------------------------------------------------------------- /src/screens/ConfigureNpmPrefix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/screens/ConfigureNpmPrefix.tsx -------------------------------------------------------------------------------- /src/screens/Doctor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/screens/Doctor.tsx -------------------------------------------------------------------------------- /src/screens/LogList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/screens/LogList.tsx -------------------------------------------------------------------------------- /src/screens/REPL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/screens/REPL.tsx -------------------------------------------------------------------------------- /src/screens/ResumeConversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/screens/ResumeConversation.tsx -------------------------------------------------------------------------------- /src/services/browserMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/browserMocks.ts -------------------------------------------------------------------------------- /src/services/claude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/claude.ts -------------------------------------------------------------------------------- /src/services/mcpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/mcpClient.ts -------------------------------------------------------------------------------- /src/services/mcpServerApproval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/mcpServerApproval.tsx -------------------------------------------------------------------------------- /src/services/notifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/notifier.ts -------------------------------------------------------------------------------- /src/services/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/oauth.ts -------------------------------------------------------------------------------- /src/services/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/openai.ts -------------------------------------------------------------------------------- /src/services/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/sentry.ts -------------------------------------------------------------------------------- /src/services/statsig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/statsig.ts -------------------------------------------------------------------------------- /src/services/statsigStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/statsigStorage.ts -------------------------------------------------------------------------------- /src/services/vcr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/services/vcr.ts -------------------------------------------------------------------------------- /src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools.ts -------------------------------------------------------------------------------- /src/tools/AgentTool/AgentTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/AgentTool/AgentTool.tsx -------------------------------------------------------------------------------- /src/tools/AgentTool/constants.ts: -------------------------------------------------------------------------------- 1 | export const TOOL_NAME = 'dispatch_agent' 2 | -------------------------------------------------------------------------------- /src/tools/AgentTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/AgentTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/ArchitectTool/ArchitectTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/ArchitectTool/ArchitectTool.tsx -------------------------------------------------------------------------------- /src/tools/ArchitectTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/ArchitectTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/BashTool/BashTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/BashTool/BashTool.tsx -------------------------------------------------------------------------------- /src/tools/BashTool/BashToolResultMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/BashTool/BashToolResultMessage.tsx -------------------------------------------------------------------------------- /src/tools/BashTool/OutputLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/BashTool/OutputLine.tsx -------------------------------------------------------------------------------- /src/tools/BashTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/BashTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/BashTool/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/BashTool/utils.ts -------------------------------------------------------------------------------- /src/tools/FileEditTool/FileEditTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/FileEditTool/FileEditTool.tsx -------------------------------------------------------------------------------- /src/tools/FileEditTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/FileEditTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/FileEditTool/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/FileEditTool/utils.ts -------------------------------------------------------------------------------- /src/tools/FileReadTool/FileReadTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/FileReadTool/FileReadTool.tsx -------------------------------------------------------------------------------- /src/tools/FileReadTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/FileReadTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/FileWriteTool/FileWriteTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/FileWriteTool/FileWriteTool.tsx -------------------------------------------------------------------------------- /src/tools/FileWriteTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/FileWriteTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/GlobTool/GlobTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/GlobTool/GlobTool.tsx -------------------------------------------------------------------------------- /src/tools/GlobTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/GlobTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/GrepTool/GrepTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/GrepTool/GrepTool.tsx -------------------------------------------------------------------------------- /src/tools/GrepTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/GrepTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/MCPTool/MCPTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/MCPTool/MCPTool.tsx -------------------------------------------------------------------------------- /src/tools/MCPTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/MCPTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/MemoryReadTool/MemoryReadTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/MemoryReadTool/MemoryReadTool.tsx -------------------------------------------------------------------------------- /src/tools/MemoryReadTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/MemoryReadTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/MemoryWriteTool/MemoryWriteTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/MemoryWriteTool/MemoryWriteTool.tsx -------------------------------------------------------------------------------- /src/tools/MemoryWriteTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/MemoryWriteTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/NotebookEditTool/NotebookEditTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/NotebookEditTool/NotebookEditTool.tsx -------------------------------------------------------------------------------- /src/tools/NotebookEditTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/NotebookEditTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/NotebookReadTool/NotebookReadTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/NotebookReadTool/NotebookReadTool.tsx -------------------------------------------------------------------------------- /src/tools/NotebookReadTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/NotebookReadTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/StickerRequestTool/StickerRequestTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/StickerRequestTool/StickerRequestTool.tsx -------------------------------------------------------------------------------- /src/tools/StickerRequestTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/StickerRequestTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/ThinkTool/ThinkTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/ThinkTool/ThinkTool.tsx -------------------------------------------------------------------------------- /src/tools/ThinkTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/ThinkTool/prompt.ts -------------------------------------------------------------------------------- /src/tools/lsTool/lsTool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/lsTool/lsTool.tsx -------------------------------------------------------------------------------- /src/tools/lsTool/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/tools/lsTool/prompt.ts -------------------------------------------------------------------------------- /src/utils/Cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/Cursor.ts -------------------------------------------------------------------------------- /src/utils/PersistentShell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/PersistentShell.ts -------------------------------------------------------------------------------- /src/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/array.ts -------------------------------------------------------------------------------- /src/utils/ask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/ask.tsx -------------------------------------------------------------------------------- /src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/auth.ts -------------------------------------------------------------------------------- /src/utils/autoUpdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/autoUpdater.ts -------------------------------------------------------------------------------- /src/utils/betas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/betas.ts -------------------------------------------------------------------------------- /src/utils/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/browser.ts -------------------------------------------------------------------------------- /src/utils/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/cleanup.ts -------------------------------------------------------------------------------- /src/utils/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/commands.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/conversationRecovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/conversationRecovery.ts -------------------------------------------------------------------------------- /src/utils/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/diff.ts -------------------------------------------------------------------------------- /src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/env.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/exampleCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/exampleCommands.ts -------------------------------------------------------------------------------- /src/utils/execFileNoThrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/execFileNoThrow.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/format.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/format.tsx -------------------------------------------------------------------------------- /src/utils/generators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/generators.ts -------------------------------------------------------------------------------- /src/utils/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/git.ts -------------------------------------------------------------------------------- /src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/http.ts -------------------------------------------------------------------------------- /src/utils/imagePaste.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/imagePaste.ts -------------------------------------------------------------------------------- /src/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/json.ts -------------------------------------------------------------------------------- /src/utils/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/log.ts -------------------------------------------------------------------------------- /src/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/markdown.ts -------------------------------------------------------------------------------- /src/utils/messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/messages.tsx -------------------------------------------------------------------------------- /src/utils/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/model.ts -------------------------------------------------------------------------------- /src/utils/permissions/filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/permissions/filesystem.ts -------------------------------------------------------------------------------- /src/utils/ripgrep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/ripgrep.ts -------------------------------------------------------------------------------- /src/utils/sessionState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/sessionState.ts -------------------------------------------------------------------------------- /src/utils/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/state.ts -------------------------------------------------------------------------------- /src/utils/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/style.ts -------------------------------------------------------------------------------- /src/utils/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/terminal.ts -------------------------------------------------------------------------------- /src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/theme.ts -------------------------------------------------------------------------------- /src/utils/thinking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/thinking.ts -------------------------------------------------------------------------------- /src/utils/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/tokens.ts -------------------------------------------------------------------------------- /src/utils/unaryLogging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/unaryLogging.ts -------------------------------------------------------------------------------- /src/utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/user.ts -------------------------------------------------------------------------------- /src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/src/utils/validate.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yoga.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevHorizonLabs/ClaudeX/HEAD/yoga.wasm --------------------------------------------------------------------------------