conductor-remote 1.65.0 → 1.66.0
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 +5 -0
- package/dist/assets/index-DrKfyo8j.js +47 -0
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/dist-node/src/conductor.applescript +134 -39
- package/dist-node/src/prefs.js +171 -0
- package/dist-node/src/routes.js +3 -0
- package/dist-node/src/server.js +26 -2
- package/dist-node/src/writes.js +34 -9
- package/package.json +1 -1
- package/dist/assets/index-CtlVLl-2.js +0 -47
package/README.md
CHANGED
|
@@ -136,6 +136,11 @@ Open that on the phone and **Add to Home Screen**. The token is stored in
|
|
|
136
136
|
`localStorage`; every `/api/*` call carries it, so other devices on the LAN
|
|
137
137
|
can't read your sessions.
|
|
138
138
|
|
|
139
|
+
Read marks and unsent prompt drafts stay local-first for offline use and are also
|
|
140
|
+
mirrored to `~/Library/Application Support/conductor-remote/prefs.json`. That durable
|
|
141
|
+
copy survives a PWA hostname/origin change and restores the same state on another
|
|
142
|
+
authenticated device. Access tokens and in-flight send state remain device-local.
|
|
143
|
+
|
|
139
144
|
### Deploy (run on login as a background service)
|
|
140
145
|
|
|
141
146
|
The relay must run on the Mac that runs Conductor — it reads the local state DB
|