getgloss 0.8.3 → 0.8.5
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 +13 -2
- package/dist/cli/index.js +423 -118
- package/dist/cli/index.js.map +1 -1
- package/dist/server/daemon.js +183 -67
- package/dist/server/daemon.js.map +1 -1
- package/dist/web/setup.md +7 -2
- package/package.json +1 -1
- package/skill/SKILL.md +6 -0
package/README.md
CHANGED
|
@@ -100,8 +100,19 @@ compares only against the requested ref and does not switch to a branch diff.
|
|
|
100
100
|
Use `gloss open --review <reviewId> --json` after applying feedback to capture
|
|
101
101
|
the next diff as another turn in the same browser review.
|
|
102
102
|
The background server exits automatically after a short idle window with no
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
live review clients. Pending review artifacts stay on disk and can be resumed,
|
|
104
|
+
but they do not keep the daemon alive by themselves. `gloss doctor` reports
|
|
105
|
+
unmanaged daemon processes, and normal startup/status commands also clean up
|
|
106
|
+
clearly stale daemons. `gloss stop --all` cleans up every Gloss daemon for the
|
|
107
|
+
current user.
|
|
108
|
+
|
|
109
|
+
You do not need to unlock `~/.gloss/server.json` after finishing a review.
|
|
110
|
+
That file is only the background daemon pointer, not a review lock. If a
|
|
111
|
+
command reports a permission error while cleaning it up, run `gloss doctor`,
|
|
112
|
+
then try `gloss stop --all` from a normal terminal. If macOS flags made the
|
|
113
|
+
file immutable, inspect with `ls -lOe ~/.gloss ~/.gloss/server.json` and clear
|
|
114
|
+
the flag with `chflags nouchg ~/.gloss/server.json`. For sandboxed agents, set
|
|
115
|
+
`GLOSS_STATE_DIR` to a writable directory.
|
|
105
116
|
|
|
106
117
|
`gloss clear` deletes completed review artifacts older than 30 days from
|
|
107
118
|
`~/.gloss/reviews` while always preserving pending reviews. Use
|