Skip to content

Commit de0e2c4

Browse files
committed
feat(seo): add 4 alternative landing pages + GSC verification
- Add vs-v0 / vs-Lovable / vs-Bolt.new / vs-Figma-AI comparison pages (same structure as existing claude-design-alternative.md) - Wire new pages into VitePress nav (Compare dropdown) and sidebar - README: link all 5 "Open-source alternative to:" targets in header - README: refresh topic chip line to match new GitHub topics - llms.txt: add FAQ section (10 Q&A) targeting ChatGPT/Perplexity retrieval - Google Search Console: verification file + backup meta tag in head - gitignore: exclude promo-copy/ (internal drafts) and demos/_speedup/
1 parent 67680a5 commit de0e2c4

9 files changed

Lines changed: 371 additions & 5 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ website/.vitepress/cache/
6464
# Internal docs (research, handoffs, internal roadmap) — not for public repo
6565
docs/
6666

67+
# Internal marketing drafts — not for public repo
68+
promo-copy/
69+
70+
# Demo speedup source files — not used in README
71+
website/public/demos/_speedup/
72+
6773
# Agent worktrees / transcripts
6874
.claude/projects/
6975
.codex-temp/

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
>
77
> Turn prompts into polished artifacts — locally, openly, and with whichever model you already pay for.
88
9-
[Website](https://opencoworkai.github.io/open-codesign/) · [Quickstart](#quickstart) · [vs Claude Design](https://opencoworkai.github.io/open-codesign/claude-design-alternative) · [Docs](https://opencoworkai.github.io/open-codesign/quickstart) · [Contributing](./CONTRIBUTING.md) · [Security](./SECURITY.md)
9+
[Website](https://opencoworkai.github.io/open-codesign/) · [Quickstart](#quickstart) · [Docs](https://opencoworkai.github.io/open-codesign/quickstart) · [Contributing](./CONTRIBUTING.md) · [Security](./SECURITY.md)
10+
11+
**Open-source alternative to:** [Claude Design](https://opencoworkai.github.io/open-codesign/claude-design-alternative) · [v0 by Vercel](https://opencoworkai.github.io/open-codesign/v0-alternative) · [Lovable](https://opencoworkai.github.io/open-codesign/lovable-alternative) · [Bolt.new](https://opencoworkai.github.io/open-codesign/bolt-alternative) · [Figma AI](https://opencoworkai.github.io/open-codesign/figma-ai-alternative)
1012

1113
<p align="center">
1214
<img src="https://raw.githubusercontent.com/OpenCoworkAI/open-codesign/main/website/public/screenshots/product-hero.png" alt="Open CoDesign — prompt on the left, live artifact on the right" width="1000" />
@@ -20,7 +22,7 @@
2022
</p>
2123

2224
<p align="center">
23-
<sub><code>ai-design</code> · <code>claude-design-alternative</code> · <code>byok</code> · <code>local-first</code> · <code>electron</code> · <code>multi-model</code> · <code>open-source</code></sub>
25+
<sub><code>claude-code</code> · <code>claude-design-alternative</code> · <code>ai-design</code> · <code>design-to-code</code> · <code>figma-alternative</code> · <code>byok</code> · <code>local-first</code> · <code>multi-model</code> · <code>electron</code></sub>
2426
</p>
2527

2628
---
@@ -29,7 +31,7 @@
2931

3032
Turn a prompt into a polished prototype, slide deck, or marketing asset, locally, with the model you already use.
3133

32-
Open CoDesign is built for people who want the speed of AI-native design tools without subscription lock-in, cloud-only workflows, or being forced onto a single provider. Think of it as a local-first alternative to Claude Design: open source, desktop-native, and bring-your-own-model from day one.
34+
**Open CoDesign is the open-source Claude Design alternative**built for people who want the speed of AI-native design tools without subscription lock-in, cloud-only workflows, or being forced onto a single provider. An MIT-licensed desktop app, local-first from day one, with BYOK for any model (Claude, GPT, Gemini, DeepSeek, Kimi, GLM, Ollama, or any OpenAI-compatible endpoint). One-click import of your existing Claude Code or Codex API key gets you running in under 90 seconds.
3335

3436
---
3537

@@ -159,7 +161,7 @@ On first launch, Open CoDesign opens the Settings page. Paste any supported prov
159161
- Google Gemini
160162
- Any OpenAI-compatible relay (OpenRouter, SiliconFlow, local Ollama)
161163
162-
Credentials stay in `~/.config/open-codesign/config.toml`, encrypted via Electron `safeStorage`. Nothing leaves your machine unless your chosen model provider requires it.
164+
Credentials stay in `~/.config/open-codesign/config.toml` (file mode 0600, same convention as Claude Code, Codex, and `gh` CLI). Nothing leaves your machine unless your chosen model provider requires it.
163165
164166
### 3. Type your first prompt
165167

website/.vitepress/config.ts

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default defineConfig({
2626
head: [
2727
['link', { rel: 'icon', href: `${SITE_BASE}favicon.ico` }],
2828
['meta', { name: 'theme-color', content: '#c96442' }],
29+
['meta', { name: 'google-site-verification', content: 'c3cbbeaec5437546' }],
2930
// Open Graph
3031
['meta', { property: 'og:type', content: 'website' }],
3132
['meta', { property: 'og:site_name', content: 'Open CoDesign' }],
@@ -192,7 +193,16 @@ export default defineConfig({
192193
{ text: 'Home', link: '/' },
193194
{ text: 'Features', link: '/#features' },
194195
{ text: 'Quickstart', link: '/quickstart' },
195-
{ text: 'vs Claude Design', link: '/claude-design-alternative' },
196+
{
197+
text: 'Compare',
198+
items: [
199+
{ text: 'vs Claude Design', link: '/claude-design-alternative' },
200+
{ text: 'vs v0 by Vercel', link: '/v0-alternative' },
201+
{ text: 'vs Lovable', link: '/lovable-alternative' },
202+
{ text: 'vs Bolt.new', link: '/bolt-alternative' },
203+
{ text: 'vs Figma AI', link: '/figma-ai-alternative' },
204+
],
205+
},
196206
{ text: 'Architecture', link: '/architecture' },
197207
{ text: 'Roadmap', link: '/roadmap' },
198208
{
@@ -207,7 +217,16 @@ export default defineConfig({
207217
items: [
208218
{ text: 'Overview', link: '/' },
209219
{ text: 'Quickstart', link: '/quickstart' },
220+
],
221+
},
222+
{
223+
text: 'Compare',
224+
items: [
210225
{ text: 'vs Claude Design', link: '/claude-design-alternative' },
226+
{ text: 'vs v0 by Vercel', link: '/v0-alternative' },
227+
{ text: 'vs Lovable', link: '/lovable-alternative' },
228+
{ text: 'vs Bolt.new', link: '/bolt-alternative' },
229+
{ text: 'vs Figma AI', link: '/figma-ai-alternative' },
211230
],
212231
},
213232
{

website/bolt-alternative.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
title: Open CoDesign vs Bolt.new — Open-Source Bolt Alternative
3+
description: Open-source desktop alternative to Bolt.new. BYOK with any model (Claude, GPT, Gemini, DeepSeek, Ollama), local-first, MIT. Comparison and when to pick each.
4+
head:
5+
- - meta
6+
- property: og:title
7+
content: Open CoDesign vs Bolt.new — Open-Source Bolt Alternative
8+
- - meta
9+
- property: og:description
10+
content: Self-hosted desktop alternative to Bolt.new. BYOK, multi-model, on-device, MIT licensed.
11+
---
12+
13+
# Open CoDesign vs Bolt.new — Open-Source Bolt Alternative
14+
15+
Looking for an **open-source alternative to Bolt.new**? Open CoDesign is an MIT-licensed desktop app that takes prompts to interactive prototypes — running entirely on your laptop, with your own keys, against any model provider.
16+
17+
[Download Open CoDesign →](https://github.com/OpenCoworkAI/open-codesign/releases) · [90-second Quickstart](./quickstart)
18+
19+
## At a glance
20+
21+
Bolt.new is a hosted in-browser full-stack IDE that scaffolds and runs web apps using WebContainers. Open CoDesign is a desktop app focused on design and prototype artifacts, with full BYOK model freedom and on-device storage.
22+
23+
Pick **Bolt.new** if you want a browser-based full-stack IDE with hot-reload execution and hosted deploy.
24+
25+
Pick **Open CoDesign** if you want a native desktop tool for design-grade prototypes, any model via BYOK, on-device privacy, and exports beyond web (PDF, PPTX, ZIP).
26+
27+
## Feature matrix
28+
29+
| | Open CoDesign (open-source) | Bolt.new (StackBlitz) |
30+
| ----------------------- | :-------------------------: | :-------------------: |
31+
| License | **MIT** | Closed (core hosted product) |
32+
| Runs on | **Your laptop (macOS / Windows / Linux)** | Cloud (browser + WebContainers) |
33+
| Scope | Design-grade prototypes + decks + PDFs | Full-stack web apps in-browser |
34+
| Models | **Any — Claude, GPT, Gemini, DeepSeek, OpenRouter, SiliconFlow, Ollama** | Provider-bundled |
35+
| Pricing | **Free (BYOK token cost)** | Paid subscription (token-metered) |
36+
| BYOK | **Yes — any provider** | Limited |
37+
| Data location | **SQLite on your machine** | Cloud (StackBlitz infra) |
38+
| Local version history | **Yes — snapshots + diff** | In-app history (cloud) |
39+
| Offline use | **Yes (with local Ollama)** | No (needs WebContainers runtime) |
40+
| Output formats | **HTML · React/JSX · PDF · PPTX · ZIP · Markdown** | Runnable project + deploy target |
41+
| Built-in design skills | **12 modules** | General code scaffolding |
42+
| Demo prompts | **15 ready-to-edit** | Templates |
43+
| Ecosystem | Framework-agnostic output | Node.js-in-browser centric |
44+
45+
## Why someone would switch from Bolt.new to Open CoDesign
46+
47+
- **Model freedom.** Use any provider per generation. Polish on Claude Opus, iterate cheaply on DeepSeek/Kimi, go private with Ollama.
48+
- **No subscription, no token metering.** BYOK — pay your provider directly at their rates.
49+
- **On-device history.** Every iteration is a local SQLite snapshot you can diff and roll back without needing cloud.
50+
- **Export variety.** PDF, PPTX, ZIP, Markdown — not just running web apps.
51+
- **Native desktop app.** Faster iteration loop than an in-browser IDE; no tab-crash risk.
52+
53+
## Why someone would stay on Bolt.new
54+
55+
- You want an in-browser full-stack IDE with live execution.
56+
- You need to ship runnable Node.js / Vite projects end-to-end in one environment.
57+
- You don't want to install anything locally.
58+
59+
Different product shapes. Both are fine picks.
60+
61+
## Is Open CoDesign a clone of Bolt.new?
62+
63+
No. Open CoDesign is an independent MIT-licensed desktop project by OpenCoworkAI. It shares no code with Bolt.new and is not affiliated with StackBlitz.
64+
65+
## Install Open CoDesign
66+
67+
- [Pre-built installer](https://github.com/OpenCoworkAI/open-codesign/releases)
68+
- [90-second Quickstart](./quickstart)
69+
- [Build from source](./quickstart#build-from-source)
70+
71+
## FAQ
72+
73+
- **Does Open CoDesign run a full web app like Bolt.new?** No — it renders design-grade artifacts (HTML, React components, PDFs, slide decks) in a sandboxed iframe. If you need a runnable full Node.js project, Bolt.new is a better fit.
74+
- **Can I use local models?** Yes — point at any OpenAI-compatible endpoint including Ollama.
75+
- **License?** MIT.

website/figma-ai-alternative.md

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
title: Open CoDesign vs Figma AI — Open-Source Figma AI Alternative
3+
description: Open-source desktop alternative to Figma AI (Figma Make / First Draft). Prompt to polished UI prototype, BYOK with any model, local-first, MIT licensed.
4+
head:
5+
- - meta
6+
- property: og:title
7+
content: Open CoDesign vs Figma AI — Open-Source Figma AI Alternative
8+
- - meta
9+
- property: og:description
10+
content: Open-source desktop tool that turns prompts into UI prototypes. BYOK, multi-model, local-first. MIT.
11+
---
12+
13+
# Open CoDesign vs Figma AI — Open-Source Figma AI Alternative
14+
15+
Looking for an **open-source alternative to Figma AI** (Figma Make, Figma First Draft)? Open CoDesign is an MIT-licensed desktop app that generates interactive UI prototypes directly in code — runnable, exportable, and under your control.
16+
17+
[Download Open CoDesign →](https://github.com/OpenCoworkAI/open-codesign/releases) · [90-second Quickstart](./quickstart)
18+
19+
## At a glance
20+
21+
Figma AI is a suite of AI-assisted features inside Figma: prompt-to-draft, generative fills, content placeholders, auto-layout rewrites. Output stays inside the Figma canvas as frames and components.
22+
23+
Open CoDesign starts from the opposite end: prompts become **code-native interactive prototypes** — HTML, React/JSX, PDF, PPTX — runnable and editable outside any proprietary canvas.
24+
25+
Pick **Figma AI** if your team lives inside Figma and the deliverable is always a canvas design that hands off to engineering.
26+
27+
Pick **Open CoDesign** if you want the AI output to be real runnable code/artifacts from the start, with full model freedom and on-device privacy.
28+
29+
## Feature matrix
30+
31+
| | Open CoDesign (open-source) | Figma AI (Make / First Draft) |
32+
| ----------------------- | :-------------------------: | :---------------------------: |
33+
| License | **MIT** | Closed (paid plan) |
34+
| Runs on | **Your laptop (macOS / Windows / Linux)** | Figma Cloud (web + desktop client) |
35+
| Output form | **Runnable code** (HTML, React/JSX) + PDF/PPTX/ZIP | Figma frames + components |
36+
| Models | **Any — Claude, GPT, Gemini, DeepSeek, OpenRouter, SiliconFlow, Ollama** | Figma-hosted |
37+
| BYOK | **Yes** | No |
38+
| Pricing | **Free (BYOK token cost)** | Paid Figma seat + AI add-on |
39+
| Data location | **SQLite on your machine** | Figma cloud |
40+
| Local version history | **Yes** | Figma version history (cloud) |
41+
| Offline use | **Yes (with local Ollama)** | Limited |
42+
| Export | **HTML · React/JSX · PDF · PPTX · ZIP · Markdown** | Figma file + code via plugin |
43+
| Built-in design skills | **12 modules** | General AI assists |
44+
| Inline AI comments | **Yes — rewrites only pinned region** | Generative fill / rewrites |
45+
| Ecosystem | Framework-agnostic code out | Figma-canvas-bound |
46+
47+
## Why someone would switch from Figma AI to Open CoDesign
48+
49+
- **Output is code, not a canvas.** No design→code handoff step. The prompt produces the thing engineering actually ships.
50+
- **Model choice.** Figma picks one model for you. Open CoDesign lets you mix Claude, GPT, Gemini, DeepSeek, Ollama by task.
51+
- **BYOK.** No platform margin on tokens.
52+
- **On-device privacy.** Your prompts, designs, and any codebase scans stay on your machine.
53+
- **Fewer seats.** You only pay Figma per-seat when you actually need Figma. Open CoDesign is a free desktop app.
54+
- **Export to PDF / PPTX / ZIP** without plugin chains.
55+
56+
## Why someone would stay on Figma AI
57+
58+
- Your team's source of truth *is* Figma — components, libraries, dev mode, hand-off.
59+
- You design in the canvas, not in code.
60+
- Real-time multiplayer editing is a hard requirement.
61+
62+
Different positions in the workflow. Most teams use both.
63+
64+
## Is Open CoDesign a clone of Figma AI?
65+
66+
No. Open CoDesign is an independent MIT-licensed desktop app by OpenCoworkAI. It is not a Figma plugin, does not connect to the Figma API, and is not affiliated with Figma Inc. "Figma" and "Figma AI" are trademarks of Figma Inc.
67+
68+
## Install Open CoDesign
69+
70+
- [Pre-built installer](https://github.com/OpenCoworkAI/open-codesign/releases)
71+
- [90-second Quickstart](./quickstart)
72+
- [Build from source](./quickstart#build-from-source)
73+
74+
## FAQ
75+
76+
- **Can Open CoDesign import my Figma files?** Not yet. Codebase → design-system token extraction ships in v0.4. Figma-file ingest is not on the v1 roadmap.
77+
- **Does it replace Figma entirely?** No — it replaces the AI-generation step. Many teams will keep Figma for collaboration and use Open CoDesign for prompt-to-prototype.
78+
- **Can I use local models?** Yes — any OpenAI-compatible endpoint, Ollama included.
79+
- **License?** MIT.

website/lovable-alternative.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
title: Open CoDesign vs Lovable — Open-Source Lovable Alternative
3+
description: Open-source desktop alternative to Lovable. BYOK with any model (Claude, GPT, Gemini, DeepSeek, Ollama), local-first, MIT. Comparison and when to pick each.
4+
head:
5+
- - meta
6+
- property: og:title
7+
content: Open CoDesign vs Lovable — Open-Source Lovable Alternative
8+
- - meta
9+
- property: og:description
10+
content: Self-hosted desktop alternative to Lovable. BYOK, multi-model, on-device, MIT licensed.
11+
---
12+
13+
# Open CoDesign vs Lovable — Open-Source Lovable Alternative
14+
15+
Looking for an **open-source alternative to Lovable**? Open CoDesign is an MIT-licensed desktop app that takes prompts to polished interfaces — locally, with your own API key, against any model provider.
16+
17+
[Download Open CoDesign →](https://github.com/OpenCoworkAI/open-codesign/releases) · [90-second Quickstart](./quickstart)
18+
19+
## At a glance
20+
21+
Lovable is a hosted web app that generates full-stack web apps from prompts and deploys them in-platform. Open CoDesign is a local desktop app focused on the design + prototype layer: prompt to HTML/React/PPTX/PDF, with full model freedom and on-device storage.
22+
23+
Pick **Lovable** if you want end-to-end full-stack app generation with a hosted deploy target and database wired in.
24+
25+
Pick **Open CoDesign** if you want design-grade frontend prototypes, any model via BYOK, on-device privacy, local version history, and exports beyond web (PDF, PPTX, ZIP).
26+
27+
## Feature matrix
28+
29+
| | Open CoDesign (open-source) | Lovable |
30+
| ----------------------- | :-------------------------: | :-----: |
31+
| License | **MIT** | Closed |
32+
| Runs on | **Your laptop (macOS / Windows / Linux)** | Cloud (browser) |
33+
| Scope | Frontend prototypes + design assets | Full-stack apps (with DB + deploy) |
34+
| Models | **Any — Claude, GPT, Gemini, DeepSeek, OpenRouter, SiliconFlow, Ollama** | Provider-controlled |
35+
| Pricing | **Free (BYOK token cost)** | Paid subscription |
36+
| BYOK | **Yes** | Limited |
37+
| Data location | **SQLite on your machine** | Provider cloud |
38+
| Local version history | **Yes** ||
39+
| Offline use | **Yes (with local Ollama)** | No |
40+
| Config import | **Claude Code + Codex, one click** | No |
41+
| Output formats | **HTML · React/JSX · PDF · PPTX · ZIP · Markdown** | Hosted web app |
42+
| Design skills | **12 built-in modules** ||
43+
| Self-hosted | **Yes (it's an app, not a service)** | No |
44+
45+
## Why someone would switch from Lovable to Open CoDesign
46+
47+
- **Model choice.** Use Claude Opus for visual polish, cheap models (DeepSeek/Kimi) for iteration, local Ollama for privacy work — switch per generation.
48+
- **BYOK cost control.** Pay only the token cost to your provider. No platform margin.
49+
- **On-device privacy.** Prompts, designs, and codebase scans stay on your laptop.
50+
- **Design-grade prototypes, not app scaffolding.** If your deliverable is a landing page, pitch deck, pricing page, dashboard mockup — not a full-stack app — Open CoDesign is purpose-built for that.
51+
- **Export flexibility.** PDF one-pagers, PPTX decks, ZIP asset bundles, Markdown with frontmatter — formats Lovable doesn't ship.
52+
53+
## Why someone would stay on Lovable
54+
55+
- You need a full-stack app with database and deploy, not a frontend artifact.
56+
- You don't want to run a desktop app or manage your own keys.
57+
- Hosted collaboration is a hard requirement.
58+
59+
Different product shapes. Both are fine choices.
60+
61+
## Is Open CoDesign a clone of Lovable?
62+
63+
No. Open CoDesign is an independent MIT-licensed desktop project. It shares no code with Lovable and is not affiliated with them.
64+
65+
## Install Open CoDesign
66+
67+
- [Pre-built installer](https://github.com/OpenCoworkAI/open-codesign/releases)
68+
- [90-second Quickstart](./quickstart)
69+
- [Build from source](./quickstart#build-from-source)
70+
71+
## FAQ
72+
73+
- **Does Open CoDesign generate full-stack apps like Lovable?** No — it focuses on design-grade frontend artifacts (HTML, React components, slide decks, PDFs). If you need backend + DB + deploy, Lovable is a better fit.
74+
- **Can I use Ollama?** Yes.
75+
- **License?** MIT.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
google-site-verification: googlec3cbbeaec5437546.html

0 commit comments

Comments
 (0)