mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
* - UI Glam Session -> Makeover for TaskHeader, ChatView, HistoryPreview, WelcomeView - In particular, display a "no tasks in workspace" message when no tasks are found. - Clean up Inferface Settings (not needed now) on Settings View - Copy updates throughout these areas. * Apply suggestions from code review Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Missing translation string. * Fix test * Fix tests * Improve translations / fix missing strings. * Support xAI for evals (#2703) * Make sure the slash commands only fire if they're the first character (#2702) * Update contributors list (#2675) docs: update contributors list [skip ci] Co-authored-by: mrubens <mrubens@users.noreply.github.com> * v3.12.3 (#2710) * Changeset version bump (#2711) * changeset version bump * Updating CHANGELOG.md format * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: R00-B0T <github-actions@github.com> Co-authored-by: Matt Rubens <mrubens@users.noreply.github.com> * Update translations --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: cte <cestreich@gmail.com> Co-authored-by: Matt Rubens <mrubens@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: R00-B0T <110429663+R00-B0T@users.noreply.github.com> Co-authored-by: R00-B0T <github-actions@github.com>
284 lines
7.2 KiB
TypeScript
284 lines
7.2 KiB
TypeScript
import {
|
|
ModelInfo,
|
|
GlobalSettings,
|
|
ApiConfigMeta,
|
|
ProviderSettings as ApiConfiguration,
|
|
HistoryItem,
|
|
ModeConfig,
|
|
TelemetrySetting,
|
|
ExperimentId,
|
|
ClineAsk,
|
|
ClineSay,
|
|
ToolProgressStatus,
|
|
ClineMessage,
|
|
} from "../schemas"
|
|
import { McpServer } from "./mcp"
|
|
import { GitCommit } from "../utils/git"
|
|
import { Mode } from "./modes"
|
|
|
|
export type { ApiConfigMeta, ToolProgressStatus }
|
|
|
|
export interface LanguageModelChatSelector {
|
|
vendor?: string
|
|
family?: string
|
|
version?: string
|
|
id?: string
|
|
}
|
|
|
|
// Represents JSON data that is sent from extension to webview, called
|
|
// ExtensionMessage and has 'type' enum which can be 'plusButtonClicked' or
|
|
// 'settingsButtonClicked' or 'hello'. Webview will hold state.
|
|
export interface ExtensionMessage {
|
|
type:
|
|
| "action"
|
|
| "state"
|
|
| "selectedImages"
|
|
| "ollamaModels"
|
|
| "lmStudioModels"
|
|
| "theme"
|
|
| "workspaceUpdated"
|
|
| "invoke"
|
|
| "partialMessage"
|
|
| "openRouterModels"
|
|
| "glamaModels"
|
|
| "unboundModels"
|
|
| "requestyModels"
|
|
| "openAiModels"
|
|
| "mcpServers"
|
|
| "enhancedPrompt"
|
|
| "commitSearchResults"
|
|
| "listApiConfig"
|
|
| "vsCodeLmModels"
|
|
| "vsCodeLmApiAvailable"
|
|
| "requestVsCodeLmModels"
|
|
| "updatePrompt"
|
|
| "systemPrompt"
|
|
| "autoApprovalEnabled"
|
|
| "updateCustomMode"
|
|
| "deleteCustomMode"
|
|
| "currentCheckpointUpdated"
|
|
| "showHumanRelayDialog"
|
|
| "humanRelayResponse"
|
|
| "humanRelayCancel"
|
|
| "browserToolEnabled"
|
|
| "browserConnectionResult"
|
|
| "remoteBrowserEnabled"
|
|
| "ttsStart"
|
|
| "ttsStop"
|
|
| "maxReadFileLine"
|
|
| "fileSearchResults"
|
|
| "toggleApiConfigPin"
|
|
| "acceptInput"
|
|
text?: string
|
|
action?:
|
|
| "chatButtonClicked"
|
|
| "mcpButtonClicked"
|
|
| "settingsButtonClicked"
|
|
| "historyButtonClicked"
|
|
| "promptsButtonClicked"
|
|
| "didBecomeVisible"
|
|
| "focusInput"
|
|
invoke?: "newChat" | "sendMessage" | "primaryButtonClick" | "secondaryButtonClick" | "setChatBoxMessage"
|
|
state?: ExtensionState
|
|
images?: string[]
|
|
ollamaModels?: string[]
|
|
lmStudioModels?: string[]
|
|
vsCodeLmModels?: { vendor?: string; family?: string; version?: string; id?: string }[]
|
|
filePaths?: string[]
|
|
openedTabs?: Array<{
|
|
label: string
|
|
isActive: boolean
|
|
path?: string
|
|
}>
|
|
partialMessage?: ClineMessage
|
|
openRouterModels?: Record<string, ModelInfo>
|
|
glamaModels?: Record<string, ModelInfo>
|
|
unboundModels?: Record<string, ModelInfo>
|
|
requestyModels?: Record<string, ModelInfo>
|
|
openAiModels?: string[]
|
|
mcpServers?: McpServer[]
|
|
commits?: GitCommit[]
|
|
listApiConfig?: ApiConfigMeta[]
|
|
mode?: Mode
|
|
customMode?: ModeConfig
|
|
slug?: string
|
|
success?: boolean
|
|
values?: Record<string, any>
|
|
requestId?: string
|
|
promptText?: string
|
|
results?: Array<{
|
|
path: string
|
|
type: "file" | "folder"
|
|
label?: string
|
|
}>
|
|
error?: string
|
|
}
|
|
|
|
export type ExtensionState = Pick<
|
|
GlobalSettings,
|
|
| "currentApiConfigName"
|
|
| "listApiConfigMeta"
|
|
| "pinnedApiConfigs"
|
|
// | "lastShownAnnouncementId"
|
|
| "customInstructions"
|
|
// | "taskHistory" // Optional in GlobalSettings, required here.
|
|
| "autoApprovalEnabled"
|
|
| "alwaysAllowReadOnly"
|
|
| "alwaysAllowReadOnlyOutsideWorkspace"
|
|
| "alwaysAllowWrite"
|
|
| "alwaysAllowWriteOutsideWorkspace"
|
|
// | "writeDelayMs" // Optional in GlobalSettings, required here.
|
|
| "alwaysAllowBrowser"
|
|
| "alwaysApproveResubmit"
|
|
// | "requestDelaySeconds" // Optional in GlobalSettings, required here.
|
|
| "alwaysAllowMcp"
|
|
| "alwaysAllowModeSwitch"
|
|
| "alwaysAllowSubtasks"
|
|
| "alwaysAllowExecute"
|
|
| "allowedCommands"
|
|
| "browserToolEnabled"
|
|
| "browserViewportSize"
|
|
| "screenshotQuality"
|
|
| "remoteBrowserEnabled"
|
|
| "remoteBrowserHost"
|
|
// | "enableCheckpoints" // Optional in GlobalSettings, required here.
|
|
| "ttsEnabled"
|
|
| "ttsSpeed"
|
|
| "soundEnabled"
|
|
| "soundVolume"
|
|
// | "maxOpenTabsContext" // Optional in GlobalSettings, required here.
|
|
// | "maxWorkspaceFiles" // Optional in GlobalSettings, required here.
|
|
// | "showRooIgnoredFiles" // Optional in GlobalSettings, required here.
|
|
// | "maxReadFileLine" // Optional in GlobalSettings, required here.
|
|
| "terminalOutputLineLimit"
|
|
| "terminalShellIntegrationTimeout"
|
|
| "terminalCommandDelay"
|
|
| "terminalPowershellCounter"
|
|
| "terminalZshClearEolMark"
|
|
| "terminalZshOhMy"
|
|
| "terminalZshP10k"
|
|
| "terminalZdotdir"
|
|
| "diffEnabled"
|
|
| "fuzzyMatchThreshold"
|
|
// | "experiments" // Optional in GlobalSettings, required here.
|
|
| "language"
|
|
// | "telemetrySetting" // Optional in GlobalSettings, required here.
|
|
// | "mcpEnabled" // Optional in GlobalSettings, required here.
|
|
// | "enableMcpServerCreation" // Optional in GlobalSettings, required here.
|
|
// | "mode" // Optional in GlobalSettings, required here.
|
|
| "modeApiConfigs"
|
|
// | "customModes" // Optional in GlobalSettings, required here.
|
|
| "customModePrompts"
|
|
| "customSupportPrompts"
|
|
| "enhancementApiConfigId"
|
|
> & {
|
|
version: string
|
|
clineMessages: ClineMessage[]
|
|
currentTaskItem?: HistoryItem
|
|
apiConfiguration?: ApiConfiguration
|
|
uriScheme?: string
|
|
shouldShowAnnouncement: boolean
|
|
|
|
taskHistory: HistoryItem[]
|
|
|
|
writeDelayMs: number
|
|
requestDelaySeconds: number
|
|
|
|
enableCheckpoints: boolean
|
|
maxOpenTabsContext: number // Maximum number of VSCode open tabs to include in context (0-500)
|
|
maxWorkspaceFiles: number // Maximum number of files to include in current working directory details (0-500)
|
|
showRooIgnoredFiles: boolean // Whether to show .rooignore'd files in listings
|
|
maxReadFileLine: number // Maximum number of lines to read from a file before truncating
|
|
|
|
experiments: Record<ExperimentId, boolean> // Map of experiment IDs to their enabled state
|
|
|
|
mcpEnabled: boolean
|
|
enableMcpServerCreation: boolean
|
|
|
|
mode: Mode
|
|
customModes: ModeConfig[]
|
|
toolRequirements?: Record<string, boolean> // Map of tool names to their requirements (e.g. {"apply_diff": true} if diffEnabled)
|
|
|
|
cwd?: string // Current working directory
|
|
telemetrySetting: TelemetrySetting
|
|
telemetryKey?: string
|
|
machineId?: string
|
|
|
|
renderContext: "sidebar" | "editor"
|
|
settingsImportedAt?: number
|
|
}
|
|
|
|
export type { ClineMessage, ClineAsk, ClineSay }
|
|
|
|
export interface ClineSayTool {
|
|
tool:
|
|
| "editedExistingFile"
|
|
| "appliedDiff"
|
|
| "newFileCreated"
|
|
| "readFile"
|
|
| "fetchInstructions"
|
|
| "listFilesTopLevel"
|
|
| "listFilesRecursive"
|
|
| "listCodeDefinitionNames"
|
|
| "searchFiles"
|
|
| "switchMode"
|
|
| "newTask"
|
|
| "finishTask"
|
|
path?: string
|
|
diff?: string
|
|
content?: string
|
|
regex?: string
|
|
filePattern?: string
|
|
mode?: string
|
|
reason?: string
|
|
isOutsideWorkspace?: boolean
|
|
}
|
|
|
|
// Must keep in sync with system prompt.
|
|
export const browserActions = [
|
|
"launch",
|
|
"click",
|
|
"hover",
|
|
"type",
|
|
"scroll_down",
|
|
"scroll_up",
|
|
"resize",
|
|
"close",
|
|
] as const
|
|
|
|
export type BrowserAction = (typeof browserActions)[number]
|
|
|
|
export interface ClineSayBrowserAction {
|
|
action: BrowserAction
|
|
coordinate?: string
|
|
size?: string
|
|
text?: string
|
|
}
|
|
|
|
export type BrowserActionResult = {
|
|
screenshot?: string
|
|
logs?: string
|
|
currentUrl?: string
|
|
currentMousePosition?: string
|
|
}
|
|
|
|
export interface ClineAskUseMcpServer {
|
|
serverName: string
|
|
type: "use_mcp_tool" | "access_mcp_resource"
|
|
toolName?: string
|
|
arguments?: string
|
|
uri?: string
|
|
}
|
|
|
|
export interface ClineApiReqInfo {
|
|
request?: string
|
|
tokensIn?: number
|
|
tokensOut?: number
|
|
cacheWrites?: number
|
|
cacheReads?: number
|
|
cost?: number
|
|
cancelReason?: ClineApiReqCancelReason
|
|
streamingFailedMessage?: string
|
|
}
|
|
|
|
export type ClineApiReqCancelReason = "streaming_failed" | "user_cancelled"
|