vibespot 1.3.0 → 1.5.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 CHANGED
@@ -36,8 +36,10 @@ Opens a browser with:
36
36
  - **Project sidebar** — create, open, resume, or delete projects; page tree shows all templates with type badges and module counts
37
37
  - **Module management** — reorder via drag-and-drop, edit fields, delete modules from module list or module library
38
38
  - **Starter templates** — SaaS, Portfolio, Restaurant, Event, Coming Soon, Blog — pre-built page bundles for instant preview with no AI wait
39
- - **Content types** — landing pages, email templates, and blog templates all supported from the UI page type dropdown
39
+ - **Content types** — landing pages, email templates, and blog templates all supported from asset-type cards and the page type dropdown
40
+ - **Email client preview** — renders your email in Gmail, Outlook Desktop, and Apple Mail with per-client rendering notes
40
41
  - **Split-pane view** — preview + code editor side by side in a 50/50 layout
42
+ - **Project overview table** — sortable table with page, email, module, and brand asset counts per project, plus bulk duplicate/delete
41
43
  - **Brand kit enforcement** — colors, fonts, and logo are injected as constraints into AI generation; validator warns on off-brand values
42
44
  - **Interact mode** — unified mode that auto-detects whether you're editing content inline or referencing modules in chat
43
45
  - **Undo/redo** — Ctrl+Z / Ctrl+Y step through version history; a compact timeline strip shows every generation step
@@ -137,6 +139,7 @@ vibeSpot needs an AI engine to generate code. Use **one** of these:
137
139
  | Claude OAuth | Run `claude setup-token` → paste token | Uses your Claude Pro/Max subscription |
138
140
  | OpenAI API | No install — just need an API key | Any OpenAI model |
139
141
  | Gemini API | No install — just need an API key | Google Gemini models |
142
+ | [Langdock](https://langdock.com) | No install — just need a Langdock API key | EU-hosted gateway (Frankfurt), GDPR-compliant |
140
143
  | [Claude Code](https://claude.ai/code) | `npm install -g @anthropic-ai/claude-code` | Uses your Claude subscription |
141
144
  | [Gemini CLI](https://github.com/google-gemini/gemini-cli) | `npm install -g @google/gemini-cli` | Uses your Google AI account |
142
145
  | [OpenAI Codex](https://github.com/openai/codex) | `npm install -g @openai/codex` | Uses your OpenAI account |
@@ -153,6 +156,18 @@ The browser opens automatically. Enter your API key in the setup screen, create
153
156
 
154
157
  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.
155
158
 
159
+ ### Run with Docker
160
+
161
+ Prefer not to install Node.js? Pull the published image instead:
162
+
163
+ ```bash
164
+ docker run --rm -p 4200:4200 \
165
+ -e ANTHROPIC_API_KEY=sk-ant-... \
166
+ ghcr.io/borismichel/vibespot:latest
167
+ ```
168
+
169
+ Or use the bundled `docker-compose.yml` (Caddy + Postgres + auth-gate slot) for production deployments. See [docs/docker.md](docs/docker.md) for the full guide.
170
+
156
171
  ## After Building Your Page
157
172
 
158
173
  Once your modules are ready:
@@ -166,10 +181,31 @@ Once your modules are ready:
166
181
  7. Edit text, images, and colors in the page editor
167
182
  8. Preview and publish!
168
183
 
184
+ ## Docker Deployment
185
+
186
+ Run vibeSpot as a containerised service for your team — LAN, VPN, or HTTPS.
187
+
188
+ ```bash
189
+ cp .env.example .env # set at least one AI API key
190
+ docker compose up -d # plain HTTP on port 4200
191
+ ```
192
+
193
+ For public HTTPS with automatic TLS via Caddy:
194
+
195
+ ```bash
196
+ # In .env, set VIBESPOT_DOMAIN=vibespot.example.com
197
+ docker compose --profile https up -d
198
+ ```
199
+
200
+ All AI keys, engine selection, and integrations are configurable via environment variables — see `.env.example` for the full list. Themes and config persist across container restarts via named Docker volumes.
201
+
202
+ For reverse proxy configs (nginx, Traefik, k8s Ingress), Kubernetes manifests, backup/restore, and security guidance, see the full **[Docker Deployment Guide](docs/docker-deployment.md)**.
203
+
169
204
  ## Commands
170
205
 
171
206
  ```bash
172
207
  vibespot # Vibe coding web UI (default)
208
+ vibespot email # Start in email template mode
173
209
  vibespot wizard # Classic CLI wizard
174
210
  vibespot init # Check and install required tools
175
211
  vibespot convert # Convert a React project (no upload)
@@ -186,30 +222,44 @@ Most users only need `npx vibespot` — the web UI handles everything.
186
222
 
187
223
  Settings are managed in the **Settings** panel (tabbed: AI, HubSpot, Figma, GitHub, vibeSpot) and saved in `~/.vibespot/config.json`:
188
224
 
189
- - `aiEngine` — Your preferred AI engine (`anthropic-api`, `claude-oauth`, `openai-api`, `gemini-api`, `claude-code`, `gemini-cli`, `codex-cli`)
190
- - `anthropicApiKey`, `openaiApiKey`, `geminiApiKey` — API keys (stored locally, never sent except to the provider)
225
+ - `aiEngine` — Your preferred AI engine (`anthropic-api`, `claude-oauth`, `openai-api`, `gemini-api`, `langdock-api`, `claude-code`, `gemini-cli`, `codex-cli`)
226
+ - `anthropicApiKey`, `openaiApiKey`, `geminiApiKey`, `langdockApiKey` — API keys (stored locally, never sent except to the provider)
227
+ - `langdockBaseUrl` — Override for self-hosted Langdock deployments (default: `https://api.langdock.com/anthropic`)
191
228
  - `hubspotAccounts` — Connected HubSpot accounts (PAK-based auth)
192
229
  - `hubspotUploadMode` — `api` (default, direct API) or `cli` (legacy, requires HubSpot CLI)
193
230
  - `agenticConcurrency` — Max parallel module generation calls (default: 20)
194
231
  - `figmaToken` — Figma Personal Access Token for design import
195
232
  - `enabledCLITools` — Which CLI tools to detect on settings load
196
233
 
234
+ All settings can also be provided via environment variables for headless/Docker deployments — see [Docker Deployment](docs/docker-deployment.md) and `.env.example` for the full list.
235
+
197
236
  ## What's New
198
237
 
199
238
  ### Unreleased
239
+ - **Docker deployment** — run vibeSpot as a containerised service with `docker compose up -d`. Includes Caddy auto-HTTPS, env var configuration for all AI keys/integrations, named volume persistence, health check endpoint, and deployment docs for nginx/k8s
240
+ - **Langdock AI adapter** — EU-hosted AI engine via Langdock gateway
241
+
242
+ ### v1.3.1
243
+ - **Project overview table** — sortable table view for all projects with page, email, module, and brand asset counts
244
+ - **Bulk operations** — select multiple projects for bulk duplicate or delete
245
+ - **Email client preview** — preview emails as they render in Gmail, Outlook Desktop, and Apple Mail
246
+ - **Pipeline robustness** — auto-regenerate modules with broken fieldsJson; tightened similarity checks
247
+ - **Email deploy fixes** — correct dnd_area naming, module references for drag-and-drop editor, deploy UX improvements
248
+ - **Security hardening** — eliminated shell injection in git operations, path-traversal guards on theme routes
249
+
250
+ ### v1.3.0
251
+ - **Email template generation** — full pipeline support for HubSpot email templates: email-specific prompts, table-based layout, MSO/VML compatibility, 3 email starters, 5 email plan templates, and email validator auto-fix
200
252
  - **Multi-page sites** — create full HubSpot sites from a single prompt with shared modules, page tree sidebar, and cross-page navigation validation
201
253
  - **Inline WYSIWYG editing** — click text, images, and links directly in the live preview to edit inline
202
254
  - **Per-section visual controls** — hover toolbar with color pickers, spacing sliders, image swap, and font size controls
203
255
  - **Blog template generation** — blog as a content type with HubSpot blog variable support and a Blog Content Hub starter template
204
256
  - **Split-pane view** — preview + code editor side by side
205
257
  - **Brand kit enforcement** — colors, fonts, and logo injected as AI constraints with off-brand warnings
206
- - **Workspace tab navigation** — Pages, Brand, Library, Marketplace, Settings tabs replace the flat dashboard
258
+ - **Workspace tab navigation** — Pages, Brand, Library, Marketplace, Settings tabs
259
+ - **Guided entry with asset-type cards** — Landing Page, Email, Website, Blog Post, From Template, and Import
207
260
  - **First-visit onboarding** — 3-step walkthrough for new users
208
- - **CSS token system** — comprehensive design tokens for spacing, typography, z-index, transitions, and component library
209
- - **HubSpot terminology alignment** — UI copy uses HubSpot's canonical terms (Module, Module Library, Brand Kit)
210
-
211
- ### v1.3.0
212
- - **Email template generation** — full pipeline support for HubSpot email templates: email-specific prompts, table-based layout, MSO/VML compatibility, 3 email starters, 5 email plan templates, and email validator auto-fix
261
+ - **Material Design SVG icons** — replaced UI emoji glyphs with crisp SVG icons
262
+ - **Project assets browser** — Library tab shows project files (images, fonts, scripts) instead of starter templates
213
263
 
214
264
  ### v1.2.0
215
265
  - **Inverse pipeline (HubSpot → vibeSpot)** — reverse-engineer imported HubSpot themes: design token extraction, module graph, field schema flags, and round-trip risk detection