Skip to main content
Crashbytes logoCrashbytes
HomeArticlesByte Sized ExamplesOpen SourceServicesAboutContact
Browse Articles
HomeArticlesByte Sized ExamplesOpen SourceServicesAboutContact
Network
Theme
Browse Articles
Crashbytes logoCrashbytes

Expert insights on web development, technology trends, and programming best practices. Learn from real-world experiences and cutting-edge techniques that help you build better software.

Follow Us

Our Sites

  • ๐Ÿ”ฎ Predictions
  • ๐Ÿ“ฐ Breaking News
  • ๐ŸŽจ AI Art
  • ๐Ÿ“– Short Stories
  • View All โ†’
  • Products โ†’

Sitemap

  • Home
  • All Articles
  • Open Source
  • Services
  • About Us
  • Contact
  • Donate Compute

Popular Topics

  • Serverless
  • Cloud Architecture
  • DevOps
  • Kubernetes
  • Platform Engineering

Resources

  • Privacy Policy
  • Terms of Service
  • Sitemap
  • RSS Feed
  • PGP Key

Stay Updated

Get the latest articles, tutorials, and insights delivered to your inbox. Join our community of developers and never miss an update.

ยฉ 2021-2026 Crashbytesยฎ by Blackhole Software, LLC. All rights reserved.
| Reg. U.S. Pat. & Tm. Off.

Made for the developer community

  1. Home
  2. /
  3. Articles
  4. /
  5. The Death of the 10x Engineer - Why AI Makes Individual Productivity Metrics Obsolete in 2026
TechnologyJanuary 29, 202621 min readโ€ข By Michael Eakins

The Death of the 10x Engineer - Why AI Makes Individual Productivity Metrics Obsolete in 2026

AI coding assistants are fundamentally breaking traditional engineering productivity metrics. Individual output measurements become meaningless when AI can generate thousands of lines per hour. Explore why the 10x engineer concept is dying, what replaces it, and how engineering culture must adapt to survive the transition to AI-augmented development teams.

The Death of the 10x Engineer - Why AI Makes Individual Productivity Metrics Obsolete in 2026

Quick Takeaways

What you'll learn in this article

21 min read
Intermediate
  • 1

    10 percent writing initial implementation

  • 2

    60 percent writing boilerplate, tests, error handling

  • 3

    10 percent documentation and code review

  • 4

    30 percent thinking about architecture and system design

  • 5

    5 percent generating initial implementation with AI

Keep reading for detailed implementation, code examples, and real-world results

The 10x engineer died last Tuesday. Nobody noticed because we were too busy arguing about whether Copilot or Cursor was better at generating React components.

I am not being dramatic. The concept of the mythical 10x developer who writes ten times more code than their peers has become fundamentally meaningless in an environment where AI can generate thousands of lines per hour. When your AI assistant can scaffold an entire microservice in minutes, bragging about personal velocity is like celebrating your ability to add numbers faster than a calculator.

This is not just semantic nitpicking. The entire scaffolding of how we measure, reward, and structure engineering teams rests on assumptions that AI coding assistants have demolished. Lines of code per week. Pull requests merged per sprint. Story points completed per developer. These metrics worked when human typing speed and domain knowledge were the limiting factors. They are worse than useless now. They actively mislead us about what creates value in modern software development.

What kills me is watching engineering organizations cling to these broken metrics while their best engineers quietly adopt AI tools that make the measurements absurd. The VP celebrates an engineer who closed 47 tickets last quarter. Nobody mentions that 43 of those tickets were generated by Claude suggesting test cases that should have existed from the start. The team lead praises a developer for their exceptional PR velocity. The developer used GitHub Copilot to generate boilerplate that took five years of accumulated patterns to produce.

We are measuring the wrong things. Worse, we are optimizing for metrics that select against the actual skills that matter when AI becomes your primary code-generation tool.

Let me show you what is actually happening in engineering teams right now, and what it means for how we need to fundamentally rethink productivity.

The Measurement Crisis

Engineering productivity metrics always had problems. Smart people knew that lines of code was a terrible proxy for value. We all agreed that story points were subjective and easily gamed. But these metrics persisted because they provided something managers desperately needed: quantifiable comparisons.

When Sarah writes 3,000 lines of code this sprint and Mike writes 800, you had data for performance reviews. Never mind that Sarah's 3,000 lines were poorly structured boilerplate that created technical debt, while Mike's 800 lines elegantly solved a complex architectural problem that unblocked three other teams. The numbers gave us the illusion of objective measurement in a fundamentally subjective domain.

AI coding assistants did not just make these metrics less accurate. They made them actively dangerous.

I watched this play out at a Series B startup last quarter. Their top performer by every traditional metric was averaging 12,000 lines of code per month, 85 PRs, 142 story points. The engineering manager used these numbers to justify promotion and compensation discussions. Then someone noticed something odd during a security audit.

The "top performer" was using Cursor to generate entire features from natural language descriptions, pasting the output with minimal review, and shipping it to production. Code quality was abysmal. Security vulnerabilities everywhere. Half the generated code duplicated existing functionality because the AI did not have full context of the codebase. Technical debt accumulating at an exponential rate.

Meanwhile, another engineer on the same team showed terrible metrics by traditional standards. Four PRs last month. 1,200 lines of code. 18 story points. But those four PRs refactored critical infrastructure that reduced deployment time by 73 percent, eliminated an entire class of race conditions that had been causing production incidents, and created abstractions that three other teams immediately adopted for their own services.

Which engineer created more value? The metrics said the first one. Reality said the second. This is not an edge case. This is the new normal.

The fundamental problem is that AI shifts the bottleneck. Human typing speed and code generation are no longer the constraints. The constraints are architectural thinking, system-level understanding, code review quality, and the ability to identify which problems AI cannot solve. None of our traditional metrics measure these capabilities.

What AI Actually Changed

When Copilot first arrived in 2021, most engineers treated it as a fancy autocomplete. You started typing a function and it suggested the implementation. Useful, but not revolutionary. It saved some typing but did not fundamentally change how we worked.

That era ended around mid-2024. The current generation of AI coding assistants does not just autocomplete. They understand context across your entire codebase, generate complex implementations from natural language descriptions, suggest architectural patterns, identify bugs before they ship, and increasingly make intelligent decisions about code organization and structure.

I use Claude through the API for code generation daily. I describe what I need in plain English. The AI generates not just the function but the tests, the documentation, the error handling, and often architectural improvements I had not considered. The entire cycle from specification to working, tested code that previously took hours now takes minutes.

This is not unique to me. Every serious engineering team has developers using these tools. Some organizations mandate their use. Others quietly permit them while official policy pretends they do not exist. But make no mistake - the engineers not using AI assistants are falling behind at an accelerating rate.

What changed is the time distribution of engineering work. In 2020, a typical feature implementation looked like this:

  • 5 percent thinking about architecture
  • 10 percent writing initial implementation
  • 60 percent writing boilerplate, tests, error handling
  • 15 percent debugging
  • 10 percent documentation and code review

AI completely reshapes this distribution:

  • 30 percent thinking about architecture and system design
  • 5 percent generating initial implementation with AI
  • 10 percent reviewing and refining AI-generated code
  • 20 percent integration and system testing
  • 20 percent code review and architectural discussions
  • 15 percent documentation and knowledge sharing

The bottleneck moved from "writing code" to "deciding what code to write and ensuring it fits correctly into complex systems." This is a fundamentally different skill set than what we traditionally measured and rewarded.

The 10x engineer was someone who could write code ten times faster or better than average. In an AI-augmented environment, that person's advantage evaporates. AI brings everyone to similar code generation speeds. What matters now is the ability to effectively direct AI tools, critically evaluate their output, understand system-level implications, and coordinate across complex technical domains.

These capabilities do not correlate with lines of code written or PRs merged. They often anti-correlate with traditional productivity metrics because they involve more thinking, more discussion, more architectural refinement, and less direct code generation.

Advertisement

The New Skills That Matter

If traditional metrics are dead, what actually distinguishes high-performing engineers in an AI-augmented environment? After working with dozens of engineering teams making this transition, I can identify clear patterns in who thrives and who struggles.

The engineers who excel in this environment share specific characteristics that traditional hiring and evaluation missed or actively selected against.

First, they are exceptional at prompt engineering. This sounds trivial until you watch someone who is good at it work. They do not just tell the AI what to build. They provide architectural context, specify edge cases, define quality constraints, and iterate rapidly through multiple solution approaches. They treat the AI as a junior developer who needs clear direction and produces better work with specific guidance.

I watched a senior engineer generate a complex distributed caching system last week. The initial prompt was three paragraphs describing the requirements, constraints, and architectural principles. The AI generated an initial implementation. The engineer immediately identified six issues with the approach - race conditions under high concurrency, poor cache invalidation strategy, inadequate error handling, missing observability hooks, inefficient serialization, and a subtle memory leak under specific edge cases.

Rather than manually fixing these issues, the engineer provided targeted feedback to the AI, directing it to regenerate sections with specific improvements. The final implementation was production-ready in 40 minutes. A traditional engineer might have spent three days building the same system manually, and likely would have missed two of the six issues the senior engineer identified immediately.

This is not about typing speed. This is about system-level understanding and the ability to critically evaluate complex code rapidly. These are skills we never measured because they manifested as "the engineer who catches bugs in code review" rather than "the engineer who writes lots of code."

Second, high performers excel at integration work. AI is fantastic at generating isolated components. It struggles with understanding how those components fit into complex existing systems. The engineer who can look at AI-generated code and immediately identify integration points, dependency issues, architectural mismatches, and system-level implications creates orders of magnitude more value than the engineer who just ships whatever the AI produces.

This is my prediction about AI agent orchestration complexity playing out at the individual developer level. The future is not autonomous AI agents replacing engineers. It is engineers orchestrating AI tools within complex technical ecosystems.

Third, they are excellent at code review of AI-generated output. This is a distinct skill from traditional code review. AI makes different mistakes than humans. It confidently implements subtle security vulnerabilities that a human would never write. It creates apparently correct code that fails under specific conditions the AI's training data did not cover. It generates technically sound implementations that violate organizational architectural principles.

Identifying these issues requires deep technical knowledge combined with healthy skepticism of AI output. The engineers who excel here do not trust AI to get things right. They assume every AI-generated block of code contains subtle issues and systematically hunt for them. This paranoid approach is more valuable than the optimistic "ship fast and iterate" mentality that worked when humans were writing all the code.

Fourth, successful engineers maintain strong architectural thinking. AI excels at tactical implementation. It struggles with strategic architecture. The engineer who can design clean abstractions, identify appropriate patterns for complex problems, make intelligent tradeoffs between competing concerns, and maintain system-level coherence across multiple services creates value that AI cannot replicate.

I am seeing this in my work with enterprise platform engineering teams. The engineers who thrive are those who spend more time thinking about system design and less time writing code. They use AI to rapidly prototype architectural approaches, test different patterns, and explore solution spaces. But the actual decisions about architecture come from human judgment informed by system-level context that AI cannot access.

None of these skills correlate with traditional productivity metrics. In fact, they often produce worse metrics because they involve more time reviewing, discussing, and refining rather than generating new code.

The Cultural Reckoning

The skills gap is just the surface problem. The deeper issue is cultural. Engineering organizations built their entire reward structure around metrics that AI made obsolete. Compensation bands tied to lines of code. Promotions based on PR velocity. Performance reviews celebrating high throughput. Team structures organized around individual productivity.

All of this breaks when AI becomes the primary code generator.

I am watching engineering organizations struggle with this transition in real-time. The engineers who were stars under the old metrics - those who could crank out massive amounts of code quickly - are suddenly less valuable. The engineers who were undervalued - those who spent time on architecture, code review, mentoring, and system-level thinking - are now critical.

This creates massive organizational tension. The former stars realize their advantage is evaporating and resist the transition. Management struggles to justify compensation changes when traditional metrics still favor the old approach. Junior engineers who never learned to think without AI assistance lack fundamental skills. Senior engineers who refuse to adopt AI tools fall behind rapidly.

The teams that navigate this successfully make radical changes to their culture and processes.

They eliminate individual productivity metrics entirely. No more lines of code per developer. No more story points per engineer. No more PR counts or commit frequency. These numbers are worse than useless - they actively encourage the wrong behaviors in an AI-augmented environment.

Instead, they measure team-level outcomes. System reliability. Feature delivery velocity. Code quality. Technical debt reduction. Customer satisfaction. These metrics are harder to game with AI and better align with actual business value.

They restructure roles around AI orchestration. Instead of "frontend engineer" and "backend engineer," teams organize around "AI-assisted feature development," "AI code review and quality assurance," "architecture and system design," and "AI tool optimization." These roles reflect the actual work distribution in an AI-augmented environment.

They invest heavily in AI literacy. Every engineer must become proficient at prompt engineering, AI output evaluation, and effective human-AI collaboration. This is not optional or a nice-to-have skill. It is as fundamental as knowing Git or understanding async programming.

They create new career paths. The traditional IC (individual contributor) ladder assumed that senior engineers wrote more and better code than junior engineers. This model breaks when AI generates most of the code. New ladders reward system-level thinking, architectural expertise, AI orchestration capabilities, and the ability to identify and solve problems that AI cannot handle.

Most importantly, they abandon the 10x engineer mythology entirely. The idea that individual heroics drive engineering success always had problems. In an AI environment, it becomes actively toxic. Success comes from effective human-AI collaboration, strong code review culture, architectural discipline, and team-level coordination. None of these scale with individual heroics.

The Metrics That Actually Work

If traditional productivity metrics are dead, what should engineering organizations measure instead?

After working with multiple teams through this transition, I can identify metrics that remain meaningful and align with actual value creation in AI-augmented environments.

First, measure code quality at the system level. How many production incidents per month? What percentage of code has adequate test coverage? How long does it take to identify and fix bugs? What is the mean time to recovery when systems fail? These metrics cannot be gamed by generating massive amounts of AI code and measure what actually matters - system reliability and quality.

I helped one organization implement a "quality score" that combined test coverage, linter compliance, code review completion, documentation completeness, and production incident rate. Engineers could still use AI to generate code rapidly, but they had strong incentives to ensure that code met quality standards. Within two quarters, production incidents dropped 60 percent while feature velocity increased 40 percent.

Second, measure architectural coherence. How consistent are patterns across the codebase? How well do new features integrate with existing systems? How much technical debt are we accumulating versus paying down? These require human judgment but reveal whether engineers are using AI thoughtfully or just shipping whatever it generates.

Third, measure team-level learning and knowledge sharing. How many documentation contributions per team? How much time spent on code review and mentoring? How effectively does knowledge spread across the organization? In an AI environment, the ability to rapidly share patterns and practices becomes more valuable than individual coding speed.

Fourth, measure the actual business outcomes. How quickly do we ship features that customers use? How often do we solve real customer problems versus building features nobody needs? How efficiently do we deliver value relative to resources invested? These metrics force focus on outcomes rather than output.

Fifth, measure AI effectiveness. How much time do engineers save using AI tools? What percentage of AI-generated code ships to production versus being discarded? How often do AI suggestions lead to architectural improvements versus problems? These metrics help optimize human-AI collaboration rather than assuming AI is always beneficial.

The critical insight is that all of these are team-level or system-level metrics. None measure individual productivity in the traditional sense. This is intentional. Individual productivity becomes less meaningful when AI handles most code generation. What matters is how effectively the team coordinates, how well they use AI tools, and what outcomes they deliver.

Advertisement

The Hiring Problem

If the skills that matter have changed, hiring processes must change too. Most engineering interviews still test coding speed, algorithm knowledge, and the ability to solve contrived problems on a whiteboard. These tests measure skills that AI makes less relevant.

I am seeing forward-thinking organizations completely redesign their interview processes. Instead of asking candidates to implement binary search from scratch, they give candidates access to AI tools and ask them to architect a complex system, critique AI-generated implementations, or integrate AI-suggested code into an existing codebase.

One company I advised runs interviews that feel more like pair programming sessions. The candidate works with an AI assistant to solve a real architectural problem from the company's actual codebase. Interviewers evaluate how the candidate prompts the AI, how critically they review generated code, how they think about system integration, and how they communicate architectural decisions.

This reveals skills that traditional interviews miss. Can you effectively direct AI tools? Do you critically evaluate AI suggestions or blindly accept them? Can you identify subtle architectural issues in plausible-looking code? Do you think about system-level implications or just local correctness?

These are the skills that differentiate high performers from mediocre ones when AI handles most code generation. Traditional coding interviews optimized for skills that mattered in 2020. Modern interviews need to optimize for skills that matter in 2026.

The challenge is that most hiring managers do not know how to interview for these capabilities. They fall back on familiar tests that measure the wrong things. This creates a adverse selection problem where organizations hire for skills that AI makes obsolete while missing candidates who would excel in AI-augmented environments.

What Happens To The Old Guard

The engineers who built careers around being fast coders face an existential crisis. Their competitive advantage evaporates when AI generates code faster than any human. Some adapt. Many do not.

I have watched this play out across multiple organizations. The engineers who successfully transition share common patterns. They lean into skills AI cannot replicate - architectural thinking, system-level design, critical evaluation of complex systems, and effective communication of technical concepts. They become force multipliers who make their entire team more effective rather than trying to maximize personal output.

The engineers who struggle resist the transition. They cling to traditional metrics because those metrics still favor their established strengths. They argue that AI-generated code is low quality, missing the point that quality is about review and integration rather than generation. They resist adopting AI tools, falling further behind as their peers leverage assistance they refuse to use.

This is not a generational divide. I have seen brilliant 50-year-old engineers embrace AI and become even more effective, while 25-year-old developers struggle because they never developed the system-level thinking that AI cannot provide. Age does not predict adaptation. Mindset does.

The organizations that handle this transition well create clear paths for engineers to evolve their skills. They invest in training around AI tool usage, architectural thinking, and system design. They create new roles that value skills AI cannot replicate. They publicly celebrate engineers who excel at AI orchestration rather than just code generation.

The organizations that handle it poorly watch their best engineers leave for companies that recognize their evolving value. The engineers optimized for the old metrics stay and continue optimizing for measurements that no longer matter. Technical debt accumulates. System quality degrades. Eventually, the organization realizes it optimized for the wrong things but lacks the engineering talent to fix the problem.

The Infrastructure Requirements

Measuring and rewarding the right capabilities requires infrastructure that most organizations lack. You cannot effectively evaluate AI-assisted development without tools that track how engineers use AI, measure the quality of AI-generated code, and identify patterns in human-AI collaboration.

I am seeing leading organizations build sophisticated observability systems for their engineering processes. These systems track AI tool usage, measure code review depth, monitor technical debt accumulation, and identify patterns in how different engineers leverage AI assistance.

The data reveals insights that traditional metrics miss. Some engineers use AI for initial scaffolding but write most code manually. Others delegate almost everything to AI and focus on review and integration. Both approaches can be effective depending on the task, but they require different skills and create different value.

Understanding these patterns helps organizations optimize both tools and processes. If most engineers struggle with AI-generated security code, invest in better security-focused prompts and review checklists. If AI suggestions for database queries are consistently low quality, direct engineers toward manual implementation for those components.

This requires treating engineering productivity as a data-driven optimization problem rather than a simple metric to track. The infrastructure costs are significant. The payoff is enormous.

The Transition Timeline

Organizations cannot flip a switch and move from traditional to AI-augmented productivity metrics overnight. The transition requires careful planning and staged rollout.

Based on what I am seeing in successful transitions, the timeline looks like this:

Quarter 1: Audit current metrics and identify which measurements AI makes meaningless. Start pilot programs measuring AI effectiveness and team-level outcomes. Train engineering leadership on the new reality of AI-augmented development.

Quarter 2: Launch new team-level metrics alongside traditional individual metrics. Begin collecting data on AI tool usage and code quality. Create new career paths that reward AI orchestration and architectural skills.

Quarter 3: Make compensation and promotion decisions based on new metrics. Phase out individual productivity measurements for roles where AI handles most code generation. Restructure teams around AI-augmented workflows.

Quarter 4: Complete transition to new metrics and cultural norms. Eliminate traditional productivity measurements entirely. Fully integrate AI into hiring, evaluation, and reward systems.

This is a minimum timeline assuming organizational buy-in and effective execution. Most organizations will need 12-18 months to complete the transition. Some will need longer. A few will never make it.

The organizations that delay this transition or try to maintain traditional metrics in an AI-augmented environment will face increasing problems. Their best engineers will leave for organizations that recognize their evolving value. Their hiring will select for the wrong skills. Their engineering culture will reward behaviors that AI makes counterproductive.

The organizations that successfully transition will have significant competitive advantages. They will attract and retain engineers who excel at AI-augmented development. They will ship higher quality code faster. They will make better architectural decisions. They will build more reliable systems.

The difference between these outcomes depends entirely on whether organizations recognize that AI fundamentally changed what productivity means and adjust their culture, processes, and metrics accordingly.

Why This Matters Now

I am writing this in January 2026 because we are at an inflection point. AI coding assistants became good enough to generate production-quality code around mid-2024. We are now 18 months into the transition. Some organizations have adapted. Most have not.

The gap between adapted and non-adapted organizations is widening rapidly. The teams that successfully transitioned to AI-augmented workflows are shipping features 3-5x faster while maintaining better quality. The teams still measuring lines of code and celebrating high PR counts are accumulating technical debt and losing their best engineers.

This gap will become unbridgeable within another year. The teams that fall too far behind will lack the engineering talent and institutional knowledge to catch up. They will be stuck in a death spiral of poor metrics driving poor behaviors driving poor outcomes.

The window for successful transition is closing. Not because the technology will change - if anything, AI tools will become more powerful and more integrated into development workflows. But because organizational culture and metrics are hard to change, and the longer you wait, the harder the transition becomes.

The 10x engineer is dead. What replaces it is teams that effectively orchestrate AI tools, critically evaluate AI output, make intelligent architectural decisions, and deliver reliable systems that solve real problems. The organizations that recognize this reality and restructure accordingly will dominate their markets. The organizations that cling to traditional metrics will become increasingly irrelevant.

I know which group I want to be in. The question is whether your organization has the courage to make the necessary changes before it is too late.

The metrics you measure determine the behaviors you get. If you keep measuring the wrong things, you will keep getting the wrong results. AI did not just make traditional productivity metrics less accurate. It made them actively harmful because they optimize for skills that no longer drive value.

Fix your metrics or watch your best engineers leave for organizations that understand what productivity actually means in 2026. Those are your only options. Everything else is a slower version of the same failure.

Advertisement

Was this article helpful?

Your feedback helps us improve our content and create more valuable resources

We appreciate honest feedback - it helps us serve you better

Work with us

This analysis is what we do for clients

CrashBytes consults on enterprise AI strategy and implementation, builds custom web and mobile software, and places senior engineers on corp-to-corp engagements.

See Services

Enjoyed this? Get the next one.

Join developers getting CrashBytes articles, tutorials, and predictions in their inbox. No spam, unsubscribe anytime.

Related Topics

Engineering CultureAI ProductivityTeam DynamicsEngineering MetricsWorkforce TransformationDeveloper ExperienceAI Coding AssistantsEngineering Leadership
Back to Articles
โ† PreviousAI Agent Orchestration in 2026 - The Multi-Model Future Has ArrivedNext โ†’AI Reasoning Models Hit Production Reality - The System 2 Cost Crisis

From across the CrashBytes network

More than the blog โ€” predictions, news, fiction, and AI art.

PredictionCustom AI Chips Reach Commodity Status by Q4 2027: Cloud Provider Competition Drives Democratization
NewsWeek In Review July 19-25, 2026 - The Week The Money Moved To The Metering Layer
Short StoryThe Answer Key
AI ArtThe Room That Remembers

Continue Your Learning Journey

Explore more articles related to Technology and expand your knowledge.

๐Ÿ“„Technology

The Interview Overhaul: The Interview Should Look Like the Job

Senior engineering interviews still revolve around whiteboard puzzles that the job never asks for, and AI has now made the puzzle worthless as a signal. A hiring manager who also builds recruiting software and recently sat on the candidate side lays out the case for work-sample loops that mirror the actual role, and a concrete protocol for running them.

25 min readRead more
๐Ÿ“„Platform Engineering

The Rise of Platform Engineering: Transforming DevOps in 2026

A comprehensive guide to platform engineering in 2026 covering internal developer platforms, Backstage ecosystem maturity, infrastructure abstraction with Crossplane and Humanitec, developer experience metrics, AI-assisted workflows, security guardrails, FinOps integration, and the organizational patterns that separate successful platform teams from expensive failures.

23 min readRead more
๐Ÿ“„Open Source

Strategic Open Source Contributions in 2026: Engineering Excellence Through Community Investment

Strategic open source contributions in 2026 drive engineering excellence, talent acquisition, and competitive advantage. Learn how organizations and individuals leverage OSS for measurable business outcomes.

22 min readRead more
๐Ÿ“„Technology

The Permanent Map โ€” How American Work Hollowed Out Between 2015 and 2025

A rigorous accounting of U.S. jobs permanently lost over the decade, using a headcount-by-functional-family definition that counts AI engineer hires as software refills and treats offshored functions as a separate bucket. Approximately 5 million white-collar jobs gone, 700,000 production jobs gone, 3-4 million American jobs filled offshore, against 8 million net new jobs concentrated in sub-$45,000 service roles.

28 min readRead more