vibespot 1.0.3 → 1.0.5
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 +4 -2
- package/dist/index.js +386 -244
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/ui/chat.js +11 -12
- package/ui/dashboard.js +59 -3
- package/ui/index.html +1 -0
- package/ui/settings.js +73 -1
- package/ui/styles.css +1 -7
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Opens a browser with:
|
|
|
28
28
|
- **Live preview on the right** — see your page render in real-time
|
|
29
29
|
- **Agentic pipeline** — multi-stage AI generation with real-time progress
|
|
30
30
|
- **Project sidebar** — create, open, resume, or delete projects
|
|
31
|
-
- **Module management** — reorder via drag-and-drop, edit fields, delete modules
|
|
31
|
+
- **Module management** — reorder via drag-and-drop, edit fields, delete modules from module list or module library
|
|
32
32
|
- **Starter templates** — SaaS, Portfolio, Restaurant, Event
|
|
33
33
|
- **GitHub import** — convert existing React projects
|
|
34
34
|
- **Field editor** — tweak text, colors, images directly
|
|
@@ -75,6 +75,7 @@ vibeSpot needs an AI engine to generate code. Use **one** of these:
|
|
|
75
75
|
| Engine | Install | Notes |
|
|
76
76
|
|--------|---------|-------|
|
|
77
77
|
| Anthropic API | No install — just need an API key | Get one at [console.anthropic.com](https://console.anthropic.com) |
|
|
78
|
+
| Claude OAuth | Run `claude setup-token` → paste token | Uses your Claude Pro/Max subscription |
|
|
78
79
|
| OpenAI API | No install — just need an API key | Any OpenAI model |
|
|
79
80
|
| Gemini API | No install — just need an API key | Google Gemini models |
|
|
80
81
|
| [Claude Code](https://claude.ai/code) | `npm install -g @anthropic-ai/claude-code` | Uses your Claude subscription |
|
|
@@ -123,7 +124,7 @@ Most users only need `npx vibespot` — the web UI handles everything.
|
|
|
123
124
|
|
|
124
125
|
Settings are managed in the **Settings** panel (tabbed: AI, HubSpot, GitHub, vibeSpot) and saved in `~/.vibespot/config.json`:
|
|
125
126
|
|
|
126
|
-
- `aiEngine` — Your preferred AI engine (`anthropic-api`, `openai-api`, `gemini-api`, `claude-code`, `gemini-cli`, `codex-cli`)
|
|
127
|
+
- `aiEngine` — Your preferred AI engine (`anthropic-api`, `claude-oauth`, `openai-api`, `gemini-api`, `claude-code`, `gemini-cli`, `codex-cli`)
|
|
127
128
|
- `anthropicApiKey`, `openaiApiKey`, `geminiApiKey` — API keys (stored locally, never sent except to the provider)
|
|
128
129
|
- `hubspotAccounts` — Connected HubSpot accounts (PAK-based auth)
|
|
129
130
|
- `hubspotUploadMode` — `api` (default, direct API) or `cli` (legacy, requires HubSpot CLI)
|
|
@@ -132,6 +133,7 @@ Settings are managed in the **Settings** panel (tabbed: AI, HubSpot, GitHub, vib
|
|
|
132
133
|
|
|
133
134
|
## What's New (v1.0)
|
|
134
135
|
|
|
136
|
+
- **Template & module deletion** (v1.0.4) — delete templates from disk, option to delete exclusive modules, delete module button in module library preview
|
|
135
137
|
- **Brand assets redesign** (v1.0.2) — hover-expand cards with per-asset Upload/Extract, Extract All, brand voice extractor, cross-template product context sharing via rendered preview HTML
|
|
136
138
|
- **Agentic pipeline** (v1.0.0) — 4-stage AI generation: Intent Analyzer → Page Architect (Design System + Module Planner) → Module Developer (parallel) → Quality Check (auto-fix)
|
|
137
139
|
- **Incremental preview** (v1.0.0) — completed modules appear immediately with themed placeholders for pending ones
|