cline 3.0.46 → 3.0.47
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/README.md +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -257,7 +257,7 @@ Schedules can route results back to chat surfaces with `--delivery-adapter`, `--
|
|
|
257
257
|
| `--hooks-dir <path>` | Additional hooks directory hint for runtime hook injection |
|
|
258
258
|
| `--acp` | ACP (Agent Client Protocol) mode |
|
|
259
259
|
| `--thinking [none\|low\|medium\|high\|xhigh]` | Model thinking level when supported. Defaults to `medium` when the flag is provided without a level; thinking is off when the flag is omitted. |
|
|
260
|
-
| `--compaction <agentic\|basic\|off>` | Context compaction mode. Defaults to `
|
|
260
|
+
| `--compaction <agentic\|basic\|off>` | Context compaction mode. Defaults to `agentic`; use `basic` for local truncation or `off` to disable. |
|
|
261
261
|
| `--retries <count>` | Maximum consecutive mistakes (retries) before halting (default: `3`) |
|
|
262
262
|
| `--json` | Output NDJSON instead of styled text |
|
|
263
263
|
| `--data-dir <path>` | Use isolated local state at `<path>` instead of `~/.cline` (enables sandbox mode automatically) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cline",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.47",
|
|
4
4
|
"description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"postinstall": "node ./postinstall.mjs || true"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@cline/sdk": "0.0.
|
|
41
|
-
"@cline/core": "0.0.
|
|
42
|
-
"@cline/agents": "0.0.
|
|
43
|
-
"@cline/llms": "0.0.
|
|
44
|
-
"@cline/shared": "0.0.
|
|
40
|
+
"@cline/sdk": "0.0.66",
|
|
41
|
+
"@cline/core": "0.0.66",
|
|
42
|
+
"@cline/agents": "0.0.66",
|
|
43
|
+
"@cline/llms": "0.0.66",
|
|
44
|
+
"@cline/shared": "0.0.66"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@cline/cli-
|
|
48
|
-
"@cline/cli-darwin-
|
|
49
|
-
"@cline/cli-
|
|
50
|
-
"@cline/cli-
|
|
51
|
-
"@cline/cli-linux-arm64": "3.0.
|
|
52
|
-
"@cline/cli-
|
|
47
|
+
"@cline/cli-windows-x64": "3.0.47",
|
|
48
|
+
"@cline/cli-darwin-arm64": "3.0.47",
|
|
49
|
+
"@cline/cli-darwin-x64": "3.0.47",
|
|
50
|
+
"@cline/cli-windows-arm64": "3.0.47",
|
|
51
|
+
"@cline/cli-linux-arm64": "3.0.47",
|
|
52
|
+
"@cline/cli-linux-x64": "3.0.47"
|
|
53
53
|
}
|
|
54
54
|
}
|