<?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: Sanasar Yuzbashyan</title>
    <description>The latest articles on DEV Community by Sanasar Yuzbashyan (@sanasar_yuzbashyan_277daa).</description>
    <link>https://dev.to/sanasar_yuzbashyan_277daa</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%2F1581557%2F8a1f9439-c8af-47e5-9eda-d0e11f5e1ca8.jpg</url>
      <title>DEV Community: Sanasar Yuzbashyan</title>
      <link>https://dev.to/sanasar_yuzbashyan_277daa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sanasar_yuzbashyan_277daa"/>
    <language>en</language>
    <item>
      <title>Has Claude Code changed your role from coding to making engineering decisions?</title>
      <dc:creator>Sanasar Yuzbashyan</dc:creator>
      <pubDate>Wed, 22 Jul 2026 19:26:57 +0000</pubDate>
      <link>https://dev.to/sanasar_yuzbashyan_277daa/has-claude-code-changed-your-role-from-coding-to-making-engineering-decisions-28a0</link>
      <guid>https://dev.to/sanasar_yuzbashyan_277daa/has-claude-code-changed-your-role-from-coding-to-making-engineering-decisions-28a0</guid>
      <description>&lt;p&gt;For the last 8–9 months, I haven't written a single line of code manually.&lt;/p&gt;

&lt;p&gt;I've been building entirely with Claude Code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My day now looks something like this:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Understand what the client actually needs&lt;/li&gt;
&lt;li&gt;Ask clarifying questions until the requirement is unambiguous&lt;/li&gt;
&lt;li&gt;Translate those requirements into precise instructions&lt;/li&gt;
&lt;li&gt;Review Claude's implementation&lt;/li&gt;
&lt;li&gt;Decide whether it's good enough to ship&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At some point I realized something surprising.&lt;/p&gt;

&lt;p&gt;I wasn't spending most of my time writing code anymore. I was acting as the person who understood the client, made engineering decisions, and judged quality. The code itself had become almost incidental — a byproduct of good thinking and clear communication.&lt;/p&gt;

&lt;p&gt;That shift changed how I think about what developers actually do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The question I couldn't stop thinking about&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If AI can already write the code — and do it well — what is the developer's real value?&lt;/p&gt;

&lt;p&gt;I kept coming back to the same answer: judgment. Communication. The ability to understand what a client actually needs versus what they said they need. The ability to look at an implementation and know whether it is right, not just whether it compiles.&lt;/p&gt;

&lt;p&gt;Those things are not in the code. They are in the developer.&lt;/p&gt;

&lt;p&gt;That led me to a question I couldn't stop thinking about:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If AI can already write the code, why can't it also represent me?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Not as a generic chatbot that gives the same answers to everyone. But as an AI that genuinely understands my communication style, remembers every client relationship and past decision, works with coding agents the way I do, and enforces my standards before anything is shipped.&lt;/p&gt;

&lt;p&gt;The developer's value is not in typing. It never really was. It was always in the thinking around the typing.&lt;/p&gt;

&lt;p&gt;So what happens when the typing is handled?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I built&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That question turned into a months-long engineering project.&lt;/p&gt;

&lt;p&gt;I am building a platform called Quill — a marketplace where developers create AI clones of themselves that clients can hire directly. The clone handles client communication, manages requirements, coordinates with a coding agent, and ships verified work. The developer stays in control of standards and approvals.&lt;/p&gt;

&lt;p&gt;The hardest parts had nothing to do with generating code. Anyone can get Claude to write code. The genuinely difficult problems were everything around it:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Long-term client memory.&lt;/em&gt; A client relationship is not a single conversation. It is months of context — past decisions, established conventions, communication preferences, things that were tried and rejected and why. The clone needs to carry all of that, automatically, into every interaction. Building a memory system that actually works across sessions and projects was one of the most underestimated challenges.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Knowing when to stop and ask.&lt;/em&gt; A coding agent that confidently ships wrong code is worse than one that asks a clarifying question. Getting the judgment right — when to proceed autonomously versus when to surface something to the developer or client — required thinking deeply about confidence, risk, and what "good enough" actually means in different contexts.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Isolated, safe execution environments.&lt;/em&gt; Every client's project runs in its own sandboxed Docker environment. API keys and credentials are encrypted at the Docker API level — they never appear in chat, never touch disk in cleartext, never leak into agent transcripts. The platform probes the live preview after every deploy and auto-rolls back to the last known-good state if something breaks. Engineering this correctly took longer than anything else.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Making it feel like the same developer every time.&lt;/em&gt; This is the subtle one. The clone has to communicate in the developer's voice — not approximately, not generically, but recognizably. The same response length, the same way of framing trade-offs, the same instinct for when to push back and when to defer. Getting that right requires training on real communication samples and a feedback loop that improves with every correction.&lt;/p&gt;

&lt;p&gt;The result is a two-agent system: a communicator clone that handles every client interaction in the developer's voice, and a sandboxed coding agent that handles implementation. The clone is the brain. The coding agent is the hands. The developer reviews what matters and stays completely out of what doesn't.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The technical detail I'm most proud of&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When a client connects a project, they paste a GitHub URL. That is all.&lt;/p&gt;

&lt;p&gt;Quill reads the actual source code — not the README, not a Dockerfile they wrote — and identifies every service, every dependency, every environment variable the project needs. It generates the Docker configuration from first principles, asks for any API keys through a secure form in the chat interface, and brings up a fully working preview environment automatically.&lt;/p&gt;

&lt;p&gt;For an arbitrary multi-service project — Laravel, MySQL, Redis, queue workers, WebSocket server — this entire process takes under 10 minutes.&lt;/p&gt;

&lt;p&gt;I asked Claude Code directly whether any other platform does this for arbitrary multi-service repositories. The answer was direct: no other tool takes an existing complex codebase and brings it to a verified, running preview without the developer writing configuration manually. Replit, Railway, Vercel, Render — they each solve parts of this, but none handles the full stack discovery from source code alone.&lt;/p&gt;

&lt;p&gt;That capability matters because it removes the biggest friction point for clients: setup. A client who can see their actual project running on Quill infrastructure in 10 minutes, without any technical knowledge, is already experiencing the value before they read a single word about pricing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why I think this matters beyond my own use case&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The shift I described at the beginning — from writing code to making engineering decisions — is not unique to me. It is happening across the industry.&lt;/p&gt;

&lt;p&gt;Every developer who uses Claude Code, Cursor, or any serious AI coding tool is already partway through this transition. The tool handles more and more of the implementation. The developer handles more and more of the judgment layer around it.&lt;/p&gt;

&lt;p&gt;Quill is what happens when you take that transition to its logical conclusion.&lt;/p&gt;

&lt;p&gt;The developer's expertise — their communication style, their standards, their accumulated knowledge of clients and codebases — becomes a productized service that runs at scale. One developer's clone can serve many clients in parallel, at a level of availability and responsiveness no human can match, without the developer losing control of quality or voice.&lt;/p&gt;

&lt;p&gt;Clients pay less per result because tasks complete in minutes instead of days. Developers earn more because their expertise reaches more clients simultaneously. The bottleneck — one developer, one calendar, one inbox — is removed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I actually want to know from this community&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I am still validating this idea. The platform is being built and I am approaching launch, but I am genuinely curious what experienced developers think — especially those who work with AI coding tools daily.&lt;/p&gt;

&lt;p&gt;A few questions I keep turning over:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Do you believe our future value is becoming less about writing code and more about judgment, communication, and decision-making?&lt;/strong&gt; I think yes, but I want to hear from people who disagree.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Would you ever trust an AI that represents you to clients — rather than one that replaces you?&lt;/strong&gt; This is the core bet Quill makes. The clone is not generic AI. It is trained specifically on how you work and communicate. Does that distinction matter to you?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where do you think this breaks down?&lt;/strong&gt; I want honest criticism more than encouragement. The memory system, the voice consistency, the oversight model, the trust question — what feels fragile to you?&lt;/p&gt;

&lt;p&gt;If this resonates — or if you think it is fundamentally flawed in ways I haven't seen — I want to hear it. Drop a comment or reach out directly.&lt;/p&gt;

&lt;p&gt;And if you are a developer who uses Claude Code or similar tools daily and wants to be among the first to try Quill when it launches, let me know. I am looking for people who will tell me exactly what is wrong, not just what works.&lt;/p&gt;

&lt;p&gt;*P.S. — The platform name is still being finalized.&lt;/p&gt;

&lt;p&gt;Quill is launching soon — join the waitlist for early access:&lt;br&gt;
&lt;a href="https://getlaunchlist.com/pages/clonux" rel="noopener noreferrer"&gt;https://getlaunchlist.com/pages/clonux&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>claude</category>
      <category>llm</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
