This website uses cookies

Read our Privacy policy and Terms of use for more information.

In partnership with

AI agents now read your docs almost as much as humans do.

Mintlify analyzed 790 million requests across its documentation platform. The finding: AI coding agents account for 45.3% of all traffic, nearly tied with traditional browsers at 45.8%.

Two tools are driving almost all of it:

  • Claude Code: 25.2% of total traffic, more requests than Chrome on Windows

  • Cursor: 18% of total traffic

  • Together they account for 95.6% of all identified AI agent traffic

The rest of the field, OpenCode, Trae, ChatGPT, and NotebookLM, is showing up but nowhere close.

One caveat: OpenAI's Codex doesn't send an identifiable user-agent header, so the real agent percentage is likely even higher.

The takeaway for anyone maintaining developer docs: your documentation now serves two audiences. Structure and machine-readability matter as much as clarity for human readers.

Enjoying the newsletter? Your feedback helps us grow and reach more developers.

Share your testimonial →

Today's Articles

Multi-Agent Frameworks for .NET — A Practical Guide

https://medium.com/@support_74639/https-logicgrid-dev-blog-multi-agent-framework-for-dotnet-43269c3cdc7c?source=rss------dotnet-5

If you’ve spent any time building with LLMs, you’ve probably hit the wall: a single prompt only gets you so far. Stuff too much into one…

Database Connection Pooling vs DbContext Pooling in .NET

https://malshikay.medium.com/database-connection-pooling-vs-dbcontext-pooling-in-net-b541932d24d0?source=rss------dotnet-5

When working with Entity Framework Core, many developers confuse database connection pooling with DbContext pooling. Although both improve…

Collections in C# — From Basic to Advanced

https://medium.com/@cnkumar28/collections-in-c-from-basic-to-advanced-7a646d2895be?source=rss------csharp-5

Collections are one of the most important concepts in C#. They help us store, manage, search, sort, and manipulate groups of data…

Agent Governance Toolkit for .NET:

https://medium.com/@kavathiyakhushali/agent-governance-toolkit-for-net-babedddb8d1f?source=rss------dotnet-5

A few months ago, most conversations around AI agents focused on one thing:

Microsoft wants safer C# without turning it into Rust

https://news.google.com/rss/articles/CBMiqgFBVV95cUxOMldCdkhmWDk3RTZtQUlfQ2g0OXQwWkNsRUxncmRLME1TTk9TeXIxc3VsQlJuMDNuQ1ZydHBzaDZ2TUpxdUlPODdoUHFHTFJRRTN0WW0xZFQ2RkdJLWMtWkpvNlZoaW1RUUU3YU04ZGhsTEZ0X09NWEc4QnFuYzJ2WVhyRVhCNVExa3VNWEdTdjhRN3NyRVp4WS1tRkRTSTA4NElCbEJ0N3E4UQ?oc=5

Microsoft wants safer C# without turning it into Rust

Mission Possible : Implementing Design Patterns in .NET

https://medium.com/@atwalhetal/mission-possible-implementing-design-patterns-in-net-a2844857973e?source=rss------dotnet-5

This blog is designed to go through nine major design patterns revolving around three categories of these patterns — creational (dealing…

C# Has a Null Problem. Here’s What That Means

https://medium.com/@kenslearningcurve/c-has-a-null-problem-heres-what-that-means-efb0ac60082c?source=rss------dotnet-5

What null is, why it crashes your app, and how ?. and ?? fix it

To Prompt or NOT to Prompt #vscode #prompt #customization

https://www.youtube.com/shorts/9ywEg2GTFes

Are AI Agents Conscious?

https://blog.lhotka.net/2026/05/30/Are-AI-Agents-Conscious

Agent = Harness + LLM + Directive/Goal The harness manages memory across turns, orchestrates tool calls, handles interaction with other agents, optimizes what goes into the context window, and runs t...

Improving C# Memory Safety: Why Modern .NET Is Quietly Becoming More Secure

https://towardsdev.com/improving-c-memory-safety-why-modern-net-is-quietly-becoming-more-secure-73d2543de173?source=rss------dotnet-5

A few years ago, whenever developers talked about “memory safety,” the conversation usually centered around languages like: Continue reading on Towards Dev »

When Parallel Became a Problem: A Backend Engineering Postmortem on Fan-Out Concurrency

https://bhautikk.medium.com/when-parallel-became-a-problem-a-backend-engineering-postmortem-on-fan-out-concurrency-729deb5a19d9?source=rss------dotnet-5

How an innocent Task.WhenAll() brought down our order aggregation service under load — and what we did about it.

C# Barcode Library: Comparing 11 Options for .NET Developers in 2026

https://www.c-sharpcorner.com/article/c-sharp-barcode-library-comparing-11-options-for-net-developers-in-20262/

Explore the top 11 C# barcode libraries for .NET developers in 2026. Compare open-source & commercial SDKs for generating, reading, and scanning barcodes in diverse applications. Find the best fit...

Deep Dive into ASP.NET Core's WebApplication — What Really Happens Under the Hood

https://medium.com/@bajithcnbuk/deep-dive-into-asp-net-cores-webapplication-what-really-happens-under-the-hood-e992c9212460?source=rss------dotnet-5

This single line WebApplication.CreateBuilder(args) does a lot of heavy lifting before your first request ever arrives. Let's peel back…

OWASP Top 10 for .NET Developers -Part 3: Preventing Injection Attacks

https://medium.com/@srghimire061/owasp-top-10-for-net-developers-part-3-preventing-injection-attacks-c1e892b8b57e?source=rss------dotnet-5

Modern web applications process enormous amounts of user-controlled data every second - login credentials, search queries, transaction…