Generative AI September 3, 2025

WordPress reveals Telex, an experimental AI coding tool for site development

WordPress has finally put a public face on the AI coding push that’s been looming over its ecosystem for the past year. At WordCamp US 2025, Automattic CEO Matt Mullenweg showed Telex, an experimental tool that takes a natural-language prompt and ret...

WordPress reveals Telex, an experimental AI coding tool for site development

WordPress’s Telex could turn prompts into Gutenberg blocks, and that’s a bigger deal than it sounds

WordPress has finally put a public face on the AI coding push that’s been looming over its ecosystem for the past year. At WordCamp US 2025, Automattic CEO Matt Mullenweg showed Telex, an experimental tool that takes a natural-language prompt and returns an installable WordPress plugin zip, complete with a Gutenberg block.

The demo was straightforward: ask for a marketing animation block, get a .zip, install it on a site or in WordPress Playground, and see the result.

That matters because Gutenberg block development still has a fairly high setup cost for teams that don’t spend their days in block.json, React components, asset registration, PHP bootstraps, and build tooling. A tool that compresses all of that into a prompt could change how agencies prototype, how internal teams ship site features, and how quickly low-end plugin work gets commoditized.

It could also dump a lot of mediocre or insecure code into WordPress if Automattic gets the guardrails wrong.

What Telex seems to do

Telex lives at telex.automattic.ai, and Mullenweg described it as something in the vein of Vercel’s v0 or Lovable, but aimed squarely at WordPress. The important part is the output. Telex packages the result as something WordPress can actually install.

That’s useful because WordPress development has always had an annoying last mile. Even experienced developers lose time to scaffolding, build steps, block registration, plugin headers, script handles, style wiring, and compatibility quirks. Telex looks built to skip straight to a usable artifact.

Based on the demo and the way Gutenberg blocks work, the generated zip probably includes the usual pieces:

  • block.json for metadata and asset registration
  • editor-side JavaScript, likely React or JSX compiled ahead of time
  • CSS for editor and front-end presentation
  • a PHP plugin bootstrap, likely index.php
  • possibly render.php if the block is dynamic

The install-without-building part matters. If Telex is returning a zip that works immediately on a regular site and in WordPress Playground, Automattic is almost certainly bundling assets before delivery. Good. Nobody wants a prompt-generated plugin that still expects local Node tooling.

Playground makes this more believable

The underrated part here is WordPress Playground.

Playground runs WordPress in the browser through WebAssembly, with PHP executing client-side and data stored locally in the browser environment. That gives Telex an obvious place to test generated plugins quickly, without hosting setup or local dev friction.

If Automattic is serious about this, Playground becomes the validation layer. Generate a block, spin up a sandbox, install the zip, activate it, render it, and catch the obvious failures before the user sees anything. That won’t fix deeper code quality problems, but it can catch the embarrassing ones:

  • broken asset references in block.json
  • missing file paths
  • fatal PHP errors on activation
  • editor crashes from bad component imports
  • rendering issues in common WordPress versions

WordPress may actually have an edge here over generic AI coding tools. It already has a defined runtime, a plugin packaging format, and now a browser-based execution environment. That’s a cleaner loop than generating some React code and hoping it fits your repo.

The architecture is probably boring

Automattic hasn’t published technical internals, but this doesn’t need an exotic stack to be useful. A competent Telex pipeline probably looks something like this:

  1. A general-purpose coding model generates PHP, JavaScript, JSX, CSS, and metadata.
  2. Retrieval pulls from Gutenberg docs, WordPress developer references, and known block patterns.
  3. The model fills a plugin skeleton instead of inventing structure from scratch.
  4. A validator checks whether the package activates and renders in a sandbox.
  5. The system returns a zip that’s already bundled.

That’s the practical version.

For WordPress, template-driven generation matters more than model creativity. Gutenberg development has enough ceremony that structure is half the job. If Telex can reliably produce valid block.json, register assets correctly, keep strings translatable, and avoid obvious security mistakes, it’s already useful.

If it starts improvising around WordPress conventions, it’ll get messy fast.

The hard part is trust

Prompt-to-plugin sounds friendly until you remember what a plugin is: executable code with full access to a WordPress site’s internals.

That raises the stakes quickly.

A generated block that stays client-side is one thing. A generated plugin that adds forms, saves data, registers REST routes, or renders dynamic content on the server can create real security problems. WordPress has had two decades of lessons here, and none of them stop mattering because an LLM wrote the first draft.

The usual failure modes are predictable:

  • missing nonce verification in forms
  • weak or absent capability checks
  • unsanitized input
  • unescaped output
  • sloppy REST endpoints
  • over-permissive file upload handling
  • reliance on experimental Gutenberg APIs that break later

Any generated PHP should be treated as untrusted code, because that’s what it is.

If Telex catches on with agencies and no-code-adjacent teams, the review burden will still land on senior developers. That’s where this either becomes a real productivity tool or a maintenance tax. Saving two hours of setup is nice. Shipping a latent XSS bug is not.

Gutenberg is an obvious AI target

Gutenberg blocks are well suited to generation. They have a standard file layout, explicit metadata, repeatable patterns, and plenty of public examples. That gives a model a narrower and more manageable problem than “build me an app.”

It also means the low end of block development is about to get cheaper.

Marketing blocks, hero sections, pricing tables, animated banners, testimonial sliders, simple data display components, admin helpers. Plenty of WordPress shops still bill for that work. Telex points directly at that market, and so do v0-style tools in other web stacks.

That doesn’t make block developers obsolete. It shifts where the value is.

The hard parts remain the hard parts:

  • accessibility
  • performance on real content-heavy sites
  • compatibility across WordPress versions
  • design system consistency
  • maintainability
  • editorial UX
  • security review
  • long-term ownership

Prompting out a flashy block is easy enough. Getting one that behaves properly inside a mature publishing workflow still takes work.

Performance will matter fast

There’s a reason so many WordPress sites already suffer from plugin sprawl and front-end bloat. The ecosystem rewards fast shipping more than disciplined code.

Telex could make that worse if it produces blocks that pull in oversized bundles, heavy animation libraries, or sloppy CSS. A marketing animation block looks fine in a demo. Multiply that by twenty blocks on a real homepage and you’re back in JavaScript soup.

For Telex to stay useful, generated output needs some basics:

  • lean editor-side component trees
  • precompiled production assets
  • scoped styles
  • minimal runtime dependencies
  • sane defaults for responsive media and lazy loading
  • a bias toward static rendering when dynamic rendering isn’t necessary

This is where experienced WordPress developers will spot weak output immediately. Gutenberg blocks don’t only fail when they crash. They fail when they quietly make the editor sluggish and the front end heavier than it needs to be.

The bigger shift is inside teams

Telex fits a broader change in how software teams work. Prompts become a form of specification, and senior engineers spend less time on initial scaffolding and more time reviewing, constraining, and integrating generated code.

That’s especially relevant in WordPress, where a lot of work sits in the middle ground between product engineering and content infrastructure. Agencies, media companies, SaaS marketing teams, and in-house web groups often need custom blocks quickly, but not from scratch every time.

A sensible workflow is easy to picture:

  • store prompts alongside generated code
  • commit output to Git like any other plugin
  • run phpcs with WordPress Coding Standards
  • lint JS with ESLint
  • check translation functions such as __()
  • test activation and rendering in Playground
  • review security-sensitive code manually
  • define ownership before anything goes near production

That’s the only sane way to use a tool like this.

Mullenweg’s other hints are worth watching

Two side notes from the keynote stood out.

First, Mullenweg said Automattic built a simple in-browser WordPress help assistant during Contributor Day in an hour or two. That says less about product maturity than about how quickly AI features can now be attached to WordPress surfaces. Expect more of that. Some of it will be useful. Some of it will be junk.

Second, he pointed to Perplexity’s Comet browser as a possible future interface for interacting with WordPress. That’s speculative, but the direction is clear: conversational layers on top of publishing, site management, and content operations. Whether users actually want that is another matter. CMS workflows are messy, and chat interfaces often make repeatable tasks worse.

Telex feels more grounded because it outputs code.

What developers should take seriously now

Telex is promising, rough, and early.

Mullenweg has already said it’s experimental, and early testers say the output sometimes breaks or needs manual fixes. That’s normal for this class of tool. Nobody should treat it as push-button production development yet.

Still, writing it off as a keynote gimmick would be lazy. WordPress has three things most AI coding platforms don’t: massive distribution, a standard extension model, and a browser-based runtime for instant testing. That gives Telex a real shot at becoming useful quickly.

If Automattic gets validation, security checks, and packaging quality right, Telex could become a practical block generator for a lot of routine work. If it ships half-baked output into an ecosystem already crowded with questionable plugins, it’ll just add noise.

For now, the right approach is simple: experiment freely, trust nothing automatically, and review every generated plugin like it came from the least careful contractor on your team.

What to watch

The main caveat is that an announcement does not prove durable production value. The practical test is whether teams can use this reliably, measure the benefit, control the failure modes, and justify the cost once the initial novelty wears off.

Keep going from here

Useful next reads and implementation paths

If this topic connects to a real workflow, these links give you the service path, a proof point, and related articles worth reading next.

Relevant service
AI agents development

Design agentic workflows with tools, guardrails, approvals, and rollout controls.

Related proof
AI support triage automation

How AI-assisted routing cut manual support triage time by 47%.

Related article
Appfigures data suggests mobile AI coding apps still have no real market

Dedicated mobile apps for AI-assisted coding still look like a bad bet. Recent Appfigures data, via TechCrunch, is blunt. Instance: AI App Builder has about 16,000 downloads and roughly $1,000 in consumer spend. Vibe Studio is at around 4,000 downloa...

Related article
Nothing launches Playground, an AI prompt tool for building phone widgets

Nothing has launched Playground, an AI tool that lets users build small phone experiences from a text prompt and run them as widgets on Nothing devices. Type “track my next flight” or “show a brief before my next meeting,” and Playground generates an...

Related article
Google tests Disco, a Gemini 3 Labs tool that turns tabs into web apps

Google is testing Disco, a Labs experiment that uses Gemini 3 to turn your open browser tabs into lightweight generated web apps called GenTabs. It’s invite-only, macOS-only for now, and clearly early. Still, the idea has more substance than the usua...