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

推荐订阅源

I
InfoQ
博客园_首页
美团技术团队
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
J
Java Code Geeks
T
Tailwind CSS Blog
Jina AI
Jina AI
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
爱范儿
爱范儿
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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
Most 'AI agents' are just scripts with a marketing budget
Aditya Agarw · 2026-05-21 · via DEV Community

If your "AI agent" follows the same path every single time, I have news for you. That's a script.

The term "agent" has become the new "cloud." Slap it on anything and watch the funding roll in.

Why This Matters Right Now

Developers are in a heated battle over the very definition of "agent". It's a noisy, messy, and ubiquitous debate occurring in every programming community I pay attention to.

And honestly? The confusion is the product. Startups love that nobody agrees on a definition because it lets them call everything an agent.

The Three Things People Keep Conflating

Here's the rough taxonomy I keep seeing developers converge on:

Tool-using chatbots — An LLM that can call an API when you ask it to. It's a chatbot with hands. Not an agent.

Prompt-driven workflows — A hardcoded sequence of steps where an LLM handles some text processing in the middle. It's a pipeline. Still not an agent.

Autonomous decision loops — A system that observes its environment, decides what to do next without a predetermined path, and adjusts based on outcomes. This is the only one that earns the word "agent."

Most of the products I have reviewed are solidly in bucket one or two, but they position themselves as bucket three.

The "If" Statement Test

Here’s my quick gut check. Look at the code (or the architecture diagram, if that’s all you can get).

If you can easily describe what the system does using a simple flowchart that fits on a napkin, then it’s orchestration. If you could rip out the LLM, replace it with a regex or a template, and describe the majority of the behavior in the same way, then it’s a script with an overcomplicated language model tacked on.

An actual agent surprises you. Not because it's buggy — because it chose a path you didn't explicitly wire up. That's the difference. Deterministic control flow with an LLM in the middle is not agency. It's automation with better vibes.

Why Label Inflation Hurts Us 🔥

This is more than just arguing about words. It's actively making tool evaluation harder for working engineers.

When every product out there is an "agent" you cannot filter. You spend hours in demos only to discover the thing is a glorified cron job agent calling GPT-4 in a loop. Devs are getting more vocal about this, and the pushback against generic agent marketing is real.

This type of discussion also has a negative impact on discussions regarding truly agentic systems. Important issues such as goal decomposition, error recovery, and safe autonomy are overlooked because they are overshadowed by the marketing hype of products that are not exposed to such challenges since they never actually allow the model to decide.

The Uncomfortable Truth

Ironically, some of those scripts that are perceived as “mere scripts” are actually quite handy: a well-designed prompt-driven script can be more robust, more maintainable, and less expensive to operate than a fully autonomous agent.

The problem isn't building pipelines. Pipelines are great. The problem is calling your pipeline an agent so you can charge agent prices and ride the hype wave 🏄.

If the industry settled on honest labels, we'd all evaluate tools faster, set better expectations, and stop being disappointed when our "agent" can't handle a task that wasn't in its flowchart.

Where I Land

Refer to your scripts as scripts and your pipelines as pipelines. Reserve the term "agent" for systems that truly operate autonomously in unbounded environments. The threshold should be very high as the term implies a level of capability that most systems do not possess.

Honest naming isn't just good engineering culture — it's how we keep our tools trustworthy and our hype cycles from eating us alive. 💀

So here's my question: what's the most egregious example of "agent-washing" you've seen in the wild?