@codeagentswarm/cas-cloud 0.0.2 → 0.0.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 +10 -5
- package/dist/cas.js +1822 -124
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,9 +39,9 @@ opaque project and start one new Mac session with a prompt when you explicitly
|
|
|
39
39
|
ask. Only assistant prose returns; paths, reasoning and tool output do not.
|
|
40
40
|
|
|
41
41
|
Desktop's ordinary CAS Cloud pairing provides the reverse direction. With both
|
|
42
|
-
links approved, a Mac session can perform the same explicit read
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
links approved, a Mac session can perform the same explicit read, remote start,
|
|
43
|
+
or focused request/response exchange with an eligible CAS Cloud session. Those
|
|
44
|
+
messages stay end-to-end encrypted and are not retained for replay by the relay.
|
|
45
45
|
|
|
46
46
|
Except for components identified in `THIRD_PARTY_NOTICES.md`, this is
|
|
47
47
|
source-available software under the PolyForm Noncommercial License 1.0.0, not
|
|
@@ -153,6 +153,11 @@ and it strips secret-like variables before invoking npm. If the runtime sets
|
|
|
153
153
|
times out after ten minutes by default; systemd leaves the bounded health check
|
|
154
154
|
and rollback in control instead of killing the updater mid-switch.
|
|
155
155
|
|
|
156
|
+
An operator deploying an unpublished local tarball without changing its package
|
|
157
|
+
version can set `CAS_CLI_REINSTALL_SAME_VERSION=1` for that one update command.
|
|
158
|
+
The updater accepts only an absolute local file in this mode, keys the release by
|
|
159
|
+
its SHA-256 digest, and keeps the same idle guard, health check and rollback.
|
|
160
|
+
|
|
156
161
|
### One-time migration from `codeagentswarm`
|
|
157
162
|
|
|
158
163
|
The updater bundled with legacy `codeagentswarm@2.4.0` cannot recognize a scoped
|
|
@@ -161,8 +166,8 @@ new updater once through `npx` from the same environment as the updater service:
|
|
|
161
166
|
|
|
162
167
|
```sh
|
|
163
168
|
CAS_CLI_INSTALL_ROOT="$HOME/.local/share/codeagentswarm-cloud" \
|
|
164
|
-
CAS_CLI_UPDATE_SPEC="@codeagentswarm/cas-cloud@0.0.
|
|
165
|
-
npx --yes "@codeagentswarm/cas-cloud@0.0.
|
|
169
|
+
CAS_CLI_UPDATE_SPEC="@codeagentswarm/cas-cloud@0.0.6" \
|
|
170
|
+
npx --yes "@codeagentswarm/cas-cloud@0.0.6" update
|
|
166
171
|
```
|
|
167
172
|
|
|
168
173
|
Carry over any non-secret `CAS_CLI_STATE`, `CAS_CLI_SYSTEMD_SCOPE` and
|