cline 3.0.51 → 3.0.52
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 +4 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -221,13 +221,15 @@ In chat surfaces, connector slash commands include `/help`, `/start`, `/new`, `/
|
|
|
221
221
|
|
|
222
222
|
Schedule agents on cron-like intervals or external events.
|
|
223
223
|
|
|
224
|
+
If `--provider` and `--model` are omitted, schedules use the last configured
|
|
225
|
+
provider and model. If only `--provider` is given, the schedule uses that
|
|
226
|
+
provider's saved model.
|
|
227
|
+
|
|
224
228
|
```sh
|
|
225
229
|
cline schedule create "Daily code review" \
|
|
226
230
|
--cron "0 9 * * MON-FRI" \
|
|
227
231
|
--prompt "Review PRs opened yesterday and summarize issues." \
|
|
228
232
|
--workspace /path/to/repo \
|
|
229
|
-
--provider cline \
|
|
230
|
-
--model openai/gpt-5.3-codex \
|
|
231
233
|
--timeout 3600 \
|
|
232
234
|
--tags automation,review
|
|
233
235
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cline",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.52",
|
|
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.72",
|
|
41
|
+
"@cline/core": "0.0.72",
|
|
42
|
+
"@cline/agents": "0.0.72",
|
|
43
|
+
"@cline/llms": "0.0.72",
|
|
44
|
+
"@cline/shared": "0.0.72"
|
|
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.52",
|
|
48
|
+
"@cline/cli-darwin-arm64": "3.0.52",
|
|
49
|
+
"@cline/cli-darwin-x64": "3.0.52",
|
|
50
|
+
"@cline/cli-windows-arm64": "3.0.52",
|
|
51
|
+
"@cline/cli-linux-arm64": "3.0.52",
|
|
52
|
+
"@cline/cli-linux-x64": "3.0.52"
|
|
53
53
|
}
|
|
54
54
|
}
|