cline 3.0.47 → 3.0.48
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
|
@@ -260,7 +260,7 @@ Schedules can route results back to chat surfaces with `--delivery-adapter`, `--
|
|
|
260
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
|
-
| `--data-dir <path>` | Use isolated local state at `<path>` instead of `~/.cline` (enables sandbox mode automatically) |
|
|
263
|
+
| `--data-dir <path>` | Use isolated local state at `<path>` instead of `~/.cline/data` (enables sandbox mode automatically) |
|
|
264
264
|
| `--auto-approve [true\|false]` | Set tool auto-approval for all tools |
|
|
265
265
|
| `--kanban` | Run the external `kanban` app |
|
|
266
266
|
| `-y, --yolo` | Skip tool approval prompts, enable `submit_and_exit`, and disable spawn/team tools by default |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cline",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.48",
|
|
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.67",
|
|
41
|
+
"@cline/core": "0.0.67",
|
|
42
|
+
"@cline/agents": "0.0.67",
|
|
43
|
+
"@cline/llms": "0.0.67",
|
|
44
|
+
"@cline/shared": "0.0.67"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@cline/cli-windows-x64": "3.0.
|
|
48
|
-
"@cline/cli-darwin-arm64": "3.0.
|
|
49
|
-
"@cline/cli-darwin-x64": "3.0.
|
|
50
|
-
"@cline/cli-windows-arm64": "3.0.
|
|
51
|
-
"@cline/cli-linux-arm64": "3.0.
|
|
52
|
-
"@cline/cli-linux-x64": "3.0.
|
|
47
|
+
"@cline/cli-windows-x64": "3.0.48",
|
|
48
|
+
"@cline/cli-darwin-arm64": "3.0.48",
|
|
49
|
+
"@cline/cli-darwin-x64": "3.0.48",
|
|
50
|
+
"@cline/cli-windows-arm64": "3.0.48",
|
|
51
|
+
"@cline/cli-linux-arm64": "3.0.48",
|
|
52
|
+
"@cline/cli-linux-x64": "3.0.48"
|
|
53
53
|
}
|
|
54
54
|
}
|