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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
博客园 - Franky
IT之家
IT之家
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
腾讯CDC
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
博客园_首页
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Telling People You Have 11 AI Agents
Patrick Hughes · 2026-06-11 · via DEV Community

I used to say it. "I run BMD HODL with 11 AI agents." It sounds impressive. It means almost nothing.

A friend pushed back on this. He said if he told you he had 11 spreadsheets, or 11 browser tabs open, you would not be impressed. You would ask what they do. Agent count is the same. The number is vanity. It tells you about volume, not value.

I went back and looked at my own fleet after that. Some of those agents did real work every single day. One scanned email and dropped article links into a queue. One reviewed blog drafts and either passed them or sent them back with reasons. One checked, every night, whether the things that should have happened that day actually happened.

And some of them were noise. They ran on a schedule, wrote a file nobody read, and exited zero. Green check, no outcome. If I had retired three of them, my "count" would have dropped from 11 to 8 and the business would have run exactly the same.

The count hides the only question that matters

The real question is not how many agents you have. It is: what does each one do, on what input, how often, and can you tell when it lied?

I started describing the fleet with three things instead of a number. A verb, a queue, and a cadence. "Reviews blog drafts in the Outbox folder every morning at 8:30." That sentence tells you more than "11 agents" ever did. It says what work happens, what it operates on, and when. If I cannot fill in that sentence for an agent, the agent should not exist.

Try it on your own setup. Write the verb-queue-cadence line for every agent you run. The ones where you stall on the verb are the ones doing nothing. Kill them.

Counting also hides cost

Here is the part that actually cost me money. When you think in counts, you do not think in spend. Eleven agents felt like a fixed thing, a headcount. But each one makes model calls, and a few of them retried on failure without a ceiling.

One agent hit a retry loop and burned through tokens for an hour before I noticed. The count did not change. It was still "11 agents." The bill changed. That is the problem with the headcount frame. It draws your eye to the wrong number.

What I actually need to watch is per-agent spend, token rate, and call volume. Not how many agents exist, but what each one consumes and whether any single one is running away. That is a different dashboard than "agent count: 11."

What to track instead

Drop the count from how you describe the system, internally and publicly. Replace it with these:

For each agent: the verb-queue-cadence line, so you know what it does. Did it produce its declared output today, not just exit zero. And what it spent, with a hard ceiling so a runaway loop trips a limit instead of your credit card.

The first one is free. You write it once. The second one is the difference between "my monitoring is green" and "the work actually happened," which are not the same thing and I learned that the hard way. The third one is why I built AgentGuard.

The honest version

So when someone asks how many agents I run now, I try not to answer with a number. I tell them what the fleet does. It scans, it digests, it reviews, it publishes, it audits its own runs at night. The count is whatever it happens to be that week, and I do not optimize for it going up.

If you are building an agent setup, resist the urge to brag about the count. Nobody hiring you, reading you, or buying from you cares that the number is high. They care that the work gets done, that you know when it does not, and that it does not quietly cost you a fortune. Describe it that way and you will also build it better, because the vanity number stops being the thing you chase.

The agents that survive that filter are the ones worth running. The rest were always just tabs you forgot to close.


If runaway token cost is the part that scares you, that is the right instinct. AgentGuard puts a hard budget, token, and rate limit around any agent so one bad loop trips a ceiling instead of your bill. It is open source, pip install agentguard. See it at https://bmdpat.com/tools/agentguard.