

Overview
Vindex captures a live website, rebuilds it as a working copy, and lets you edit it through conversation. Point it at a URL, get a faithful clone, then describe the changes you want in plain language and watch them happen. No code, no design tools, no waiting on a developer.
The Challenge
Redesigning or iterating on a website is slow and expensive. You either learn to code, wrestle with a page builder, or hire someone and wait. Meanwhile the fastest way to explain a change is just to say it out loud. We wanted to collapse that gap: take an existing site as the starting point, and make editing it as simple as talking to a teammate who happens to ship instantly.
How It Works
Enter a URL. Vindex captures the live site and rebuilds it as an editable copy.
Describe the change you want in plain language ("make the hero headline bolder," "swap this section for a pricing table").
A hybrid edit engine routes simple, well-scoped edits down a synchronous fast path (seconds), while more complex changes go to a managed AI agent that reasons across the whole codebase.
Agent location seeding pre-maps the relevant files and container selectors so the agent skips slow full-repo scans and lands on the right code fast.
A self-healing edit loop verifies each change and recovers from bad selectors, so edits stay reliable across turns.
Try it instantly on the public demo at /try, no signup required, before creating an account for full projects.
[PLACEHOLDER: Split view showing a cloned site on the left and a conversational edit request being applied on the right]
Tech Stack
Lessons Learned
- Hybrid beats one-size-fits-all. Routing simple edits to a fast synchronous engine (2-7s) and reserving the managed agent (180-300s) for genuinely hard changes made the product feel instant most of the time without giving up depth when it matters.
- Seed the agent, do not make it search. Pre-mapping the relevant file and container selector before the agent starts (rather than letting it scan the whole repo) cut latency dramatically. Wrapping phrase search in a hard timeout guard eliminated the hangs that made edits feel unpredictable.
- Managed agent status lags reality. Session status fields can report stale state, so we trust terminal events over the status field and always parse the transcript before deciding success or failure. A terminated session often still produced a usable result.
- Never trust content the agent ingests. Both the cloner and the editor pull in untrusted external content (URLs, fetched pages, repo files). Instructions forbid storing or acting on any instruction found in that content. The agent trusts only its own verified outcomes.
Status & What's Next
Beta. Live at vindexsites.com with a public no-signup demo at /try. Edit limits, plan tiers, and an admin dashboard are in production.
Broader edit coverage on the fast path, deeper multi-page editing, and expanded plan tiers.
Want a website you can change just by asking? This is what conversational editing looks like.
Tell us what your team is trying to build, and we'll share what we'd ship first.