Skip to content

Commit 572031d

Browse files
committed
adding workflow publish
1 parent 5f8afd7 commit 572031d

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/release-on-codeagent.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Release codeagent VSIX
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- codeagent

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-dev",
3-
"displayName": "Cline",
3+
"displayName": "CodeAgent - Cline",
44
"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.",
55
"version": "3.34.0",
66
"icon": "assets/icons/icon.png",

proto/cline/models.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ message OpenRouterModelInfo {
100100

101101
// Model info for CodeAgent models with custom schema
102102
message CodeAgentModelInfo {
103-
string id = 1; // CosmosDB required field (same as modelId)
103+
string id = 1; // CosmosDB required field (same as modelId)
104104
string model_id = 2;
105105
string display_name = 3;
106106
string endpoint = 4;
107-
optional string api_key = 5; // Encrypted
107+
optional string api_key = 5; // Encrypted
108108
string deployment_name = 6;
109-
string status = 7; // "ACTIVE" or "INACTIVE"
109+
string status = 7; // "ACTIVE" or "INACTIVE"
110110
string api_version = 8;
111111
// Pricing information
112112
double input_tokens_per_1m = 9;

proto/cline/state.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ message ApiConfiguration {
431431
optional string oca_refresh_token = 68;
432432
optional string codeagent_api_key = 69;
433433
optional string codeagent_base_url = 70;
434-
434+
435435
// Plan mode configurations
436436
optional ApiProvider plan_mode_api_provider = 100;
437437
optional string plan_mode_api_model_id = 101;
@@ -461,7 +461,7 @@ message ApiConfiguration {
461461
optional OcaModelInfo plan_mode_oca_model_info = 125;
462462
optional string plan_mode_codeagent_model_id = 126;
463463
optional CodeAgentModelInfo plan_mode_codeagent_model_info = 127;
464-
464+
465465
// Act mode configurations
466466
optional ApiProvider act_mode_api_provider = 200;
467467
optional string act_mode_api_model_id = 201;

0 commit comments

Comments
 (0)