vibespot 1.0.0 → 1.0.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 +3 -3
- package/dist/index.js +110 -99
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/ui/chat.js +17 -8
- package/ui/styles.css +12 -1
package/README.md
CHANGED
|
@@ -43,10 +43,10 @@ Opens a browser with:
|
|
|
43
43
|
|
|
44
44
|
When you send a message, vibeSpot runs a 4-stage pipeline:
|
|
45
45
|
|
|
46
|
-
1. **Intent Analyzer** — classifies your request and plans which modules to create, modify, or keep unchanged
|
|
47
|
-
2. **Page Architect** — designs the visual system (CSS variables, shared styles) then plans module specs
|
|
46
|
+
1. **Intent Analyzer** — classifies your request and plans which modules to create, modify, or keep unchanged. Uses conversation history to resolve back-references ("same section") and corrections ("I meant the hero").
|
|
47
|
+
2. **Page Architect** — designs the visual system (CSS variables, shared styles) then plans module specs. Reports font limitations when web fonts are requested.
|
|
48
48
|
3. **Module Developer** — generates all modules in parallel (up to 20 concurrent)
|
|
49
|
-
4. **Quality Check** — auto-fixes common issues (unbalanced HubL tags, reserved field names, deprecated types, CDN imports)
|
|
49
|
+
4. **Quality Check** — auto-fixes common issues (unbalanced HubL tags, reserved field names, deprecated types, CDN imports). Verifies all modules are in the page order.
|
|
50
50
|
|
|
51
51
|
Completed modules appear in the live preview immediately as each finishes, with themed skeleton placeholders for modules still generating.
|
|
52
52
|
|