getgloss 0.3.0 → 0.4.1
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 +12 -18
- package/dist/cli/index.js +397 -299
- package/dist/cli/index.js.map +1 -1
- package/dist/server/daemon.js +239 -28
- package/dist/server/daemon.js.map +1 -1
- package/dist/web/assets/index-Da2TNJX9.js +188 -0
- package/dist/web/assets/index-uGiivUSv.css +1 -0
- package/dist/web/index.html +2 -2
- package/dist/web/prompt.md +13 -6
- package/dist/web/setup/index.html +4 -1
- package/dist/web/setup.md +18 -4
- package/package.json +2 -4
- package/skill/SKILL.md +7 -2
- package/dist/mcp/index.js +0 -378
- package/dist/mcp/index.js.map +0 -1
- package/dist/web/assets/index-DuGSsf8O.js +0 -181
- package/dist/web/assets/index-SRKfUpIg.css +0 -1
package/README.md
CHANGED
|
@@ -51,8 +51,8 @@ npx skills add iamrajjoshi/gloss --skill gloss -a claude-code
|
|
|
51
51
|
`-g` installs to `~/.claude/skills/`, `-a claude-code` targets Claude Code, and
|
|
52
52
|
`--skill gloss` installs only the Gloss skill folder from the repo. The skill
|
|
53
53
|
teaches agents to run `gloss open --json`, wait for browser submission, read
|
|
54
|
-
`feedbackPath`, apply comments, validate, and mark the review
|
|
55
|
-
|
|
54
|
+
`feedbackPath`, apply comments, validate, and mark comments or the review
|
|
55
|
+
resolved with `gloss resolve`.
|
|
56
56
|
|
|
57
57
|
The hosted install script remains npm-only:
|
|
58
58
|
|
|
@@ -65,10 +65,10 @@ curl -fsSL https://getgloss.dev/install.sh | sh
|
|
|
65
65
|
```text
|
|
66
66
|
gloss open [--base <ref>] [--print-url] [--no-open] [--json] [--no-watch] [--timeout <s>]
|
|
67
67
|
gloss watch <reviewId>
|
|
68
|
+
gloss resolve <reviewId> [--comment <commentId>] [--summary <text>] [--json]
|
|
68
69
|
gloss start [--port <port>]
|
|
69
70
|
gloss status
|
|
70
71
|
gloss stop
|
|
71
|
-
gloss mcp
|
|
72
72
|
gloss doctor
|
|
73
73
|
```
|
|
74
74
|
|
|
@@ -85,7 +85,7 @@ keeps the old behavior and does not fall back to a branch diff.
|
|
|
85
85
|
|
|
86
86
|
## Feedback Files
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
Submitted reviews are written to:
|
|
89
89
|
|
|
90
90
|
```text
|
|
91
91
|
~/.gloss/reviews/<reviewId>/
|
|
@@ -97,20 +97,14 @@ Completed reviews are written to:
|
|
|
97
97
|
```
|
|
98
98
|
|
|
99
99
|
`feedback.json` is the machine-readable payload. `feedback.md` is a readable
|
|
100
|
-
summary ordered by file and line.
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
- `get_review`
|
|
109
|
-
- `watch_review`
|
|
110
|
-
- `get_review_feedback`
|
|
111
|
-
- `mark_review_resolved`
|
|
112
|
-
|
|
113
|
-
The MCP process talks to the same localhost server as the CLI.
|
|
100
|
+
summary ordered by file and line. `resolved.json` is mutable resolution
|
|
101
|
+
progress for individual comments and the full review. After applying feedback,
|
|
102
|
+
use `gloss resolve <reviewId> --comment <commentId> --summary "..."` for a
|
|
103
|
+
single comment or `gloss resolve <reviewId> --summary "..."` for the whole
|
|
104
|
+
review. Set `GLOSS_STATE_DIR` to use an isolated state root for tests or
|
|
105
|
+
development.
|
|
106
|
+
For a follow-up pass after fixes or new commits, start a fresh session with
|
|
107
|
+
`gloss open --json`.
|
|
114
108
|
|
|
115
109
|
## Development
|
|
116
110
|
|