getgloss 0.8.3 → 0.8.4
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 +8 -0
- package/dist/cli/index.js +221 -86
- package/dist/cli/index.js.map +1 -1
- package/dist/server/daemon.js +93 -25
- 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/dist/web/setup.md
CHANGED
|
@@ -178,8 +178,13 @@ gloss open --review <reviewId> --json
|
|
|
178
178
|
`gloss open --json` intentionally waits until browser submission or timeout.
|
|
179
179
|
Use `--no-watch` when the caller only needs to open the review. The background
|
|
180
180
|
daemon exits automatically after a short idle window with no pending reviews.
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
You do not need to unlock `~/.gloss/server.json` after finishing a review; it is
|
|
182
|
+
only the background daemon pointer. If cleanup looks stale or reports a
|
|
183
|
+
permission error, run `gloss doctor`; use `gloss stop --all` when you want to
|
|
184
|
+
terminate all Gloss daemon processes for the current user. If macOS flags made
|
|
185
|
+
the file immutable, inspect with `ls -lOe ~/.gloss ~/.gloss/server.json` and
|
|
186
|
+
clear the flag with `chflags nouchg ~/.gloss/server.json`. For sandboxed agents,
|
|
187
|
+
set `GLOSS_STATE_DIR` to a writable directory.
|
|
183
188
|
Use `gloss clear --dry-run` to preview old completed review artifacts, and
|
|
184
189
|
`gloss clear` to delete completed artifacts older than 30 days. Pending reviews
|
|
185
190
|
are always preserved.
|
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -78,5 +78,11 @@ pending reviews. Use `gloss doctor` for stale process cleanup diagnostics,
|
|
|
78
78
|
`gloss clear --dry-run` before deleting completed artifacts older than 30 days
|
|
79
79
|
with `gloss clear`. Pending reviews are always preserved.
|
|
80
80
|
|
|
81
|
+
Agents should not ask the user to unlock `~/.gloss/server.json` after a review.
|
|
82
|
+
That file is only a daemon pointer. If cleanup reports a permission error, run
|
|
83
|
+
`gloss doctor`; if needed, have the user fix ownership, write permissions, or
|
|
84
|
+
platform-specific immutable/read-only attributes on the state directory, or set
|
|
85
|
+
`GLOSS_STATE_DIR` to a writable sandbox state directory.
|
|
86
|
+
|
|
81
87
|
For less-common options, run `gloss open --help` or `gloss --help` instead of
|
|
82
88
|
guessing flags.
|