The latest update for Telex WordPress Blocks just dropped, and while the primary headlines focus on “AI-powered generation,” the real story for us developers is the bridge being built between AI prototypes and production-grade code. I’ve been building custom blocks since the first beta of Gutenberg, and I’ve seen plenty of tools promise to “replace” the developer. Telex isn’t doing that—it’s finally starting to respect our workflow.
If you haven’t been following, Telex is Automattic’s experimental sandbox for generating blocks via natural language. However, the February updates introduce a few specific features that turn it from a “cool toy” into a legitimate scaffolding tool for professional projects. Specifically, the new round-trip editing and vision capabilities solve the two biggest bottlenecks in AI development: design fidelity and code refactoring.
Vision-Driven Scaffolding: Reference Images
We’ve all been there: trying to describe a complex layout to an LLM only to get a generic flexbox mess. You can now upload reference images directly to Telex. Whether it’s a Figma mockup or a napkin sketch, the vision-to-code pipeline significantly reduces the “prompt engineering” fatigue.
For a senior dev, this isn’t about letting the AI finish the job. It’s about getting the block.json supports and the initial CSS grid structure close enough to the design that you don’t spend an hour just cleaning up the skeleton. Speaking of skeletons, the generated code is much cleaner than earlier iterations, adhering more closely to the WordPress Block API standards.
The VS Code Round-Trip: Real Dev Work
This is the update I actually care about. You can now download your Telex WordPress Blocks, open them in VS Code (or Cursor), refactor the logic, and then re-upload the zip back to Telex for further AI refining. This solves the “locked-in” problem of most AI builders.
I often find that AI struggles with complex React hooks or specific useEffect dependencies. Now, I can let Telex build the UI, pull it into my local environment to fix a race condition or add a custom transient, and push it back. It’s iterative development that doesn’t force you to choose between speed and quality. For more on keeping your code maintainable, check out my guide on Gutenberg Smarter Blocks and Cleaner Code.
<?php
/**
* Example of how Telex might scaffold a block registration.
* I always recommend prefixing your functions to avoid collisions.
*/
function bbioon_register_telex_block() {
register_block_type_from_metadata( __DIR__ . '/build' );
}
add_action( 'init', 'bbioon_register_telex_block' );
Version History That Actually Works
The new versioning system is a pragmatist’s dream. When you restore a previous version, Telex now creates a new version instead of overwriting your current head. This effectively creates a git-like branch history for your experiments. If you delete a critical attribute three prompts ago, you don’t have to “undo” your way back through history and lose your current progress.
Localization and UX Polish
Telex now supports 7 languages, and more importantly, they fixed the multi-byte character streaming issues. If you’re building blocks for international clients using Japanese or Chinese characters, the output won’t break during the streaming phase anymore. Furthermore, small UX tweaks like dynamic page titles and save confirmations make the tool feel less like a “beta hack” and more like a production environment.
Look, if this Telex WordPress Blocks stuff is eating up your dev hours, let me handle it. I’ve been wrestling with WordPress since the 4.x days.
Final Takeaway for Developers
The gap between “AI concept” and “production block” is narrowing. Don’t look at Telex as a replacement for your IDE. Look at it as a high-speed scaffolder that finally lets you bring your own tools to the party. Go try the official Telex tool and see how the VS Code round-trip changes your workflow. Ship it.