cline 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@
2
2
  "name": "claude-dev",
3
3
  "displayName": "Cline",
4
4
  "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
5
- "version": "3.32.8",
5
+ "version": "3.33.1",
6
6
  "icon": "assets/icons/icon.png",
7
7
  "engines": {
8
8
  "vscode": "^1.84.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cline",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
5
5
  "main": "cline-core.js",
6
6
  "bin": {
@@ -20,7 +20,7 @@
20
20
  "vscode-uri"
21
21
  ],
22
22
  "engines": {
23
- "node": ">=18.0.0"
23
+ "node": ">=20.0.0"
24
24
  },
25
25
  "keywords": [
26
26
  "cline",
@@ -24,6 +24,9 @@ service StateService {
24
24
  rpc setWelcomeViewCompleted(BooleanRequest) returns (Empty);
25
25
  rpc updateInfoBannerVersion(Int64Request) returns (Empty);
26
26
  rpc updateModelBannerVersion(Int64Request) returns (Empty);
27
+ rpc updateCliBannerVersion(Int64Request) returns (Empty);
28
+ rpc installClineCli(EmptyRequest) returns (Empty);
29
+ rpc checkCliInstallation(EmptyRequest) returns (Boolean);
27
30
  rpc getProcessInfo(EmptyRequest) returns (ProcessInfo);
28
31
  }
29
32
 
@@ -31,6 +31,9 @@ service WorkspaceService {
31
31
 
32
32
  // Opens and focuses the terminal panel.
33
33
  rpc openTerminalPanel(OpenTerminalRequest) returns (OpenTerminalResponse);
34
+
35
+ // Executes a command in a new terminal
36
+ rpc executeCommandInTerminal(ExecuteCommandInTerminalRequest) returns (ExecuteCommandInTerminalResponse);
34
37
  }
35
38
 
36
39
  message GetWorkspacePathsRequest {
@@ -93,4 +96,13 @@ message OpenInFileExplorerPanelResponse {}
93
96
  message OpenClineSidebarPanelRequest {}
94
97
  message OpenClineSidebarPanelResponse {}
95
98
  message OpenTerminalRequest {}
96
- message OpenTerminalResponse {}
99
+ message OpenTerminalResponse {}
100
+
101
+ // Execute a command in the terminal
102
+ message ExecuteCommandInTerminalRequest {
103
+ string command = 1; // The command to execute
104
+ }
105
+
106
+ message ExecuteCommandInTerminalResponse {
107
+ bool success = 1; // Whether the command was successfully sent to the terminal
108
+ }