vibespot 0.7.1 → 0.9.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 +47 -18
- package/dist/index.js +160 -99
- package/dist/index.js.map +1 -1
- package/package.json +5 -1
- package/ui/chat.js +175 -7
- package/ui/index.html +58 -31
- package/ui/settings.js +456 -238
- package/ui/setup.js +205 -18
- package/ui/styles.css +343 -0
- package/ui/upload-panel.js +99 -35
package/README.md
CHANGED
|
@@ -6,9 +6,10 @@ AI-powered HubSpot CMS landing page builder — vibe coding & React converter.
|
|
|
6
6
|
≋ vibeSpot — Build HubSpot Landing Pages with AI
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
**Website:** [vibespot.letsplaywith.tech](https://vibespot.letsplaywith.tech)
|
|
10
|
+
**LinkedIn:** [myvibespot](https://www.linkedin.com/company/myvibespot/)
|
|
11
|
+
|
|
12
|
+
> **Requirements:** Node.js 18+. That's it — vibeSpot connects to HubSpot directly via API. No HubSpot CLI needed.
|
|
12
13
|
|
|
13
14
|
## What It Does
|
|
14
15
|
|
|
@@ -30,8 +31,12 @@ Opens a browser with:
|
|
|
30
31
|
- **Starter templates** — SaaS, Portfolio, Restaurant, Event
|
|
31
32
|
- **GitHub import** — convert existing React projects
|
|
32
33
|
- **Field editor** — tweak text, colors, images directly
|
|
33
|
-
- **
|
|
34
|
-
- **
|
|
34
|
+
- **File uploads** — attach images and documents via drag-and-drop or paperclip button
|
|
35
|
+
- **Upload to HubSpot** — per-file progress, auto-fix, celebration popup with direct portal link
|
|
36
|
+
- **Version history** — per-template git commits with rollback
|
|
37
|
+
- **Light/dark mode** — toggle or auto-detect system preference
|
|
38
|
+
- **Tabbed settings** — AI engines, HubSpot accounts, GitHub, vibeSpot config
|
|
39
|
+
- **ZIP download** — export your theme as a ZIP file
|
|
35
40
|
|
|
36
41
|
### Classic Wizard Mode
|
|
37
42
|
|
|
@@ -72,17 +77,22 @@ npx vibespot
|
|
|
72
77
|
|
|
73
78
|
The browser opens automatically. Enter your API key in the setup screen, create or open a theme, and start chatting.
|
|
74
79
|
|
|
80
|
+
### 4. Connect HubSpot
|
|
81
|
+
|
|
82
|
+
Open **Settings → HubSpot** and add your account with a Personal Access Key (PAK). vibeSpot connects directly via the HubSpot API — no CLI installation needed. You can also switch to legacy CLI mode if you prefer.
|
|
83
|
+
|
|
75
84
|
## After Building Your Page
|
|
76
85
|
|
|
77
86
|
Once your modules are ready:
|
|
78
87
|
|
|
79
88
|
1. Click **Upload to HubSpot** in the toolbar
|
|
80
|
-
2.
|
|
81
|
-
3.
|
|
82
|
-
4.
|
|
83
|
-
5.
|
|
84
|
-
6.
|
|
85
|
-
7.
|
|
89
|
+
2. Watch per-file upload progress with auto-fix for common errors
|
|
90
|
+
3. The celebration popup shows a direct link to your HubSpot portal (EU and NA regions auto-detected)
|
|
91
|
+
4. In HubSpot: **Content** → **Landing Pages** → **Create**
|
|
92
|
+
5. Choose your uploaded theme
|
|
93
|
+
6. Drag your modules onto the page
|
|
94
|
+
7. Edit text, images, and colors in the page editor
|
|
95
|
+
8. Preview and publish!
|
|
86
96
|
|
|
87
97
|
## Commands
|
|
88
98
|
|
|
@@ -99,13 +109,26 @@ Most users only need `npx vibespot` — the web UI handles everything.
|
|
|
99
109
|
|
|
100
110
|
## Configuration
|
|
101
111
|
|
|
102
|
-
Settings are saved in `~/.vibespot/config.json`:
|
|
112
|
+
Settings are managed in the **Settings** panel (tabbed: AI, HubSpot, GitHub, vibeSpot) and saved in `~/.vibespot/config.json`:
|
|
113
|
+
|
|
103
114
|
- `aiEngine` — Your preferred AI engine (`anthropic-api`, `openai-api`, `gemini-api`, `claude-code`, `gemini-cli`, `codex-cli`)
|
|
104
|
-
- `anthropicApiKey` —
|
|
105
|
-
- `
|
|
106
|
-
- `
|
|
107
|
-
- `
|
|
108
|
-
|
|
115
|
+
- `anthropicApiKey`, `openaiApiKey`, `geminiApiKey` — API keys (stored locally, never sent except to the provider)
|
|
116
|
+
- `hubspotAccounts` — Connected HubSpot accounts (PAK-based auth)
|
|
117
|
+
- `hubspotUploadMode` — `api` (default, direct API) or `cli` (legacy, requires HubSpot CLI)
|
|
118
|
+
- `enabledCLITools` — Which CLI tools to detect on settings load
|
|
119
|
+
|
|
120
|
+
## What's New (v0.9)
|
|
121
|
+
|
|
122
|
+
- **HubSpot API mode** — upload, download, and manage themes without the HubSpot CLI
|
|
123
|
+
- **File uploads** — attach images and documents to chat (drag-and-drop or paperclip)
|
|
124
|
+
- **Tabbed settings** — organized into AI, HubSpot, GitHub, and vibeSpot tabs with descriptions
|
|
125
|
+
- **Per-template version history** — scoped git commits, filtered history, safe rollback
|
|
126
|
+
- **Light/dark mode** — system preference detection, persisted toggle
|
|
127
|
+
- **Performance** — 137KB bundle, ETag caching, lazy SDK loading, session index cache
|
|
128
|
+
- **ZIP download** — export themes from the dashboard
|
|
129
|
+
- **Inline rename** — double-click to rename projects and templates
|
|
130
|
+
|
|
131
|
+
See [CHANGELOG.md](CHANGELOG.md) for the full history.
|
|
109
132
|
|
|
110
133
|
## Troubleshooting
|
|
111
134
|
|
|
@@ -113,10 +136,16 @@ Settings are saved in `~/.vibespot/config.json`:
|
|
|
113
136
|
|
|
114
137
|
**"vibeSpot has not been built yet"** — Use `npx vibespot` instead, or run `npm run build` first.
|
|
115
138
|
|
|
116
|
-
**HubSpot upload
|
|
139
|
+
**HubSpot upload failing** — Open Settings → HubSpot and verify your account is connected. Run `vibespot doctor` for diagnostics.
|
|
117
140
|
|
|
118
141
|
**Preview shows default template instead of modules** — Delete the boilerplate modules (button, card, menu, pricing-card, social-follow) using the × button on each module in the sidebar.
|
|
119
142
|
|
|
143
|
+
## Links
|
|
144
|
+
|
|
145
|
+
- **Website:** [vibespot.letsplaywith.tech](https://vibespot.letsplaywith.tech)
|
|
146
|
+
- **LinkedIn:** [myvibespot](https://www.linkedin.com/company/myvibespot/)
|
|
147
|
+
- **npm:** [vibespot](https://www.npmjs.com/package/vibespot)
|
|
148
|
+
|
|
120
149
|
## License
|
|
121
150
|
|
|
122
151
|
Personal use only — see [LICENSE](LICENSE) for details. Commercial licensing available on request.
|