惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog RSS Feed
Jina AI
Jina AI
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 司徒正美
罗磊的独立博客
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Vercel News
Vercel News
A
About on SuperTechFans
I
InfoQ
D
DataBreaches.Net
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
美团技术团队

Nx Blog

Sharing Tailwind CSS Styles Across Apps in a Monorepo | Nx Blog How SiriusXM Stays Competitive by Iterating and Getting to Market Fast | Nx Blog Agentic Experience Is the New Developer Experience | Nx Blog Nx Joins the Linux Foundation and the Agentic AI Foundation | Nx Blog A Monorepo Is NOT a Monolith | Nx Blog Why we deleted (most of) our MCP tools | Nx Blog Teach Your AI Agent How to Work in a Monorepo | Nx Blog How Broadcom stays efficient and nimble with monorepos | Nx Blog Why Monorepos are King in the Age of AI | Nx Blog Nx 2026 Roadmap: Expanding Agent Autonomy, Improving Performance, Better Polyglot and More | Nx Blog End to End Autonomous AI Agent Workflows with Nx | Nx Blog Scaling 700+ Projects: How Nx Became a 'No-Brainer' for Caseware | Nx Blog Configure Tailwind v4 with Angular in an Nx Monorepo | Nx Blog The Missing Multiplier for AI Agent Productivity | Nx Blog A Year of Nx Webinars | Nx Blog Wrapping Up 2025 | Nx Blog Nx 22.3 Release: Angular 21 Support, tsgo Compiler, and Prettier v3 | Nx Blog Nx Cloud Release: Agent Resource Usage | Nx Blog Nx Platform Outperforms DIY Cache by 5x | Nx Blog An Nx Carol: Past, Present, and Future of Your Monorepo | Nx Blog Nx 22.1 Release: Terminal UI on Windows, Storybook 10, Vitest 4, and more! | Nx Blog The Compounding Effect: How Nx Features Multiply Performance Gains | Nx Blog 10 Monorepo Myths Debunked: Separating Fact from Fiction | Nx Blog Nx Cloud Release: Enterprise Task Analytics | Nx Blog Watch and Rebuild Storybook Dependencies with Nx | Nx Blog Book - React for Enterprise: Timeless Architecture for Enterprise Apps | Nx Blog Beyond Remote Cache: Unlock 70% More CI Performance | Nx Blog Nx 22 Release: Expanding the build platform | Nx Blog What's the Point of Generating All This Code If You Can't Merge It? | Nx Blog What's New in Nx Self-Healing CI | Nx Blog
Autonomous Agents at Scale | Nx Blog
Victor Savkin · 2026-01-22 · via Nx Blog

The bottleneck has shifted. As AI agents become more autonomous, writing code is no longer the constraint. Most organizations aren't ready for this. Their architectures still put humans in the middle to do the coordination, limiting what agents can accomplish.

The Fragmentation Problem

For example:

  1. A change touching multiple repos means fresh agent sessions with context re-explained each time, multiple PRs to monitor, and handoffs between people. Agents do the coding. Humans still do research, planning, and orchestration. What could be one session becomes dozens of handoffs over weeks.
  2. Even when a change is local to one repo, humans often have to research code in other repos to understand context and best practices.
  3. Every push to CI is a potential interruption. CI can break due to flaky tasks or issues with the change itself. Humans have to attend, pass information back and forth, and help the agent course-correct.

The goal is autonomy: one continuous agent session that implements an entire feature. No handoffs. No re-explaining. No context lost. It updates all projects that need updating and iterates on CI until the build is green.

Two things prevent this:

  • Horizontal fragmentation. Code lives in multiple repos. An agent in Repo A can't see Repo B. A human must bridge the gap. Every repo boundary is a forced interruption. Every repo boundary limits the agent's autonomy.

  • Vertical fragmentation. Local and CI are separate environments. When a PR fails, someone stops, reloads context, diagnoses, fixes, pushes, waits. Every interaction breaks autonomy.

Nx = Autonomous Agents at Scale

Nx enables autonomous AI agents at scale.

Nx solves fragmentation

Nx solves the horizontal fragmentation problem by giving agents access to all relevant projects at once. In a monorepo, one session reads all projects, deduces best practices from existing code, and creates a single PR touching dozens of projects.

Here's a video showing the same work done in two setups. The version in Nx, requiring a single Claude Code session, was 4x faster.

This video explains this issue using interactive visualization:

Nx solves the vertical fragmentation problem through its Self-Healing CI agents. Failures are diagnosed, fixed, and validated automatically while the PR is still running. When Self-Healing CI cannot confidently fix an issue, all relevant information is passed back to the coding agent (running locally or in the cloud) so it can iterate and push again.

Solving the Constraint

Any improvement not at the constraint is an illusion. Agents are making code authoring so cheap that CI and human coordination become the bottleneck.

Already today, AI agents can run autonomously for hours and produce massive code changes. With some high-level guidance, a developer can change an API and all of its clients, make CI green, and ship it in a single session.

The organizations that win will be the ones where more work can be delegated to agents running uninterrupted. That's what Nx is for.

In such an organization, every developer is like a surgeon—providing the necessary context and guidance when it's critical, getting a PR to a decent state, and letting the agent finish the rest autonomously to a mergeable state.


Learn more