@compozy/cli 0.1.5 → 0.1.6
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 +6 -4
- package/package.json +21 -21
package/README.md
CHANGED
|
@@ -153,6 +153,8 @@ Notes:
|
|
|
153
153
|
- `.compozy/config.toml` is optional. If it is absent, Compozy keeps the current built-in defaults.
|
|
154
154
|
- `.compozy/tasks` remains the fixed workflow root in this version; the config file does not change the workflow root path.
|
|
155
155
|
- Unknown keys and invalid value types are rejected during config loading.
|
|
156
|
+
- `max_retries` applies to execution-stage ACP failures and inactivity timeouts for both `compozy start` and `compozy fix-reviews`.
|
|
157
|
+
- `retry_backoff_multiplier` only increases the next attempt timeout; retries restart immediately and do not add a sleep delay.
|
|
156
158
|
|
|
157
159
|
## 🚀 Quick Start
|
|
158
160
|
|
|
@@ -387,8 +389,8 @@ When present, `.compozy/config.toml` can provide defaults for runtime flags such
|
|
|
387
389
|
| `--reasoning-effort` | `medium` | `low`, `medium`, `high`, `xhigh` |
|
|
388
390
|
| `--access-mode` | `full` | `default` or `full` runtime access policy |
|
|
389
391
|
| `--timeout` | `10m` | Activity timeout per job |
|
|
390
|
-
| `--max-retries` | `0` | Retry
|
|
391
|
-
| `--retry-backoff-multiplier` | `1.5` |
|
|
392
|
+
| `--max-retries` | `0` | Retry execution-stage ACP failures or timeouts N times |
|
|
393
|
+
| `--retry-backoff-multiplier` | `1.5` | Multiplier applied to the next timeout after each retry |
|
|
392
394
|
| `--tail-lines` | `30` | Log lines shown per job in UI |
|
|
393
395
|
| `--add-dir` | | Additional directories to allow (repeatable) |
|
|
394
396
|
| `--auto-commit` | `false` | Auto-commit after each task |
|
|
@@ -441,8 +443,8 @@ defaults such as `--concurrent`, `--batch-size`, `--grouped`, and `--include-res
|
|
|
441
443
|
| `--reasoning-effort` | `medium` | `low`, `medium`, `high`, `xhigh` |
|
|
442
444
|
| `--access-mode` | `full` | `default` or `full` runtime access policy |
|
|
443
445
|
| `--timeout` | `10m` | Activity timeout per job |
|
|
444
|
-
| `--max-retries` | `0` | Retry
|
|
445
|
-
| `--retry-backoff-multiplier` | `1.5` |
|
|
446
|
+
| `--max-retries` | `0` | Retry execution-stage ACP failures or timeouts N times |
|
|
447
|
+
| `--retry-backoff-multiplier` | `1.5` | Multiplier applied to the next timeout after each retry |
|
|
446
448
|
| `--tail-lines` | `30` | Log lines shown per job in UI |
|
|
447
449
|
| `--add-dir` | | Additional directories to allow (repeatable) |
|
|
448
450
|
| `--auto-commit` | `false` | Auto-commit after each batch |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@compozy/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.6",
|
|
5
5
|
"description": "Compozy CLI",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "node install.js",
|
|
@@ -27,69 +27,69 @@
|
|
|
27
27
|
},
|
|
28
28
|
"archives": {
|
|
29
29
|
"darwin-arm64": {
|
|
30
|
-
"name": "compozy_0.1.
|
|
31
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
30
|
+
"name": "compozy_0.1.6_darwin_arm64.tar.gz",
|
|
31
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.6/compozy_0.1.6_darwin_arm64.tar.gz",
|
|
32
32
|
"bins": [
|
|
33
33
|
"compozy"
|
|
34
34
|
],
|
|
35
35
|
"format": "tar.gz",
|
|
36
36
|
"checksum": {
|
|
37
37
|
"algorithm": "sha256",
|
|
38
|
-
"digest": "
|
|
38
|
+
"digest": "ae5a5962cb6f4eb8f7749092e00084d9432c9f53426a7ee2b437a81f7822520d"
|
|
39
39
|
},
|
|
40
|
-
"wrappedIn": "compozy_0.1.
|
|
40
|
+
"wrappedIn": "compozy_0.1.6_darwin_arm64"
|
|
41
41
|
},
|
|
42
42
|
"darwin-x64": {
|
|
43
|
-
"name": "compozy_0.1.
|
|
44
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
43
|
+
"name": "compozy_0.1.6_darwin_x86_64.tar.gz",
|
|
44
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.6/compozy_0.1.6_darwin_x86_64.tar.gz",
|
|
45
45
|
"bins": [
|
|
46
46
|
"compozy"
|
|
47
47
|
],
|
|
48
48
|
"format": "tar.gz",
|
|
49
49
|
"checksum": {
|
|
50
50
|
"algorithm": "sha256",
|
|
51
|
-
"digest": "
|
|
51
|
+
"digest": "ca3dee3e51a800aea8b25843c46cb8e61ab65246e6037c6950249dd273a8e3b6"
|
|
52
52
|
},
|
|
53
|
-
"wrappedIn": "compozy_0.1.
|
|
53
|
+
"wrappedIn": "compozy_0.1.6_darwin_x86_64"
|
|
54
54
|
},
|
|
55
55
|
"linux-arm64": {
|
|
56
|
-
"name": "compozy_0.1.
|
|
57
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
56
|
+
"name": "compozy_0.1.6_linux_arm64.tar.gz",
|
|
57
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.6/compozy_0.1.6_linux_arm64.tar.gz",
|
|
58
58
|
"bins": [
|
|
59
59
|
"compozy"
|
|
60
60
|
],
|
|
61
61
|
"format": "tar.gz",
|
|
62
62
|
"checksum": {
|
|
63
63
|
"algorithm": "sha256",
|
|
64
|
-
"digest": "
|
|
64
|
+
"digest": "5e36dddb31320c70fded3bdff5ca4bfa2923c7291cc145a8f43fd12044dea7fe"
|
|
65
65
|
},
|
|
66
|
-
"wrappedIn": "compozy_0.1.
|
|
66
|
+
"wrappedIn": "compozy_0.1.6_linux_arm64"
|
|
67
67
|
},
|
|
68
68
|
"linux-x64": {
|
|
69
|
-
"name": "compozy_0.1.
|
|
70
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
69
|
+
"name": "compozy_0.1.6_linux_x86_64.tar.gz",
|
|
70
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.6/compozy_0.1.6_linux_x86_64.tar.gz",
|
|
71
71
|
"bins": [
|
|
72
72
|
"compozy"
|
|
73
73
|
],
|
|
74
74
|
"format": "tar.gz",
|
|
75
75
|
"checksum": {
|
|
76
76
|
"algorithm": "sha256",
|
|
77
|
-
"digest": "
|
|
77
|
+
"digest": "eaec0ad0fc33bb2821b90d9f96d483edc30b1f5e064f04ffbc6a72193aee69af"
|
|
78
78
|
},
|
|
79
|
-
"wrappedIn": "compozy_0.1.
|
|
79
|
+
"wrappedIn": "compozy_0.1.6_linux_x86_64"
|
|
80
80
|
},
|
|
81
81
|
"win32-x64": {
|
|
82
|
-
"name": "compozy_0.1.
|
|
83
|
-
"url": "https://github.com/compozy/compozy/releases/download/v0.1.
|
|
82
|
+
"name": "compozy_0.1.6_windows_x86_64.zip",
|
|
83
|
+
"url": "https://github.com/compozy/compozy/releases/download/v0.1.6/compozy_0.1.6_windows_x86_64.zip",
|
|
84
84
|
"bins": [
|
|
85
85
|
"compozy.exe"
|
|
86
86
|
],
|
|
87
87
|
"format": "zip",
|
|
88
88
|
"checksum": {
|
|
89
89
|
"algorithm": "sha256",
|
|
90
|
-
"digest": "
|
|
90
|
+
"digest": "681d067e2ad7436d8a01a9a129f5f283065cf015cfb8af046430feaeb006ee09"
|
|
91
91
|
},
|
|
92
|
-
"wrappedIn": "compozy_0.1.
|
|
92
|
+
"wrappedIn": "compozy_0.1.6_windows_x86_64"
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
}
|