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 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 resolved when MCP
55
- tools are available.
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
- Completed reviews are written to:
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. Set `GLOSS_STATE_DIR` to use an isolated
101
- state root for tests or development.
102
-
103
- ## MCP
104
-
105
- `gloss mcp` starts a stdio MCP server exposing:
106
-
107
- - `list_pending_reviews`
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