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 CHANGED
Binary file
Binary file
Binary file
package/bin/cline-host CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
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: "phc_TpRIySHEzOdf1lj5JkzF5xN8FZODg0vMIyJKSaEzsTE",
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("\u2705 All services started successfully");
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...`);
@@ -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.7",
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
- "name": "cline",
3
- "version": "1.0.0-nightly.13",
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": [
61
- "darwin",
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
  }