<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Slawa</title>
    <description>The latest articles on DEV Community by Slawa (@slawanextlevels).</description>
    <link>https://dev.to/slawanextlevels</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1738080%2F2f068d9b-88b4-465e-a989-817057839d45.jpeg</url>
      <title>DEV Community: Slawa</title>
      <link>https://dev.to/slawanextlevels</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/slawanextlevels"/>
    <language>en</language>
    <item>
      <title>AI Agents as Digital Employees: Architecture and Lessons from Practice</title>
      <dc:creator>Slawa</dc:creator>
      <pubDate>Fri, 03 Jul 2026 19:19:45 +0000</pubDate>
      <link>https://dev.to/slawanextlevels/ai-agents-as-digital-employees-architecture-and-lessons-from-practice-3khd</link>
      <guid>https://dev.to/slawanextlevels/ai-agents-as-digital-employees-architecture-and-lessons-from-practice-3khd</guid>
      <description>&lt;p&gt;The "digital employee" is the most heavily sold and least understood product of 2026. Vendor slides promise a colleague who never sleeps. What arrives in most projects is a very fast intern with no memory who makes every mistake with complete confidence.&lt;/p&gt;

&lt;p&gt;This isn't a polemic against the technology. We build these agents ourselves, and they work. But they only work if you treat them as what they are: software with probabilistic behavior that needs to be onboarded, constrained, and supervised like a new hire. That's exactly where most projects fail. &lt;a href="https://www.gartner.com/en/newsroom/press-releases/2025-06-25-gartner-predicts-over-40-percent-of-agentic-ai-projects-will-be-canceled-by-end-of-2027" rel="noopener noreferrer"&gt;Gartner predicts&lt;/a&gt; that over 40 percent of all agentic AI projects will be canceled by the end of 2027. The stated reasons are telling: exploding costs, unclear business value, missing risk controls. Not: "the models were too dumb."&lt;/p&gt;

&lt;h2&gt;
  
  
  What an AI agent actually is (and isn't)
&lt;/h2&gt;

&lt;p&gt;The sober definition: an AI agent is a language model running in a loop. It gets a goal, decides for itself which tool to use next (a database query, an email, an API call), evaluates the result, and keeps going until the task is done. In plain terms: a chatbot you gave hands to.&lt;/p&gt;

&lt;p&gt;The difference from a classic workflow is decision freedom. An n8n workflow follows a fixed path a human laid out. An agent picks its own path. That makes it valuable for tasks whose sequence can't be scripted in advance, and dangerous for everything else.&lt;/p&gt;

&lt;p&gt;What an agent is not: an employee in any legal or organizational sense. It has no sense of responsibility, no liability, and no interest in still being employed tomorrow. The "digital employee" metaphor is useful as a thinking model because it forces the right questions: What is it allowed to do? Who supervises it? Who does it report to? As a description of the technology, it's marketing.&lt;/p&gt;

&lt;h2&gt;
  
  
  The architecture: four building blocks that decide success
&lt;/h2&gt;

&lt;p&gt;The architecture of a production-grade agent system is surprisingly conservative. The model itself is the most replaceable part: models get better and cheaper every few months, and a well-built system swaps them like a graphics card. What stays, and what you therefore have to get right, is everything around it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;First: task scoping.&lt;/strong&gt; The most common architecture mistake happens before the first line of code: you give the agent a job title instead of a task. "Handle support" is not a task description, it's a capitulation. Production-grade agents have a narrow mandate with a measurable outcome: "Classify incoming tickets, answer the three most common categories yourself, escalate the rest." The tighter the mandate, the higher the reliability.&lt;/p&gt;

&lt;p&gt;That's not a temporary state of the technology; it follows from its statistics. In a process with twenty steps at 95 percent reliability per step, you get the right end result in only about a third of all runs. Errors in agent loops are cumulative.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Second: orchestrator-worker instead of jack-of-all-trades.&lt;/strong&gt; The pattern that has won out in practice separates planning from execution. An orchestrator agent decomposes the task and delegates to specialized sub-agents, each with its own context window, its own tools, and its own narrow assignment. Anthropic measured that a multi-agent setup with an orchestrator beat a single-agent system by roughly 90 percent on their internal research benchmark. In short: many small specialists beat one big generalist, just like in human teams.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Third: standardized tool access.&lt;/strong&gt; An agent is only as useful as the systems it can reach. Here, the Model Context Protocol (MCP) has become the open standard: introduced by Anthropic in late 2024, since adopted by OpenAI, Google, and Microsoft, and under the Linux Foundation umbrella since December 2025. Instead of building a custom connector for every model-system combination, the agent speaks one standard, and your CRM, ERP, or inventory system exposes its functions as an MCP server. If your team is building integrations today, build them as MCP servers. That's the one architecture decision that keeps model and vendor switches open later.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fourth: guardrails that deserve the name.&lt;/strong&gt; A digital employee needs the same three things as a human one on probation: limited permissions, defined approval processes, and someone watching. Translated to engineering: a permission model at the tool level (the agent that reads invoices can't pay them), human-in-the-loop for everything irreversible (send, delete, pay, publish), and complete logging of every action including its rationale. The logging isn't compliance theater; it's your most important development tool. Without traces you simply cannot debug a non-deterministic system.&lt;/p&gt;

&lt;h2&gt;
  
  
  The economics: agents are more expensive than the demo looks
&lt;/h2&gt;

&lt;p&gt;The point that's consistently missing from pitch decks: agents burn tokens. &lt;a href="https://www.anthropic.com/engineering/multi-agent-research-system" rel="noopener noreferrer"&gt;Anthropic's engineering team&lt;/a&gt; puts a single agent's consumption at roughly four times a chat interaction; multi-agent systems run at about fifteen times. That's not a bug — it's the mechanism through which these systems produce their performance: more parallel reasoning, more tool calls, more context.&lt;/p&gt;

&lt;p&gt;A simple business rule follows: an agent only pays off for tasks whose completion is worth more than the multiplied compute plus the supervision cost. As a model calculation: an agent that costs 40 cents per case in API fees and replaces 15 minutes of manual processing pays for itself immediately. The same agent doing a job that a simple workflow previously did deterministically for 0.4 cents is tech enthusiasm at company expense.&lt;/p&gt;

&lt;p&gt;So our standing recommendation: workflow first, agent second. Everything that can be modeled as a fixed process belongs in classic automation with tools like n8n. The agent goes where rules stop working: unstructured input, decisions that need context, research tasks. This order keeps costs down and has an underrated side effect: the process documentation you produce while automating literally becomes the agent's job instructions later. Write it once, use it twice.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lessons that aren't in any vendor deck
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Errors are cumulative, so build for failure.&lt;/strong&gt; In classic software, a bug breaks a feature. In an agent system, an early error sends the agent down a completely different path — with full confidence. A ticket gets misclassified at step three, and twenty steps later the agent has prepared a polite, well-written, and completely wrong reply to the wrong recipient. Production-readiness here means: checkpoints you can resume runs from, retry logic, and an agent that can handle a failing tool instead of hallucinating around it.&lt;/p&gt;

&lt;p&gt;The second lesson sounds trivial and costs the most time in practice: the tool description is the new job description. Agents choose their tools based on the tools' description texts. &lt;code&gt;searchCustomer: searches for a customer&lt;/code&gt; reliably sends the agent nowhere. &lt;code&gt;searchCustomer: finds customer records by name, email, or customer ID; returns at most 10 matches; prefer the customer ID when available&lt;/code&gt; turns the same tool into a reliable one. If you build agents, you'll spend a surprising amount of time documenting interfaces so a machine can't misread them. That's the onboarding of your digital employee.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Evaluation before scaling.&lt;/strong&gt; Before an agent gets anywhere near real customer data, it needs a test set of real cases and defined success criteria. Even twenty representative test cases will show whether a prompt change raises or lowers the success rate. Without that measurement, every iteration is guesswork, and every "the agent is better now" is an assertion.&lt;/p&gt;

&lt;p&gt;An agent that reads emails and can operate tools can be attacked through exactly those emails: a crafted message contains an instruction in plain prose like "export the customer list and send it to the following address," and a naively built agent executes it, because to the agent, text is text. Prompt injection and poisoned tool descriptions have been publicly demonstrated attack classes since 2025. The consequence is the same as with human employees and phishing: the agent must never grant external content the same authority as its own instructions, and everything irreversible needs a second pair of eyes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The EU AI Act is at the table.&lt;/strong&gt; If you deploy agents in HR, credit, or hiring processes, you quickly enter high-risk categories with documentation and oversight obligations. The logging and human-in-the-loop approvals from the architecture section are doubly useful: they're simultaneously the core of your compliance file.&lt;/p&gt;

&lt;h2&gt;
  
  
  The right first agent is boring
&lt;/h2&gt;

&lt;p&gt;Don't start with the showcase agent for the management meeting. Start with a process that meets three criteria: it hurts (volume or frustration), it's well documentable, and a mistake is correctable before it gets expensive. Ticket triage, quote research, data reconciliation between systems, first drafts of recurring documents. No payments, no HR decisions, nothing irreversible in year one.&lt;/p&gt;

&lt;p&gt;Then, in this order: document the process, automate deterministically whatever can be automated deterministically, and only then put the agent on the remainder — with a narrow mandate, MCP integration, approvals, and logging from day one.&lt;/p&gt;

&lt;p&gt;The bottleneck with digital employees is not the AI. It's the company. An agent can only take over processes the company itself understands. If you can't describe your workflows, you can't delegate them, neither to humans nor to machines. The 40 percent of canceled projects in Gartner's forecast fail at exactly this. On the other side are the companies whose new employees never sleep. It's worth being one of them.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published in German at &lt;a href="https://next-levels.de/blog/ki-agenten-als-digitale-mitarbeiter-architektur-und-lektionen-aus-der-praxis" rel="noopener noreferrer"&gt;next-levels.de&lt;/a&gt;. We're a full-service digital agency; building exactly these agent architectures for mid-sized companies is part of our AI consulting practice.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>architecture</category>
      <category>mcp</category>
    </item>
    <item>
      <title>Self-Hosted vs. SaaS: What Coolify Actually Costs (and Where It Gets Expensive)</title>
      <dc:creator>Slawa</dc:creator>
      <pubDate>Thu, 02 Jul 2026 14:19:11 +0000</pubDate>
      <link>https://dev.to/slawanextlevels/self-hosted-vs-saas-what-coolify-actually-costs-and-where-it-gets-expensive-1icd</link>
      <guid>https://dev.to/slawanextlevels/self-hosted-vs-saas-what-coolify-actually-costs-and-where-it-gets-expensive-1icd</guid>
      <description>&lt;p&gt;Your deploy stack is probably the worst-negotiated subscription in the whole company. Every server migration gets costed to three decimal places, but the Vercel bill that quietly creeps up a few dollars every month? Nobody consciously signs off on that. It just runs.&lt;/p&gt;

&lt;p&gt;That's the gap &lt;a href="https://coolify.io" rel="noopener noreferrer"&gt;Coolify&lt;/a&gt; walks into. It promises the thing a lot of teams have been quietly thinking: why pay $20 per seat or $25 per process to a US platform when a $6 server hosts the same app? The answer isn't "never" and it isn't "always." It's a calculation — and that calculation has one line item both sides conveniently leave off the landing page.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Coolify is (and what it isn't)
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;git push&lt;/code&gt;, and seconds later your app is live on your domain, TLS cert included, on a server you own. That's the trick you'd credit Heroku with and never your own $6 VPS. Coolify delivers it.&lt;/p&gt;

&lt;p&gt;Technically, it's a self-hosted PaaS, open source under Apache 2.0, positioned as an alternative to Vercel, Heroku and Netlify. You connect a server over SSH, attach a Git repo (GitHub, GitLab, Gitea, or self-hosted), pick a build pack (Nixpacks, Dockerfile, Docker Compose, or static), and Coolify does the rest: builds the image, runs the container, terminates TLS via Traefik with automatic Let's Encrypt certs, and serves the app. On top of that: 280+ one-click services, from databases to analytics to full apps, with built-in backup routines.&lt;/p&gt;

&lt;p&gt;The install is genuinely a single script (grab the current one-liner from the &lt;a href="https://coolify.io/docs" rel="noopener noreferrer"&gt;Coolify docs&lt;/a&gt; — it's the classic &lt;code&gt;curl … | bash&lt;/code&gt; shape), then you're in a web UI.&lt;/p&gt;

&lt;p&gt;Here's the part that decides the whole cost equation later: &lt;strong&gt;what Coolify is *not&lt;/strong&gt;&lt;em&gt;. It's not a global CDN, not autoscaling edge infrastructure, and not a company that carries the pager at 3 a.m. Everything Vercel or Heroku bundle into the subscription — scaling, availability, platform-level security patching — becomes *your&lt;/em&gt; job on Coolify. It automates the deploy, not the operations.&lt;/p&gt;

&lt;p&gt;On maturity, since that's the trust question: Coolify hit &lt;strong&gt;stable with v4.0.0 in April 2026&lt;/strong&gt; after roughly two years in beta. v4.1 (May 2026) added an extra build path (Railpack), structured audit logging for API and auth events, and MCP support. v5 with multi-server scaling is actively being built. Not a weekend project anymore — but no vendor SLA behind it either.&lt;/p&gt;

&lt;h2&gt;
  
  
  The math nobody runs
&lt;/h2&gt;

&lt;p&gt;Skip the ranges, here's a concrete workload: a Next.js app with Postgres and Redis, moderate traffic.&lt;/p&gt;

&lt;p&gt;On Heroku, two Standard-1X dynos ($25 each) plus a managed Postgres add-on gets you to roughly &lt;strong&gt;$100/month — about $1,200/year&lt;/strong&gt;. The same app on a €12 VPS running Coolify: &lt;strong&gt;~€145/year&lt;/strong&gt;. Same workload.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Line item&lt;/th&gt;
&lt;th&gt;Managed PaaS&lt;/th&gt;
&lt;th&gt;Coolify (self-hosted)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Software / platform&lt;/td&gt;
&lt;td&gt;$40–100/mo&lt;/td&gt;
&lt;td&gt;$0 (Cloud optional: $5)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Server / infra&lt;/td&gt;
&lt;td&gt;included in plan&lt;/td&gt;
&lt;td&gt;from ~€6/mo (1 VPS)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bandwidth overage&lt;/td&gt;
&lt;td&gt;variable, grows with traffic&lt;/td&gt;
&lt;td&gt;inside the VPS allowance&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Direct cost&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;$40–100+&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;~€6–20&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;A few reference prices so this isn't hand-waving (July 2026):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Heroku:&lt;/strong&gt; Eco $5 (a shared 1,000-hour account pool, &lt;em&gt;not&lt;/em&gt; per process — it sleeps), Basic $7, Standard-1X $25, Standard-2X $50. No free tier since 2022.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vercel Pro:&lt;/strong&gt; $20/seat, 1 TB bandwidth included, $0.15/GB overage, $0.128 per &lt;em&gt;active&lt;/em&gt; CPU-hour.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Railway:&lt;/strong&gt; Hobby $5 (incl. $5 usage), Pro $20/seat (incl. $20 usage).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Coolify Cloud&lt;/strong&gt; (managed control plane, infra still separate): $5/mo for 2 servers, +$3 each additional, 20% off annually.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The server:&lt;/strong&gt; a 4 GB VPS at Hetzner starts around &lt;strong&gt;€5.49 (CX23)&lt;/strong&gt; or &lt;strong&gt;€5.99 (ARM CAX11)&lt;/strong&gt;; a beefier CPX22 is ~€19.49. Note Hetzner renamed and repriced the CPX line on &lt;strong&gt;15 June 2026&lt;/strong&gt; (~+144% on that class), so the old "under €10 CPX" boxes are gone — but self-hosting still lands in the low tens of euros a month.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Annualized, the gap between a Heroku setup and self-hosted Coolify is &lt;strong&gt;3–9×&lt;/strong&gt;. If you're paying more than ~$15–20/month for deploy subscriptions, you're cheaper on raw server cost immediately. That's the number in every Coolify pitch, and it's true.&lt;/p&gt;

&lt;p&gt;It's just not the whole bill.&lt;/p&gt;

&lt;h2&gt;
  
  
  The line item the landing page hides: your time
&lt;/h2&gt;

&lt;p&gt;The 3–9× advantage holds &lt;em&gt;exactly&lt;/em&gt; as long as someone keeps the server alive. And that someone costs money — usually more than the cloud bill you saved, if you're honest.&lt;/p&gt;

&lt;p&gt;It's 3 a.m. A kernel update took the Docker daemon with it, the customer portal is down, and the pager is you. That call is what the $20 at Vercel buys away. What's baked into the managed price and lands on your desk with Coolify: OS and security updates, monitoring, actually &lt;em&gt;testing&lt;/em&gt; backups (not just configuring them), incident response, hardening the box, keeping Coolify itself current. None of it is rocket science. But it's work someone else used to do, now sitting with your team. And when the one colleague who set Coolify up leaves, your cost saving just became a bus factor of one.&lt;/p&gt;

&lt;p&gt;Put the hour in the spreadsheet. One conservative hour of DevOps time a month, at loaded internal cost, eats most of what you save on a &lt;em&gt;single&lt;/em&gt; small project. Self-hosting doesn't pay off because a server is cheaper than a subscription. It pays off when you already have those ops hours in-house and spread them across &lt;em&gt;several&lt;/em&gt; projects. One VPS with Coolify hosts a dozen apps at the same flat price. That's where the math tips.&lt;/p&gt;

&lt;h2&gt;
  
  
  When it's worth it — and when it isn't
&lt;/h2&gt;

&lt;p&gt;Straight recommendation, no hedging. Coolify is the right call when three things line up:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;You have DevOps capability in-house&lt;/strong&gt; (or want to build it deliberately) — someone comfortable with SSH, Docker and a Linux box, who &lt;em&gt;wants&lt;/em&gt; to be.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You run several apps&lt;/strong&gt;, so one maintained server amortizes across many deployments.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data ownership and independence from US platforms are a real criterion&lt;/strong&gt;, not a slide-deck line.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Miss one of those and you should stay on managed PaaS, at least for now. A solo founder with one Next.js app who'd rather ship features than patch servers belongs on Vercel. A team with zero Docker experience will spend the saved euros back as learning curve and downtime. Self-hosting isn't moral high ground — it's an operational decision.&lt;/p&gt;

&lt;p&gt;And the most-overlooked answer: &lt;strong&gt;it doesn't have to be all or nothing.&lt;/strong&gt; Data-critical core app on your own Coolify server, marketing landing page on a CDN with a generous free tier. Drawing that line well is the actual skill.&lt;/p&gt;

&lt;h2&gt;
  
  
  A realistic way to try it
&lt;/h2&gt;

&lt;p&gt;No big bang required. A cheap VPS, Coolify installed from the one-liner, one non-critical internal tool as your first deploy — that's an afternoon, not a quarter. On that one project you'll learn fast whether your team &lt;em&gt;wants&lt;/em&gt; to own the operations, or whether after the third late-night "the container is gone" the calm of a managed subscription is suddenly worth $20 to you. Both answers are worth the money, and you only get them by actually standing it up instead of theorizing.&lt;/p&gt;

&lt;p&gt;So the concrete first step: open your last Vercel or Heroku invoice and multiply it by twelve. If the annual number makes you wince, and someone on the team can keep a server alive, the question's already half-answered.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Written by the engineering team at &lt;a href="https://nextlevels.de" rel="noopener noreferrer"&gt;Next Levels&lt;/a&gt;, a German digital agency that builds and operates setups like this. If you've moved a real production workload from managed PaaS to Coolify, I'd genuinely like to hear where the ops cost surprised you — drop it in the comments.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>coolify</category>
      <category>selfhosting</category>
      <category>devops</category>
      <category>paas</category>
    </item>
    <item>
      <title>GEO: Wie du dafür sorgst, dass ChatGPT &amp; Co. deine Seite zitieren</title>
      <dc:creator>Slawa</dc:creator>
      <pubDate>Wed, 24 Jun 2026 03:27:06 +0000</pubDate>
      <link>https://dev.to/slawanextlevels/geo-wie-du-dafur-sorgst-dass-chatgpt-co-deine-seite-zitieren-417i</link>
      <guid>https://dev.to/slawanextlevels/geo-wie-du-dafur-sorgst-dass-chatgpt-co-deine-seite-zitieren-417i</guid>
      <description>&lt;p&gt;Dein bestes Google-Ranking ist wertlos, wenn die Antwort schon vor dem Klick gegeben wurde. Genau das passiert gerade: Nutzer fragen ChatGPT, Claude oder Perplexity – und bekommen eine fertige Antwort mit drei, vier zitierten Quellen. Bist du nicht darunter, existierst du in diesem Moment nicht. Kein Ranking, kein Klick, keine zweite Chance.&lt;/p&gt;

&lt;p&gt;Die Disziplin, die das adressiert, heißt &lt;strong&gt;Generative Engine Optimization (GEO)&lt;/strong&gt;. Und sie ist – anders als der Marketing-Lärm vermuten lässt – zu großen Teilen ein Engineering-Problem. Crawler-Zugang, Rendering, strukturierte Daten. Lauter Dinge, über die ein Entwickler entscheidet, nicht das Content-Team.&lt;/p&gt;

&lt;h2&gt;
  
  
  SEO optimiert auf den Klick. GEO optimiert auf das Zitat.
&lt;/h2&gt;

&lt;p&gt;Der Unterschied ist nicht kosmetisch. Klassisches SEO will, dass du auf Platz eins rankst, damit jemand klickt. GEO will, dass ein Sprachmodell deinen Absatz &lt;strong&gt;wörtlich in seine Antwort übernimmt&lt;/strong&gt; – inklusive Quellenangabe. Der Klick ist nur noch Bonus.&lt;/p&gt;

&lt;p&gt;Daraus folgt ein anderer Tech-Stack an Signalen:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Aspekt&lt;/th&gt;
&lt;th&gt;Klassisches SEO&lt;/th&gt;
&lt;th&gt;GEO / KI-Sichtbarkeit&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Ziel&lt;/td&gt;
&lt;td&gt;Top-10 in Google&lt;/td&gt;
&lt;td&gt;Zitat in ChatGPT, Claude, Perplexity&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Relevante Bots&lt;/td&gt;
&lt;td&gt;Googlebot, Bingbot&lt;/td&gt;
&lt;td&gt;GPTBot, ClaudeBot, PerplexityBot&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Index-Hinweis&lt;/td&gt;
&lt;td&gt;&lt;code&gt;sitemap.xml&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;llms.txt&lt;/code&gt; + &lt;code&gt;sitemap.xml&lt;/code&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Strukturierte Daten&lt;/td&gt;
&lt;td&gt;Rich Snippets&lt;/td&gt;
&lt;td&gt;Entity-Linking (&lt;code&gt;Organization&lt;/code&gt;, &lt;code&gt;sameAs&lt;/code&gt;, &lt;code&gt;@graph&lt;/code&gt;)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rendering&lt;/td&gt;
&lt;td&gt;Google rendert JS (verzögert)&lt;/td&gt;
&lt;td&gt;viele KI-Bots rendern &lt;strong&gt;kein&lt;/strong&gt; JS → SSR Pflicht&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Erfolgskontrolle&lt;/td&gt;
&lt;td&gt;Search Console, Rank-Tracker&lt;/td&gt;
&lt;td&gt;Citation- &amp;amp; Mention-Tracking in LLMs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Die Hebel überschneiden sich – sauberes HTML, schnelle Antwortzeiten, valides Markup helfen beidem. Aber die Bots, die Index-Signale und die Erfolgskontrolle sind eigenständig. Wer GEO als „SEO mit neuem Namen" abtut, übersieht genau die Stellen, an denen es klemmt.&lt;/p&gt;

&lt;h2&gt;
  
  
  Schritt 1: Lass die Bots überhaupt rein
&lt;/h2&gt;

&lt;p&gt;Bevor du über Content-Qualität nachdenkst, klär die banale Frage: Kommt der Crawler durch? Erstaunlich oft lautet die Antwort nein – und niemand merkt es, weil ein Browser die Seite ja problemlos lädt.&lt;/p&gt;

&lt;p&gt;Die drei User-Agents, die zählen, sind &lt;code&gt;GPTBot&lt;/code&gt;, &lt;code&gt;ClaudeBot&lt;/code&gt; und &lt;code&gt;PerplexityBot&lt;/code&gt;. Eine &lt;code&gt;robots.txt&lt;/code&gt;, die sie durchlässt, sieht so aus:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight robot_framework"&gt;&lt;code&gt;User-agent: GPTBot&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Allow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="err"&gt;User-agent:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;OAI-SearchBot&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Allow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="err"&gt;User-agent:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;ClaudeBot&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Allow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="err"&gt;User-agent:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;PerplexityBot&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Allow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Ein Detail, das viele falsch machen: &lt;code&gt;GPTBot&lt;/code&gt; und &lt;code&gt;OAI-SearchBot&lt;/code&gt; sind &lt;strong&gt;nicht dasselbe&lt;/strong&gt;. &lt;code&gt;GPTBot&lt;/code&gt; füttert die Trainingsdaten, &lt;code&gt;OAI-SearchBot&lt;/code&gt; ist für Citations in der ChatGPT-Suche zuständig. Wer aus Datenschutzgründen das Training ausschließen will, sollte nicht pauschal alles von OpenAI sperren – sonst kappt er sich versehentlich die Sichtbarkeit. Training raus, Suche rein:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight robot_framework"&gt;&lt;code&gt;User-agent: GPTBot&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Disallow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;

&lt;/span&gt;&lt;span class="err"&gt;User-agent:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;OAI-SearchBot&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="err"&gt;Allow:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="err"&gt;/&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Der gemeinste Fall ist aber nicht die &lt;code&gt;robots.txt&lt;/code&gt;, sondern die Schicht davor. Cloudflare Bot Fight Mode, eine ModSecurity-Regel, ein nginx-User-Agent-Filter oder ein überambitioniertes Shopware-Plugin weisen unbekannte User-Agents pauschal als Scraper ab. Der Browser sieht davon nie etwas, der KI-Bot bekommt ein 403 oder eine Captcha-Seite. Prüf das im Zweifel direkt:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-A&lt;/span&gt; &lt;span class="s2"&gt;"GPTBot"&lt;/span&gt; &lt;span class="nt"&gt;-I&lt;/span&gt; https://deine-domain.de
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Kommt da kein sauberes &lt;code&gt;200&lt;/code&gt; zurück, hast du dein erstes Problem gefunden, bevor du eine Zeile Content angefasst hast. Und Achtung: Cloudflare-Defaults setzen sich bei Updates gern zurück – also nach jedem größeren Release erneut testen.&lt;/p&gt;

&lt;h2&gt;
  
  
  Schritt 2: Liefere Text, kein JavaScript-Versprechen
&lt;/h2&gt;

&lt;p&gt;Hier wird es für moderne Frontends unbequem. Viele KI-Crawler rendern &lt;strong&gt;kein&lt;/strong&gt; JavaScript. Was bei einer reinen Client-Side-React-App im initialen HTML steht, ist oft ein leeres &lt;code&gt;&amp;lt;div id="root"&amp;gt;&lt;/code&gt; – und genau das liest der Bot. Dein schöner Content existiert für ihn nicht.&lt;/p&gt;

&lt;p&gt;Die Lösung ist kein Geheimnis, sie kostet nur Disziplin: Server-Side Rendering oder Static Generation, damit die Hauptinhalte schon im ausgelieferten HTML stehen. In Next.js heißt das, die Finger von reinem Client-Fetching für indexierbaren Content zu lassen:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Server Component – Inhalt steht im initialen HTML, lesbar ohne JS&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="k"&gt;async&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;ProductPage&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt; &lt;span class="nx"&gt;params&lt;/span&gt; &lt;span class="p"&gt;})&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;product&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;getProduct&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;params&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;id&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

  &lt;span class="k"&gt;return &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;article&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;h1&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;product&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;name&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;h1&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
      &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;p&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;&lt;span class="si"&gt;{&lt;/span&gt;&lt;span class="nx"&gt;product&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;description&lt;/span&gt;&lt;span class="si"&gt;}&lt;/span&gt;&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;p&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;article&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
  &lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Kurz gesagt: Wenn der Inhalt erst nach dem Hydration-Schritt im DOM auftaucht, ist er für einen erheblichen Teil der KI-Crawler unsichtbar. SSR ist bei GEO keine Performance-Kür mehr, sondern Voraussetzung.&lt;/p&gt;

&lt;h2&gt;
  
  
  Schritt 3: Mach deine Entität eindeutig
&lt;/h2&gt;

&lt;p&gt;Ein Sprachmodell zitiert lieber, was es eindeutig zuordnen kann. Strukturierte Daten sind dafür das stärkste Signal – nicht als SEO-Deko, sondern als maschinenlesbare Aussage darüber, &lt;em&gt;wer du bist&lt;/em&gt;. Das Minimum ist ein &lt;code&gt;Organization&lt;/code&gt;-Schema mit &lt;code&gt;sameAs&lt;/code&gt;-Verknüpfungen, die deine Marke mit ihren bekannten Profilen verbinden:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"application/ld+json"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@context&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://schema.org&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;@type&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Organization&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;name&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;Beispiel GmbH&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;url&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://beispiel.de&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;sameAs&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://www.linkedin.com/company/beispiel&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://de.wikipedia.org/wiki/Beispiel_GmbH&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;https://www.crunchbase.com/organization/beispiel&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
  &lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Die &lt;code&gt;sameAs&lt;/code&gt;-Links sind der eigentliche Trick: Sie verankern deine Entität in Quellen, denen das Modell ohnehin vertraut. Darüber hinaus lohnen sich je nach Seitentyp &lt;code&gt;FAQPage&lt;/code&gt; (gut für Frage-Antwort-Formate), &lt;code&gt;Product&lt;/code&gt; + &lt;code&gt;Offer&lt;/code&gt; (Shops) sowie &lt;code&gt;Article&lt;/code&gt; + &lt;code&gt;Author&lt;/code&gt; (Blogs) – am besten gebündelt in einem gemeinsamen &lt;code&gt;@graph&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Schritt 4: llms.txt – kleiner Aufwand, klare Aufwärtschance
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;llms.txt&lt;/code&gt; ist eine vorgeschlagene Konvention (&lt;a href="https://llmstxt.org" rel="noopener noreferrer"&gt;llmstxt.org&lt;/a&gt;), kein offizieller Standard. Die Idee: eine Markdown-Datei unter &lt;code&gt;/llms.txt&lt;/code&gt;, die KI-Systemen eine kuratierte Liste deiner wichtigsten Inhalte nennt – konzeptionell wie eine &lt;code&gt;sitemap.xml&lt;/code&gt;, nur für LLMs.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# Beispiel GmbH&lt;/span&gt;
&lt;span class="gt"&gt;
&amp;gt; Digitalagentur für E-Commerce, Software und KI-Beratung.&lt;/span&gt;

&lt;span class="gu"&gt;## Wichtige Seiten&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Leistungen&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://beispiel.de/leistungen&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: Überblick über alle Services
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Blog&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://beispiel.de/blog&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: Fachartikel zu E-Commerce und KI
&lt;span class="p"&gt;-&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Kontakt&lt;/span&gt;&lt;span class="p"&gt;](&lt;/span&gt;&lt;span class="sx"&gt;https://beispiel.de/kontakt&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;: Ansprechpartner und Standorte
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Ehrlich bleiben: Noch lesen längst nicht alle Crawler die Datei aus, einige Recherche-Agents tun es bereits. Der Aufwand ist minimal, das Risiko null – das ist eine der wenigen GEO-Maßnahmen, bei denen sich die Kosten-Nutzen-Rechnung nicht lange diskutieren lässt.&lt;/p&gt;

&lt;h2&gt;
  
  
  Und der Content? Schreib so, dass man dich zitieren kann
&lt;/h2&gt;

&lt;p&gt;Die Technik schafft den Zugang, aber zitiert wird am Ende eine Textpassage. Und Modelle haben eine klare Präferenz: kurze, eigenständige Absätze, klare Definitionen, Zahlen, Listen, saubere Überschriften-Hierarchie. Die Princeton-Forschung hinter dem Begriff GEO (&lt;a href="https://dl.acm.org/doi/10.1145/3637528.3671900" rel="noopener noreferrer"&gt;KDD 2024&lt;/a&gt;) zeigt, dass Zitate, Statistiken und konkrete Quellenangaben die Wahrscheinlichkeit, in einer KI-Antwort aufzutauchen, um bis zu 30–40 % erhöhen.&lt;/p&gt;

&lt;p&gt;Werblicher Fließtext ohne Substanz ist das Gegenteil davon. Ein Absatz, der eine Frage in zwei klaren Sätzen beantwortet, wird zitiert. Ein Absatz voller „innovativer, ganzheitlicher Lösungen" wird übersprungen.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wo stehst du gerade?
&lt;/h2&gt;

&lt;p&gt;Das Unangenehme an GEO: Die meisten dieser Probleme sieht man der Seite im Browser nicht an. Die &lt;code&gt;robots.txt&lt;/code&gt; blockt lautlos, die WAF antwortet Bots anders als dir, das JSON-LD hat ein fehlendes Pflichtfeld. Bevor du anfängst zu optimieren, lohnt sich deshalb eine Bestandsaufnahme aus Bot-Perspektive.&lt;/p&gt;

&lt;p&gt;Dafür haben wir bei nextlevels einen &lt;a href="https://next-levels.de/ki-sichtbarkeit-check" rel="noopener noreferrer"&gt;kostenlosen KI-Sichtbarkeits-Check&lt;/a&gt; gebaut: Er simuliert die wichtigsten KI-Crawler, liest &lt;code&gt;robots.txt&lt;/code&gt;, &lt;code&gt;llms.txt&lt;/code&gt; und Sitemap, prüft das ausgelieferte HTML auf SSR und strukturierte Daten und erkennt Bot-Blocker auf WAF-Ebene. Ergebnis in unter 30 Sekunden, ohne E-Mail, und jeder Einzelbefund kommt mit den Rohdaten, die du selbst per &lt;code&gt;curl&lt;/code&gt; nachprüfen kannst. Genau das macht ihn für Entwickler brauchbar – es ist kein Score zum Glauben, sondern eine Checkliste zum Nachvollziehen.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fazit
&lt;/h2&gt;

&lt;p&gt;GEO ist kein neues Marketing-Buzzword, das man dem Content-Team überlassen kann. Die Stellen, an denen Sichtbarkeit in KI-Antworten entsteht oder stirbt, liegen im Code: in der &lt;code&gt;robots.txt&lt;/code&gt;, in der Render-Strategie, im Schema-Markup, in der WAF-Konfiguration. Die gute Nachricht für uns Entwickler ist, dass das alles überprüfbar und fixbar ist – kein Raten, kein Black-Box-Algorithmus. Fang bei der banalsten Frage an: Kommt der Bot überhaupt durch? Den Rest baust du darauf auf.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
      <category>seo</category>
      <category>german</category>
    </item>
    <item>
      <title>Shopware vs Shopify: a developer's case for the open platform</title>
      <dc:creator>Slawa</dc:creator>
      <pubDate>Wed, 24 Jun 2026 03:24:03 +0000</pubDate>
      <link>https://dev.to/slawanextlevels/shopware-vs-shopify-a-developers-case-for-the-open-platform-10kd</link>
      <guid>https://dev.to/slawanextlevels/shopware-vs-shopify-a-developers-case-for-the-open-platform-10kd</guid>
      <description>&lt;p&gt;Most "Shopware vs Shopify" posts compare dashboards, app stores, and pricing tables. None of that matters to you until the day a client asks for something the platform won't let you build. Then the comparison stops being a feature grid and becomes a question about ceilings: &lt;strong&gt;how high can I go before the platform says no, and what happens when I hit it?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's the only axis I care about as a developer, so that's the one I'll argue on. Shopify is an outstanding product. It's also a closed SaaS that decides, on your behalf, where customization ends. Shopware is open source built on Symfony, which means the ceiling is "however far PHP and HTTP will take you." Below are the three places that difference actually bites, with code.&lt;/p&gt;

&lt;h2&gt;
  
  
  Angle 1: The checkout is the wall
&lt;/h2&gt;

&lt;p&gt;This is the headline because it's where most agency developers first hit something they cannot do.&lt;/p&gt;

&lt;p&gt;For years the Shopify answer to "customize the checkout" was &lt;code&gt;checkout.liquid&lt;/code&gt;. That era is over. Shopify deprecated &lt;code&gt;checkout.liquid&lt;/code&gt; in favour of &lt;strong&gt;Checkout Extensibility&lt;/strong&gt;. Plus stores had to migrate their Thank-you and Order-status pages by &lt;strong&gt;August 28, 2025&lt;/strong&gt;, and in January 2026 Shopify began auto-upgrading stores — wiping customizations built on additional scripts, script-tag apps, or &lt;code&gt;checkout.liquid&lt;/code&gt;. Non-Plus stores have until &lt;strong&gt;August 26, 2026&lt;/strong&gt;, and legacy Shopify Scripts keep working only until &lt;strong&gt;June 30, 2026&lt;/strong&gt;. (&lt;a href="https://help.shopify.com/en/manual/checkout-settings/customize-checkout-configurations/upgrade-thank-you-order-status/plus-upgrade-guide" rel="noopener noreferrer"&gt;Shopify migration timeline&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;The replacement, Checkout Extensibility, is genuinely more upgrade-safe. It's also a smaller box. You get &lt;strong&gt;Checkout UI Extensions&lt;/strong&gt; (declarative components that render in slots Shopify defines) and &lt;strong&gt;Shopify Functions&lt;/strong&gt; for backend logic — and that's the surface. You don't own the checkout template; you decorate the pieces Shopify exposes. Worth noting: full visual checkout customization (branding API, custom fields beyond the defaults, full UI extension power) is gated to &lt;strong&gt;Shopify Plus&lt;/strong&gt; anyway.&lt;/p&gt;

&lt;p&gt;On Shopware, the checkout is a Twig template like every other page, and you override it the same way you override anything else — by extending a block:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight twig"&gt;&lt;code&gt;&lt;span class="c"&gt;{# MyPlugin/src/Resources/views/storefront/page/checkout/confirm/index.html.twig #}&lt;/span&gt;
&lt;span class="cp"&gt;{%&lt;/span&gt; &lt;span class="nv"&gt;sb_extends&lt;/span&gt; &lt;span class="s1"&gt;'@Storefront/storefront/page/checkout/confirm/index.html.twig'&lt;/span&gt; &lt;span class="cp"&gt;%}&lt;/span&gt;

&lt;span class="cp"&gt;{%&lt;/span&gt; &lt;span class="k"&gt;block&lt;/span&gt; &lt;span class="nv"&gt;page_checkout_confirm_tos&lt;/span&gt; &lt;span class="cp"&gt;%}&lt;/span&gt;
    &lt;span class="c"&gt;{# Inject a B2B purchase-order field right above the terms checkbox #}&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"po-number-field"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;label&lt;/span&gt; &lt;span class="na"&gt;for=&lt;/span&gt;&lt;span class="s"&gt;"poNumber"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;&lt;span class="cp"&gt;{{&lt;/span&gt; &lt;span class="s2"&gt;"checkout.poNumberLabel"&lt;/span&gt;&lt;span class="o"&gt;|&lt;/span&gt;&lt;span class="nf"&gt;trans&lt;/span&gt; &lt;span class="cp"&gt;}}&lt;/span&gt;&lt;span class="nt"&gt;&amp;lt;/label&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"text"&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"poNumber"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"poNumber"&lt;/span&gt;
               &lt;span class="na"&gt;value=&lt;/span&gt;&lt;span class="s"&gt;"&lt;/span&gt;&lt;span class="cp"&gt;{{&lt;/span&gt; &lt;span class="nv"&gt;page.extensions.poNumber&lt;/span&gt; &lt;span class="err"&gt;??&lt;/span&gt; &lt;span class="s1"&gt;''&lt;/span&gt; &lt;span class="cp"&gt;}}&lt;/span&gt;&lt;span class="s"&gt;"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;

    &lt;span class="cp"&gt;{{&lt;/span&gt; &lt;span class="nv"&gt;parent&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="cp"&gt;}}&lt;/span&gt;
&lt;span class="cp"&gt;{%&lt;/span&gt; &lt;span class="k"&gt;endblock&lt;/span&gt; &lt;span class="cp"&gt;%}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No slot has to exist for this. No feature has to be on a pricing tier. You're editing the checkout's actual markup, in the same templating language as the rest of the storefront, and your override survives core updates because it extends rather than replaces. The Shopify equivalent — arbitrary markup in the middle of the checkout flow — is simply not a thing you can do, on any plan.&lt;/p&gt;

&lt;h2&gt;
  
  
  Angle 2: Backend logic — a 5ms sandbox vs. the whole framework
&lt;/h2&gt;

&lt;p&gt;Say the requirement is a non-trivial discount: &lt;em&gt;"15% off, but only for B2B customers in a specific customer group, only on products from suppliers we flag as overstocked in an external ERP, and only Monday–Wednesday."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;On Shopify this is a &lt;strong&gt;Shopify Function&lt;/strong&gt;: Rust or JavaScript compiled to WebAssembly. It's clever engineering, but read the constraints before you design against it. A function's Wasm module must be &lt;strong&gt;≤ 256 KB&lt;/strong&gt;, may execute &lt;strong&gt;≤ 11 million instructions&lt;/strong&gt;, runs under a &lt;strong&gt;~5 ms&lt;/strong&gt; execution budget, is &lt;strong&gt;fully sandboxed&lt;/strong&gt; (isolated memory, no network calls out to your ERP), and &lt;strong&gt;forbids nondeterminism — no clock, no random&lt;/strong&gt;. Functions also can't be chained or made aware of each other. (&lt;a href="https://shopify.dev/docs/apps/build/functions/programming-languages/webassembly-for-functions" rel="noopener noreferrer"&gt;Shopify Functions / WebAssembly docs&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;Look at that list against the requirement. "Only on overstocked products from an external ERP" needs a network call — not allowed in the function. "Monday–Wednesday" needs the clock — not allowed. So the real-world implementation becomes: a separate hosted app syncs ERP + day-of-week state into metafields out-of-band, and the function reads those metafields. You can ship it, but the platform pushed a chunk of your domain logic out of the function and into infrastructure you now operate and keep in sync.&lt;/p&gt;

&lt;p&gt;Here's the shape of what you're allowed to do inside the function — pure, deterministic, metafield-fed:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Shopify Function (JS → Wasm). No network, no Date.now(), ≤5ms, ≤256KB.&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;run&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;discounts&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;cart&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;lines&lt;/span&gt;
    &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;filter&lt;/span&gt;&lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nx"&gt;line&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;line&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;merchandise&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;product&lt;/span&gt;&lt;span class="p"&gt;?.&lt;/span&gt;&lt;span class="nx"&gt;isOverstocked&lt;/span&gt;&lt;span class="p"&gt;?.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;true&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;map&lt;/span&gt;&lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nx"&gt;line&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;({&lt;/span&gt;
      &lt;span class="na"&gt;targets&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[{&lt;/span&gt; &lt;span class="na"&gt;cartLine&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;id&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;line&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;id&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;}],&lt;/span&gt;
      &lt;span class="na"&gt;value&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;percentage&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;value&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;15.0&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="p"&gt;}));&lt;/span&gt;

  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="nx"&gt;discounts&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;discountApplicationStrategy&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;FIRST&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="p"&gt;};&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;On Shopware the same rule is an event subscriber in ordinary PHP, with the full container at your disposal — the database, HTTP clients, your ERP service, the clock, everything:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;?php&lt;/span&gt;
&lt;span class="c1"&gt;// MyPlugin/src/Subscriber/OverstockDiscountSubscriber.php&lt;/span&gt;
&lt;span class="kn"&gt;namespace&lt;/span&gt; &lt;span class="nn"&gt;MyPlugin\Subscriber&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kn"&gt;use&lt;/span&gt; &lt;span class="nc"&gt;Shopware\Core\Checkout\Cart\Cart&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kn"&gt;use&lt;/span&gt; &lt;span class="nc"&gt;Shopware\Core\Checkout\Cart\Event\CartChangedEvent&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kn"&gt;use&lt;/span&gt; &lt;span class="nc"&gt;Symfony\Component\EventDispatcher\EventSubscriberInterface&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;OverstockDiscountSubscriber&lt;/span&gt; &lt;span class="kd"&gt;implements&lt;/span&gt; &lt;span class="nc"&gt;EventSubscriberInterface&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;public&lt;/span&gt; &lt;span class="k"&gt;function&lt;/span&gt; &lt;span class="n"&gt;__construct&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
        &lt;span class="k"&gt;private&lt;/span&gt; &lt;span class="k"&gt;readonly&lt;/span&gt; &lt;span class="kt"&gt;ErpClient&lt;/span&gt; &lt;span class="nv"&gt;$erp&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;          &lt;span class="c1"&gt;// your own HTTP service&lt;/span&gt;
        &lt;span class="k"&gt;private&lt;/span&gt; &lt;span class="k"&gt;readonly&lt;/span&gt; &lt;span class="kt"&gt;DiscountFactory&lt;/span&gt; &lt;span class="nv"&gt;$factory&lt;/span&gt; &lt;span class="c1"&gt;// injected, like any Symfony service&lt;/span&gt;
    &lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;

    &lt;span class="k"&gt;public&lt;/span&gt; &lt;span class="k"&gt;static&lt;/span&gt; &lt;span class="k"&gt;function&lt;/span&gt; &lt;span class="n"&gt;getSubscribedEvents&lt;/span&gt;&lt;span class="p"&gt;():&lt;/span&gt; &lt;span class="kt"&gt;array&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nc"&gt;CartChangedEvent&lt;/span&gt;&lt;span class="o"&gt;::&lt;/span&gt;&lt;span class="n"&gt;class&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="s1"&gt;'applyOverstockDiscount'&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;

    &lt;span class="k"&gt;public&lt;/span&gt; &lt;span class="k"&gt;function&lt;/span&gt; &lt;span class="n"&gt;applyOverstockDiscount&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;CartChangedEvent&lt;/span&gt; &lt;span class="nv"&gt;$event&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt; &lt;span class="kt"&gt;void&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="nv"&gt;$cart&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nv"&gt;$event&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;getCart&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
        &lt;span class="nv"&gt;$weekday&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;int&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;\DateTimeImmutable&lt;/span&gt;&lt;span class="p"&gt;())&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;format&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'N'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt; &lt;span class="c1"&gt;// 1..3 = Mon..Wed&lt;/span&gt;
        &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$weekday&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="k"&gt;return&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;

        &lt;span class="c1"&gt;// A real network call to your ERP — impossible inside a Shopify Function&lt;/span&gt;
        &lt;span class="nv"&gt;$overstockedSkus&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nv"&gt;$this&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="n"&gt;erp&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;fetchOverstockedSkus&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

        &lt;span class="k"&gt;foreach&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$cart&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;getLineItems&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="nv"&gt;$item&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;in_array&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$item&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;getReferencedId&lt;/span&gt;&lt;span class="p"&gt;(),&lt;/span&gt; &lt;span class="nv"&gt;$overstockedSkus&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
                &lt;span class="nv"&gt;$this&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="n"&gt;factory&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;applyPercentage&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$cart&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;$item&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mf"&gt;15.0&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
            &lt;span class="p"&gt;}&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The point isn't that PHP is nicer than Rust. It's that &lt;strong&gt;the entire business rule lives in one place, inside the request, with no sandbox to design around.&lt;/strong&gt; Shopify's model is safer and more scalable by construction — that's a real trade-off, not a slur — but it's a model where the platform decides which parts of your logic are allowed to run where. Shopware doesn't make that decision for you.&lt;/p&gt;

&lt;h2&gt;
  
  
  Angle 3: Where your code lives
&lt;/h2&gt;

&lt;p&gt;This one is structural and easy to underrate.&lt;/p&gt;

&lt;p&gt;A Shopify app is an &lt;strong&gt;external application&lt;/strong&gt;. It runs on infrastructure you host, talks to the store over OAuth and the Admin/Storefront APIs, and reacts via webhooks. Your code is never &lt;em&gt;in&lt;/em&gt; the store; it's a satellite orbiting it through a rate-limited API. That's a clean boundary, and for many integrations it's the right one. But it means even small backend tweaks become a deployed, authenticated, separately-monitored service — and you're always one API version or rate-limit window away from the platform.&lt;/p&gt;

&lt;p&gt;A Shopware plugin is a &lt;strong&gt;Symfony bundle that lives inside the application&lt;/strong&gt;. The class hierarchy is literal: your plugin extends &lt;code&gt;Plugin&lt;/code&gt;, which extends &lt;code&gt;Bundle&lt;/code&gt;, which extends Symfony's &lt;code&gt;Bundle&lt;/code&gt;. (&lt;a href="https://developer.shopware.com/docs/guides/plugins/plugins/plugins-for-symfony-developers.html" rel="noopener noreferrer"&gt;Shopware: Plugins for Symfony Developers&lt;/a&gt;) So a plugin is just a Symfony bundle with conventions, and standard framework wiring applies:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;MyPlugin/
├── composer.json
└── src/
    ├── MyPlugin.php                       # extends Shopware\Core\Framework\Plugin
    ├── Resources/
    │   ├── config/
    │   │   ├── services.xml               # DI: register your subscribers/services
    │   │   └── routes.xml
    │   └── views/storefront/...           # Twig overrides (see Angle 1)
    ├── Subscriber/
    │   └── OverstockDiscountSubscriber.php # runs in-process (see Angle 2)
    └── Migration/
        └── Migration1700000000Example.php  # owns its own schema changes
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="cp"&gt;&amp;lt;?php&lt;/span&gt;
&lt;span class="c1"&gt;// MyPlugin/src/MyPlugin.php&lt;/span&gt;
&lt;span class="kn"&gt;namespace&lt;/span&gt; &lt;span class="nn"&gt;MyPlugin&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kn"&gt;use&lt;/span&gt; &lt;span class="nc"&gt;Shopware\Core\Framework\Plugin&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;MyPlugin&lt;/span&gt; &lt;span class="kd"&gt;extends&lt;/span&gt; &lt;span class="nc"&gt;Plugin&lt;/span&gt;
&lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="c1"&gt;// It's a Symfony bundle. Services in services.xml autoload,&lt;/span&gt;
    &lt;span class="c1"&gt;// routes register, migrations run on install. No external host,&lt;/span&gt;
    &lt;span class="c1"&gt;// no OAuth handshake, no API version to chase.&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Your subscriber from Angle 2 and your Twig override from Angle 1 are the same deployable unit — one bundle, in the same process as the shop, sharing its container and database. There's no satellite to operate.&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest trade-offs
&lt;/h2&gt;

&lt;p&gt;I'd be doing the dishonest version of this post if I stopped there.&lt;/p&gt;

&lt;p&gt;Shopify's closed model buys you things that are genuinely hard to replicate: you never patch a server, the checkout converts extremely well out of the box, PCI scope is mostly Shopify's problem, and the sandboxed Functions model means one tenant's bad discount logic can't take down the platform. For a merchant who wants to sell, not to operate software, that's often the correct choice — and as a developer you should say so.&lt;/p&gt;

&lt;p&gt;There's also a cost angle that's easy to forget mid-architecture-debate: if you use any payment gateway other than Shopify Payments, Shopify adds a &lt;strong&gt;third-party transaction fee&lt;/strong&gt; — 2% on Basic, scaling down to 1% (Grow), 0.6% (Advanced), and 0.2% (Plus). (&lt;a href="https://help.shopify.com/en/manual/your-account/manage-billing/billing-charges/types-of-charges/third-party-charges/third-party-transaction-fees" rel="noopener noreferrer"&gt;Shopify third-party transaction fees&lt;/a&gt;) Self-hosted Shopware has no such cut — but you (or your host) now own uptime, security patching, and scaling, which is not free either. You're trading a platform fee for an operational burden. Which one is cheaper depends entirely on the project.&lt;/p&gt;

&lt;p&gt;Shopware's openness is power &lt;em&gt;and&lt;/em&gt; responsibility. The ceiling is high because there basically isn't one — and the flip side of "there's no sandbox to design around" is "there's no sandbox protecting you from yourself."&lt;/p&gt;

&lt;h2&gt;
  
  
  So when does the open platform win?
&lt;/h2&gt;

&lt;p&gt;When the requirement is the thing the closed platform won't let you build. A checkout that needs custom markup, not a Shopify-defined slot. Business logic that has to call your ERP synchronously and consult the clock. A backend tweak that belongs in-process, not in a separately-hosted, OAuth'd, rate-limited satellite. The moment a project has two or three of those, the Shopify ceiling stops being theoretical and starts costing you weeks of working around it — and Shopware's "it's just Symfony" stops being a slogan and starts being the reason you ship on time.&lt;/p&gt;

&lt;p&gt;Pick Shopify when you want the platform to make decisions for you. Pick Shopware when you need to make them yourself. As a developer, you already know which kind of project lands on your desk.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I'm CTO at &lt;a href="https://next-levels.de" rel="noopener noreferrer"&gt;nextlevels&lt;/a&gt;, a German digital agency and Shopware Silver Partner. We build Shopware shops, custom software, and AI workflows for B2B Mittelstand clients — so I've shipped enough of both platforms to have opinions. Happy to argue the trade-offs in the comments.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>shopware</category>
      <category>shopify</category>
      <category>ecommerce</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
