getgloss 0.13.3 → 0.14.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 +16 -7
- package/dist/cli/index.js +380 -30
- package/dist/cli/index.js.map +1 -1
- package/dist/server/daemon.js +462 -78
- package/dist/server/daemon.js.map +1 -1
- package/dist/web/assets/index-D7vKIB2t.js +307 -0
- package/dist/web/assets/index-DuRtp1zX.css +1 -0
- package/dist/web/assets/{syntax-Cl5tCgsJ.js → syntax-CD0nrxxU.js} +1 -1
- package/dist/web/index.html +2 -2
- package/dist/web/prompt.md +9 -2
- package/dist/web/setup/index.html +7 -4
- package/dist/web/setup.md +15 -5
- package/package.json +1 -1
- package/skill/SKILL.md +7 -4
- package/dist/web/assets/index-8vMs5Sir.js +0 -307
- package/dist/web/assets/index-CHeLVBIi.css +0 -1
package/README.md
CHANGED
|
@@ -62,7 +62,8 @@ npx skills add iamrajjoshi/gloss --skill gloss -a claude-code
|
|
|
62
62
|
`-g` installs to `~/.claude/skills/`, `-a claude-code` targets Claude Code, and
|
|
63
63
|
`--skill gloss` installs only the Gloss skill folder from the repo. The skill
|
|
64
64
|
teaches agents to run `gloss open --json`, wait for browser submission, read
|
|
65
|
-
`feedbackPath`,
|
|
65
|
+
`feedbackPath`, claim work with `gloss claim`, post visible progress with
|
|
66
|
+
`gloss note`, apply comments, validate, continue the same review with
|
|
66
67
|
`gloss open --review <reviewId> --json`, and mark comments or turns resolved
|
|
67
68
|
with `gloss resolve`.
|
|
68
69
|
|
|
@@ -77,6 +78,8 @@ curl -fsSL https://getgloss.dev/install.sh | sh
|
|
|
77
78
|
```text
|
|
78
79
|
gloss open [--base <ref>] [--review <reviewId>] [--print-url] [--no-open] [--json] [--no-watch] [--timeout <s>]
|
|
79
80
|
gloss watch <reviewId>
|
|
81
|
+
gloss claim <reviewId> [--message <text>] [--turn <id-or-index>] [--json]
|
|
82
|
+
gloss note <reviewId> --message <text> [--status claimed|working|blocked|completed|failed] [--turn <id-or-index>] [--json]
|
|
80
83
|
gloss resolve <reviewId> [--comment <commentId>] [--turn <id-or-index>] [--summary <text>] [--json]
|
|
81
84
|
gloss start [--port <port>]
|
|
82
85
|
gloss status
|
|
@@ -99,12 +102,16 @@ compares only against the requested ref and does not switch to a branch diff.
|
|
|
99
102
|
`--no-watch` when a caller only needs to open the review and return immediately.
|
|
100
103
|
Use `gloss open --review <reviewId> --json` after applying feedback to capture
|
|
101
104
|
the next diff as another turn in the same browser review.
|
|
105
|
+
Use `gloss claim <reviewId> --json` when an agent starts handling submitted
|
|
106
|
+
feedback, and `gloss note <reviewId> --status working --message "..."` for
|
|
107
|
+
progress that should appear in the browser review.
|
|
102
108
|
The background server exits automatically after a short idle window with no
|
|
103
109
|
live review clients. Pending review artifacts stay on disk and can be resumed,
|
|
104
|
-
but they do not keep the daemon alive by themselves.
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
110
|
+
but they do not keep the daemon alive by themselves. Gloss remembers the last
|
|
111
|
+
successful port and tries it first on restart, so an old review tab can usually
|
|
112
|
+
recover with a refresh after idle shutdown. `gloss doctor` reports unmanaged
|
|
113
|
+
daemon processes, and normal startup/status commands also clean up clearly stale
|
|
114
|
+
daemons. `gloss stop --all` cleans up every Gloss daemon for the current user.
|
|
108
115
|
|
|
109
116
|
You do not need to unlock `~/.gloss/server.json` after finishing a review.
|
|
110
117
|
That file is only the background daemon pointer, not a review lock. If a
|
|
@@ -145,6 +152,7 @@ Submitted reviews are written to:
|
|
|
145
152
|
```text
|
|
146
153
|
~/.gloss/reviews/<reviewId>/
|
|
147
154
|
meta.json
|
|
155
|
+
events.jsonl
|
|
148
156
|
turns/
|
|
149
157
|
<turnId>/
|
|
150
158
|
turn.json
|
|
@@ -157,8 +165,9 @@ Submitted reviews are written to:
|
|
|
157
165
|
`feedback.json` is the machine-readable payload and includes `reviewScope` for
|
|
158
166
|
submitted commit-preview scope. `feedback.md` is a readable summary with
|
|
159
167
|
general comments first, then file comments ordered by path and line.
|
|
160
|
-
`
|
|
161
|
-
|
|
168
|
+
`events.jsonl` is the durable review timeline used to replay browser updates
|
|
169
|
+
after reconnects or server restarts. `resolved.json` is mutable resolution
|
|
170
|
+
progress for individual comments and the turn. After applying feedback, use
|
|
162
171
|
`gloss resolve <reviewId> --comment <commentId> --summary "..."` for a single
|
|
163
172
|
comment or `gloss resolve <reviewId> --turn <id-or-index> --summary "..."` for a
|
|
164
173
|
specific turn. Without `--turn`, whole-review resolution targets the latest
|