cline 1.0.0-nightly.10 → 1.0.0-nightly.12
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.
- package/bin/cline +0 -0
- package/bin/cline-darwin-amd64 +0 -0
- package/bin/cline-darwin-arm64 +0 -0
- package/bin/cline-host +0 -0
- package/bin/cline-host-darwin-amd64 +0 -0
- package/bin/cline-host-darwin-arm64 +0 -0
- package/bin/cline-host-linux-amd64 +0 -0
- package/bin/cline-host-linux-arm64 +0 -0
- package/bin/cline-linux-amd64 +0 -0
- package/bin/cline-linux-arm64 +0 -0
- package/cline-core.js +1034 -466
- package/man/cline.1 +2 -0
- package/package.json +1 -1
- package/proto/cline/state.proto +7 -0
- package/proto/cline/task.proto +2 -0
- package/proto/cline/ui.proto +3 -0
package/man/cline.1
CHANGED
|
@@ -9,6 +9,8 @@ cline \- orchestrate and interact with Cline AI coding agents
|
|
|
9
9
|
\f[B]cline\f[R] \f[I]command\f[R] [\f[I]subcommand\f[R]]
|
|
10
10
|
[\f[I]options\f[R]] [\f[I]arguments\f[R]]
|
|
11
11
|
.SH DESCRIPTION
|
|
12
|
+
Try: cat README.md | cline \(lqSummarize this for me:\(rq
|
|
13
|
+
.PP
|
|
12
14
|
\f[B]cline\f[R] is a command\-line interface for orchestrating multiple
|
|
13
15
|
Cline AI coding agents.
|
|
14
16
|
Cline is an autonomous AI agent who can read, write, and execute code
|
package/package.json
CHANGED
package/proto/cline/state.proto
CHANGED
|
@@ -19,6 +19,7 @@ service StateService {
|
|
|
19
19
|
rpc updateAutoApprovalSettings(AutoApprovalSettingsRequest) returns (Empty);
|
|
20
20
|
rpc updateSettings(UpdateSettingsRequest) returns (Empty);
|
|
21
21
|
rpc updateSettingsCli(UpdateSettingsRequestCli) returns (Empty);
|
|
22
|
+
rpc updateTaskSettings(UpdateTaskSettingsRequest) returns (Empty);
|
|
22
23
|
rpc updateTelemetrySetting(TelemetrySettingRequest) returns (Empty);
|
|
23
24
|
rpc setWelcomeViewCompleted(BooleanRequest) returns (Empty);
|
|
24
25
|
rpc updateInfoBannerVersion(Int64Request) returns (Empty);
|
|
@@ -318,6 +319,11 @@ message UpdateSettingsRequestCli {
|
|
|
318
319
|
optional Secrets secrets = 3;
|
|
319
320
|
}
|
|
320
321
|
|
|
322
|
+
message UpdateTaskSettingsRequest {
|
|
323
|
+
Metadata metadata = 1;
|
|
324
|
+
optional Settings settings = 2;
|
|
325
|
+
}
|
|
326
|
+
|
|
321
327
|
// Message for updating settings
|
|
322
328
|
message UpdateSettingsRequest {
|
|
323
329
|
Metadata metadata = 1;
|
|
@@ -345,6 +351,7 @@ message UpdateSettingsRequest {
|
|
|
345
351
|
optional double auto_condense_threshold = 24;
|
|
346
352
|
optional bool multi_root_enabled = 25;
|
|
347
353
|
optional bool hooks_enabled = 26;
|
|
354
|
+
optional string vscode_terminal_execution_mode = 27;
|
|
348
355
|
}
|
|
349
356
|
|
|
350
357
|
// Complete API Configuration message
|
package/proto/cline/task.proto
CHANGED
|
@@ -10,6 +10,8 @@ option java_multiple_files = true;
|
|
|
10
10
|
service TaskService {
|
|
11
11
|
// Cancels the currently running task
|
|
12
12
|
rpc cancelTask(EmptyRequest) returns (Empty);
|
|
13
|
+
// Cancels the currently running background command
|
|
14
|
+
rpc cancelBackgroundCommand(EmptyRequest) returns (Empty);
|
|
13
15
|
// Clears the current task
|
|
14
16
|
rpc clearTask(EmptyRequest) returns (Empty);
|
|
15
17
|
// Gets the total size of all tasks
|
package/proto/cline/ui.proto
CHANGED
|
@@ -215,6 +215,9 @@ service UiService {
|
|
|
215
215
|
// Scrolls to a specific settings section in the settings view
|
|
216
216
|
rpc scrollToSettings(StringRequest) returns (KeyValuePair);
|
|
217
217
|
|
|
218
|
+
// Sets the terminal execution mode (vscodeTerminal or backgroundExec)
|
|
219
|
+
rpc setTerminalExecutionMode(BooleanRequest) returns (KeyValuePair);
|
|
220
|
+
|
|
218
221
|
// Marks the current announcement as shown and returns whether an announcement should still be shown
|
|
219
222
|
rpc onDidShowAnnouncement(EmptyRequest) returns (Boolean);
|
|
220
223
|
|