getgloss 0.2.0 → 0.3.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 +23 -10
- package/dist/cli/index.js +302 -8
- package/dist/cli/index.js.map +1 -1
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/server/daemon.js +110 -45
- package/dist/server/daemon.js.map +1 -1
- package/dist/web/assets/index-DuGSsf8O.js +181 -0
- package/dist/web/assets/index-SRKfUpIg.css +1 -0
- package/dist/web/index.html +2 -2
- package/dist/web/logo-mark.svg +12 -0
- package/dist/web/prompt.md +2 -2
- package/dist/web/setup/index.html +18 -8
- package/dist/web/setup.md +21 -5
- package/package.json +1 -1
- package/skill/SKILL.md +15 -10
- package/dist/web/assets/index-BQXNNRgM.css +0 -1
- package/dist/web/assets/index-xfsP7fu_.js +0 -186
- package/dist/web/skill/SKILL.md +0 -22
package/dist/web/skill/SKILL.md
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: gloss
|
|
3
|
-
description: Open local code changes in Gloss for browser review, wait for feedback, and address the returned comments.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Gloss
|
|
7
|
-
|
|
8
|
-
Use this skill when the user asks to review local code changes with Gloss, says
|
|
9
|
-
"gloss this", "open gloss", "review my changes", or wants a browser-based local
|
|
10
|
-
diff review before a PR.
|
|
11
|
-
|
|
12
|
-
## Workflow
|
|
13
|
-
|
|
14
|
-
1. Run `gloss open --json --base ${base:-HEAD}` from the repo root.
|
|
15
|
-
2. Wait for the command to exit. It blocks until the browser review is submitted.
|
|
16
|
-
3. Parse the JSON output and read `feedbackPath` if present.
|
|
17
|
-
4. Address each comment in order by file and line.
|
|
18
|
-
5. Validate the fix with the narrowest relevant tests or build.
|
|
19
|
-
6. Summarize the comments addressed and the validation performed.
|
|
20
|
-
|
|
21
|
-
If the user asks only to open the review and not wait, run
|
|
22
|
-
`gloss open --json --no-watch`.
|