<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Kelly Chan on Medium]]></title>
        <description><![CDATA[Stories by Kelly Chan on Medium]]></description>
        <link>https://medium.com/@mrkelly?source=rss-574108cfb765------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/2*_PwX9jmp5zz2BPderIAIdg.jpeg</url>
            <title>Stories by Kelly Chan on Medium</title>
            <link>https://medium.com/@mrkelly?source=rss-574108cfb765------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Sun, 07 Jun 2026 00:39:06 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@mrkelly/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[I Run 9 Git Worktrees in Parallel — Here’s How I Survived Multi-Agent Development]]></title>
            <link>https://mrkelly.medium.com/i-run-9-git-worktrees-in-parallel-heres-how-i-survived-multi-agent-development-69d6f0d81966?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/69d6f0d81966</guid>
            <category><![CDATA[vibe-coding]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Sat, 14 Feb 2026 10:49:28 GMT</pubDate>
            <atom:updated>2026-02-14T10:49:28.281Z</atom:updated>
            <content:encoded><![CDATA[<p><em>How I stopped fighting Git and started scaling AI development properly.</em></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*j9nyC5rEUEAQmOyQIlmxMg.png" /></figure><h3>The Day Git Became My Bottleneck</h3><p>I currently run <strong>9 git worktrees</strong> locally.</p><blockquote>Nine folders.<br>Nine branches.<br>Nine concurrent streams of work.</blockquote><p>Each one often powered by a different AI agent.</p><blockquote>One is refactoring backend logic.<br>One is rewriting UI.<br>One is cleaning up types.<br> Another is experimenting with architecture.<br> Two more are writing tests.</blockquote><p>The problem?</p><p>It wasn’t merge conflicts.</p><p>It was this:</p><pre>git checkout develop<br>git pull<br>git checkout -b feature-x<br>git add -A<br>git commit<br>git push<br>gh pr create</pre><p>Over.<br>And over.<br>And over.</p><p>In nine different directories.</p><p>When you cross 5 parallel tasks, something subtle happens:</p><blockquote><em>Your brain becomes the bottleneck.</em></blockquote><p>Not code.<br>Not architecture.<br>Not AI.</p><p>Your memory.</p><ul><li>“Did I pull in this folder?”</li><li>“Does this branch already have a pull request?”</li><li>“Is this branch up to date?”</li><li>“Did I forget to open a pull request?”</li><li>“Is CI going to fail because I forgot typecheck?”</li></ul><p>This is not engineering.</p><p>This is cognitive tax.</p><p>And it scales linearly with the number of parallel contexts.</p><h3>Multi-Agent Development Changes Everything</h3><p>In single-threaded human development:</p><blockquote>One branch at a time is fine.</blockquote><p>In multi-agent development:</p><p>You’re effectively managing a distributed system — locally.</p><p>Each branch becomes a micro-environment.<br>Each worktree becomes an isolated runtime.</p><p>And if your workflow isn’t automated:</p><blockquote><em>Chaos compounds.</em></blockquote><p>The core issue isn’t Git.</p><p>It’s <strong>context management at scale</strong>.</p><h3>The Shift: Disposable Contexts</h3><p>The mental breakthrough was simple:</p><blockquote><em>A branch is not an asset.<br>A branch is a disposable container.</em></blockquote><p>Each task must:</p><ul><li>Start clean</li><li>Be isolated</li><li>Be reproducible</li><li>Be safely merged</li><li>Be destroyable</li></ul><p>No stacking.<br>No emotional attachment.<br>No “I’ll reuse this branch”.</p><p>Disposable.</p><h3>So I Built Skills to Remove Myself From the Loop</h3><p>Instead of manually managing Git state across 9 worktrees,<br>I encoded the workflow into commands.</p><p>Now I only use four:</p><pre>/new-branch<br>/typecheck-lint<br>/typecheck-lint-commit-push<br>/commit-push</pre><p>That’s it.</p><p>Here’s how it works.</p><h3>1️⃣ /new-branch — The Clean Start Protocol</h3><p>When I begin a new task:</p><pre>claude /new-branch</pre><p>It automatically:</p><ul><li>Checks for uncommitted changes</li><li>Switches to develop</li><li>Pulls latest remote state</li><li>Generates semantic branch naming</li><li>Creates an empty commit</li><li>Creates a draft pull request</li></ul><p>Why the empty commit?</p><p>Because I want the pull request immediately.</p><p>CI should start early.<br>Review can start early.<br>Context is established early.</p><p>No forgotten pull requests.<br>No stale branches.<br>No accidental stacking.</p><p>Every task begins from a clean, synchronized state.</p><h3>2️⃣ /typecheck-lint — Local Sanity Gate</h3><p>During development:</p><pre>claude /typecheck-lint</pre><p>This runs:</p><ul><li>TypeScript type checking</li><li>Linting</li><li>Automatic fixes when possible</li></ul><p>And here’s the important part:</p><p>It uses my <a href="https://productready.dev"><strong>ProductReady</strong></a><strong> boilerplate as the golden standard</strong>.</p><p>That means:</p><p>If structure drifts,<br>If patterns deviate,<br>If something violates our production architecture baseline,</p><p>It corrects toward that standard.</p><p>This isn’t just linting.</p><p>It’s architectural alignment.</p><p>No commit is created.<br>It’s purely local validation.</p><h3>3️⃣ /typecheck-lint-commit-push — Safe Commit Mode</h3><p>When I want CI to pass on the first try:</p><pre>claude /typecheck-lint-commit-push</pre><p>It:</p><ul><li>Runs typecheck</li><li>Runs lint</li><li>Blocks if errors exist</li><li>Commits</li><li>Pushes</li><li>Creates or updates the pull request</li></ul><p>This is my default mode.</p><p>The goal:</p><blockquote><em>CI passes on first run.</em></blockquote><p>In a multi-agent environment, failed pipelines are expensive.<br>Each failure interrupts flow across contexts.</p><h3>4️⃣ /commit-push — Fast Path</h3><p>For quick changes:</p><pre>claude /commit-push</pre><p>It:</p><ul><li>Adds all changes</li><li>Generates semantic commit message</li><li>Pushes</li><li>Creates or updates pull request</li></ul><p>No friction.<br>No mental overhead.</p><h3>The Multi-Worktree Rhythm</h3><p>Here’s the actual cycle across 9 directories:</p><h3>Start new task</h3><pre>/new-branch</pre><h3>Develop</h3><p>AI agent works.</p><h3>Validate</h3><pre>/typecheck-lint</pre><h3>Safe commit</h3><pre>/typecheck-lint-commit-push</pre><h3>Merge</h3><p>Pull request is merged.<br>Remote branch auto-deleted.</p><h3>Cleanup</h3><p>Optionally remove local worktree.</p><p>Done.</p><p>Zero ambiguity.</p><h3>What Changed After This</h3><p>Not code quality.</p><p>Not commit speed.</p><p>But this:</p><blockquote><em>My cognitive load dropped dramatically.</em></blockquote><p>I no longer think about:</p><ul><li>Branch state</li><li>Pull request existence</li><li>Whether develop is fresh</li><li>Whether CI will fail on obvious type errors</li></ul><p>I only think about:</p><ul><li>Product</li><li>Architecture</li><li>System evolution</li></ul><h3>The Deeper Insight</h3><p>Multi-agent development isn’t about AI writing code.</p><p>It’s about scaling context safely.</p><p>When you move from:</p><p>1 branch → 9 branches<br> 1 task → 9 tasks</p><p>You need:</p><ul><li>Deterministic start states</li><li>Automatic pull request guarantees</li><li>Local validation gates</li><li>Disposable environments</li></ul><p>Otherwise:</p><p>Human memory becomes the weakest link.</p><h3>This Isn’t About Git</h3><p>It’s about infrastructure for velocity.</p><p>When AI increases output speed 5x,</p><p>Your workflow must evolve accordingly.</p><p>If not:</p><p>You’ll drown in your own parallelism.</p><h3>Final Thought</h3><p>The future of development isn’t single-threaded.</p><p>It’s multi-context, multi-agent, multi-branch.</p><p>And in that world:</p><p>The best workflow is the one<br>that removes you from repetitive control loops.</p><p>Because your brain is too expensive to waste on git checkout.</p><p>If you’re running more than three parallel branches,</p><p>try this experiment:</p><p>Automate your branch lifecycle.</p><p>Make context disposable.</p><p>And watch how much mental space you reclaim.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*NGvObxR7445yRiRen39dRg.png" /></figure><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=69d6f0d81966" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Why Coding Agents Are Eating the World]]></title>
            <link>https://mrkelly.medium.com/why-coding-agents-are-eating-the-world-6c5cb17b229b?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/6c5cb17b229b</guid>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Sun, 01 Feb 2026 18:13:31 GMT</pubDate>
            <atom:updated>2026-02-01T18:13:31.683Z</atom:updated>
            <content:encoded><![CDATA[<p>More than a decade after the mobile and cloud boom, a new wave of autonomous AI “coding agent” startups is igniting excitement and controversy. Companies building AI agents that can write and execute code — like the cloud-based <strong>Manus</strong> or the open-source <strong>OpenClaw</strong> — have skyrocketed in valuation and popularity. Investors are pouring funds into these ventures (Meta’s recent acquisition of Manus valued it at around $2–3 billion), and open-source agents like OpenClaw have become viral sensations (over 113,000 stars on GitHub virtually overnight). With every breakthrough, skeptics ask: “Is this just another tech bubble?”</p><p>I, along with others in the industry, argue the opposite. <em>(For context: I’ve spent years building and investing in AI automation companies, including some of the aforementioned).</em> We believe the new generation of coding agent companies are creating <strong>real, high-growth businesses with deep moats</strong>. In fact, the broader market remains cautious — enterprise software stocks trade at moderate multiples, and many commentators constantly warn of AI hype. And as the old maxim goes, you can’t have a bubble when everyone is screaming “Bubble!” The discussion shouldn’t fixate on frothy valuations alone, but on the <strong>underlying tectonic shift</strong>: we are in the midst of a dramatic technological and economic transition in which coding agents are poised to <strong>take over large swathes of work across the economy</strong>.</p><p>In industry after industry, software workflows that once depended on human labor or traditional programs are now being run by AI coding agents delivered as online services. Many of the winners are entrepreneurial tech companies from Silicon Valley (and increasingly, globally) that are invading and overturning established structures. Over the next 10 years, we expect coding agents to disrupt countless domains — often led by new upstarts rather than incumbents.</p><h3>Why Is This Happening Now?</h3><p>Why are coding agents taking off now, rather than five or ten years ago? Simply put, <strong>all the necessary ingredients have finally come together</strong>, after decades of groundwork in computing and AI. Recent advances in <strong>large language models (LLMs)</strong> mean we now have AI that can reliably understand instructions and generate complex code. Six decades into the computer revolution, and after two decades of exponential internet growth, the technology needed to let software <em>write its own software</em> actually works — and can be deployed at global scale.</p><p>Several key enablers converged to make coding agents feasible:</p><ul><li><strong>Ubiquitous Connectivity and Computing</strong>: Over 5 billion people carry smartphones connected to cloud data centers. High-speed internet and cloud platforms mean an AI agent can be accessible to anyone, anytime. In the early 2000s, launching a web startup required investing in costly servers and infrastructure. Today, an AI agent can be spun up on a cloud instance for a trivial cost. (When my colleague co-founded a cloud computing firm in 2000, it cost ~$150,000 per month to run a basic web app; now developers can rent a powerful cloud GPU for a few dollars an hour.) The global digital infrastructure envisioned in the 1990s is finally here — <strong>the world is fully online for these agents to live in</strong>.</li><li><strong>Mature AI and Tools</strong>: Modern AI models are not science projects; they are battle-tested and developer-friendly. Open-source frameworks and APIs (from OpenAI, Anthropic, Cohere, etc.) let small teams build on top of frontier models without reinventing the wheel. Programming assistants went from gimmicks to genuinely useful in just a few years. As one example, GitHub’s AI pair programmer <strong>Copilot</strong> now writes almost <strong>46% of the average developer’s code</strong> (and over 60% in Java projects) for 15 million users. This would have sounded like science fiction a decade ago. Coding agents leverage these same advances — using AI to generate and execute code — to handle tasks end-to-end.</li><li><strong>Falling Costs</strong>: The cost of computing intelligence has plummeted. Training a top-tier AI model used to cost millions of dollars, but today any startup can rent cloud AI APIs on a pay-as-you-go basis or fine-tune open-source models cheaply. Running a basic coding agent — complete with a virtual machine sandbox, browser, and database — is orders of magnitude cheaper than it was even a few years ago, thanks to cloud providers and containerization. Lower startup costs + a vastly expanded market = fertile ground for dozens of new agent-powered services.</li><li><strong>Cultural Readiness</strong>: Crucially, people and businesses are more receptive now. Hundreds of millions have used Siri, Alexa, or ChatGPT, acclimating them to the idea of talking to an AI. Businesses have spent a decade moving workflows to SaaS and automation. The remaining leap — from automated software to <em>autonomous</em> software — is smaller than ever psychologically. We’ve gone from <em>“there’s an app for that”</em> to <em>“my AI agent handled that.”</em> In short, <strong>the world is ready for software that acts on its own</strong>.</li></ul><p>Perhaps the single most dramatic evidence of this readiness is the case of <strong>OpenClaw</strong>. In January 2026, this open-source personal AI agent (formerly known as ClawdBot/MoltBot) became the fastest-growing project in GitHub’s history. OpenClaw is essentially <em>“Claude with hands”</em> — a reference to Anthropic’s Claude model, augmented with the ability to take actions on your behalf. Once installed on a user’s machine, it can <strong>execute terminal commands, run scripts, browse the web, read/write files, integrate with email and messaging apps, and generally act as your digital assistant</strong>. In other words, it turns natural language instructions into actions across your digital life. Despite its technical setup, OpenClaw amassed a staggering user base in days, as knowledge workers and developers rushed to give themselves a “virtual AI coworker.” This grassroots adoption underlines that the tech finally works and people are eager to use it — even outside of polished commercial products.</p><h3>Agents Transforming Industries</h3><p>The rise of coding agents isn’t just a novelty for programmers — it’s already reshaping major businesses and workflows. In industry after industry, we see the pattern repeating: <strong>an AI agent emerges that can perform core tasks with software, faster or cheaper than traditional methods, and incumbents either adapt or get left behind.</strong> Consider a few examples:</p><p><strong>1. Software Development and IT.</strong> It’s fitting that coding agents are disrupting the software industry itself first. We already noted how AI coding assistants are writing a large fraction of developers’ code. But beyond assisting humans, agents are starting to <strong>autonomously build and maintain software.</strong> For instance, teams now deploy agents to automatically generate simple apps or microservices from specifications, to handle code refactoring at scale, and even to monitor and fix bugs overnight without human intervention. DeepMind’s <em>AlphaDev</em> system showed that AI can go beyond human developers in some areas: it <strong>discovered new sorting algorithms that outperformed decades-old human benchmarks</strong>, leading to improvements in the standard C++ library. This kind of innovation hints that no aspect of coding is off-limits for automation.</p><p><strong>DevOps and operations</strong> are similarly being eaten by agents. Instead of a human writing a bash script to deploy servers or update configs, an AI agent can write and execute those scripts on the fly. Instead of a knock in the middle of the night to handle an outage, an agent can detect the issue and apply a fix (or at least triage it) before anyone wakes up. Startups like <strong>Adept AI</strong> recognized this early, raising hundreds of millions of dollars to build AI “teammates” that use existing software and APIs on your behalf. The vision is an AI that can do anything a human user can do on a computer — click buttons, type commands, cross-communicate between apps — only faster and tireless. We’re already seeing this in action: for example, an agent that takes a CEO’s simple Slack message <em>“Set up a new cloud database for our analytics”</em> and goes off to provision the database, configure it, and connect it to the company’s dashboard, all automatically. The boring glue work of IT is on the verge of being fully automated.</p><p><strong>2. Knowledge Work and Business Processes.</strong> Coding agents are not limited to “coding” per se — they use coding as a tool to get any digital task done. That makes them incredibly general-purpose for knowledge-based industries. A standout example is in <strong>recruiting and HR</strong>: Manus (one of the leading cloud-based agents) can take a folder of job applicant résumés and, in a matter of minutes, <strong>read every résumé, analyze each candidate, and compile a detailed ranking in a spreadsheet</strong>. If the hiring manager then says, “Actually, prioritize people with fintech experience,” the agent dynamically updates its criteria and re-scores the candidates. This is a task that might take a human HR team days of effort; Manus does it continuously and objectively as new résumés come in. It’s not hard to imagine every HR department using an AI agent for first-pass candidate screening and research in the near future. The $400 billion recruiting industry that LinkedIn began to chip away at is now squarely in an AI agent’s sights.</p><p><strong>Finance and analytics</strong> are likewise being transformed. Instead of a junior analyst pulling data and running Excel models all night, a coding agent can crunch financial reports, execute complex Python analyses, and generate presentation-ready charts on demand. Ask such an agent to “analyze Tesla’s stock performance and build a web dashboard of key insights,” and it will fetch market data, perform calculations, and even <strong>produce an interactive website</strong> to visualize the results. This isn’t hypothetical; Manus demonstrated exactly that capability in a demo. The turnaround time for deep analysis has gone from weeks to hours or minutes. Entire layers of middlemen — consultants producing reports, business analysts prepping dashboards — can be streamlined by agents that <strong>never clock out</strong> and integrate directly with databases and APIs.</p><p><strong>Marketing and customer engagement</strong> have embraced AI in content creation, and now coding agents push it further into execution. We’re seeing early agents that manage marketing campaigns autonomously: they generate personalized emails, iterate A/B tests on websites by deploying new code, allocate budget across ad platforms by interfacing with their APIs — all based on high-level goals given by a human strategist. In e-commerce, for example, an AI agent might handle the full cycle of a flash sale: it writes the promotional copy, codes the landing page, adjusts prices in the backend, and sends out customer notifications. Traditional marketers and web teams simply could not move that fast. The companies that leverage these agent-driven workflows can run circles around those that don’t.</p><p><strong>Customer support and operations</strong> are also feeling the impact. Chatbots have been used for support for years, but a coding agent can go further by <em>acting</em> on the customer’s issue. If a customer says, “I’m having trouble with my account,” a capable agent can directly query the backend systems (via code or API), diagnose the problem (say a misconfiguration), fix it, and reply to the customer that it’s resolved — without any human in the loop. This blurs the line between customer service and DevOps, because the “support agent” is literally an <strong>AI with system access and coding skills</strong>. Companies are cautiously starting to roll this out for common issues, because it can drastically reduce response times and costs. Those that perfect it will gain a huge advantage in customer satisfaction.</p><p><strong>3. Personal Productivity and Daily Life.</strong> On the individual level, coding agents are becoming the new power tool for knowledge workers, much like spreadsheets or web browsers were in earlier eras. We already highlighted OpenClaw, which tech enthusiasts are using as a personal secretary to automate chores: it <strong>clears your inbox, schedules meetings by cross-referencing calendars, checks you in for flights, and even orders your groceries</strong> via web scripts. All from a natural language chat interface on WhatsApp or Telegram. In effect, early adopters are each equipping themselves with a tireless digital chief-of-staff. It’s telling that <em>Token Security</em> (an identity security firm) found that <strong>over 20% of employees at some companies had started using Clawdbot/OpenClaw on their own</strong> — a shadow IT phenomenon where workers bring their own AI to the office to boost productivity. This bottom-up adoption is a strong signal: when people actively seek out a tool (despite no mandate from IT) simply because it helps them get more done, that tool is here to stay.</p><p>The <strong>education and training</strong> sector is likely next for agent-driven change. We already see AI tutors (like Duolingo’s chatbot or Khan Academy’s AI assistant) that provide one-on-one instruction. A coding agent can take this further by not just answering students’ questions but helping them <em>learn by doing</em>. Imagine a personal coding mentor agent: a student gives it a project idea, and the agent generates a starter code, then asks the student to modify it, debugging together in real time. The agent can create custom exercises on the fly, tailored to that student’s mistakes and interests. This kind of highly personalized, active learning at scale has never been possible before. It could revolutionize how we train the next generation of engineers (and indeed any knowledge profession), ensuring more people can participate in the AI-driven economy.</p><p>Even in sectors rooted in the physical world, the influence of coding agents is spreading. <strong>Automotive</strong> is a prime example: cars have essentially become computers on wheels, running millions of lines of code. Now, AI agents are being introduced to manage some of those systems. Modern driver-assistance (and autonomous driving prototypes) rely on AI decision-makers — agents deciding when to brake, turn, or reroute based on sensor data. You can think of a self-driving car as a specialized robotics agent that continuously writes a “script” (drive commands) to achieve the goal of a safe journey. As that technology matures, the role of human drivers will diminish; the <em>agent</em> will effectively “eat” the job of driving, just as cruise control and autopilot started doing decades ago. The difference is the intelligence and adaptability now on display. Tesla’s AI, Waymo’s autonomous system, and others learn and update much like a coding agent refining its approach to a task.</p><p>In <strong>logistics and manufacturing</strong>, agent software is optimizing the physical flows. Warehouses run by Amazon or Alibaba are orchestrated by algorithms that assign tasks to robots and workers; increasingly these algorithms are driven by AI that can rewrite its own logic to improve efficiency. FedEx and UPS have for years used software to map delivery routes — now they are testing AI that dynamically re-routes fleets in response to traffic or weather, writing new logistics plans on the fly. Factories are introducing AI co-pilots for production lines, which can programmatically adjust machine settings in real time to reduce defects or energy use. These are domain-specific agents, but they operate on the same principle: take in data, decide on actions, and execute via code — no human needed for each decision. In short, wherever there’s a repetitive decision process, an autonomous software agent is a potential replacement or assistant for the humans currently doing it.</p><p>It’s important to note that in some of these heavy industries, <strong>the incumbents have an opportunity</strong>: unlike, say, Blockbuster being blindsided by Netflix, a savvy car manufacturer or bank can <em>deploy</em> coding agents internally to stay ahead. For example, oil and gas companies were early adopters of supercomputing; today they are using AI to analyze seismic data and even to automate the control of drilling equipment. In agriculture, farmers now use AI-driven drones and planting bots that act on soil and weather data in real time. These are cases where the existing players use the new tech as a force multiplier rather than getting displaced by a startup. Nonetheless, the pattern holds: software (often AI software) is doing more of the critical work.</p><h3>The Next Frontiers and Challenges</h3><p>As we look ahead, no industry is truly safe from this trend. <strong>Healthcare</strong> and <strong>education</strong> — two sectors that have lagged in digital disruption — appear primed for an AI agent revolution in the coming years. We’re already seeing early signs: AI models can draft clinical reports and assist in diagnosis from medical images; combine that with an agent that can cross-reference patient history, schedule follow-up tests, and draft prescription orders, and you have the makings of an automated medical assistant. Likewise in education, beyond tutoring, an agent might handle all the administrative drudgery for teachers (grading assignments, composing individualized feedback, preparing lesson plans that adapt to live class progress). These fields are heavily human-centric by nature, so AI won’t replace the empathy and big decisions of professionals anytime soon. But by eating up the routine “paperwork” and providing decision support, coding agents could free up humans to focus on what they do best in these domains. My venture firm is backing startups in both healthcare and education that use AI agents to tackle precisely these pain points — areas traditionally resistant to change but now ripe for transformation by entrepreneurs who pair domain expertise with AI savvy.</p><p>Even <strong>national defense and cybersecurity</strong> are becoming arenas for coding agents. Modern militaries already employ autonomous drones and AI-powered analysis. The next step is agents that <em>write code</em> to counter threats at machine speed. For instance, the Pentagon’s DARPA recently launched the <strong>AI Cyber Challenge</strong>, inviting teams to build AI agents that can <strong>automatically find and fix software vulnerabilities to defend critical infrastructure</strong>. Think about that: instead of waiting for human cybersecurity analysts to patch a flaw (a process that can take months, during which we’re exposed), an AI agent could detect the flaw and <em>generate its own patch</em> in hours or minutes. It’s a high-stakes example of coding agents potentially “eating” the cybersecurity workflow. Of course, this cuts both ways — malicious actors might use AI agents to discover exploits or even to conduct cyberattacks autonomously, which raises the urgency for defense to deploy equally capable agents. We’re entering an era of AI agents dueling behind the scenes of warfare and crime-fighting, each writing and executing code at speeds no human can match.</p><p>For companies in <em>every</em> industry, the lesson is clear: <strong>assume an AI agent revolution is coming to your sector.</strong> Just as every company had to become somewhat of a software company over the last 20 years, now every company will need to become an <em>AI-driven</em> company over the next 10. This applies even to today’s software leaders. Great software incumbents like Microsoft, Google, Salesforce, and Oracle are racing to infuse agents into their products. Microsoft is rolling out Copilot agents across Office and Windows; Google is embedding generative AI into Workspace and search. They have no choice — if they don’t, upstarts will. We’ve already seen how <strong>Stack Overflow’s traffic fell by half</strong> once developers could get coding answers from ChatGPT and agents rather than traditional Q&amp;A sites. That’s a stark reminder: even digital-era firms can be disrupted if they stick to old paradigms. Google itself reportedly declared a “Code Red” internally when OpenAI’s ChatGPT burst onto the scene, fearing the threat to its search empire. The incumbent advantage can evaporate quickly when a new technology enables a fundamentally better user experience. AI agents that deliver <strong>instant, on-demand actions</strong> (not just information) are exactly that kind of leap.</p><p>In some domains, especially those entailing heavy physical assets or regulated environments, the incumbents might harness coding agents as an <strong>efficiency booster</strong> rather than face an upstart. But in many other domains, we expect <strong>new agent-native startups to completely upend the old order</strong>. The battles between established firms and AI-powered insurgents will be fierce. History suggests not all incumbents will adapt in time — many will fall into the innovator’s dilemma, hesitant to fully embrace automation that might cannibalize their legacy revenue or jobs. Meanwhile, nimble startups will have no such qualms about deploying AI to the hilt. The coming decade will likely see some titanic showdowns: think a traditional enterprise software giant versus a lean AI agent platform that can customize and integrate itself at a fraction of the cost; or a legacy bank versus a fintech that runs on AI agents for everything from customer service to risk modeling. <strong>Joseph Schumpeter’s</strong> concept of <em>“creative destruction”</em> is alive and well. He would recognize these AI agents as the new engines of creative destruction, tearing down old structures to make way for new ones.</p><p>Despite the turbulence this will cause, it’s ultimately a <strong>profoundly positive story</strong> — for those societies and companies willing to embrace it. In particular, it’s a huge opportunity for the tech ecosystem that nurtures such innovation. It’s not an accident that many of the breakthroughs in AI agents so far have come from the United States (think OpenAI’s ChatGPT and code interpreter, Microsoft and Google’s integrations, countless Silicon Valley startups) — the U.S. still benefits from world-class universities, a risk-taking culture, deep pools of venture capital, and strong legal protections for entrepreneurship. However, this wave is more global than the last. We’ve seen a <em>Shenzhen</em>-based team launch Manus and achieve world-leading autonomy, and open-source communities across Europe and Asia collectively push projects like OpenClaw. Innovation can come from anywhere, and capital is certainly paying attention globally. The U.S. doesn’t have a monopoly on AI talent or ambition — which is all the more reason American companies and policymakers must not become complacent. Still, those regions that foster the right mix of talent, capital, and pro-innovation policy will attract the best AI agent companies. It bodes well for places like the U.S., and also for new hubs around the world that position themselves as friendly to AI startups.</p><p>That said, we face <strong>several challenges</strong> in this transition:</p><ul><li><strong>Economic Headwinds and Resilience:</strong> Many coding agent startups are being built in a time of economic uncertainty and tighter capital (the post-2021 higher interest rate environment, cautious VC funding, etc.). This is a double-edged sword. On one hand, it’s harder to raise money and scale in a tougher economy; on the other hand, the startups that <em>do</em> make it through will have been forged in fire, with efficient operations and real product-market fit. Just as the likes of Google and Amazon emerged stronger after the dot-com bust, the winners of today’s AI agent cohort will likely be extremely robust. And when the macroeconomy stabilizes or rebounds, watch out — those startups will be poised to grow like wildfire, having already optimized for survival. In short, lean times produce tough companies. We’re already seeing a flight to quality: investors support the teams with real technology and paying users, while mere “AI hype” companies struggle. This is healthy in the long run.</li><li><strong>Talent and Job Disruption:</strong> A painful paradox of the AI agent revolution is the <strong>mismatch of skills</strong> in the labor force. Every tech company I know is <em>starved</em> for AI and machine learning engineers, prompt engineers, and savvy product builders who know how to leverage AI. Talented individuals in this field can command multiple offers and high salaries, even as overall tech unemployment remains elevated in some areas. At the same time, workers in roles that agents are automating (customer support reps, entry-level programmers, data analysts doing routine reporting, etc.) are at risk of being <em>stranded on the wrong side</em> of this disruption. We are likely to see some job displacement as certain tasks become fully automated. This is similar to how assembly-line automation affected manufacturing jobs. The only real solution is <strong>education and retraining</strong> at scale. Our society needs to equip people with the skills to work <em>with</em> AI agents — whether that’s learning to supervise them, to do the creative and complex tasks the AI can’t, or to build new businesses on top of them. Unfortunately, our education systems tend to move slowly. We have a long way to go to prepare the workforce for the agent-infused economy. In the interim, companies may face talent shortages in AI roles alongside layoffs in legacy roles — a jarring contrast. Managing this transition humanely and intelligently is going to be a major challenge of the coming decade.</li><li><strong>Trust, Culture, and Execution:</strong> The new generation of AI agent companies still need to <strong>prove their worth</strong> in the real world. It’s not enough to demonstrate a flashy demo or raise a mega funding round; they must build strong company cultures, solve real customer problems, and establish durable advantages. There are technical hurdles too: ensuring reliability, accuracy, and security of autonomous agents is <em>brutally difficult</em>. We’ve already seen incidents of agents going off-script or being prompted to do malicious things via “prompt injection” attacks. Earning user trust will require robust safety controls and transparency. For example, Manus built a reputation for showing its work (with a side panel revealing the agent’s “thought process” as it browses and codes) to alleviate the black-box fear. OpenClaw’s rise came hand-in-hand with serious security concerns due to its unfettered access on local machines. Companies in this space must <em>delight customers</em> with useful results <strong>and</strong> convince them it’s safe to hand over the keys. They also have to justify those rising valuations with real revenue and growth. No one should expect building a high-growth, AI-powered company in an established industry to be easy — <strong>it’s brutally difficult</strong>, just as building any great company is. The hype can attract competition and scrutiny (from regulators, security researchers, the press). Only the teams with exceptional execution and ethical grounding will survive and become the foundational companies of this new era.</li></ul><p>Having worked closely with some of the best emerging coding agent teams, I can report that <strong>they are the real deal</strong>. These founders and engineers are deeply aware of both the potential and the pitfalls, and they’re pushing the state of the art daily. If they perform to our expectations, they will become <em>highly valuable cornerstone companies in the global economy</em>, eating markets far larger than what the “software industry” used to touch. A company like <strong>OpenAI</strong> or <strong>Anthropic</strong> (building core AI capabilities) or a <strong>Manus</strong> or <strong>Adept</strong> (building broad agent platforms) isn’t just creating a single app — they’re creating a force that can infiltrate every other app and sector. That scalability of impact is something venture investors dream of, and it’s why the <strong>upside is so enormous</strong> if they succeed.</p><p>Instead of constantly questioning whether their valuations make sense, we should strive to understand <strong>how this new generation of technology works, what broader consequences it will have for businesses and the economy, and how we can collectively encourage more innovation</strong> in this space. We need to update regulations (in sensible ways) to accommodate autonomous agents, invest in education to broaden the talent pool, and ensure competition so that no single company monopolizes AI. The opportunity is to create an abundance of new services and capabilities that benefit everyone — from more personalized healthcare, to more efficient businesses, to creative tools that empower individuals. The coding agents are here; the genie is out of the bottle. The question is how to maximize the upside and manage the challenges.</p><p>That’s the big opportunity in front of us. <strong>I know where I’m putting my money: into the teams and technologies that are building and harnessing coding agents</strong>. Just as software ate the world over the last 20 years, AI coding agents are now devouring the next crop of opportunities. And unlike in the past, when software was a tool that required a human at the wheel, these new agents <em>are increasingly the drivers themselves</em>. It’s going to be a wild, exciting ride — and it’s only just beginning.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=6c5cb17b229b" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Most AI Products Don’t Have a Retention Problem. They Have a Job Problem]]></title>
            <link>https://mrkelly.medium.com/most-ai-products-dont-have-a-retention-problem-they-have-a-job-problem-87bd76ae8158?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/87bd76ae8158</guid>
            <category><![CDATA[saas]]></category>
            <category><![CDATA[ai]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Sat, 03 Jan 2026 17:51:14 GMT</pubDate>
            <atom:updated>2026-01-03T17:51:14.167Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*jKLE46D8ymPrccu2l1GxgQ.png" /></figure><h3>Looking at AI Through the Lens of Human Jobs</h3><p>Over the past year, AI products have exploded.</p><p>Every week, a new AI tool promises to:</p><ul><li>write better content,</li><li>generate designs instantly,</li><li>build websites in minutes,</li><li>turn ideas into working demos with almost no effort.</li></ul><p>The first experience is often impressive.</p><blockquote><em>“Wow, this is smart.”</em></blockquote><p>But then comes the uncomfortable reality.</p><p>Will users come back tomorrow?<br> Next week?<br> Next month?</p><p>For most AI products, the answer is no.</p><p>Retention is low — sometimes shockingly low.</p><p>And yet, many teams keep asking the same questions:</p><ul><li>Is the model not powerful enough?</li><li>Do we need better prompts?</li><li>Should the UX be smoother?</li></ul><p>What if none of these are the real problem?</p><h3>Retention Is Not an AI Problem. It’s a Job Problem.</h3><p>To understand why most AI products struggle with retention, we need to step outside AI for a moment and look at something much older:</p><p><strong>human jobs.</strong></p><p>Not employee satisfaction.<br>Not churn rates.<br>But <strong>which jobs are designed to last</strong>.</p><h3>Employee Retention vs. Job Retention</h3><p>When people talk about retention, they usually mean employees:</p><ul><li>how long someone stays at a company,</li><li>how often people quit,</li><li>burnout and morale.</li></ul><p>That’s not what we’re talking about here.</p><p>This article uses a different definition:</p><blockquote><strong><em>Job retention describes whether a responsibility must be continuously fulfilled inside an organization.</em></strong></blockquote><p>People change.<br> Titles change.<br> But if a responsibility cannot stop, the job has high retention.</p><p>In short:</p><blockquote><strong><em>Retention is about responsibility continuity, not personal loyalty.</em></strong></blockquote><h3>Four Questions That Predict Retention</h3><p>Any job — human or AI — can be evaluated with four simple questions.</p><p>First, does the role exist long-term?<br> Will this responsibility still matter in five or ten years, or will it be outsourced, deprioritized, or removed as the company grows?</p><p>Second, is the work recurring?<br> Does it need to be done daily, weekly, or monthly — or only “when needed”?</p><p>Third, what happens if the work stops for two weeks?<br> Nothing?<br> Some inconvenience?<br> Or a serious operational, financial, or legal issue?</p><p>Finally, is there a clear accountability chain?<br>When something goes wrong, can responsibility be traced, audited, and assigned?</p><p>Jobs that score high on all four dimensions naturally have high retention.</p><h3>This Pattern Is Obvious in Human Organizations</h3><p>Some roles persist in every serious company:</p><ul><li>accounting,</li><li>finance,</li><li>legal,</li><li>infrastructure and operations,</li><li>core backend systems.</li></ul><p>These jobs are not popular because they’re exciting.</p><p>They persist because the organization <strong>cannot function without them</strong>.</p><p>If they stop, things break.</p><p>Other roles are valuable but structurally fragile:</p><ul><li>content creation,</li><li>brand strategy,</li><li>creative marketing,</li><li>social media management.</li></ul><p>These roles are often project-based.<br>Their output is hard to audit.<br>And if they pause, the company usually survives.</p><p>They are useful — but naturally low-retention.</p><h3>“But What About Software Engineers?”</h3><p>Software engineers are often assumed to be high-retention roles.</p><p>In reality, software engineering is not one job — it’s a spectrum.</p><p>Engineers who build demos, prototypes, or proofs of concept often work on short-lived projects.<br> Once the demo is done, the responsibility ends.</p><p>Product engineers working on SaaS features or internal tools sit somewhere in the middle.</p><p>Infrastructure, payments, billing, and reliability engineers occupy the extreme end of high retention.<br> If their work stops, revenue stops.<br> If they fail, the business fails.</p><p>This reveals an important rule:</p><blockquote><strong><em>Retention follows responsibility, not skill level.</em></strong></blockquote><h3>AI Products Inherit the Retention of the Jobs They Mimic</h3><p>Now apply this logic to AI.</p><p>Here’s the key insight:</p><blockquote><strong><em>An AI product’s retention mirrors the retention of the human job it replaces or augments.</em></strong></blockquote><p>This explains many current outcomes.</p><p>AI tools that generate content, ideas, or demos behave like low-retention creative or prototype roles.<br> They feel powerful, but users don’t need them every day.</p><p>AI systems embedded in finance, operations, sales workflows, or infrastructure behave like high-retention jobs.<br> They become difficult to remove.</p><p>Low retention is not a failure of intelligence.<br> It is a property of the job.</p><h3>Why Many AI Products Feel Powerful — But Fade Quickly</h3><p>There is a useful analogy here.</p><p>Many AI products today resemble <strong>demo engineers</strong>.</p><p>They are excellent at:</p><ul><li>producing impressive outputs quickly,</li><li>helping people explore ideas,</li><li>showcasing what’s possible.</li></ul><p>But they rarely:</p><ul><li>own long-term responsibility,</li><li>sit inside operational workflows,</li><li>accumulate irreversible history,</li><li>participate in accountability chains.</li></ul><p>In real companies, demo engineers are important — but they are not permanent roles.</p><p>So when an AI product behaves like one, low retention is not surprising.</p><h3>This Is Why SaaS Still Wins in the AI Era</h3><p>This leads to an uncomfortable but powerful conclusion:</p><blockquote><strong><em>AI does not replace SaaS. AI amplifies SaaS.</em></strong></blockquote><p>SaaS systems persist because they hold:</p><ul><li>workflows that cannot stop,</li><li>data that cannot be lost,</li><li>context that accumulates over time,</li><li>responsibility that must be tracked.</li></ul><p>CRM systems survive because revenue pipelines must persist.<br> ERP systems survive because financial history cannot disappear.<br> Operational tools survive because downtime has real consequences.</p><p>Retention comes from <strong>the cost of not using the system</strong>, not from how smart it feels.</p><h3>AI Changes Interfaces, Not Retention Physics</h3><p>As AI models become commoditized:</p><ul><li>intelligence becomes cheaper,</li><li>prompts become interchangeable,</li><li>capabilities converge.</li></ul><p>What remains scarce is:</p><ul><li>ownership of workflows,</li><li>historical data,</li><li>organizational context,</li><li>permissions, audits, and compliance.</li></ul><p>This creates a clear pattern:</p><blockquote><strong><em>AI kills toy products.<br>AI strengthens workflow-driven SaaS.</em></strong></blockquote><h3>The Winning Shape: SaaS With AI Employees Inside</h3><p>The future is not “AI replaces software.”</p><p>It is software systems where AI acts as a persistent, accountable employee.</p><p>Examples are already emerging:</p><ul><li>CRMs with AI sales operators,</li><li>accounting platforms with AI reconciliation,</li><li>ops systems with AI incident responders.</li></ul><p>AI becomes a multiplier, not the product itself.</p><h3>One Final Mental Model</h3><p>If you remember only one thing, let it be this:</p><blockquote><strong><em>Retention is a function of responsibility.</em></strong></blockquote><p>If users can leave without losing history<br> and without breaking a process,<br> retention will always be low — no matter how advanced the AI is.</p><h3>Final Thought</h3><p>In the AI era, the best products are not the smartest ones.</p><p>They are the ones that <strong>carry responsibility</strong>.</p><p>And that’s why this is my long-term belief:</p><blockquote><strong><em>AI won’t replace SaaS.<br>It will rewrite every SaaS category from the ground up.</em></strong></blockquote><p>That’s where durable products — and durable companies — will be built.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=87bd76ae8158" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Vibe Coding: You’re Not Coding Anymore — You’re Managing AI]]></title>
            <link>https://mrkelly.medium.com/vibe-coding-youre-not-coding-anymore-you-re-managing-ai-a63fdaba551f?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/a63fdaba551f</guid>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[ai-agent]]></category>
            <category><![CDATA[vibe-coding]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Fri, 21 Nov 2025 08:56:38 GMT</pubDate>
            <atom:updated>2025-11-21T08:56:38.118Z</atom:updated>
            <content:encoded><![CDATA[<h3>Vibe Coding: You’re Not Coding Anymore — You’re Managing AI</h3><blockquote>Why founders, executives, and product leaders are naturally better at “AI programming” than traditional engineers.</blockquote><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*R5wKQyBWq0sfIZsH0alxQg.png" /></figure><p>Over the past couple of months, I’ve been meeting a lot of founders, executives, and investors.<br>And something funny keeps happening.</p><p>Whenever someone shares a product idea or a workflow, I do one thing:</p><ul><li>I turn on voice capture</li><li>Let AI turn voice to text</li><li>Drop the result into my AI-powered coding workflow</li><li>Generate a working demo in minutes</li></ul><p>And people always react the same way:</p><blockquote><em>“Wow, how are you coding so fast?”<br> “Did your technical ability just level up?”<br> “Are you becoming a super engineer?”</em></blockquote><p>I always laugh and tell them:</p><blockquote><strong><em>“No. I’m not writing any code.<br> I’m managing AI.”</em></strong></blockquote><h3>01 — My background (so you understand I’m not bluffing)</h3><p>I’ve <strong>never taken a single computer science class</strong> in my life.</p><p>But over the past decade+, I’ve written more than 10 programming languages:</p><p>Java, C#, C/C++, Objective-C++, Python, PHP, JavaScript…</p><p>I’ve built:</p><ul><li>Games</li><li>Mobile apps</li><li>Desktop clients</li><li>SaaS platforms</li></ul><p>And I also served as a CTO, leading <strong>digital transformation for a 30,000-employee organization</strong>.</p><p>Back then, my mission was simple:</p><blockquote><strong><em>Use software to improve human productivity.</em></strong></blockquote><p>Today, the mission evolved:</p><blockquote><strong><em>Use AI Agents to multiply personal productivity by 10×.</em></strong></blockquote><p>People assume I’m a “hardcore tech guy.”</p><p>But today, honestly:</p><blockquote><strong><em>I don’t write code anymore.<br>I practice Vibe-Driven AI Management.</em></strong></blockquote><p>99.9% of what I build is generated by AI.<br>And it’s <strong>10× faster</strong> than when I wrote code manually.</p><p>This sounds crazy.</p><p>But it’s simply where the world is moving.</p><h3>02 — What is Vibe Coding?</h3><p>Not programming. AI management.**</p><p>Vibe Coding is not about writing code.<br>It’s about expressing a <strong>direction</strong> — a vibe.</p><p>AI does the rest.</p><p>Your job becomes:</p><ul><li>Describe the intent</li><li>Define the outcome</li><li>Give the right context</li><li>Break down tasks</li><li>Manage multiple AI tools</li><li>Review, refine, iterate</li></ul><p>You’re not “coding.”<br>You’re:</p><blockquote><strong><em>Leading a virtual team of AI developers who never get tired, never complain, and ship instantly.</em></strong></blockquote><p>Vibe Coding =<br><strong>Product vision × Communication × AI Management × Decision-making</strong></p><p>If traditional coding is “Do it yourself,”<br> Vibe Coding is:</p><blockquote><strong><em>“Tell AI what you want and manage how it gets done.”</em></strong></blockquote><h3>03 — The counter-intuitive truth:</h3><p>The better the manager, the better they use AI.<br>The more someone depends on manual coding, the harder AI becomes.**</p><p>Why?</p><p>Let me tell you a story.</p><p>Imagine you take an Uber.<br>You start enthusiastically talking about how amazing autonomous driving will be.</p><p>The driver’s reaction?<br>Instant frustration.</p><p>You’ll hear:</p><ul><li>“Self-driving isn’t as safe as you think!”</li><li>“It can’t handle real road situations!”</li><li>“I’ve been driving for 20 years — I know better!”</li><li>“Machines can’t replace humans!”</li></ul><p>You praise tech → he criticizes harder.</p><p>Why?</p><p>Because <strong>self-driving threatens his identity</strong>.</p><p>Now apply this to AI programming.</p><p>If you tell engineers “AI coding is amazing,” you hear:</p><ul><li>“AI code is low quality.”</li><li>“I can do it faster myself.”</li><li>“AI will never replace real engineers.”</li></ul><p>Not because AI is bad.<br>But because <strong>their value system is tied to typing code</strong>.</p><p>Now compare this with founders, PMs, executives:</p><p>They don’t have identity risk.<br>They already:</p><ul><li>Communicate</li><li>Define goals</li><li>Break down tasks</li><li>Manage uncertainty</li><li>Make decisions</li><li>Run teams</li></ul><p>So when AI comes along, they instantly see:</p><blockquote><strong><em>AI isn’t “better coding.”<br>AI is a new kind of workforce.</em></strong></blockquote><p>And they naturally step into the role of <strong>AI leader</strong>, not coder.</p><h3>04 — The rise of “PM-powered engineering”</h3><p>Product managers become 10× creators with AI**</p><p>This is one of the most underrated shifts in tech.</p><h3>Before (old world):</h3><p>PM → writes spec → begs engineers → waits weeks.</p><h3>Now (AI world):</h3><p>PM → describes vibe &amp; logic → AI builds it → PM reviews → ship</p><p>Their skill set is PERFECTLY aligned with AI:</p><p>✔ They communicate clearly<br> ✔ They think in systems<br> ✔ They break down flows<br> ✔ They understand the user<br> ✔ They know what “good” looks like<br> ✔ They give focused feedback<br> ✔ They care about delivery</p><p>They were previously “support role.”<br>Now they are:</p><blockquote><strong><em>AI Team Leads.</em></strong></blockquote><h3>05 — Vibe Coding = Expression × Management × Judgment</h3><p>AI doesn’t need your hands.<br>It needs your head.</p><p>AI needs:</p><ul><li>Clear intent</li><li>High-resolution instructions</li><li>Context</li><li>Constraints</li><li>Quality expectations</li><li>Fast iteration</li></ul><p>If you can express your idea well,<br>AI can:</p><ul><li>write the code</li><li>generate the UI</li><li>design the UX</li><li>write the docs</li><li>build backend logic</li><li>troubleshoot errors</li><li>deploy the app</li></ul><p>Your role becomes:</p><blockquote><strong><em>Vision, orchestration, leadership.</em></strong><em><br> </em>(Not typing.)</blockquote><h3>06 — The new productivity formula</h3><p>Traditional productivity:</p><p><strong>People × Time = Output</strong></p><p>AI Productivity:</p><p><strong>(Your management skill) × (Number of AI tools you can coordinate) = 10× Output</strong></p><p>In the past, a 10-person team built a product.<br>Today, <strong>one person</strong> can do it — if they can manage AI.</p><p>You didn’t become 10 people.<br>You learned to lead 10 AIs.</p><p>The future “elite builders” aren’t super coders.</p><p>They are:</p><blockquote><strong><em>Super managers of AI labor.</em></strong></blockquote><h3>Conclusion</h3><p>The strongest creators of the AI era won’t be engineers.<br>They will be AI managers.</p><p>Vibe Coding is not “AI-assisted programming.”<br>It’s a new way of working.</p><blockquote><strong><em>You’re not coding.<br>You’re managing a full AI workforce.</em></strong></blockquote><p>The people who will benefit the most:</p><ol><li>Founders</li><li>Executives</li><li>Product managers</li><li>Team leaders</li><li>Anyone who can communicate and make decisions</li></ol><p>AI is the most reliable “employee” you will ever have.<br>And your only job?</p><p><strong>Lead it.</strong></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=a63fdaba551f" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[GAIA Super Agent SDK — Why Building a GAIA-Ready Agent Shouldn’t Take Weeks]]></title>
            <link>https://mrkelly.medium.com/gaia-super-agent-sdk-why-building-a-gaia-ready-agent-shouldnt-take-weeks-1cdf4710fa19?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/1cdf4710fa19</guid>
            <category><![CDATA[sdk]]></category>
            <category><![CDATA[agents]]></category>
            <category><![CDATA[benchmark]]></category>
            <category><![CDATA[ai]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Mon, 17 Nov 2025 17:21:45 GMT</pubDate>
            <atom:updated>2025-11-17T17:21:45.601Z</atom:updated>
            <content:encoded><![CDATA[<h3>GAIA Super Agent SDK — Why Building a GAIA-Ready Agent Shouldn’t Take Weeks</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*B-PPh2C-QcZDZ-RQ_ylQlA.png" /></figure><p>If you’ve tried building an “AI agent” recently, you’ve probably experienced the same frustration many developers now share:</p><p>Everything looks magical in diagrams.<br>Everything becomes chaotic the moment you run a real benchmark.</p><p>And nothing exposes the chaos faster than <strong>GAIA Benchmark</strong> — an evaluation that forces your agent to plan, search, browse, compute, reason, verify, and synthesize across multiple modalities, sometimes at a difficulty level close to human exams.</p><p>The surprising truth?</p><p>Most agent frameworks today are not actually designed to <em>win</em> GAIA.<br> They’re designed to <em>demo</em> nicely.</p><p>That’s why <strong>GAIA Super Agent SDK</strong> exists.</p><blockquote><em>GitHub → </em><a href="https://github.com/gaia-agent/gaia-agent?utm_source=chatgpt.com"><em>https://github.com/gaia-agent/gaia-agent</em></a><em><br>NPM → </em><em>@gaia-agent/sdk</em></blockquote><p>This article is not a tutorial.<br>It’s the story of <em>why this SDK matters</em>, what makes it different, and how it can shift the emerging world of agent development.</p><h3>The Problem: Current Agent Frameworks Are Too Expensive (in Time)</h3><p>Agent frameworks today often demand one of two extremes:</p><h3>1. Heavy abstractions</h3><p>Graph editors. JSON blueprints. Agent DSLs.<br> All powerful, none practical for fast iteration.</p><h3>2. “Bring your own everything”</h3><p>You want browser automation? Add 300 lines.<br> You want code execution? Add a sandbox provider.<br> You want GAIA-level reasoning? Good luck convincing the LLM to obey.</p><p>The GAIA benchmark especially hurts because it requires:</p><ul><li>deep tool integration</li><li>reproducible results</li><li>long-horizon planning</li><li>reflection &amp; verification</li><li>browser + search + code execution</li><li>multi-step agent loops</li><li>predictable logs</li></ul><p>Most frameworks don’t solve these problems.<br> They <em>transfer</em> them to you.</p><p>So the question becomes:</p><blockquote><strong><em>What would a GAIA-ready, production-usable agent look like if someone actually built the whole thing end-to-end?</em></strong></blockquote><h3>The Answer: GAIA Super Agent SDK</h3><p>The core idea of the project is refreshingly simple:</p><blockquote><strong><em>Ship a fully wired “Super Agent” that can immediately tackle GAIA tasks without extra infrastructure.</em></strong></blockquote><p>It’s built on top of:</p><ul><li><strong>AI SDK v6 ToolLoopAgent</strong> (the new “standard loop” in the ai SDK ecosystem)</li><li><strong>ToolSDK.ai</strong> for pulling additional tools</li><li><strong>A ReAct + Planning + Verification loop</strong></li></ul><p>This combination isn’t random — it’s exactly what competitive GAIA submissions gravitate toward.</p><h3>What you get out of the box:</h3><ul><li>ReAct-style reasoning</li><li>Multi-step planning</li><li>A verification layer</li><li>Browser, search, code execution, memory</li><li>18+ tools pre-integrated</li><li>Parent tracing &amp; debug-friendly logs</li><li>One-line agent instantiation</li><li>Configurable providers (Tavily → Exa, Steel → BrowserUse, E2B → Sandock…)</li></ul><p>Not a “framework.”<br>A <strong>finished agent</strong>, ready to evolve.</p><h3>Why GAIA Benchmark Is the Perfect Stress Test</h3><p>AGI researchers often call GAIA the closest thing we have to a real-world reasoning exam.</p><p>And it’s true.</p><p>A good GAIA agent must be able to:</p><ul><li>read unfamiliar instructions</li><li>design a plan</li><li>search for accurate information</li><li>open a browser and interact with a website</li><li>use mathematical or code tools</li><li>verify whether the answer makes sense</li><li>handle multi-hop dependencies</li></ul><p>Unlike synthetic tasks, GAIA forces your agent to perform <em>coherent, end-to-end cognition</em>.</p><p>So here’s the philosophical point:</p><blockquote><strong><em>If an agent can perform well on GAIA, it’s probably capable of solving real user tasks.</em></strong></blockquote><p>This is why GAIA Super Agent SDK is not just a benchmark tool — <br> it’s a blueprint for real agentic product builds.</p><h3>The Most Underrated Feature: Iteration on “Wrong Answers”</h3><p>One of my favorite ideas in the SDK is the <strong>wrong-answer pipeline</strong>.</p><p>When you run:</p><pre>pnpm benchmark</pre><p>Every incorrect case goes into:</p><pre>benchmark-results/wrong-answers.json</pre><p>Then you refine your agent, and rerun only the failures:</p><pre>pnpm benchmark:wrong --verbose</pre><p>This transforms GAIA into a <em>training ground</em>, not a scoreboard.</p><p>You don’t fear failure.<br> You exploit it.</p><h3>Providers as LEGO Blocks (Not Dependencies)</h3><p>Most agent frameworks lock you into one choice:</p><ul><li><strong>This</strong> search provider</li><li><strong>This</strong> browser</li><li><strong>This</strong> sandbox</li><li><strong>This</strong> memory backend</li></ul><p>GAIA Super Agent SDK does the opposite.<br> Everything is swappable by:</p><ul><li>One line of code</li><li>Or one environment variable</li></ul><p>Example:</p><pre>createGaiaAgent({<br>  providers: {<br>    search: &#39;exa&#39;,<br>    browser: &#39;browseruse&#39;,<br>    sandbox: &#39;sandock&#39;<br>  }<br>})</pre><p>This makes experimentation <strong>fast</strong>, which is the entire point of agent work.</p><h3>And Yes — It’s TypeScript-First</h3><p>This might sound trivial, but for many developers building modern AI products, TypeScript is a first-class requirement.</p><p>The SDK is:</p><ul><li>strict typed</li><li>ESM</li><li>tree-shakable</li><li>editor-friendly</li><li>built with Vitest-driven CI</li><li>published via automated workflows</li></ul><p>It feels like a library meant to be used daily, not a research artifact that eventually rots.</p><h3>A Quick Demo: What It’s Like to Use</h3><pre>import { createGaiaAgent } from &#39;@gaia-agent/sdk&#39;;</pre><pre>const agent = createGaiaAgent();</pre><pre>const result = await agent.generate({<br>  prompt: &#39;Compare the growth of AI research publications from 2021–2024.&#39;,<br>});</pre><pre>console.log(result.text);</pre><p>That’s all.<br> The agent will:</p><ul><li>search</li><li>plan</li><li>fetch content</li><li>run calculations</li><li>verify the answer</li><li>return a final structured response</li></ul><p>All without you wiring tools manually.</p><h3>Why This SDK Matters Now</h3><p>We’re hitting a turning point:</p><ul><li>LLMs are getting stronger</li><li>Agents are becoming real</li><li>User workflows are increasingly multi-step</li><li>Benchmarks reflect real-world tasks</li><li>Developers want <em>production-ready</em> tools, not demos</li></ul><p>GAIA Super Agent SDK is part of a broader shift:</p><blockquote><strong><em>Agents are becoming software — not prompts.</em></strong></blockquote><p>And like any great software, we need:</p><ul><li>strong defaults</li><li>clear abstractions</li><li>predictable performance</li><li>extensible architecture</li><li>testing &amp; benchmarking</li><li>minimal boilerplate</li></ul><p>This SDK checks these boxes unusually well.</p><h3>Final Thoughts</h3><p>If you’re building:</p><ul><li>a capable personal or business assistant</li><li>an autonomous agent for real workflows</li><li>a GAIA benchmark runner</li><li>or simply experimenting with multi-tool reasoning</li></ul><p>This project is worth exploring.</p><p>It represents a pragmatic approach to agent development:</p><ul><li>not hype</li><li>not theory</li><li>not “build your own framework”</li><li>but a <strong>ready-to-run, production-minded super agent</strong></li></ul><p>Give it a try:<br> 👉 <a href="https://github.com/gaia-agent/gaia-agent?utm_source=chatgpt.com">https://github.com/gaia-agent/gaia-agent</a></p><p>If you write an evaluation, run a benchmark, or build something on top — <br> share it. The agent ecosystem needs more real-world experiments.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=1cdf4710fa19" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Designation of AI Agents by Collar Color: A Framework for Building Your AI Workforce]]></title>
            <link>https://mrkelly.medium.com/designation-of-ai-agents-by-collar-color-a-framework-for-building-your-ai-workforce-f7e07a3ecb7d?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/f7e07a3ecb7d</guid>
            <category><![CDATA[artificial-intelligence]]></category>
            <category><![CDATA[product-strategy]]></category>
            <category><![CDATA[future-of-work]]></category>
            <category><![CDATA[agent-economy]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Mon, 03 Nov 2025 09:02:09 GMT</pubDate>
            <atom:updated>2025-11-03T09:02:09.714Z</atom:updated>
            <content:encoded><![CDATA[<p><em>How the industrial logic of blue- and white-collar work is quietly re-emerging inside AI systems — and what founders can learn from it.</em></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ma-wLYgGu4OzNaOozrqszQ.png" /></figure><h3>🧠 TL;DR</h3><p>Just as 20th-century workers were divided into blue-, white-, and gold-collar roles, 21st-century <strong>AI agents</strong> are forming their own labor hierarchy — builders, thinkers, operators, specialists, guardians, and auditors.<br> This essay proposes a founder-friendly framework for <strong>organizing your AI workforce by collar color</strong>, helping startups design smarter, more defensible product stacks.</p><h3>1. From Human Collars to AI Collars</h3><p>For more than a century, humans have been sorted by the color of their collars.<br> <strong>White-collar</strong> workers ran offices. <strong>Blue-collar</strong> workers built the world. <strong>Pink</strong>, <strong>gold</strong>, <strong>green</strong>, and <strong>gray</strong> added nuance for service, expertise, sustainability, and hybrid roles.</p><p>Each color represented a role in the economy — an easy visual shorthand for <em>what kind of work</em> someone did.</p><p>Now, as <strong>AI agents</strong> begin to replace or augment those roles, the same classification quietly reappears. Some agents write and plan, others sell and execute, others monitor and repair. We are witnessing the birth of a <strong>synthetic workforce</strong> that mirrors human labor — one line of code at a time.</p><p>For founders, this isn’t philosophy.<br> It’s a design pattern for building companies where <em>AI is the team.</em></p><h3>2. The New Spectrum of Machine Labor</h3><p>In the emerging AI economy, every agent fits somewhere on a spectrum that echoes human labor:</p><ul><li><strong>White-collar AIs</strong> handle office work — writing, planning, summarizing, designing. They are the Notion AIs, the Jaspers, the SlidesGPTs of the world. Easy to build, brutally competitive.</li><li><strong>Blue-collar AIs</strong> form the backbone — infrastructure, sandboxes, search indexes, and cloud runtimes. They are unseen but essential. Building them takes capital and deep engineering, but they offer lasting moats.</li><li><strong>Gray-collar AIs</strong> handle operations and communication: AI SDRs, CRM copilots, field assistants. They sell, negotiate, and follow up like tireless employees.</li><li><strong>Gold-collar AIs</strong> are specialists — expert coders, lawyers, doctors, or analysts. They command trust, not volume.</li><li><strong>Pink-collar AIs</strong> build relationships — companions, social assistants, and empathetic bots like Pi.ai or Replika.</li><li><strong>Black-collar AIs</strong> guard the system — scanning for anomalies, enforcing compliance, and protecting data.</li><li><strong>Silver-collar AIs</strong> test, evaluate, and audit others. They’re the quality controllers of the agent ecosystem, ensuring reliability and safety.</li></ul><p>Even the <strong>AI Pins and note-taking devices</strong> — like Rabbit R2, Limitless, or CusPin.ai (AI NotePin) — can be viewed as <em>gray-collar devices</em>: operational tools that bridge the human world and the AI cloud.</p><h3>3. Why This Framework Matters for Founders</h3><p>Most founders today build in <strong>white-collar territory</strong> — productivity, writing, and marketing copilots. It’s familiar, fast, and crowded.<br> But the deeper collars — <strong>blue, black, and silver</strong> — are where the moats form.</p><p>Thinking in collar colors helps you:</p><ul><li><strong>Clarify your company’s position</strong> in the AI workforce. Are you hiring thinkers, builders, or guards?</li><li><strong>Identify competition intensity.</strong> White-collar AIs fight in red oceans; blue-collar and silver-collar spaces remain underexplored.</li><li><strong>Plan organizational design.</strong> Treat each collar as a department in your digital company: infrastructure, sales, security, QA, companionship, and expertise.</li><li><strong>Allocate resources strategically.</strong> Outsource the non-core collars, and invest in the ones that define your unique advantage.</li></ul><p>Once you view your agents as workers — each with a collar and a role — you stop building <em>features</em> and start designing <em>workforces.</em></p><h3>4. The Coming Age of AI Workforce Design</h3><p>The next generation of startups won’t just write prompts — they’ll <strong>hire</strong>, <strong>train</strong>, and <strong>manage</strong> diverse collars of AI labor.<br>A small human team might coordinate dozens of synthetic workers:<br>white-collar content agents, gray-collar outreach bots, blue-collar infra agents, and silver-collar evaluators.</p><p>In this model, <strong>founders become workforce architects.</strong><br>They’ll decide which collars to build in-house, which to rent from platforms, and how to make them collaborate.</p><p>Over time, this will give rise to <strong>AI org charts</strong>, <strong>agent departments</strong>, and <strong>synthetic HR systems</strong>.<br>The “future of work” won’t be human vs. AI — it’ll be <em>humans managing AI teams</em> across multiple collars of intelligence.</p><h3>5. The Founder’s Reflection</h3><p>When you stop seeing AI as a feature and start seeing it as a workforce, the strategy shifts completely.</p><p>You begin asking: <em>What type of labor am I automating? What color is my AI team?</em></p><p>Some agents will think, some will build, some will sell, some will defend.<br>Your success depends on how well you orchestrate them together.</p><p>The <strong>designation of AI agents by collar color</strong> is not just a metaphor — it’s a blueprint.<br>It helps founders structure the next industrial age: one where cognition, code, and collaboration merge into a single, intelligent organization.</p><h3>🪙 Author Note</h3><p>This framework was inspired by the historical classification of human labor and reimagined for the emerging <strong>agentic AI economy</strong> — where startups no longer hire people to scale, but <em>collars of machines</em>.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=f7e07a3ecb7d" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[ Why Amazing Products Aren’t Enough Anymore: The New Rules of GTM Growth]]></title>
            <link>https://mrkelly.medium.com/why-amazing-products-arent-enough-anymore-the-new-rules-of-gtm-growth-84444b979853?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/84444b979853</guid>
            <category><![CDATA[gtm]]></category>
            <category><![CDATA[silicon-valley]]></category>
            <category><![CDATA[product-marketing]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Sun, 26 Oct 2025 21:57:47 GMT</pubDate>
            <atom:updated>2025-10-26T21:57:47.539Z</atom:updated>
            <content:encoded><![CDATA[<p><em>By Kelly, founder at Bika.ai</em></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*_qFZkcuTWQ2DxIccYUKn0g.png" /><figcaption>Why Amazing Products Aren’t Enough Anymore: The New Rules of GTM Growth</figcaption></figure><h3>🚀 Introduction: The End of the “Build It and They Will Come” Era</h3><p>For more than a decade, the startup playbook was simple: build a great product, run ads, and wait for growth.<br> But in 2025, that model no longer works.</p><p>Even the best AI-native products fail without a <strong>modern GTM (Go-to-Market) strategy</strong> — one built on <strong>loops, communities, and compounding trust</strong>, not just funnels and features.</p><p>Across hundreds of AI startups in the U.S., Europe, and Asia, the same pattern has emerged:</p><blockquote><em>The companies that win aren’t those with the most features, but those with the most adaptive growth systems.</em></blockquote><p>This article breaks down the <strong>new rules of GTM growth</strong> — based on real patterns from AI companies scaling globally — and how founders can apply them today.</p><h3>🧩 1. From Funnels to Flywheels: The Shift to Growth Loops</h3><p>In the past, growth followed a linear path:<br> <strong>awareness → lead → conversion.</strong></p><p>Today, the best startups run on <strong>circular growth loops</strong> — where every user action generates new users or content.</p><ul><li><strong>Old Model:</strong> linear funnels, performance marketing, paid social.</li><li><strong>New Model:</strong> feedback loops, user-generated content, AI-driven virality.</li></ul><blockquote><em>Each interaction compounds: one engaged user creates the next one.</em></blockquote><p>Descript, Notion, and Midjourney all scaled through <strong>loop mechanics</strong> — not ads.<br>They built systems where product usage <em>creates marketing</em>.</p><h3>🎯 2. Messaging That Converts: From “What It Does” to “Who You Become”</h3><p>Traditional marketing emphasized <strong>features</strong> — “What does the product do?”<br> Modern GTM emphasizes <strong>identity</strong> — “Who do I become when I use this?”</p><p>Emotion-led, outcome-based messaging outperforms feature lists because people buy <em>stories</em>, not specs.</p><p><strong>Old:</strong> “AI tool that automates workflows.”<br> <strong>New:</strong> “Your 24/7 copilot that makes work feel effortless.”</p><blockquote><em>The best brands sell transformation, not technology.</em></blockquote><h3>🌱 3. Community Is the New Growth Engine</h3><p>In the AI era, <strong>community is not a nice-to-have — it’s your core GTM asset.</strong><br> A strong community creates retention, trust, and product feedback loops.</p><ul><li><strong>Build owned channels:</strong> Discords, newsletters, and private beta groups.</li><li><strong>Reward advocacy:</strong> templates, showcases, affiliate loops.</li><li><strong>Enable creation:</strong> let users remix and share your product outputs.</li></ul><p>Figma, Canva, and Replit grew not by buying users — but by <strong>building tribes</strong> that turned users into evangelists.</p><h3>🔁 4. Design Growth Loops, Not One-Off Campaigns</h3><p>Campaigns end. Loops compound.</p><p>Every GTM initiative should either:</p><ol><li>Create new users,</li><li>Inspire users to create content, or</li><li>Improve the product through usage.</li></ol><p>If it does none of those, it’s a vanity play.</p><p>Templates, public showcases, and marketplaces (like Canva’s template hub or Descript’s gallery) reduce friction, speed up onboarding, and drive <strong>self-reinforcing adoption</strong>.</p><h3>💬 5. Channels Have a Half-Life — Adapt or Die</h3><p>What worked last quarter might flop next quarter.<br> Treat every growth channel as <em>perishable</em>.</p><p>AI-generated SEO pages that ranked last month may now be penalized.<br> The winners combine <strong>E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness)</strong> with <strong>authentic distribution</strong> — across LinkedIn, Substack, Reddit, and niche communities.</p><blockquote><em>Consistency builds authority. Authenticity builds trust.</em></blockquote><p>Instead of chasing hacks, compound your presence through credible, human-authored insights.</p><h3>📈 6. Measure Compounding, Not Conversions</h3><p>The best GTM teams track <em>loop velocity</em>, <em>retention curves</em>, and <em>content amplification</em> — not just CAC and ROAS.</p><p>They ask:</p><ul><li>How fast does one user lead to the next?</li><li>How much new reach does each piece of content generate?</li><li>How deeply is our brand remembered after a touchpoint?</li></ul><p>These metrics capture <strong>momentum</strong>, not just motion.</p><h3>🌏 7. For Global Founders: Start Small, Build Local, Then Scale</h3><p>For Chinese and Asian B2B founders expanding abroad, the key is <strong>local learning loops</strong>.</p><ul><li>Build <strong>local sales relationships</strong> early — referrals matter.</li><li>Attend <strong>industry-specific events</strong> instead of broad expos.</li><li>Hire <strong>generalists first</strong> who can wear multiple hats, then specialize later.</li></ul><blockquote><em>International expansion rewards patience, proximity, and persistence — not blitzscaling.</em></blockquote><h3>⚙️ 8. Build an Experimental Metabolism</h3><p>Growth isn’t a plan. It’s a habit.<br> Run small, constant experiments: new surfaces, new stories, new audiences.</p><p>Kill what doesn’t work fast.<br>Double down on what compounds.</p><p>As the environment changes (short-form video, AI search, agents), your agility becomes your advantage.</p><h3>🧠 Key Takeaway: Stop Chasing Growth. Start Owning Gravity.</h3><p>Most teams over-invest in visible growth — ads, posts, SEO — and under-invest in <strong>invisible growth</strong>:<br> community, brand, and product learning rate.</p><p>But invisible growth compounds — making every future campaign cheaper, faster, and more trusted.</p><blockquote><strong><em>Amazing products attract attention.<br>Compounding systems sustain it.</em></strong></blockquote><h3>🔎 About the Author</h3><p>Follow me on X: <a href="https://x.com/kellypeilinchan">https://x.com/kellypeilinchan</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=84444b979853" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[ The Design of Vibe Coding: How to Make Your AI-Generated Websites Feel Beautiful?]]></title>
            <link>https://mrkelly.medium.com/the-design-of-vibe-coding-how-to-make-your-ai-generated-websites-feel-beautiful-060b445b87d7?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/060b445b87d7</guid>
            <category><![CDATA[web-design]]></category>
            <category><![CDATA[design]]></category>
            <category><![CDATA[ux-design]]></category>
            <category><![CDATA[vibe-coding]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Fri, 24 Oct 2025 20:53:20 GMT</pubDate>
            <atom:updated>2025-10-24T20:53:20.195Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*A7UMmmNt34GqAclk" /><figcaption>The Design of Vibe Coding: How to Make Your AI-Generated Websites Feel Beautiful?</figcaption></figure><blockquote><em>AI can build your website.<br>But only you can make it </em>breathe<em>.</em></blockquote><h3>The New Creative Language Between Humans and AI</h3><p>Vibe Coding Design isn’t just about generating code.<br> It’s about <em>directing emotion through language.</em></p><p>When you talk to an AI coding assistant — whether it’s ChatGPT, Cursor, or Figma AI — <br> you’re not just describing a layout.<br> You’re describing a <strong>feeling</strong>.</p><p>You’re saying:</p><blockquote><em>“I want this page to feel cinematic. Slow. Confident. Like Apple.com on a quiet morning.”</em></blockquote><p>That’s <strong>Vibe Coding Design</strong>.<br>It’s the art of translating human rhythm into machine-readable design.</p><h3>The Problem: AI Has No Taste (Until You Give It One)</h3><p>AI can build grids, align buttons, and select colors that technically work.<br> But it has no idea what <em>beautiful</em> feels like.</p><p>That’s your role.<br>You are not just coding.<br>You’re <strong>directing</strong>.</p><p>You give AI its sense of timing, its breath, its tone.<br>And the more precisely you describe those, the more your design comes alive.</p><h3>Stop Prompting Like a Developer. Start Directing Like a Filmmaker.</h3><p>A developer says:</p><blockquote><em>“Create a modern landing page with three sections.”</em></blockquote><p>A director says:</p><blockquote><em>“Build a page that feels calm and cinematic.<br> The hero fades in slowly.<br> Text appears in rhythm, not all at once.<br> The light flows from top right.<br> The button feels like an invitation, not a command.”</em></blockquote><p>See the difference?<br>One gives structure.<br>The other gives <em>life.</em></p><h3>The Three Layers of Beautiful Vibe Coding Design</h3><p>Every great AI-generated interface has three emotional layers.</p><p><strong>Scene</strong> — What does this moment feel like for the user?<br>A welcome? A discovery? A decision?</p><p><strong>Visual</strong> — What does the user <em>see</em>?<br>Light, depth, spacing, rhythm.</p><p><strong>Motion</strong> — How does the screen <em>move</em>?<br>Fade-in speed, hover lift, timing, easing.</p><p>When you describe these three layers, your AI stops generating templates<br> and starts generating <em>experience.</em></p><h3>Geometry and Silence</h3><p>In vibe coding, silence is part of the design.</p><p>Whitespace is not empty — it’s breathing room.<br> Typography is not text — it’s rhythm.<br> Timing is not animation — it’s tone.</p><p>Small rules that always work:</p><ul><li>Let the layout breathe: 30–50% whitespace.</li><li>Keep line length between 60–70 characters.</li><li>Use low-saturation colors — no pure black or white.</li><li>Animate gently: 200–300 ms is enough.</li><li>Never animate everything. Animate meaning.</li></ul><p>The best websites feel like a pause between sentences.</p><h3>Teach AI the Language of Aesthetics</h3><p>AI doesn’t understand “beautiful.”<br> It understands <strong>relationships</strong> — between light, distance, time, and hierarchy.</p><p>Instead of saying “make it premium,” say this:</p><blockquote><em>“Centered layout, soft gradient, deep contrast, slow fade-in.”</em></blockquote><p>Instead of “make it minimal,” say:</p><blockquote><em>“Single column, 40% whitespace, muted palette, no borders.”</em></blockquote><p>You’re not asking AI to guess your taste.<br>You’re teaching it your <em>grammar of beauty.</em></p><h3>Motion as Emotion</h3><p>In vibe coding, motion is not decoration — it’s psychology.</p><p>Fast transitions create excitement.<br> Slow transitions create calm.<br> Delay builds rhythm.</p><p>Simple benchmarks that feel right:</p><ul><li>Micro-interaction: 120–180 ms</li><li>Page transition: 220–300 ms</li><li>Hover feedback: lift 2 px, brighten 10%</li><li>Staggered content: 40–80 ms delay per element</li></ul><p>Good motion is invisible.<br>Bad motion screams.</p><h3>Write Your Own “Aesthetic Vocabulary”</h3><p>Every great vibe coder collects words for feelings.<br> Not adjectives — images.</p><p>Start building your list. Examples:</p><ul><li>“Soft Nordic light with air between elements.”</li><li>“Cinematic calm — product as protagonist.”</li><li>“Tokyo tech — glass blur, chrome reflection, gentle motion.”</li><li>“Editorial warmth — serif headlines, off-white paper tone.”</li></ul><p>This is your creative language.<br>Feed it into prompts.<br>AI will begin to recognize your style — like a fingerprint.</p><h3>Design as Storytelling</h3><p>Every good interface tells a story.</p><p>Think of your site as a short film with five acts:</p><p><strong>Act 1 — The Entrance</strong><br>The calm first impression.</p><p><strong>Act 2 — The Choice</strong><br>A single clear action.</p><p><strong>Act 3 — The Reveal</strong><br>Light shifts, content unfolds.</p><p><strong>Act 4 — The Action</strong><br>One decisive interaction.</p><p><strong>Act 5 — The Afterglow</strong><br>A quiet, satisfying completion.</p><p>If you describe your UX like a story, AI designs your narrative.<br>You don’t get pages — you get <em>scenes.</em></p><h3>Training Your Eye (and Your Language)</h3><p>To improve as a vibe coder, practice this every day.</p><ol><li>Open a site you love — Apple, Notion, Linear, Vercel.</li><li>Watch it for 30 seconds.</li><li>Write five sentences:</li></ol><ul><li>What emotion does it create?</li><li>How does it use space?</li><li>What is the light doing?</li><li>How does it move?</li><li>Why does it feel calm or powerful?</li></ul><p>This is how you train your perception muscle.<br>Design starts in your eyes, but it’s expressed in words.</p><h3>The Framework You Can Reuse</h3><p>When you work with AI, structure your prompts like this:</p><pre>🎯 Goal:<br>Design a [page/component] that feels [emotion].</pre><pre>🎨 Visual:<br>Describe layout, light, color tone, and typography rhythm.</pre><pre>⚡ Motion:<br>Define timing (120–300 ms), easing (ease-out/spring), delay (40 ms).</pre><pre>🪶 Material:<br>Mention texture, depth, or blur.</pre><pre>💬 Emotion:<br>Use sensory words — calm, cinematic, confident, intimate.</pre><p>That’s your blueprint for every design conversation with AI.</p><h3>The Future of Frontend Is Emotional</h3><p>AI has mastered code, layout, and pattern.<br>But it still can’t feel.</p><p>That’s where humans come in.<br>We bring emotional precision.<br>We turn structure into story.</p><p>Vibe Coding is not about removing humans — it’s about amplifying them.<br>You describe the feeling.<br>AI paints the frame.</p><p>Together, you make something <em>alive.</em></p><blockquote><em>“Coding built the web.<br> Vibe Coding will make it beautiful.”</em></blockquote><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=060b445b87d7" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Stop Designing Software for Humans: Design Software for AI]]></title>
            <link>https://mrkelly.medium.com/stop-designing-software-for-humans-design-software-for-ai-e528eaf514bd?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/e528eaf514bd</guid>
            <category><![CDATA[software-engineering]]></category>
            <category><![CDATA[ai]]></category>
            <category><![CDATA[software-development]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Wed, 15 Oct 2025 15:52:27 GMT</pubDate>
            <atom:updated>2025-10-15T15:52:27.646Z</atom:updated>
            <content:encoded><![CDATA[<p><em>What if the biggest opportunity — and threat — in software today is this: everything needs to be redesigned from scratch?</em></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*BuciJW29d5nhu37QeJil7Q.png" /></figure><h3>1. Most Software Was Never Truly Built for Humans</h3><p>Not long ago, we bought a slick new expense management tool for our company — a modern SaaS platform with every feature imaginable. I asked one of our newer employees to file a simple reimbursement.</p><p>He hesitated.</p><p>“Where do I even start?” he asked, staring at a screen full of menus, buttons, and dropdowns.</p><p>This wasn’t his fault. It’s not a training issue. This is what enterprise software does to people. It overwhelms. It alienates.</p><p>And the worst part? It was supposedly “user-friendly.”</p><p>The uncomfortable truth is: software has never truly been “human-centric.” It was built for a time when <strong>humans had no choice but to operate machines manually</strong> — because machines couldn’t understand us.</p><h3>2. The End of the Human-as-Operator Era</h3><p>Before large language models, all software assumed one thing: <strong>a human must sit at the controls.</strong></p><p>Everything — from accounting apps to CRMs — was built around inputs, buttons, and workflows designed for human execution. Software was a giant panel of toggles, menus, and sequences that only made sense once you memorized the manual.</p><p>But now? The paradigm is shifting.</p><p>AI can understand goals. It can interpret language, plan actions, and even execute them autonomously.</p><p>In this new world, the role of software changes. It’s no longer about “teaching the human how to operate the machine.” It’s about <strong>giving the AI the tools to act on our behalf</strong> — securely, intelligently, and efficiently.</p><h3>3. Humans Were Never That Good at Software Anyway</h3><p>Let’s be honest: most people don’t enjoy using enterprise software. It’s unintuitive, bloated, and riddled with complexity. People spend hours in onboarding sessions, click the wrong thing, and give up.</p><p>This isn’t because users are lazy. It’s because <strong>most software was designed with the wrong assumption</strong>: that people want to think like software systems.</p><p>They don’t.</p><p>Ironically, the most loved “software” in the workplace is Excel — a wildly unstructured, freeform sandbox that breaks every rule of modern UX. But people love it because it bends to their needs.</p><p>People want flexibility. Software wants structure.</p><p>This mismatch is precisely where AI shines: <strong>bridging human ambiguity with machine precision</strong>.</p><h3>4. Every Software Needs to Be Rebuilt</h3><p>If legacy software was designed under the assumption of human operators, and now we live in a world where AI can be the operator…</p><p>Then the conclusion is clear:</p><p><strong>Every software product — yes, every one — is up for reinvention.</strong></p><ul><li>Email? AI can triage, summarize, and respond.</li><li>CRMs? AI can manage leads and follow-ups.</li><li>Finance? AI can reconcile, generate reports, and flag anomalies.</li><li>HR? AI can screen resumes, schedule interviews, and respond to candidates.</li></ul><p>This is not a cosmetic update. It’s a wholesale design reset.</p><p>Some incumbents will adapt. Most won’t.</p><p>This is the <strong>biggest entrepreneurial opportunity</strong> of the decade — and also its biggest threat.</p><h3>5. The New Paradigm: Software as AI’s Interface, Humans as Controllers</h3><p>As we shift from “human-centric” to “AI-native” software, one assumption needs to be re-examined:</p><p>Will UI become less important?</p><p>Actually — <strong>no. UI will become more important than ever. But it won’t look like what we’re used to.</strong></p><p>In the past, the UI was there to tell humans what to do. In the AI-native world, <strong>the UI becomes a real-time, adaptive cockpit — a human control layer over autonomous systems</strong>.</p><p>Think Iron Man and Jarvis.</p><p>Jarvis doesn’t show Tony Stark a spreadsheet. He builds holographic interfaces on the fly, tailored to the situation. The human remains in control — but the system acts proactively, dynamically, and contextually.</p><p>This is the future of UI:</p><ul><li>Dynamically generated.</li><li>Context-aware.</li><li>Controllable, auditable, interruptible.</li><li>Designed for <strong>decision-making, not operation</strong>.</li></ul><p>UI isn’t going away. It’s evolving from a steering wheel to a mission dashboard — something that lets you monitor, approve, and fine-tune what the AI is doing on your behalf.</p><p>The software becomes your <strong>AI-powered co-pilot</strong>. You give it goals. It suggests actions. You approve, adjust, or reject — not unlike how a CEO interacts with a chief of staff.</p><h3>6. The Great Rewrite</h3><p>Every product team now faces a fundamental question:</p><blockquote><em>Are you building software for humans to operate?<br>Or are you building software for AI to operate — with humans in control?</em></blockquote><p>If it’s the former, your product may survive the next 2–3 years.</p><p>If it’s the latter, <strong>you might be building the next category leader</strong>.</p><p>Because here’s the truth: the most valuable software companies of the next decade <strong>won’t be those with the best UI</strong>, or even the most features.</p><p>They’ll be the ones who understand this:</p><blockquote><em>In the age of AI, software is no longer a tool.<br>It’s a partner.</em></blockquote><p>And the job of the designer is no longer to design workflows — but to design <strong>control loops</strong> between AI autonomy and human intent.</p><h3>Final Thought</h3><p>We’re entering a future where:</p><ul><li>Humans define outcomes.</li><li>AI handles execution.</li><li>UI serves as a control panel, not a button board.</li></ul><p>So maybe it’s time to stop asking:<br> “How can I make my software easier for users to click?”</p><p>And start asking:<br> “How can I make my software easier for AI to act — and for humans to trust?”</p><p>Because that’s the real design challenge of this decade.</p><blockquote><em>🔁 For me, it’s time to stop designing software for humans.<br> 🧠 Start designing software for AI — and let humans finally focus on what they’re best at: creativity, judgment, and vision.</em></blockquote><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e528eaf514bd" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[OpenAI Just Launched Agent Builder — Which Startups Will Die?]]></title>
            <link>https://mrkelly.medium.com/openai-just-launched-agent-builder-which-startups-will-die-db95fa0d53f3?source=rss-574108cfb765------2</link>
            <guid isPermaLink="false">https://medium.com/p/db95fa0d53f3</guid>
            <category><![CDATA[ai-agent]]></category>
            <category><![CDATA[openai]]></category>
            <category><![CDATA[startup]]></category>
            <dc:creator><![CDATA[Kelly Chan]]></dc:creator>
            <pubDate>Sun, 12 Oct 2025 05:26:15 GMT</pubDate>
            <atom:updated>2025-10-12T05:26:15.137Z</atom:updated>
            <content:encoded><![CDATA[<h3>OpenAI Just Launched Agent Builder — Which Startups Will Die?</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/0*BJ9FtBGZnn4O698J" /><figcaption>OpenAI Just Launched Agent Builder — Which Startups Will Die?</figcaption></figure><p>A few days ago, <strong>OpenAI dropped a bombshell</strong>:<br> it quietly unveiled <strong>Agent Builder</strong> and <strong>AgentKit</strong>, a full-stack way for anyone — yes, <em>anyone</em> — to create, run, and deploy their own AI agents inside ChatGPT.</p><p>It’s not just another feature.<br>It’s a paradigm shift — one that could erase entire categories of startups overnight.</p><p>If you’ve raised millions to build an “AI agent platform,”<br> you might want to check your runway again.</p><h3>1. The Real Meaning of Agent Builder</h3><p>For the past two years, the AI ecosystem has been full of startups promising one thing:</p><blockquote><em>“Build your own AI agent without code.”</em></blockquote><p>They built beautiful dashboards, visual editors, and “digital employee” metaphors — pitching to founders, marketers, or ops teams who didn’t want to deal with APIs or fine-tuning.</p><p>OpenAI just made that promise <em>native</em> to ChatGPT itself.<br> You can now design, store, and deploy agents directly inside the world’s most popular AI platform — backed by GPT-4, memory, and tool use.</p><p>This isn’t a feature update.<br>This is <strong>vertical integration</strong>.</p><h3>2. The First Casualties</h3><p>The first startups to feel the quake are those whose entire product pitch sounds like this:</p><ul><li>“No-code AI agent builder.”</li><li>“Manage your AI team from one dashboard.”</li><li>“Drag and drop workflows for GPT agents.”</li><li>“AI employees for your sales or customer support.”</li></ul><p>Let’s call them <strong>Company A</strong>, <strong>Company B</strong>, and <strong>Company C</strong>.<br>You probably know who they are.</p><p>Company A spent the last year building a stunning visual studio for creating agents with memories and functions.<br>Company B built “AI employees” for go-to-market teams — complete with CRM and Slack integrations.<br>Company C positioned itself as an “agent ops layer” offering monitoring, permissions, and analytics.</p><p>All of them just woke up to the same reality:<br><strong>OpenAI now does 80% of what they do — natively, securely, and for free.</strong></p><h3>3. Why Their Moats Just Vanished</h3><p>There are four brutal reasons these startups are in trouble.</p><p><strong>1. Infrastructure Compression.</strong><br> When the platform provider integrates the entire stack — model, runtime, orchestration, deployment — there’s little room left for “platforms on top of the platform.”</p><p><strong>2. Network Effects.</strong><br> Tens of millions of users already live inside ChatGPT. Once Agent Builder becomes a default capability, the gravity of that ecosystem will suck in the long tail of potential customers.</p><p><strong>3. Speed Asymmetry.</strong><br> A startup shipping monthly can’t compete with a company that updates the world’s most used AI product every week.</p><p><strong>4. Trust &amp; Compliance.</strong><br> Enterprise buyers will naturally prefer “agents inside ChatGPT” over “agents on a startup’s website.” The perception of reliability alone kills half the sales cycle.</p><h3>4. Not Everyone Has to Die</h3><p>Still, not every company in the agent space is doomed.<br> A few categories have real survival chances — if they move fast.</p><p><strong>1. Vertical Specialists.</strong><br> Teams that embed AI deeply into one regulated or data-heavy domain — like finance, healthcare, legal, or manufacturing — can still win.<br> OpenAI won’t tailor solutions for those micro-niches anytime soon.</p><p><strong>2. Ecosystem Builders.</strong><br> Startups that shift from “competing with” OpenAI to “building on” OpenAI — providing plugins, connectors, or domain-specific agents — can thrive as part of the new ecosystem.</p><p><strong>3. Experience Innovators.</strong><br> User experience remains an open frontier.<br> Whoever builds the most human, visual, or workflow-integrated layer on top of AgentKit will own the user relationship — even if OpenAI owns the infrastructure.</p><p>In short:<br>Don’t build <strong>another Agent Builder</strong>.<br>Build <strong>on the Agent Builder</strong>.</p><h3>5. The Hard Questions Every Founder Must Ask</h3><ol><li><strong>Is your differentiation still real?</strong><br>If your core pitch is “we make GPT easier to use,” you’re already obsolete.</li><li><strong>Are you a platform or a plugin?</strong><br>In the new hierarchy, only the base platforms and the apps built <em>on</em> them will survive.<br>Middle layers get squeezed out.</li><li><strong>What’s your moat — truly?</strong><br>If your moat depends on model capabilities, it’s not yours.<br>If it depends on proprietary data, brand, or community, you still have a shot.</li></ol><h3>6. The Broader Shift: From Decentralization to Centralization</h3><p>The launch of Agent Builder marks a pivot in the AI industry’s power dynamics.<br>For two years, innovation was decentralized — thousands of small teams built wrappers, toolkits, and platforms around OpenAI’s APIs.</p><p>Now, OpenAI is consolidating that creativity back under its own roof.<br>It’s not evil; it’s economics.<br>Every mature platform eventually absorbs its most successful extensions.</p><p>This is the same story we saw when Apple launched the App Store.<br>It democratized app creation — and simultaneously destroyed hundreds of software distributors overnight.</p><h3>7. The Coming Year: Who Lives, Who Dies, Who Adapts</h3><p>In the next twelve months, expect to see:</p><ul><li>Dozens of “AI agent builder” startups quietly pivot, merge, or shut down.</li><li>A few strong teams rebrand themselves as “AgentKit Partners” or “OpenAI Integrators.”</li><li>Enterprise buyers consolidating vendor lists — preferring official OpenAI tools over third-party platforms.</li><li>A new wave of micro-founders building specialized agents <em>inside</em> ChatGPT, not outside it.</li></ul><p>The energy won’t disappear — it’ll just flow downstream.</p><h3>8. Final Thoughts</h3><p>OpenAI didn’t need to <em>kill</em> these startups.<br>It only needed to <strong>make them redundant</strong>.</p><p>The age of “agent builders” is ending.<br>The age of “agent ecosystems” is beginning.</p><p>For founders, the message is clear:</p><blockquote><em>Survive by specializing.<br>Thrive by integrating.<br>Die by competing head-on with your platform.</em></blockquote><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=db95fa0d53f3" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>