Future proofing front-end dev roles
The structural transformation of front-end engineering through agentic AI and large language models
The structural transformation of front-end engineering through agentic AI and large language models
A synthesized research report for enterprise individual contributors and engineering leaders working alongside Claude Code, GitHub Copilot, Cursor, v0, and the agentic toolchain emerging through 2028.
The job description for a front-end developer is being rewritten in real time. Adoption of AI coding tools has jumped from 62% of professional developers in 2023 to roughly 84% in 2025 (Stack Overflow Developer Survey 2024; 2025). Yet trust in those tools fell from 40% to 29% over the same window, and 46% of developers now actively distrust AI accuracy. That gap, between use and trust, is where the new role is being defined.
This is not the end of front-end engineering. It is a structural reallocation: less value in typing out routine code by hand, more value in specifying intent, structuring systems, validating outputs, and owning user-facing quality. The developer is moving from primary executor of syntax to orchestrator of intelligence.
Three layers of evidence converge on the same conclusion. First, the labor market is changing, not vanishing: the U.S. Bureau of Labor Statistics’ 2024–2034 Occupational Outlook projects 7% growth for web developers and digital designers, with about 14,500 openings per year on average, though that is down from a 13% projection in the prior cycle. Computer programmers are projected to decline 6% through 2034, with BLS explicitly citing AI automation.
Second, productivity research is bimodal. GitHub’s 2022 controlled experiment (arXiv 2302.06590) found Copilot users completed a JavaScript HTTP-server task 55% faster than the control. McKinsey’s 2023 lab study reported 45–50% gains on documentation, 35–45% on code generation, and 20–30% on refactoring, with high-complexity tasks gaining less than 10%. But METR’s 2025 randomized trial with 16 experienced developers working on mature codebases they already knew well found those developers took 19% longer with Cursor Pro and Claude Sonnet, even though they predicted 24% faster (arXiv 2507.09089). Google’s 2024 DORA Report corroborates: a 25% increase in AI adoption correlates with a 1.5% drop in delivery throughput and a 7.2% drop in delivery stability, the “Vacuum Hypothesis,” where saved time is absorbed by other low-value work.
Third, the productivity gap widens with AI. McKinsey’s CIO/CTO guide found highly skilled developers gained 50–80%, while developers with less than a year of experience saw a 7–10% decline in speed. They struggle to critique, validate, and improve AI output. The “10x developer” idea is dissolving into a different shape: senior engineers who can orchestrate AI become disproportionately valuable; juniors without the judgment to evaluate AI output fall further behind.
The combination pushes the role decisively toward review, quality control, architecture, and systems thinking, not pure code production.
Front-end-specific labor data is harsher than the headline tech numbers. IEEE Spectrum, drawing on BLS data, reported programmer employment fell 27.5% between 2023 and 2025 while software-developer employment held essentially flat. The Stanford Digital Economy Lab’s Canaries in the Coal Mine? working paper (Brynjolfsson, Chandar, Chen; November 2025) used ADP payroll data covering 3.5–5 million workers monthly. The finding for software developers aged 22–25: employment dropped nearly 20% from its late-2022 peak by July 2025.
Indeed Hiring Lab data shows tech postings 36% below the February 2020 baseline as of October 2025. Postings open to candidates with 2–4 years of experience fell from 46% in mid-2022 to 40% in mid-2025, while postings requiring 5+ years rose from 37% to 42%. Junior tech postings are now under 2% of total openings. SignalFire’s State of Tech Talent 2025 reports new-grad hiring at the seven largest U.S. tech firms is down more than 50% since 2022.
Bloomberry’s analysis of 20 million postings shows AI-scientist postings up 80% year over year while front-end, mobile, and data-engineering postings each dropped more than 20%. Indeed’s 2025 AI at Work report finds 81% of skills mentioned in a typical software-development job posting fall into “hybrid transformation” categories, with humans shifting from doing the work to directing it.
Adoption is settling at high rates that effectively erase any “competitive advantage” of merely using AI. Gartner now projects 90% of enterprise software engineers will use AI code assistants by 2028, up from less than 14% in early 2024. The 2025 Octoverse reports roughly 80% of new GitHub users tried Copilot within their first week and that TypeScript overtook JavaScript and Python as the most-used language on the platform, a shift GitHub attributes directly to AI coding workflows. Strong typing makes agent-assisted coding more reliable in production.
The role is bifurcating into a product-focused path (interaction quality, business logic, user experience) and a systems-focused path (architecture, design systems, scalability). The “middle ground”, moderately technical and moderately product-aware, is the area of highest career risk.
The replacement category for the generic front-end role is the design engineer. Vercel publishes job postings with San Francisco base ranges of $200,000–$240,000 and runs an entire Design Engineering practice describing it as “a new role that is gaining popularity.” Linear, Stripe, The Browser Company, Replit, and most well-funded AI labs hire for the same hybrid: a contributor who can hold both Figma and a React codebase in their head, owns animation and performance polish, and ships product without the traditional designer-to-engineer handoff.
Maggie Appleton’s curated list and Vercel’s design team page name the practitioners now defining the role: Rauno Freiberg, Emil Kowalski (author of Sonner and Vaul), Paco Coursey at Linear. Freiberg’s framing in his ui.land interview is direct: “These two don’t feel separate to me.” LinkedIn’s 2026 Jobs on the Rise list places “AI engineer” at #1 across all categories.
The most profound shift in the IC role is the move from “agent fixer” to “agent conductor.” Aaron Levie of Box framed it on the Every podcast: “the role of the individual contributor is starting to resemble that of a manager — someone who allocates tasks, coordinates agents, and exercises judgment.” High-level development now demands developers act as conductors who guide fleets of autonomous agents through structured context. This requires mastering context engineering: managing and persisting high-quality context for AI coding agents to prevent “agent drift”, where an agent builds something rapidly but incorrectly due to a lack of situational awareness.
A pattern that has converged across mature teams is using dedicated markdown files as non-negotiable specifications and guardrails:
| Context File | Function |
|---|---|
prompt.md | Establishes the agent’s persona and synchronizes it with all other project context files. |
plan.md | A master blueprint that frames the project as a holistic system rather than discrete tasks. |
status.md | Micro-status snapshot of progress, enabling seamless handoffs between human and machine. |
architecture.md | Non-negotiable technical specs (e.g., mandated frameworks like Next.js, Tailwind, design-system rules). |
code_styleguide.md | Team-specific rules: type-safety levels, clarity over abstraction, file structure. |
workflow.md | The “definition of done”: TDD requirements, coverage thresholds, CI gates. |
AGENTS.md / CLAUDE.md | Repository-level instructions that travel with the codebase for any agent. |
The secondary cost of this evolution is a potential erosion of deep system intuition. Traditionally, developers built mental maps through manual implementation. When agents perform the bulk of the writing, human engineers must develop new methods for maintaining comprehension, chiefly through architectural review, verification protocols, and rigorous reading of diffs.
Modern coding tools operate autonomously across the entire toolchain. Claude Code reads a codebase, traces dependencies, makes multi-file edits, runs tests, and monitors CI. GitHub Copilot’s cloud agent can research a repository, create an implementation plan, change code on a branch, improve test coverage, and address technical debt; its IDE agent mode determines which files to change, proposes terminal commands, and iterates until the task is complete. OpenAI’s Codex sits in the same category as a coding agent that reads, edits, and runs code in the cloud.
The category divides into:
MCP, open-sourced by Anthropic in November 2024 and now maintained under the Linux Foundation, has effectively won the protocol layer. OpenAI adopted it in March 2025; Google DeepMind followed. For front-end developers, the practical effect is that connecting Figma, Sentry, Linear, GitHub, or your own design system to Cursor, Claude Code, Windsurf, or Copilot becomes a config file rather than a custom integration. Figma’s MCP server puts design context directly into your editor.
Vercel’s v0 transforms text prompts or screenshots into high-fidelity React components on a Tailwind/shadcn stack. Unlike general-purpose LLMs, these tools are trained on front-end code patterns, so output tends to follow established web standards. StackBlitz’s Bolt.new scaffolds full-stack applications, including databases and auth, from a single prompt. Galileo AI was acquired by Google in May 2025 (now Stitch); Uizard was acquired by Miro Labs in May 2024. The category is consolidating fast.
The traditional SDLC is becoming a continuous loop of human-led intent and agent-driven execution:
CEO claims about AI-authored code share are climate, not weather. Sundar Pichai said on Google’s October 2024 earnings call that more than a quarter of new code at Google is AI-generated. Satya Nadella told Mark Zuckerberg at LlamaCon in April 2025 that “20%, 30% of the code that is inside of our repos today” is AI-written. Dario Amodei predicted in March 2025 that AI would write 90% of code within six months, a projection analysts have flagged as not materializing at industry scale (LessWrong analysis). None of these claims are independently measurable.
Treat this as a working set, not a checklist. The point is to be a credible orchestrator of AI systems, not to memorize APIs that change every quarter.
Prompt and context engineering. Anthropic’s Effective context engineering for AI agents is the cleanest primary statement of the shift, framing context engineering as “the natural progression of prompt engineering” focused on “curating and maintaining the optimal set of tokens during LLM inference.” Andrej Karpathy popularized the term in mid-2025; Tobi Lütke called it the highest-leverage skill in modern software work. Empirical research from Chroma and Databricks documents “context rot”: model accuracy degrades long before the advertised context window fills. Read Anthropic’s Claude 4 best practices and the OpenAI GPT-5 prompting guide.
Agentic workflow orchestration. Learn how subagents and YAML frontmatter let you split work across specialized contexts in Claude Code; how Cursor’s .cursorrules and Composer’s @Recommended context handle scaffolding; how Copilot’s edits and cloud agent move work from suggestion to PR. The skill underneath all of them is decomposing a job into reviewable units small enough to verify.
Evaluating and verifying AI-generated code. This is where most of the engineering rigor now lives. The GitClear 2025 AI Copilot Code Quality report analyzed 211 million changed lines from 2020–2024: copy-pasted lines rose from 8.3% to 12.3%, refactored lines fell from 24.1% to 9.5%, and short-term churn rose from 3.1% to 5.7%. For the first time, copy-pasted code exceeded refactored code. The peer-reviewed Stanford/CCS study by Perry et al. (arXiv 2211.03622) found participants with AI assistants “wrote significantly less secure code and were more likely to believe they wrote secure code.” Pearce et al.’s Asleep at the Keyboard? showed roughly 40% of 1,689 Copilot completions in security-relevant contexts contained CWE-classified vulnerabilities.
When you should not use AI assistance. Treat this as a discipline. The signals point to security-sensitive code, cryptography, novel algorithms, debugging legacy code with implicit invariants, accessibility-critical components, and any work where required context exceeds 32K tokens. The Amro and Alalfi 2025 study found Copilot’s own code-review feature “frequently fails to detect critical vulnerabilities such as SQL injection, XSS, and insecure deserialization.” Manual review remains the floor for anything you put your name on.
Building AI-powered features. Front-end developers are now expected to ship LLM features, not only consume LLM tools. The Vercel AI SDK is the practical TypeScript surface most teams use: streamText, generateObject with Zod schemas, tool() definitions, and the React useChat hook. LangChain.js covers agent orchestration when features outgrow a single call. For RAG, start with pgvector if you already run Postgres; reach for managed Pinecone or Weaviate when you need scale or hybrid search.
The traditional skills have not become less important. They have become more diagnostic. They are how you detect, repair, and prevent the failure modes AI introduces.
Design judgment and design-systems thinking. AI can produce a plausible button. It cannot maintain a token taxonomy across themes, uphold governance, or design composition that survives multi-brand rollout. Brad Frost’s Atomic Design book and his AI and Design Systems course position the system layer as the human-owned layer. Nathan Curtis’s token taxonomy work at EightShapes remains the reference for organizing tokens at enterprise scale. The W3C Design Tokens Community Group reached its first stable specification in late 2025, establishing a vendor-neutral format for sharing design decisions across tools and code.
Accessibility. WCAG 2.2 became a W3C Recommendation in October 2023. The 2026 WebAIM Million reversed six years of slow improvement: average errors per home page rose 10.1% to 56.1, and 95.9% of the top million home pages have detectable WCAG failures. Pages using ARIA average 57 errors per page versus roughly 26 for pages without it, because ARIA misuse compounds with AI-generated component scaffolding. Suh and Malek’s 2025 study (arXiv 2503.15885) found GPT-4o and Qwen2.5 produced relatively accessible color contrast and alt text but “struggle with complex issues such as ARIA attributes.” The U.S. Department of Justice finalized 2024 Title II requirements for accessible web content and mobile apps for state and local governments; accessibility now has explicit regulatory teeth in public-sector contexts. Adrian Roselli’s No, AI will not fix accessibility and Sara Soueidan’s Practical Accessibility course are the working references.
Performance engineering. INP replaced FID as a Core Web Vital on March 12, 2024. The HTTP Archive Web Almanac 2024 shows mobile INP “good” rates at 74%, up from 55% in 2022, but the metric exposes interactivity failures FID hid. Addy Osmani’s “70% problem”, and his 2026 update, the 80% problem, quantifies the pattern: AI generates the easy parts and leaves performance, observability, retries, and architectural consistency to humans. His code review in the age of AI summary: PRs are roughly 18% larger as AI adoption rises, incidents per PR up about 24%, change-failure rates up roughly 30%.
Component API design and modern CSS. AI generates one-off components fluently. It does not build compound-component APIs that propagate state through context, or controlled/uncontrolled patterns that scale across a design system, or accessibility wiring that survives composition. Radix Primitives, React Aria, and Ark UI encode the hard parts as a behavioral layer. The CSS platform of 2026 has caught up: container queries are Baseline Widely available, same-document view transitions reached Baseline Newly available in October 2025, and :has(), @layer, subgrid, and the Popover API are all widely supported. AI training corpora skew toward older patterns; developers who know modern CSS write less code and ship better UX.
TypeScript depth as guardrails. Matt Pocock’s 2025–2026 framing has stuck: types are guardrails for AI agents. His open-source skills repo ships structured workflows (TDD, git guardrails, return-type rules, noUncheckedIndexedAccess) designed to keep Claude Code and Cursor inside safe boundaries. Branded types, conditional types, NoInfer, and strict generics reduce the surface where an LLM can hallucinate.
Testing and verification engineering. When AI generates code faster than humans can review it, tests become the only practical safety net. Kent C. Dodds is publicly revisiting the Testing Trophy for 2025 given Playwright’s reliability and Vitest’s Browser Mode. Playwright’s locator API (getByRole, getByLabel) doubles as accessibility instrumentation. OpenAI’s eval guidance argues that conventional software tests are insufficient for probabilistic systems; front-end teams adopting AI-generated code or AI-infused features need both classic test automation and AI-specific evaluation. Visual regression with Chromatic or Percy plus Vitest integration tests now cover most of what unit tests used to.
Security and observability. Modern front-end work is inseparable from supply-chain risk, runtime errors, and distributed performance. OWASP’s 2025 Top 10 adds stronger emphasis on security misconfiguration and software supply-chain failures. OpenTelemetry defines observability in terms of traces, metrics, and logs and provides browser instrumentation for JavaScript; Sentry’s frontend monitoring traces user interactions, HTTP activity, and distributed traces across the stack. Front-end developers who can reason about telemetry and runtime behavior will be much harder to replace than developers who only think in component files.
Code review, mentorship, domain expertise. These appreciate fastest and are least visible on a resume. Camille Fournier’s argument from her May 2025 essay, that companies which stop hiring juniors today will have no senior engineers to promote in five years, is the dominant counterweight to the “fewer juniors” narrative. Domain expertise in regulated industries (insurance, healthcare, fintech, legal) becomes a moat as code generation commoditizes. Harvey AI’s Aatish Nayak described the model directly: “lawyers working hand-in-hand with engineers.”
The increased autonomy of AI agents introduces critical security challenges. The Veracode 2025 GenAI Code Security Report tested 100+ LLMs across Java, Python, C#, and JavaScript and found 45% of AI-generated code samples introduced OWASP Top 10 vulnerabilities; cross-site scripting failure rates hit 86%. Pass rates have remained roughly flat at 55% across two years of model releases. AI-assisted commits have shown a 3.2% secret-leak rate, more than double the 1.5% baseline for human-only commits.
The industry has responded with the OWASP Top 10 for Agentic Applications (released in late 2025):
| Risk | Definition | Mitigation |
|---|---|---|
| Excessive Agency | Agents granted unnecessary functionality, permissions, or autonomy. | Limit agents to minimum necessary functions; require human approval for high-risk actions. |
| Prompt Injection | Manipulation of LLM behavior through malicious input. | Use deterministic rules; segregate untrusted external content from core prompts. |
| Sensitive Disclosure | Unintentional revelation of PII or system credentials in model outputs. | Robust data sanitization; restrict outputs to exclude confidential data. |
| Memory Poisoning | Persistent corruption of agent memory or retrieval pipelines. | Zero-trust principles; verify every interaction; use short-lived, scoped credentials. |
Treat AI agents as untrusted third parties, applying Zero Trust architecture: real-time authentication, ephemeral credentials, and micro-segmentation so a compromised agent cannot move laterally. Thoughtworks’ Technology Radar entry on “Complacency with AI-generated code” is the cleanest published guidance, citing GitClear’s data and Microsoft research showing “AI-driven confidence often comes at the expense of critical thinking.”
Plan for capability, not headcount. Tobi Lütke’s April 2025 internal memo is the most-discussed example: before requesting more headcount, Shopify teams must demonstrate why AI cannot deliver the work. Shopify’s headcount fell from roughly 11,600 in 2022 to 8,100 at the end of 2024 while revenue grew 26%. Shopify has since ordered roughly 3,000 Cursor licenses and reframed the memo internally as “show you can use AI more and you’ll get more resources.”
Rewrite job descriptions, ladders, and rubrics around ownership. A dated rubric prizes velocity of manual coding in one framework. A modern rubric rewards system design, typed architecture, test strategy, review quality, accessibility, performance, observability, documentation, and the ability to make AI-assisted workflows reliable.
Invest in guardrails before scale. Standardize repo instructions (AGENTS.md, CLAUDE.md), establish approved MCP/tool access, enforce test and review gates, and treat evaluation as part of the delivery system. GitHub’s enterprise documentation now includes policy controls, MCP management, content exclusion, usage tracking, code generation views, and codebase-standards guidance.
Hire and interview for AI-augmented capability. Canva’s engineering team published the clearest public hiring rubric in June 2025: candidates are expected to use AI tools during technical interviews. Canva replaced its CS Fundamentals round with an AI-Assisted Coding competency. Anthropic takes a more conservative stance; its candidate guidance bars AI in live interviews. Both approaches are defensible; what isn’t defensible is leaving the policy implicit. A working 2026 rubric tests four things in different rounds: fundamental reasoning without AI, AI-augmented build, code review of intentionally flawed AI output, and craft depth in your specific domain.
Measure what AI actually changes. Traditional metrics (PR count, commit volume) are inadequate, since an agent can generate 1,000 tests in seconds. Pair DORA’s outcome metrics (change lead time, deployment frequency, failure recovery, change fail rate) with user-facing quality indicators: accessibility defects, Core Web Vitals, frontend error rates, trace-based performance investigations, and “Mean Time to Shared Understanding”, the speed at which a team can comprehend and verify AI-assisted output.
Compensation pressure is bifurcating. Stack Overflow’s 2024 work data showed median annual decreases of at least $10,000 for non-managers. Levels.fyi’s Q3 2025 AI engineer report shows the entry-level AI premium narrowing to 6.2% while the staff-level AI premium expanded to 18.7%. AI-fluent senior engineers are accruing the gains.
Upskill without alienating senior engineers. Treat AI fluency as a craft skill the team owns together: weekly demos, shared prompt and rules libraries, time budgeted to learn the tools rather than just use them. Forrester’s J.P. Gownder advised being “judicious, not reflexive.” If senior engineers feel their judgment is being replaced rather than amplified, they leave first. A practical pattern: pair each senior with one or two juniors on AI-augmented workflows; write architectural decisions into AGENTS.md/CLAUDE.md files that travel with the codebase; treat your design system as the highest-leverage place to invest because it constrains what AI can generate badly across every product surface.
Courses. Frontend Masters (broad catalog, including the Coding with AI Learning Path), Epic React and Epic Web (Kent C. Dodds), Total TypeScript (Matt Pocock), CSS for JS Developers and The Joy of React (Josh Comeau), web.dev/learn, MDN Learn Web Development, Refactoring UI, Practical Accessibility (Sara Soueidan), Build UI, AI and Design Systems (Brad Frost), DeepLearning.AI short courses.
Books. Refactoring UI, Inclusive Components (Heydon Pickering), Atomic Design (Brad Frost, free), Eloquent JavaScript (free), Addy Osmani’s Beyond Vibe Coding.
Newsletters and blogs. Smashing Magazine, JavaScript Weekly, Frontend Focus, Bytes, web.dev, Chrome for Developers, The Pragmatic Engineer, Simon Willison’s Weblog, Addy Osmani, Josh Comeau, Una Kravets, Adam Argyle, Stephanie Eckles, Brad Frost, Adrian Roselli, Sara Soueidan.
Podcasts. Syntax, ShopTalk Show, Front End Happy Hour, devtools.fm, Latent Space.
AI-specific resources. Anthropic Build with Claude, Anthropic Cookbook, Anthropic Prompt Engineering Interactive Tutorial, OpenAI Cookbook, Vercel AI SDK docs, LangChain.js docs, Model Context Protocol docs, Claude Code overview, GitHub Copilot enterprise documentation, OpenAI Codex docs and evals guides.
Recurring industry signal. Stack Overflow Annual Developer Survey, GitHub’s Octoverse and Copilot docs, Microsoft’s Work Trend Index, DORA research, the World Economic Forum’s Future of Jobs research, and the Codex changelog.
The front-end role is not disappearing. It is being unbundled and recombined. Boilerplate that justified entry-level positions is being absorbed by tools. The work that requires judgment, including accessibility, performance budgets, design-system coherence, security, domain context, and the API design that makes a codebase scale, is becoming more visible because it is now the rate-limiter.
The senior engineers who will be most valuable in three years are the ones treating AI as an instrument they can play, not a replacement for the craft they spent a decade building. The leaders who do best will be the ones who keep hiring and developing juniors anyway, even when the short-term math says otherwise, because the senior pipeline of 2029 is being decided in 2026.
Master the protocol standards (MCP), the conductorship of context engineering, and the governance of agentic systems. Run the linter. Write the test. Read the diff. Then ship.
This synthesis combines three independently researched reports. Where the sources diverged on facts or framing, the discrepancies are recorded here rather than papered over.
Rate of vulnerabilities in AI-generated code. Estimates vary substantially depending on methodology. The Pearce et al. study (arXiv 2108.09293) found ~40% of Copilot completions in security-relevant contexts contained CWE-classified vulnerabilities. The Veracode 2025 GenAI Code Security Report found 45% of samples introduced OWASP Top 10 vulnerabilities, with XSS failure rates at 86%. Other industry sources cite 15–25% across “AI-generated code suggestions” generically. The lower number likely reflects all suggestions (most of which are non-security-sensitive); the higher numbers reflect security-relevant or adversarially-tested contexts. Both can be true; cite the methodology when using either.
Anthropic’s internal AI-authored code share. One source asserts that “most” of Anthropic’s internal code is now Claude-authored. Another notes Dario Amodei’s March 2025 prediction that AI would write 90% of code within six months has been publicly flagged by analysts (e.g., LessWrong) as not having materialized at industry scale. Treat all CEO percentages on AI-authored code (Pichai’s “more than 25%”, Nadella’s “20–30%”, Amodei’s “90%”) as directional climate, not measured weather; none are independently audited.
Productivity gains. Headline numbers (GitHub’s 55%, McKinsey’s 45–50%) come from greenfield/lab settings. METR’s 2025 RCT found senior developers in mature codebases were 19% slower with AI, while McKinsey reports juniors were 7–10% slower. The honest summary is that AI accelerates greenfield work for senior engineers, slows complex work in mature codebases, and actively hurts juniors who can’t yet evaluate output. Avoid citing any single number without that context.
Front-end employment outlook. BLS projects 7% growth for web developers and digital designers (2024–2034). Bloomberry’s posting analysis shows front-end postings down >20% YoY. These are not contradictory (BLS measures total employment over a decade, Bloomberry measures new posting volume in a hiring freeze), but they are easy to confuse. The directional signal is consistent: total demand grows slowly while composition shifts away from generic front-end roles toward design engineers, AI engineers, and senior specialists.
Gartner forecasts on AI assistant adoption. Gartner’s April 2024 forecast called for 75% of enterprise software engineers using AI code assistants by 2028; Gartner revised that upward to 90% in July 2025. Use the most recent figure (90%) and flag that it is a forecast revised within 15 months; these projections are themselves volatile.
Gartner GenAI spending and “Trough of Disillusionment” framing. One source emphasizes that GenAI has entered Gartner’s Trough of Disillusionment with ≥30% of projects abandoned post-POC; the others do not engage with the hype-cycle framing. The two views are compatible: aggregate spending is rising sharply ($644B forecast for 2025) even as individual project ROI disappoints. Both belong in any serious enterprise plan.
Written by
UX software engineer and consultant. I help product teams turn drifting UIs into design systems people actually use — and can defend in a budget meeting.