{"id":183,"date":"2026-06-02T17:04:34","date_gmt":"2026-06-02T17:04:34","guid":{"rendered":"https:\/\/www.goteams.de\/blog\/?p=183"},"modified":"2026-06-03T04:32:03","modified_gmt":"2026-06-03T04:32:03","slug":"building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard","status":"publish","type":"post","link":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/","title":{"rendered":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard"},"content":{"rendered":"\n<p><strong>The goal of this practical test was to see how far a local AI agent could go on a single instruction. A concrete scenario was chosen: building a complete website without ever touching a keyboard.<\/strong><\/p>\n\n\n\n<p><strong>After opening Telegram, the following message was sent:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>\"Hey, build a website for my cafe. Make it look aesthetic. Design it in Figma first, extract the HTML, create a new GitHub repo, deploy it to GitHub Pages, and send me the link.\"<\/strong><\/pre>\n\n\n\n<p><strong>About forty minutes later, the smartphone buzzed: a live, working URL, hosted on GitHub Pages, based on the generated design.<\/strong><\/p>\n\n\n\n<p><strong>This post describes the underlying setup step by step. Three integrations, a handful of commands, and a single agent that controls the entire pipeline from design to deployment.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is OpenClaw?<\/strong><\/h2>\n\n\n\n<p><strong>Before the actual setup, a brief contextualization of the software.<\/strong><\/p>\n\n\n\n<p><strong>OpenClaw is an open-source AI agent that runs locally on your machine. It is not a web app. It is not a cloud service. It is a CLI-driven agent that you install, configure, and own, end to end.<\/strong><\/p>\n\n\n\n<p><strong>Three core features define the tool:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Flexible Model Choice: The logic component can be chosen flexibly. OpenClaw works with Claude, GPT, Gemini, or local Ollama models. A swap is possible at any time.<\/strong><\/li>\n\n\n\n<li><strong>Extensibility: New skills can be installed from ClawHub. Plugins extend the functional scope. Any interface that supports the Model Context Protocol (MCP) can plug in.<\/strong><\/li>\n\n\n\n<li><strong>Data Sovereignty: Sensitive data remains on the local system. Credentials and context information never leave the laptop at any point unless explicitly released.<\/strong><\/li>\n<\/ul>\n\n\n\n<p><strong>For developer teams looking for a capable agent \u2013 one that pushes commits, sends messages, and hits APIs instead of just chatting in a browser tab \u2013, this approach offers a completely new operational depth.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Plan<\/strong><\/h2>\n\n\n\n<p><strong>The goal was to test the potential of OpenClaw with a single instruction. The creation of a website was chosen as a real-world project.<\/strong><\/p>\n\n\n\n<p><strong>Three integrations made the implementation possible: Stitch (via MCP) for design, GitHub for code management, and Telegram for controlling the agent on the go. The setup of the individual components is described below.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 1: Install OpenClaw<\/strong><\/h2>\n\n\n\n<p><strong>As a prerequisite, Node.js version 22.19 or higher must be installed. Verification is done via:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>node --version<\/strong><\/code><\/pre>\n\n\n\n<p><strong>If installation is required, nodejs.org provides the appropriate packages. Then, OpenClaw is installed globally:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>npm install -g openclaw<\/strong><\/code><\/pre>\n\n\n\n<p><strong>Next, the onboarding wizard is started:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>openclaw onboard --install-daemon<\/strong><\/code><\/pre>\n\n\n\n<p><strong>This step opens a terminal-based interface (TUI) that takes about two minutes. The wizard guides through the following points:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Model &amp; Authentication: Selecting the AI provider and storing the API key.<\/strong><\/li>\n\n\n\n<li><strong>Workspace: Determining the path for files and sessions (default: <\/strong><strong>~\/.openclaw\/workspace<\/strong><strong>).<\/strong><\/li>\n\n\n\n<li><strong>Gateway: Settings for port and authentication (default values are sufficient).<\/strong><\/li>\n\n\n\n<li><strong>Channels: Connecting Telegram, Discord, Slack, etc. This step can be skipped for now.<\/strong><\/li>\n\n\n\n<li><strong>Daemon: Installs a background service so the agent loads automatically at system startup.<\/strong><\/li>\n<\/ul>\n\n\n\n<p><strong>Upon completion, the dashboard can be opened:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>openclaw dashboard<\/strong><\/code><\/pre>\n\n\n\n<p><strong>This starts the Control UI at <\/strong><strong>localhost:18789<\/strong><strong>. After sending a test message and receiving a reply, the basis is ready.<\/strong><\/p>\n\n\n\n<p><strong>Finally, the system health should be checked:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>openclaw doctor<\/strong><\/code><\/pre>\n\n\n\n<p><strong>This command detects missing configurations or environment issues before connecting the integrations.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>A Quick Word on &#8220;Skills&#8221;<\/strong><\/h3>\n\n\n\n<p><strong>Before connecting the tools, a basic understanding of how skills work is helpful, as every subsequent integration builds upon them.<\/strong><\/p>\n\n\n\n<p><strong>A skill in OpenClaw is a Markdown file (<\/strong><strong>SKILL.md<\/strong><strong>) injected into the agent&#8217;s system prompt. It teaches the agent when and how to use a specific tool: including constraints, step-by-step logic, and edge cases. These are permanent behavioral rules anchored directly with the agent and not inside the AI model itself.<\/strong><\/p>\n\n\n\n<p><strong>Skills come from three sources:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Bundled: Directly integrated into OpenClaw (file I\/O, web search, exec commands, etc.).<\/strong><\/li>\n\n\n\n<li><strong>ClawHub: The public registry at clawhub.ai for community skills (GitHub connections, browser automation, image generation workflows). Installation is done via a single command.<\/strong><\/li>\n\n\n\n<li><strong>Custom Skills: A skill is basically just a folder with a <\/strong><strong>SKILL.md<\/strong><strong>. After dropping it into the <\/strong><strong>~\/.openclaw\/workspace\/skills\/<\/strong><strong> directory, it is loaded automatically. For recurring workflows, writing custom skills is the most efficient method.<\/strong><\/li>\n<\/ul>\n\n\n\n<p><strong>The GitHub connection used in the next step is a bundled skill. It provides the agent with the necessary context to create repositories, push code, and trigger GitHub Pages deployments autonomously.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 2: Connect GitHub<\/strong><\/h2>\n\n\n\n<p><strong>The GitHub skill is bundled directly with OpenClaw, no additional installation is needed. It only requires authorizing the gh-CLI, which OpenClaw uses in the background for all operations.<\/strong><\/p>\n\n\n\n<p><strong>First, ensure that the gh-CLI is installed:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>brew install gh&nbsp; &nbsp; # macOS<\/strong><\/code><\/pre>\n\n\n\n<p><strong># or: https:\/\/cli.github.com for Windows \/ Linux<\/strong><\/p>\n\n\n\n<p><strong>Subsequently, authentication takes place via the GitHub token:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>gh auth login<\/strong><\/code><\/pre>\n\n\n\n<p><strong>Follow the prompts in the terminal: select GitHub.com, choose HTTPS, and activate <\/strong><strong><em>Paste an authentication token<\/em><\/strong><strong>. A Personal Access Token with the <\/strong><strong>repo<\/strong><strong> and <\/strong><strong>read:org<\/strong><strong> scopes is required for this. Such a token can be generated at<\/strong><a href=\"https:\/\/github.com\/settings\/tokens\"><strong> <\/strong><strong>github.com\/settings\/tokens<\/strong><\/a><strong>.<\/strong><\/p>\n\n\n\n<p><strong>The successful connection is verified as follows:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>gh auth status<\/strong><\/code><\/pre>\n\n\n\n<p><strong>This completes the preparations. The agent now has access to repositories, PRs, issues, and CI runs.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 3: Connect Stitch via MCP<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What is Stitch?<\/strong><\/h3>\n\n\n\n<p><strong>Stitch is Google&#8217;s AI-native design tool. Desired layouts such as landing pages, dashboards, or components are defined via text description. The tool generates the surfaces including layout structures, design tokens, and an integrated design system. Variants, adjustments, and token exports are also controlled via natural language. A Figma subscription or manual linking of components is not required.<\/strong><\/p>\n\n\n\n<p><strong>Stitch provides a remote MCP server that is used for the connection to OpenClaw.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why can&#8217;t OpenClaw connect to Stitch natively?<\/strong><\/h3>\n\n\n\n<p><strong>OpenClaw&#8217;s MCP support is primarily designed for local servers running on the own system over stdio. Stitch, on the other hand, is a remote HTTP server in the Google Cloud. OpenClaw has no native way to communicate directly over HTTP with a remote MCP endpoint. This gap is closed by a bridge: it runs locally, accepts tool calls from OpenClaw, and forwards them to Stitch over authenticated HTTP. It acts as a translation layer between local stdio and remote HTTP.<\/strong><\/p>\n\n\n\n<p><strong>The <\/strong><strong>@aiwerk\/openclaw-mcp-bridge<\/strong><strong> plugin was developed specifically for this purpose. It works as a local proxy that registers remote MCP servers like Stitch as native tools inside OpenClaw. The plugin handles HTTP transport, adds the correct authorization headers, and automatically makes the tools available to the agent. Since Stitch is natively supported, no further adjustments are required after configuration.<\/strong><\/p>\n\n\n\n<p><strong>The setup is done in a few simple steps:<\/strong><\/p>\n\n\n\n<p><strong>First, an API key is required. On the Stitch settings page under <\/strong><strong><em>API Keys<\/em><\/strong><strong>, click <\/strong><strong><em>Create API Key<\/em><\/strong><strong> and copy the key safely.<\/strong><\/p>\n\n\n\n<p><strong>Then, the MCP bridge plugin is installed in OpenClaw:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>openclaw plugins install @aiwerk\/openclaw-mcp-bridge<\/strong><\/code><\/pre>\n\n\n\n<p><strong>Configuration of the plugin with the copied Stitch API key:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>~\/.openclaw\/extensions\/openclaw-mcp-bridge\/install-server.sh stitch<\/strong><\/code><\/pre>\n\n\n\n<p><strong>When prompted, paste the API key. This is stored in the bridge configuration and not in the workspace, where the agent could read it directly.<\/strong><\/p>\n\n\n\n<p><strong>The gateway must be restarted to activate the connection:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>openclaw gateway restart<\/strong><\/code><\/pre>\n\n\n\n<p><strong>An important safety note: Since Stitch is a remote MCP server, every tool call the agent makes is sent over the network to the Google infrastructure. The connection should therefore only be made in projects where this is permissible, and only the actually required MCP tools should be released.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 4: Connect Telegram<\/strong><\/h2>\n\n\n\n<p><strong>This step transforms the agent from a pure desktop tool into an assistant for the pocket.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Create a bot via BotFather<\/strong><\/h3>\n\n\n\n<p><strong>Search for the verified contact <\/strong><strong>@BotFather<\/strong><strong> in Telegram. Send the <\/strong><strong>\/newbot<\/strong><strong> command, follow the instructions, and keep the generated token safe.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Insert the token into the OpenClaw configuration<\/strong><\/h3>\n\n\n\n<p><strong>Open the file <\/strong><strong>~\/.openclaw\/openclaw.json<\/strong><strong> and complement the following structure:<\/strong><\/p>\n\n\n\n<p><strong>JSON<\/strong><\/p>\n\n\n\n<p><strong>{<\/strong><\/p>\n\n\n\n<p><strong>&nbsp;&nbsp;&#8220;channels&#8221;: {<\/strong><\/p>\n\n\n\n<p><strong>&nbsp;&nbsp;&nbsp;&nbsp;&#8220;telegram&#8221;: {<\/strong><\/p>\n\n\n\n<p><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8220;enabled&#8221;: true,<\/strong><\/p>\n\n\n\n<p><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8220;botToken&#8221;: &#8220;YOUR_BOT_TOKEN&#8221;,<\/strong><\/p>\n\n\n\n<p><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8220;dmPolicy&#8221;: &#8220;pairing&#8221;<\/strong><\/p>\n\n\n\n<p><strong>&nbsp;&nbsp;&nbsp;&nbsp;}<\/strong><\/p>\n\n\n\n<p><strong>&nbsp;&nbsp;}<\/strong><\/p>\n\n\n\n<p><strong>}<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>enabled: Turns the Telegram channel on<\/strong><\/li>\n\n\n\n<li><strong>botToken: The token from the BotFather. This must be kept secret and treated like a password.<\/strong><\/li>\n\n\n\n<li><strong>&#8220;dmPolicy&#8221;: &#8220;pairing&#8221; \u2014 New contacts messaging the bot must be explicitly approved in the terminal before the agent responds. This is the safest default setting.<\/strong><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Restart the gateway<\/strong><\/h3>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>openclaw gateway restart<\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Authorize your own account<\/strong><\/h3>\n\n\n\n<p><strong>Send a message to the newly created bot in Telegram. OpenClaw then generates a pairing request. Release is granted in the terminal via:<\/strong><\/p>\n\n\n\n<p><strong>Bash<\/strong><\/p>\n\n\n\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<pre class=\"wp-block-code\"><code><strong>openclaw pairing list telegram<\/strong>\n<strong>openclaw pairing approve &lt;id><\/strong><\/code><\/pre>\n<\/div>\n\n\n\n<p><strong>After approval, every message to the bot is forwarded directly to the local OpenClaw instance and answered in the same thread.<\/strong><\/p>\n\n\n\n<p><strong>Security Note: This bot has direct access to all connected systems (GitHub, Stitch, local file system). The bot token must be treated with absolute confidentiality. In the event of a security incident, the token can be invalidated immediately via the BotFather using <\/strong><strong>\/revoke<\/strong><strong>. Dedicated service emails should be used for the authentication of connected services instead of the main private account.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Decisive Practical Test<\/strong><\/h2>\n\n\n\n<p><strong>After completing the setup, the following instruction was sent via the smartphone:<\/strong><\/p>\n\n\n\n<p><strong>&#8220;Lets create a new screen on stitch, we have to create a portfolio page for a cafe, it should look aesthetic. Once design is ready, extract the html file and create a new github repo that should be public and deploy it on github pages and send me the link&#8221;<\/strong><\/p>\n\n\n\n<p><strong>The agent&#8217;s reply followed a short time later:<\/strong><\/p>\n\n\n\n<p><strong>Done. Everything is deployed. GitHub Pages:<\/strong><a href=\"https:\/\/pikachucodecool-del.github.io\/cafe-portfolio-aurora\/\"><strong> <\/strong><strong>https:\/\/pikachucodecool-del.github.io\/cafe-portfolio-aurora\/<\/strong><\/a><strong> Repo:<\/strong><a href=\"https:\/\/github.com\/pikachucodecool-del\/cafe-portfolio-aurora\"><strong> <\/strong><strong>https:\/\/github.com\/pikachucodecool-del\/cafe-portfolio-aurora<\/strong><\/a><\/p>\n\n\n\n<p><strong>Behind the scenes, the following processes were executed autonomously by the agent:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Generation of a cafe landing page design in Stitch based on the text prompt.<\/strong><\/li>\n\n\n\n<li><strong>Extraction of HTML and CSS files from the design.<\/strong><\/li>\n\n\n\n<li><strong>Creation of a local project folder and initialization of a Git repository.<\/strong><\/li>\n\n\n\n<li><strong>Creation of a public GitHub repository via the <\/strong><strong>gh<\/strong><strong>-CLI.<\/strong><\/li>\n\n\n\n<li><strong>Pushing the code into the repository and activating GitHub Pages.<\/strong><\/li>\n\n\n\n<li><strong>Monitoring the deployment status until live activation.<\/strong><\/li>\n\n\n\n<li><strong>Returning the final URL into the Telegram chat.<\/strong><\/li>\n<\/ol>\n\n\n\n<p><strong>No opening of Stitch, no manual Git command, and no login to GitHub was required. One message, one reply, a finished website.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Conclusion<\/strong><\/h2>\n\n\n\n<p><strong>The way of working changes fundamentally. Thinking in individual work steps gives way to thinking in concrete outcomes. The technical implementation is completely delegated to the agent.<\/strong><\/p>\n\n\n\n<p><strong>Local execution is essential here. A cloud-based agent with extensive access to GitHub, design tools, and messenger channels represents a significant security risk. Through local operation, all sensitive access data remains on the own hardware, whereby full control is maintained.<\/strong><\/p>\n\n\n\n<p><strong>The strength of the system lies in the integrations. OpenClaw itself is minimally structured \u2013 only the Model Context Protocol (MCP) provides the necessary leverage. If the right tools are provided, the promise of an automated pipeline transforms from a marketing phrase to productive reality.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Outlook and Next Steps<\/strong><\/h2>\n\n\n\n<p><strong>The entry succeeds best via the <\/strong><strong>openclaw doctor<\/strong><strong> command, followed by the step-by-step connection of the individual integrations. As soon as the GitHub interface runs stably and automates smaller tasks, Stitch and Telegram can be supplemented. For later adjustments to the model or rotating keys, the <\/strong><strong>openclaw configure<\/strong><strong> command is available \u2013 a new run through the onboarding wizard is not necessary.<\/strong><\/p>\n\n\n\n<p><strong>The central question ultimately concerns not the technical setup, but the concrete application in everyday life: whether solo founders during product development, designers during the automated deployment of web interfaces, or developers who want to generate code directly from the problem description without context switching.<\/strong><\/p>\n\n\n\n<p><strong>The limits of the system primarily depend on the defined workflows.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The goal of this practical test was to see how far a local AI agent could go on a single instruction. A concrete scenario was chosen: building a complete website without ever touching a keyboard. After opening Telegram, the following message was sent: &#8220;Hey, build a website for my cafe. Make it look aesthetic. Design [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":173,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[7,5],"tags":[],"class_list":["post-183","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-en","category-engineering-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard - The GoTeams Way<\/title>\n<meta name=\"description\" content=\"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard - The GoTeams Way\" \/>\n<meta property=\"og:description\" content=\"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/\" \/>\n<meta property=\"og:site_name\" content=\"The GoTeams Way\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-02T17:04:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-03T04:32:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/06\/Blogpost-T02.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1933\" \/>\n\t<meta property=\"og:image:height\" content=\"918\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aman\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aman\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/\"},\"author\":{\"name\":\"Aman\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#\\\/schema\\\/person\\\/d4d396c6870074752e296cfccc1a9a10\"},\"headline\":\"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard\",\"datePublished\":\"2026-06-02T17:04:34+00:00\",\"dateModified\":\"2026-06-03T04:32:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/\"},\"wordCount\":1872,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Blogpost-T02.png\",\"articleSection\":[\"Artificial Intelligence\",\"Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/\",\"url\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/\",\"name\":\"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard - The GoTeams Way\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Blogpost-T02.png\",\"datePublished\":\"2026-06-02T17:04:34+00:00\",\"dateModified\":\"2026-06-03T04:32:03+00:00\",\"description\":\"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Blogpost-T02.png\",\"contentUrl\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Blogpost-T02.png\",\"width\":1933,\"height\":918},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/\",\"name\":\"The GoTeams Way\",\"description\":\"By Entrepreneurs, for Entrepreneurs.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#organization\",\"name\":\"GoTeams\",\"url\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Frame.png\",\"contentUrl\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Frame.png\",\"width\":488,\"height\":80,\"caption\":\"GoTeams\"},\"image\":{\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/go-teams\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/#\\\/schema\\\/person\\\/d4d396c6870074752e296cfccc1a9a10\",\"name\":\"Aman\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f2101b674b61aed47543a83da217ac541e96f822b473abe9d72a00d04ad3bfb?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f2101b674b61aed47543a83da217ac541e96f822b473abe9d72a00d04ad3bfb?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9f2101b674b61aed47543a83da217ac541e96f822b473abe9d72a00d04ad3bfb?s=96&d=mm&r=g\",\"caption\":\"Aman\"},\"sameAs\":[\"https:\\\/\\\/www.goteams.de\"],\"url\":\"https:\\\/\\\/www.goteams.de\\\/blog\\\/author\\\/aman\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard - The GoTeams Way","description":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/","og_locale":"en_US","og_type":"article","og_title":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard - The GoTeams Way","og_description":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard","og_url":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/","og_site_name":"The GoTeams Way","article_published_time":"2026-06-02T17:04:34+00:00","article_modified_time":"2026-06-03T04:32:03+00:00","og_image":[{"width":1933,"height":918,"url":"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/06\/Blogpost-T02.png","type":"image\/png"}],"author":"Aman","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Aman","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/#article","isPartOf":{"@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/"},"author":{"name":"Aman","@id":"https:\/\/www.goteams.de\/blog\/#\/schema\/person\/d4d396c6870074752e296cfccc1a9a10"},"headline":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard","datePublished":"2026-06-02T17:04:34+00:00","dateModified":"2026-06-03T04:32:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/"},"wordCount":1872,"commentCount":1,"publisher":{"@id":"https:\/\/www.goteams.de\/blog\/#organization"},"image":{"@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/#primaryimage"},"thumbnailUrl":"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/06\/Blogpost-T02.png","articleSection":["Artificial Intelligence","Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/","url":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/","name":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard - The GoTeams Way","isPartOf":{"@id":"https:\/\/www.goteams.de\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/#primaryimage"},"image":{"@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/#primaryimage"},"thumbnailUrl":"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/06\/Blogpost-T02.png","datePublished":"2026-06-02T17:04:34+00:00","dateModified":"2026-06-03T04:32:03+00:00","description":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard","breadcrumb":{"@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/#primaryimage","url":"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/06\/Blogpost-T02.png","contentUrl":"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/06\/Blogpost-T02.png","width":1933,"height":918},{"@type":"BreadcrumbList","@id":"https:\/\/www.goteams.de\/blog\/building-a-website-directly-from-a-smartphone-from-text-prompt-to-live-github-pages-url-without-touching-a-keyboard\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.goteams.de\/blog\/"},{"@type":"ListItem","position":2,"name":"Building a Website Directly from a Smartphone: From Text Prompt to Live GitHub Pages URL Without Touching a Keyboard"}]},{"@type":"WebSite","@id":"https:\/\/www.goteams.de\/blog\/#website","url":"https:\/\/www.goteams.de\/blog\/","name":"The GoTeams Way","description":"By Entrepreneurs, for Entrepreneurs.","publisher":{"@id":"https:\/\/www.goteams.de\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.goteams.de\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.goteams.de\/blog\/#organization","name":"GoTeams","url":"https:\/\/www.goteams.de\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.goteams.de\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/05\/Frame.png","contentUrl":"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/05\/Frame.png","width":488,"height":80,"caption":"GoTeams"},"image":{"@id":"https:\/\/www.goteams.de\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/go-teams"]},{"@type":"Person","@id":"https:\/\/www.goteams.de\/blog\/#\/schema\/person\/d4d396c6870074752e296cfccc1a9a10","name":"Aman","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9f2101b674b61aed47543a83da217ac541e96f822b473abe9d72a00d04ad3bfb?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9f2101b674b61aed47543a83da217ac541e96f822b473abe9d72a00d04ad3bfb?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9f2101b674b61aed47543a83da217ac541e96f822b473abe9d72a00d04ad3bfb?s=96&d=mm&r=g","caption":"Aman"},"sameAs":["https:\/\/www.goteams.de"],"url":"https:\/\/www.goteams.de\/blog\/author\/aman\/"}]}},"jetpack_featured_media_url":"https:\/\/www.goteams.de\/blog\/wp-content\/uploads\/2026\/06\/Blogpost-T02.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/posts\/183","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/comments?post=183"}],"version-history":[{"count":1,"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/posts\/183\/revisions"}],"predecessor-version":[{"id":184,"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/posts\/183\/revisions\/184"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/media\/173"}],"wp:attachment":[{"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/media?parent=183"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/categories?post=183"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.goteams.de\/blog\/wp-json\/wp\/v2\/tags?post=183"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}