cline 1.0.0-nightly.13 → 1.0.0-nightly.14
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/bin/cline-test +0 -0
- package/cline-core.js +2 -3
- package/extension/package.json +1 -1
- package/package.json +60 -66
package/bin/cline
CHANGED
|
Binary file
|
package/bin/cline-darwin-amd64
CHANGED
|
Binary file
|
package/bin/cline-darwin-arm64
CHANGED
|
Binary file
|
package/bin/cline-host
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/cline-linux-amd64
CHANGED
|
Binary file
|
package/bin/cline-linux-arm64
CHANGED
|
Binary file
|
package/bin/cline-test
ADDED
|
Binary file
|
package/cline-core.js
CHANGED
|
@@ -624046,7 +624046,7 @@ var init_posthog_config = __esm({
|
|
|
624046
624046
|
"use strict";
|
|
624047
624047
|
useDevEnv = process.env.IS_DEV === "true" || process.env.CLINE_ENVIRONMENT === "local";
|
|
624048
624048
|
posthogConfig = {
|
|
624049
|
-
apiKey:
|
|
624049
|
+
apiKey: process.env.TELEMETRY_SERVICE_API_KEY,
|
|
624050
624050
|
errorTrackingApiKey: process.env.ERROR_SERVICE_API_KEY,
|
|
624051
624051
|
host: "https://data.cline.bot",
|
|
624052
624052
|
uiHost: useDevEnv ? "https://us.i.posthog.com" : "https://us.posthog.com"
|
|
@@ -1007012,7 +1007012,6 @@ async function main() {
|
|
|
1007012
1007012
|
process.env.HOST_BRIDGE_ADDRESS = `127.0.0.1:${args2.hostBridgePort}`;
|
|
1007013
1007013
|
}
|
|
1007014
1007014
|
try {
|
|
1007015
|
-
log("\n\n\nStarting cline-core service...\n\n\n");
|
|
1007016
1007015
|
setupGlobalErrorHandlers();
|
|
1007017
1007016
|
const hostAddress = await waitForHostBridgeReady();
|
|
1007018
1007017
|
setupHostProvider(extensionContext, EXTENSION_DIR, DATA_DIR);
|
|
@@ -1007031,7 +1007030,7 @@ async function main() {
|
|
|
1007031
1007030
|
log(`Registered instance in SQLite locks: ${protobusAddress}`);
|
|
1007032
1007031
|
globalLockManager.cleanupOrphanedFolderLocks();
|
|
1007033
1007032
|
globalLockManager.touchInstance();
|
|
1007034
|
-
log("
|
|
1007033
|
+
log("All services started successfully");
|
|
1007035
1007034
|
} catch (err2) {
|
|
1007036
1007035
|
log(`FATAL ERROR during startup: ${err2}`);
|
|
1007037
1007036
|
log(`Cleaning up and shutting down...`);
|
package/extension/package.json
CHANGED
|
@@ -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.
|
|
5
|
+
"version": "3.32.8",
|
|
6
6
|
"icon": "assets/icons/icon.png",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.84.0"
|
package/package.json
CHANGED
|
@@ -1,68 +1,62 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"linux"
|
|
63
|
-
],
|
|
64
|
-
"cpu": [
|
|
65
|
-
"x64",
|
|
66
|
-
"arm64"
|
|
67
|
-
]
|
|
2
|
+
"name": "cline",
|
|
3
|
+
"version": "1.0.0-nightly.14",
|
|
4
|
+
"description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
|
|
5
|
+
"main": "cline-core.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"cline": "./bin/cline",
|
|
8
|
+
"cline-host": "./bin/cline-host"
|
|
9
|
+
},
|
|
10
|
+
"man": "./man/cline.1",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"postinstall": "node postinstall.js"
|
|
13
|
+
},
|
|
14
|
+
"bundleDependencies": [
|
|
15
|
+
"@grpc/grpc-js",
|
|
16
|
+
"@grpc/reflection",
|
|
17
|
+
"better-sqlite3",
|
|
18
|
+
"grpc-health-check",
|
|
19
|
+
"open",
|
|
20
|
+
"vscode-uri"
|
|
21
|
+
],
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18.0.0"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"cline",
|
|
27
|
+
"claude",
|
|
28
|
+
"dev",
|
|
29
|
+
"mcp",
|
|
30
|
+
"openrouter",
|
|
31
|
+
"coding",
|
|
32
|
+
"agent",
|
|
33
|
+
"autonomous",
|
|
34
|
+
"chatgpt",
|
|
35
|
+
"sonnet",
|
|
36
|
+
"ai",
|
|
37
|
+
"llama",
|
|
38
|
+
"cli"
|
|
39
|
+
],
|
|
40
|
+
"author": {
|
|
41
|
+
"name": "Cline Bot Inc."
|
|
42
|
+
},
|
|
43
|
+
"license": "Apache-2.0",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/cline/cline"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://cline.bot",
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/cline/cline/issues"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@grpc/grpc-js": "^1.13.3",
|
|
54
|
+
"@grpc/reflection": "^1.0.4",
|
|
55
|
+
"better-sqlite3": "^12.2.0",
|
|
56
|
+
"grpc-health-check": "^2.0.2",
|
|
57
|
+
"open": "^10.1.2",
|
|
58
|
+
"vscode-uri": "^3.1.0"
|
|
59
|
+
},
|
|
60
|
+
"os": ["darwin", "linux"],
|
|
61
|
+
"cpu": ["x64", "arm64"]
|
|
68
62
|
}
|