Skip to content
Volver al Blog
Brave New World: A Designer Controls Code with Voice

Brave New World: A Designer Controls Code with Voice

A designer sends voice messages to a Telegram bot. The bot writes code, runs tests, deploys a preview, and creates a merge request. No code, no terminal, no Git knowledge required.

Today, one of those things happened that we build all of this for.

I connected a designer to a project. Not a developer — a designer. Someone who thinks in mockups, not code. I set up a Telegram bot for him. And then this happened:

He just sends voice messages to the bot. "Make the button bigger", "Change the header color", "Add spacing between the cards". No code, no terminal, no Git.

The bot listens, understands, writes the code, runs all tests, deploys a separate branch, and sends the author a link — "Done, check it out."

The designer opens the link, checks the result in the browser. If everything looks good — he tells the bot "Create a merge request for Vlad". The bot creates an MR, I get a notification, review the diff, and merge.

The entire cycle — from idea to production — without a single line of code from the person making the changes.


What's under the hood:

  • Voice → Text: Whisper transcribes voice messages right inside Telegram
  • Text → Code: An AI agent with full project context (CLAUDE.md, structure, tests)
  • Code → Deploy: GitLab CI/CD — push to a branch → automatic preview environment
  • Preview → MR: The agent creates a merge request when the author is satisfied

Every step is automatic. The designer doesn't know what Git is. He doesn't need to.


We're used to thinking that development is about code. But really, development is about intent. Code is just a way to express intent to a machine. Voice is another way. A more natural one.

Brave new world, where a designer deploys to production with voice messages.