<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Chris Korhonen</title>
    <description>The latest articles on DEV Community by Chris Korhonen (@ckorhonen).</description>
    <link>https://dev.to/ckorhonen</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3705765%2F46e3f067-03dd-4fe3-9bcb-782522c3e4f0.jpg</url>
      <title>DEV Community: Chris Korhonen</title>
      <link>https://dev.to/ckorhonen</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ckorhonen"/>
    <language>en</language>
    <item>
      <title>When Everyone Runs a Factory</title>
      <dc:creator>Chris Korhonen</dc:creator>
      <pubDate>Sun, 11 Jan 2026 20:00:44 +0000</pubDate>
      <link>https://dev.to/ckorhonen/when-everyone-runs-a-factory-424c</link>
      <guid>https://dev.to/ckorhonen/when-everyone-runs-a-factory-424c</guid>
      <description>&lt;h3&gt;
  
  
  The Traffic Jam
&lt;/h3&gt;

&lt;p&gt;We've all seen the demos. One engineer builds a clone of Uber in a weekend. Another ships a full SaaS product in a week. The productivity gains are real—I've experienced them myself.&lt;/p&gt;

&lt;p&gt;But here's the question nobody's answering: what happens when you put ten of those engineers in a room?&lt;/p&gt;

&lt;p&gt;You don't get ten Ubers. You get a traffic jam.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Factory Vision
&lt;/h2&gt;

&lt;p&gt;Steve Yegge's &lt;em&gt;Gas Town&lt;/em&gt; paints a compelling picture of the future. He runs 20-30 AI coding agents simultaneously, treating work like "slopping fish into barrels." It's an "idea compiler" where the developer becomes PM and the agents are the workforce.&lt;/p&gt;

&lt;p&gt;For high-agency solo developers, this is liberating. You become the CEO of your own software factory. You think, agents execute. Throughput is maximized.&lt;/p&gt;

&lt;p&gt;Gas Town is built for this reality. It has a "Refinery" to manage merge conflicts. A "Witness" to monitor agent health. A "Deacon" to coordinate workflows. Yegge explicitly targets "Stage 7-8" developers—people who already juggle five or more agents daily.&lt;/p&gt;

&lt;p&gt;The vision is seductive. But most software isn't built by lone wolves.&lt;/p&gt;

&lt;p&gt;What happens when you try to scale this to a team of 10-50 engineers? When 50 concurrent work streams are competing for the same codebase? When everyone in the org tries to run their own factory?&lt;/p&gt;

&lt;p&gt;The gains are real. But there's a tax we haven't accounted for.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Coordination Tax
&lt;/h2&gt;

&lt;p&gt;Every agent swarm that saves individual IC time creates coordination overhead at the team level. I call this the &lt;strong&gt;Coordination Tax&lt;/strong&gt;—and it manifests in three specific failure modes.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Merge Conflict Multiplier
&lt;/h3&gt;

&lt;p&gt;This isn't just syntax conflicts. It's semantic conflicts.&lt;/p&gt;

&lt;p&gt;Two agents refactoring the same state management library, taking different approaches. One simplifies the API while another adds abstraction layers. Both changes "work" in isolation. Together, they're incompatible.&lt;/p&gt;

&lt;p&gt;Gas Town needed a dedicated "Refinery" agent just to manage merge conflicts for &lt;em&gt;one person&lt;/em&gt;. Imagine ten people, each running their own factory, all merging to the same main branch.&lt;/p&gt;

&lt;p&gt;The math gets ugly fast. Traditional conflict resolution assumes humans can coordinate through conversation. Agent swarms don't have that luxury—they move too fast, touch too much, and lack the social awareness to slow down.&lt;/p&gt;

&lt;h3&gt;
  
  
  The CI/CD Bottleneck
&lt;/h3&gt;

&lt;p&gt;Ten times the code output means your infrastructure costs explode.&lt;/p&gt;

&lt;p&gt;Build queues become hours long. Test suites that used to run in minutes now take the better part of a day. Your pipeline becomes the bottleneck, not your engineers.&lt;/p&gt;

&lt;p&gt;This is a hard physical limit on "multiplying factories." You can spin up unlimited agents. You cannot spin up unlimited compute without massive infrastructure investment. And even with investment, the coordination overhead of managing that infrastructure becomes its own tax.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Review Cliff
&lt;/h3&gt;

&lt;p&gt;Here's the part nobody talks about: &lt;strong&gt;it's harder to review code than to write it.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If an agent writes 1,000 lines, a human can't effectively review that for security vulnerabilities, logic flaws, and architectural coherence without slowing down to the speed of careful reading. The cognitive load of reviewing generated code often exceeds the time saved generating it.&lt;/p&gt;

&lt;p&gt;This is the ultimate cap on throughput. You can generate infinite code. You cannot generate infinite attention. And attention is what catches the bugs, spots the architectural drift, and maintains product coherence.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Math Isn't Linear
&lt;/h3&gt;

&lt;p&gt;Ten engineers with five agents each equals 50 concurrent work streams. But the coordination cost doesn't scale 50x—it scales superlinearly because of dependencies, conflicts, and review bottlenecks.&lt;/p&gt;

&lt;p&gt;Traditional organizations are structured around human collaboration patterns. Standups, code review, architecture meetings—these assume humans move at human speed. Agent swarms follow different patterns. They move faster, touch more files, and create more surface area for conflict.&lt;/p&gt;

&lt;p&gt;The gap between human coordination patterns and agent work patterns is the tax.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Spectrum of Adoption
&lt;/h2&gt;

&lt;p&gt;Not every organization needs to run an org-wide factory. The question isn't "should we adopt agentic development?" but "how far along the spectrum should we go?"&lt;/p&gt;

&lt;p&gt;I see four stages, each with different trade-offs.&lt;/p&gt;

&lt;h3&gt;
  
  
  Stage 1: Traditional
&lt;/h3&gt;

&lt;p&gt;Agents assist, humans lead. The developer writes most of the code; AI helps with autocomplete, documentation, and answering questions.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Coordination tax:&lt;/strong&gt; Low&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Productivity gain:&lt;/strong&gt; Modest&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works for:&lt;/strong&gt; Organizations not ready for change, regulated industries, trust-critical products&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is where most teams were in 2024. It's a safe starting point, but you're leaving significant productivity on the table.&lt;/p&gt;

&lt;h3&gt;
  
  
  Stage 2: Individual Agents
&lt;/h3&gt;

&lt;p&gt;Each IC has their own agent workflow. Some use Claude Code. Others prefer Cursor. Nobody's coordinating agent usage—everyone's doing their own thing.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Coordination tax:&lt;/strong&gt; Medium—conflicts start emerging, quality becomes inconsistent&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Productivity gain:&lt;/strong&gt; Significant for individuals&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works for:&lt;/strong&gt; Small teams, independent projects, early experimentation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fails when:&lt;/strong&gt; Work overlaps, the codebase is shared, quality matters&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is where most forward-leaning teams are today. It works until it doesn't.&lt;/p&gt;

&lt;h3&gt;
  
  
  Stage 3: Team Agents
&lt;/h3&gt;

&lt;p&gt;Coordinated agent usage within teams. Shared merge queues. Team-level quality gates. Someone—often the EM—actively manages the coordination overhead.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Coordination tax:&lt;/strong&gt; High—needs active management&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Productivity gain:&lt;/strong&gt; Substantial if well-managed&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works for:&lt;/strong&gt; Product teams with clear boundaries, teams willing to invest in infrastructure&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Requires:&lt;/strong&gt; Dedicated coordination, shared tooling, explicit processes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is the minimum viable approach for teams that want agentic productivity without chaos. But it requires real investment.&lt;/p&gt;

&lt;h3&gt;
  
  
  Stage 4: Org-Wide Factory
&lt;/h3&gt;

&lt;p&gt;Gas Town at scale. Multiple teams, each running their own factories, coordinating through shared infrastructure and explicit protocols.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Coordination tax:&lt;/strong&gt; Very high—dedicated roles, continuous coordination&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Productivity gain:&lt;/strong&gt; Transformative if you can pull it off&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works for:&lt;/strong&gt; Organizations that make this a core competency&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Requires:&lt;/strong&gt; Rethinking org structure, new roles, new quality models&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Few organizations are ready for this. The infrastructure and cultural requirements are substantial. But the organizations that figure it out will have a significant competitive advantage.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Boundary Question
&lt;/h2&gt;

&lt;p&gt;As you move along the spectrum, a fundamental question emerges: what should team boundaries be based on?&lt;/p&gt;

&lt;h3&gt;
  
  
  The Old Model
&lt;/h3&gt;

&lt;p&gt;Traditional team boundaries map to technical domains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"I own the Button component"&lt;/li&gt;
&lt;li&gt;"I own the API layer"&lt;/li&gt;
&lt;li&gt;"I own the iOS app"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This made sense when humans wrote all the code. Specialization improved quality. Clear interfaces reduced coordination overhead.&lt;/p&gt;

&lt;h3&gt;
  
  
  The New Model
&lt;/h3&gt;

&lt;p&gt;When agents can cross technical boundaries easily, ownership needs to be based on something else:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Context depth:&lt;/strong&gt; Who knows the system well enough to coach agents to the right solution?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Customer journey ownership:&lt;/strong&gt; Who owns the user outcome end-to-end?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here's a concrete example: traditionally, we split teams by Frontend and Backend. In the Factory model, we split by User Intent. The Checkout team owns everything from "Add to Cart" to "Order Confirmed"—because AI handles the full-stack implementation. The API contract is no longer the boundary; the business logic is.&lt;/p&gt;

&lt;p&gt;Conway's Law says organizations design systems that mirror their communication structure. In an agentic world, this works in reverse: if agents can cross boundaries easily, you need to restructure teams around ownership and context, not technical specialization.&lt;/p&gt;

&lt;p&gt;Boundaries should map to who can coach and who's accountable for the outcome.&lt;/p&gt;




&lt;h2&gt;
  
  
  Quality is Product-Dependent
&lt;/h2&gt;

&lt;p&gt;Gas Town embraces a specific quality model: ship fast, fix fast. Yegge is explicit about this—work is "slopping fish into barrels." Some fish fall out. Some bugs get fixed two or three times. Throughput matters more than perfection.&lt;/p&gt;

&lt;p&gt;This works for some contexts. It fails catastrophically for others.&lt;/p&gt;

&lt;h3&gt;
  
  
  Where Ship-Fast-Fix-Fast Works
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Internal tools where users are tolerant&lt;/li&gt;
&lt;li&gt;B2B products with patient enterprise customers&lt;/li&gt;
&lt;li&gt;Products where iteration speed matters more than polish&lt;/li&gt;
&lt;li&gt;Well-tested, easily reversible changes&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Where It Fails
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Consumer products where first impressions matter&lt;/li&gt;
&lt;li&gt;Regulated industries requiring compliance and auditability&lt;/li&gt;
&lt;li&gt;Trust-critical products: payments, security, health&lt;/li&gt;
&lt;li&gt;Changes with high blast radius across the product&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Legacy Code Speedrun
&lt;/h3&gt;

&lt;p&gt;Here's a pattern I'm seeing: AI optimizes for the immediate prompt, not long-term maintainability.&lt;/p&gt;

&lt;p&gt;Agents don't think about the engineer who will read this code in six months. They solve the problem at hand. The result is often verbose, locally-correct code that's hard to maintain in aggregate.&lt;/p&gt;

&lt;p&gt;We're creating legacy code at ten times the speed. Technical debt compounds at agent velocity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The insight:&lt;/strong&gt; There's no universal quality model. Leaders need to identify which model fits their product context—and it may vary across the org. Your internal tooling might embrace the fish-barrel approach while your core product requires rigorous human review.&lt;/p&gt;




&lt;h2&gt;
  
  
  The EM Question
&lt;/h2&gt;

&lt;p&gt;If ICs become factory operators—each managing their own swarm of agents—what happens to Engineering Managers?&lt;/p&gt;

&lt;h3&gt;
  
  
  EMs as Meta-Orchestrators
&lt;/h3&gt;

&lt;p&gt;The shift I'm seeing: &lt;strong&gt;EMs become coordination tax managers.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;They don't manage people doing work. They manage the overhead of coordinating parallel agent swarms across IC portfolios. They ensure the merge queue doesn't become a bottleneck. They maintain coherence across what multiple orchestrators ship.&lt;/p&gt;

&lt;p&gt;This is a fundamentally different job than traditional people management. It requires understanding:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How agent workflows interact&lt;/li&gt;
&lt;li&gt;Where bottlenecks emerge&lt;/li&gt;
&lt;li&gt;How to sequence work to minimize conflicts&lt;/li&gt;
&lt;li&gt;When to throttle throughput to maintain quality&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Product Skills Question
&lt;/h3&gt;

&lt;p&gt;There's a deeper shift happening: at what point does "can orchestrate agents well" become less important than "can decide what to build"?&lt;/p&gt;

&lt;p&gt;The PM/Eng boundary is getting blurry. If the hard part is no longer implementation but direction, some EMs will naturally shift toward product management. Others will double down on the coordination and infrastructure side.&lt;/p&gt;

&lt;p&gt;The role is bifurcating.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Junior Engineer Gap
&lt;/h2&gt;

&lt;p&gt;Here's a problem nobody's talking about enough: &lt;strong&gt;if seniors run factories and AI does the "doing," how do juniors learn?&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  The Traditional Learning Model
&lt;/h3&gt;

&lt;p&gt;Juniors write code. They get feedback. They build intuition. Over time, they develop the mental models that let them make good architectural decisions and coach others.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Factory Model Gap
&lt;/h3&gt;

&lt;p&gt;In the factory model, juniors... watch agents write code? Review AI output? The hands-on learning that built their seniors' intuition isn't available to them.&lt;/p&gt;

&lt;p&gt;And here's the paradox: the person who coaches the agent effectively needs deep context—understanding of the codebase, the users, the history, the failure modes. But how do you get deep context if you never did the work yourself?&lt;/p&gt;

&lt;h3&gt;
  
  
  The Pipeline Problem
&lt;/h3&gt;

&lt;p&gt;You need to have done the work to orchestrate it well. But if AI does all the work, the pipeline of people who can orchestrate eventually dries up.&lt;/p&gt;

&lt;p&gt;This isn't solved here. It's an open question the essay raises, not answers. But leaders moving toward Stage 3 and 4 adoption should be thinking about it now. How do you train the next generation of orchestrators when orchestration is all that's left?&lt;/p&gt;




&lt;h2&gt;
  
  
  Ownership in an Ephemeral World
&lt;/h2&gt;

&lt;p&gt;Gas Town treats sessions as "cattle"—ephemeral, replaceable. Agents spin up, do work, hand off, and die. The work persists; the workers don't.&lt;/p&gt;

&lt;p&gt;But ownership requires durability. Someone needs to maintain product coherence over time. Someone needs to understand why the system is the way it is.&lt;/p&gt;

&lt;h3&gt;
  
  
  Three Types of Ownership
&lt;/h3&gt;

&lt;p&gt;The resolution is to distinguish between types of ownership:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Execution ownership:&lt;/strong&gt; Who runs the agents? This can be ephemeral. Different people can orchestrate the same area over time.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Product ownership:&lt;/strong&gt; Who ensures coherence? This must be durable. Someone needs to own the user outcome across agent sessions and personnel changes.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Context ownership:&lt;/strong&gt; Who knows why? This is the real capital. The accumulated understanding of how the system evolved, what was tried and abandoned, what invariants must hold.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When code is cheap, context becomes capital. The person who can coach the agent to the right solution—because they understand the system, the users, the history—is the valuable one.&lt;/p&gt;




&lt;h2&gt;
  
  
  "Tools Will Fix This"
&lt;/h2&gt;

&lt;p&gt;The obvious counterargument: this is early days. Tools will improve. AI will handle coordination automatically. Eventually, AI will review the AI's code.&lt;/p&gt;

&lt;h3&gt;
  
  
  What's True
&lt;/h3&gt;

&lt;p&gt;Yes, tooling will improve. Gas Town itself is a coordination tool—a sophisticated one. More will come. The tax will decrease.&lt;/p&gt;

&lt;p&gt;In six months, many of the friction points I've described will be smoother. Better merge handling. Smarter conflict resolution. More sophisticated quality gates.&lt;/p&gt;

&lt;h3&gt;
  
  
  What Remains
&lt;/h3&gt;

&lt;p&gt;But the fundamental tension isn't technical. It's organizational.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Who decides what gets built? (still humans)&lt;/li&gt;
&lt;li&gt;Who owns product coherence? (still humans)&lt;/li&gt;
&lt;li&gt;Who bears responsibility for failure? (still humans)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tools can reduce the coordination tax. They can't eliminate it. And they can't solve the "who decides" and "who's accountable" problems.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Hallucination Cascade
&lt;/h3&gt;

&lt;p&gt;"AI will review the AI's code" sounds like a solution. But consider what happens when Agent A writes code and Agent B reviews it.&lt;/p&gt;

&lt;p&gt;If both agents share similar blind spots—which they will, since they're trained on similar data—errors compound silently. There's no human ground-truth anchor. The system drifts into incoherence without someone who actually understands what "correct" means.&lt;/p&gt;

&lt;p&gt;This is the Hallucination Cascade: errors that multiply because there's no external reference point. You can improve it with multiple models, diverse prompts, and sophisticated verification. But you can't eliminate it entirely.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You need a human in the loop. The question is where, not whether.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Locate Yourself on the Spectrum
&lt;/h2&gt;

&lt;p&gt;Where is your organization on the spectrum? Where do you want to be? What trade-offs are you accepting?&lt;/p&gt;

&lt;p&gt;These aren't rhetorical questions. They require honest assessment.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If you're at Stage 1, you're safe but leaving productivity on the table.&lt;/li&gt;
&lt;li&gt;If you're at Stage 2, you're seeing individual gains but coordination problems are emerging.&lt;/li&gt;
&lt;li&gt;If you're at Stage 3, you're investing in coordination infrastructure. Make sure it's working.&lt;/li&gt;
&lt;li&gt;If you're at Stage 4, you're on the frontier. Expect to pay the highest coordination tax—and potentially reap the highest rewards.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Avoid False Dichotomies
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;It's not "everyone runs a factory" versus "nothing changes."&lt;/li&gt;
&lt;li&gt;It's not "production line" versus "studio"—different work types need different approaches.&lt;/li&gt;
&lt;li&gt;It's not "agents replace engineers" versus "agents are just tools"—it's a new kind of work with new coordination challenges.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Real Question
&lt;/h3&gt;

&lt;p&gt;Not whether to adopt agentic development—that ship has sailed. The question is how to move along the spectrum consciously, paying the coordination tax intentionally rather than being surprised by it.&lt;/p&gt;

&lt;p&gt;The organizations that win won't be the ones that move fastest to Stage 4. They'll be the ones that match their position on the spectrum to their actual capacity for coordination—and invest appropriately in the infrastructure, roles, and processes that position requires.&lt;/p&gt;

&lt;p&gt;The factory vision is real. But factories at scale require more than machines. They require coordination, quality control, and humans who understand what "good" looks like.&lt;/p&gt;

&lt;p&gt;Everyone can run a factory now. The question is: can everyone coordinate?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>management</category>
    </item>
    <item>
      <title>The General-Purpose Agent Has Arrived</title>
      <dc:creator>Chris Korhonen</dc:creator>
      <pubDate>Sun, 11 Jan 2026 19:58:55 +0000</pubDate>
      <link>https://dev.to/ckorhonen/the-general-purpose-agent-has-arrived-1hpd</link>
      <guid>https://dev.to/ckorhonen/the-general-purpose-agent-has-arrived-1hpd</guid>
      <description>&lt;p&gt;I haven't triaged my own inbox in months. I haven't manually organized a research note in over a year. When tax season came around, I handed Claude three years of documents and walked away. It found patterns I'd missed, flagged deductions I'd overlooked, and organized everything into a format my accountant actually thanked me for—and asked how I'd done it.&lt;/p&gt;

&lt;p&gt;This isn't hypothetical. It's Tuesday.&lt;/p&gt;

&lt;p&gt;If you use Claude primarily for code, you're using a general-purpose reasoning engine as a specialized tool. You're leaving most of its value on the table.&lt;/p&gt;




&lt;h2&gt;
  
  
  Drowning in Context
&lt;/h2&gt;

&lt;p&gt;Knowledge workers are drowning. Not in work—in &lt;em&gt;information about&lt;/em&gt; work.&lt;/p&gt;

&lt;p&gt;According to Forrester, knowledge workers lose 30% of their workday searching for information. Post-pandemic research from Nakash and Bouhnik found that some workers now spend up to 1.5 working days per week just gathering and organizing information. Gartner reports it takes an average of 18 minutes to locate a single document.&lt;/p&gt;

&lt;p&gt;We tried to solve this. For a decade, we built elaborate &lt;strong&gt;second brain&lt;/strong&gt; systems—Obsidian vaults, Notion databases, Roam graphs, Evernote notebooks. We developed methodologies with acronyms: CODE (Collect, Organize, Distill, Express), PARA (Projects, Areas, Resources, Archives), Zettelkasten. Thousands of people took courses on how to build these systems.&lt;/p&gt;

&lt;p&gt;Here's the uncomfortable truth: we solved the wrong problem.&lt;/p&gt;

&lt;p&gt;Second brains are excellent at &lt;em&gt;storage&lt;/em&gt;. They're terrible at &lt;em&gt;thinking&lt;/em&gt;. You can have the most meticulously organized vault in the world, and you still have to do all the reasoning yourself. The bottleneck was never storage. It was synthesis.&lt;/p&gt;




&lt;h2&gt;
  
  
  A Category Error
&lt;/h2&gt;

&lt;p&gt;When AI coding assistants emerged, we categorized them the way we categorize most software: by their primary use case. GitHub Copilot is a coding tool. ChatGPT is a chatbot. Claude is a coding assistant.&lt;/p&gt;

&lt;p&gt;This was a category error.&lt;/p&gt;

&lt;p&gt;What makes Claude good at code isn't a narrow capability tuned for programming. It's a general capability: the ability to take unstructured context, reason over it, and produce structured output. Feed it a messy codebase and a feature request, and it produces working code. Feed it a pile of research papers and a question, and it produces a synthesized answer. Feed it medical records from three different providers and ask for a timeline, and it produces one.&lt;/p&gt;

&lt;p&gt;The mechanism is identical. Only the domain changes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Code was the first killer app—not because AI is uniquely suited to programming, but because programmers were the first users with the technical sophistication to push the boundaries.&lt;/strong&gt; They discovered what the technology actually was—a general-purpose reasoning engine—before the marketing caught up.&lt;/p&gt;

&lt;p&gt;The rest of the world is still waiting for permission.&lt;/p&gt;

&lt;p&gt;Consider this yours.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Reframe
&lt;/h2&gt;

&lt;p&gt;Stop thinking of Claude as a coding tool that can do other things. Start thinking of it as a &lt;strong&gt;general-purpose reasoning engine&lt;/strong&gt; that happens to be packaged for developers.&lt;/p&gt;

&lt;p&gt;The same context window that can hold an entire codebase can hold:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Your inbox (thousands of emails, full conversation threads)&lt;/li&gt;
&lt;li&gt;Your financial records (bank statements, tax documents, receipts)&lt;/li&gt;
&lt;li&gt;Your medical history (records from multiple providers, lab results, prescriptions)&lt;/li&gt;
&lt;li&gt;Your research (papers, articles, notes, bookmarks)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you can describe the context and the desired output, Claude can likely do it. That's not a coding skill. That's all knowledge work.&lt;/p&gt;

&lt;p&gt;The question isn't whether the technology is ready. The question is whether you've updated your mental model.&lt;/p&gt;




&lt;h2&gt;
  
  
  My Playbook
&lt;/h2&gt;

&lt;p&gt;Let me show you what this looks like in practice.&lt;/p&gt;

&lt;h3&gt;
  
  
  Research &amp;amp; Knowledge Management
&lt;/h3&gt;

&lt;p&gt;Claude lives in my Obsidian sidebar. When I'm researching a topic, I don't just search my vault—I ask Claude to synthesize across it. It connects ideas I'd filed in different folders months apart. It identifies gaps in my understanding. It suggests questions I hadn't thought to ask.&lt;/p&gt;

&lt;p&gt;When I save a new article or paper, I don't just file it. I ask Claude to extract the key claims, identify how they relate to my existing notes, and suggest where they should connect. My vault went from a graveyard of abandoned notes to an active thinking partner.&lt;/p&gt;

&lt;h3&gt;
  
  
  Email Triage
&lt;/h3&gt;

&lt;p&gt;I point Claude at my inbox periodically. It reads everything, identifies what actually needs my attention, drafts replies to routine messages, and extracts action items into a structured list. What used to be a 45-minute daily ritual now takes about 10 minutes of review and approval.&lt;/p&gt;

&lt;p&gt;The key insight: most emails don't need &lt;em&gt;me&lt;/em&gt;—they need information or a standard response. Claude handles those. I handle the ones that actually require human judgment.&lt;/p&gt;

&lt;h3&gt;
  
  
  Financial Analysis
&lt;/h3&gt;

&lt;p&gt;Tax season used to mean a week of gathering documents, categorizing expenses, and second-guessing whether I'd missed something. Now I export my records, hand them to Claude, and ask specific questions: "What deductions might I be missing for home office expenses?" "Are there any unusual patterns in Q3 spending?" "Organize these documents for my accountant."&lt;/p&gt;

&lt;p&gt;It's not replacing my accountant. It's making me a better client.&lt;/p&gt;

&lt;h3&gt;
  
  
  Medical Records
&lt;/h3&gt;

&lt;p&gt;I've collected medical records from four different providers over the past decade. None of them talk to each other. Getting a coherent timeline of treatments, medications, and test results used to require hours of manual compilation.&lt;/p&gt;

&lt;p&gt;Now I hand Claude the stack of PDFs and ask: "Create a chronological health timeline. Flag any patterns or concerns I should discuss with my doctor." I walk into appointments with questions I wouldn't have known to ask.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Meta-Level
&lt;/h3&gt;

&lt;p&gt;But the real shift happened when I stopped using Claude for individual tasks and asked it to look at everything.&lt;/p&gt;

&lt;p&gt;"Look at my docs and pull together interesting info."&lt;/p&gt;

&lt;p&gt;It came back with a meticulous knowledge base: projects, personal, financial, health—each section filled with synthesized information I'd scattered across years of notes. Connections I'd never made. Patterns I'd never noticed. A structure I wouldn't have thought to create.&lt;/p&gt;

&lt;p&gt;Claude didn't just work within my system. It helped design the system.&lt;/p&gt;




&lt;h2&gt;
  
  
  Building Your Command Vocabulary
&lt;/h2&gt;

&lt;p&gt;Once I saw what was possible, I wanted to systematize it. I noticed I was typing the same prompts repeatedly—same preamble, same instructions, same output format. So I built custom commands.&lt;/p&gt;

&lt;p&gt;Think of it like a &lt;strong&gt;personal CLI for life&lt;/strong&gt;. Unix commands each do one thing well: &lt;code&gt;ls&lt;/code&gt;, &lt;code&gt;grep&lt;/code&gt;, &lt;code&gt;cat&lt;/code&gt;, &lt;code&gt;sort&lt;/code&gt;. My Claude commands work the same way:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;Commands&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Capture &amp;amp; Research&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;/note&lt;/code&gt;, &lt;code&gt;/todo&lt;/code&gt;, &lt;code&gt;/research&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Input goes in, structured output comes out&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Daily Rituals&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;/status&lt;/code&gt;, &lt;code&gt;/eod&lt;/code&gt;, &lt;code&gt;/standup&lt;/code&gt;, &lt;code&gt;/prep &amp;lt;meeting&amp;gt;&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Woven into the rhythm of work&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Maintenance&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;/cleanup&lt;/code&gt;, &lt;code&gt;/organize&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Keeping entropy at bay&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;code&gt;/status&lt;/code&gt; gives me a current state across all projects. &lt;code&gt;/eod&lt;/code&gt; wraps up my day—summarizes what happened, identifies loose threads, sets up tomorrow. &lt;code&gt;/prep &amp;lt;meeting name&amp;gt;&lt;/code&gt; pulls relevant context and talking points before I walk into a call. &lt;code&gt;/research &amp;lt;topic or url&amp;gt;&lt;/code&gt; does a deep dive and returns structured findings.&lt;/p&gt;

&lt;p&gt;These aren't productivity hacks. They're a &lt;em&gt;vocabulary&lt;/em&gt;. And like any vocabulary, once you have the words, you can express thoughts you couldn't before.&lt;/p&gt;

&lt;p&gt;The progression looks like this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Discover Claude works beyond code&lt;/li&gt;
&lt;li&gt;Start using it for specific domains&lt;/li&gt;
&lt;li&gt;Notice repetitive prompts&lt;/li&gt;
&lt;li&gt;Build custom commands&lt;/li&gt;
&lt;li&gt;Now you have a personal operating system&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Trust But Verify
&lt;/h2&gt;

&lt;p&gt;I'm not going to pretend this is magic.&lt;/p&gt;

&lt;p&gt;Claude still hallucinates occasionally. Specific facts need verification. Dates and numbers deserve a second look. For anything high-stakes—medical decisions, legal documents, financial filings—Claude is a powerful &lt;em&gt;first pass&lt;/em&gt;, not a replacement for professional advice.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Trust but verify.&lt;/strong&gt; Let Claude do the synthesis. Apply human judgment where it matters. This isn't fundamentally different from how you'd treat any capable assistant—you'd still review their work on important matters.&lt;/p&gt;

&lt;p&gt;The difference is the breadth. Most human assistants specialize. Claude doesn't have to.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Are You Leaving on the Table?
&lt;/h2&gt;

&lt;p&gt;If you're only using Claude for code, what else could you be doing with a general-purpose reasoning engine that can hold 200,000 tokens of context—roughly 150,000 words, or three novels' worth of your life?&lt;/p&gt;

&lt;p&gt;The knowledge workers spending 30% of their day searching for information—that's solvable. The second brain systems that store but don't think—Claude thinks. The administrative overhead of email, scheduling, document organization—most of it is pattern recognition and text transformation, which is exactly what these models excel at.&lt;/p&gt;

&lt;p&gt;The agent is ready. The capability is here. The bottleneck is the mental model that says "this is a coding tool."&lt;/p&gt;

&lt;p&gt;It's not. It's a reasoning engine. And reasoning is what knowledge work &lt;em&gt;is&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;The question isn't whether AI can help with the rest of your work. It can. The question is whether you're willing to find out what you've been leaving on the table.&lt;/p&gt;

&lt;p&gt;Start with one domain. Build one command.&lt;/p&gt;

&lt;p&gt;The general-purpose agent has arrived. What are you waiting for?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
