Skip to content

Commit

Permalink
add cline
Browse files Browse the repository at this point in the history
  • Loading branch information
Himanshu-Singh-Chauhan committed Jan 20, 2025
1 parent cde8457 commit cb31bdb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
5 changes: 5 additions & 0 deletions extensions/vscode/src/util/integrationUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { ContinueGUIWebviewViewProvider } from "../ContinueGUIWebviewViewProvide
import { ToWebviewProtocol } from "core/protocol";

export enum InstallableTool {
CLINE = "cline",
AIDER = "aider",
SUPERMAVEN = "supermaven"
}
Expand Down Expand Up @@ -34,6 +35,10 @@ export interface MemoryChange {
export type ToolType = typeof InstallableTool[keyof typeof InstallableTool];

export const TOOL_COMMANDS: Record<ToolType, ToolCommand> = {
[InstallableTool.CLINE]: {
command: "workbench.extensions.installExtension",
args: "saoudrizwan.claude-dev"
},
[InstallableTool.AIDER]: {
command: "pearai.installAider"
},
Expand Down
16 changes: 16 additions & 0 deletions gui/public/logos/inventory-cline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions gui/src/pages/welcome/setup/InstallTools.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ export default function InstallTools({
}) {

const tools: Tool[] = [
{
id: "cline",
name: "Cline",
description: "Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, using the browser, and more with your permission every step of the way.",
icon: "inventory-cline.svg",
preInstalled: false
},
{
id: "aider",
name: "PearAI Creator",
Expand Down

0 comments on commit cb31bdb

Please sign in to comment.