ugly-app 0.1.135 → 0.1.136
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/dist/cli/version.d.ts +1 -1
- package/dist/cli/version.js +1 -1
- package/package.json +1 -1
- package/src/cli/version.ts +1 -1
- package/templates/CLAUDE.md +6 -0
package/dist/cli/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const CLI_VERSION = "0.1.
|
|
1
|
+
export declare const CLI_VERSION = "0.1.136";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/cli/version.js
CHANGED
package/package.json
CHANGED
package/src/cli/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Auto-generated by prebuild — do not edit manually
|
|
2
|
-
export const CLI_VERSION = "0.1.
|
|
2
|
+
export const CLI_VERSION = "0.1.136";
|
package/templates/CLAUDE.md
CHANGED
|
@@ -67,3 +67,9 @@ Every endpoint is accessible via both WebSocket (`socket.request(name, input)`)
|
|
|
67
67
|
## Feedback system
|
|
68
68
|
Feedback button is always at `[data-id="feedback-button"]` (bottom-right).
|
|
69
69
|
User feedback history: `GET /my_feedback` (requires auth cookie).
|
|
70
|
+
|
|
71
|
+
## Handling "needs images" feedback
|
|
72
|
+
When user feedback mentions missing or needed images:
|
|
73
|
+
1. Use `npm run imageGen -- "descriptive prompt" --output client/assets/<name>.png` to generate the image
|
|
74
|
+
2. Reference the saved file in the relevant component (`/assets/<name>.png`)
|
|
75
|
+
3. Run `npm run build` to verify
|