glyph-ai 0.3.3 → 0.3.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 +2 -2
- package/bundled/server/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,8 +33,8 @@ When you ask Claude Code to improve a component, Glyph returns a design brief wi
|
|
|
33
33
|
## Commands
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
glyph init # Set up Glyph and start the server
|
|
37
|
-
glyph stop # Stop the server
|
|
36
|
+
npx glyph init # Set up Glyph and start the server
|
|
37
|
+
npx glyph stop # Stop the server
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
## Requirements
|
package/bundled/server/index.js
CHANGED
|
@@ -207,7 +207,7 @@ async function discardVariation() {
|
|
|
207
207
|
// Routes
|
|
208
208
|
// ---------------------------------------------------------------------------
|
|
209
209
|
app.get('/health', (_req, res) => {
|
|
210
|
-
res.json({ status: 'ok', version: '0.3.
|
|
210
|
+
res.json({ status: 'ok', version: '0.3.4' });
|
|
211
211
|
});
|
|
212
212
|
app.get('/overlay.js', (_req, res) => {
|
|
213
213
|
console.log('[Glyph] Serving overlay.js');
|