{"slug": "so-what-is-an-agent", "title": "So what is an agent?", "summary": "A developer named Maneshwar, building the git-lrc AI code reviewer, clarifies what an 'agent' truly means in AI, defining it as a system that independently completes tasks. The post outlines the core components of agents—instructions, tools, and a loop—and advises when to use them over rule-based automation, citing fraud detection as a key use case.", "body_md": "*Hello, I'm Maneshwar. I'm building git-lrc, a Micro AI code reviewer that runs on every commit. It is free and source-available on Github. Star git-lrc to help devs discover the project. Do give it a try and share your feedback.*\n\n\"Agent\" got popular faster than it got defined.\n\nEveryone is shipping one, almost nobody agrees on what the word means, and half the things called agents are really just a chatbot with extra steps.\n\nThis is part 1 of a short series where we build up a working mental model for agents, based on the patterns OpenAI published in their *Practical Guide to Building Agents*.\n\nBy the end of these three posts you should be able to design one without copying a tutorial line by line.\n\nLet's start with the obvious question.\n\nHere is the definition worth memorizing:\n\nAn agent is a system that independently completes a task on your behalf.\n\nThe key word is *independently*.\n\nA normal program automates steps that you wired up in advance.\n\nAn agent runs the workflow itself, decides what to do next, notices when the job is finished, and hands control back to you if it gets stuck.\n\nThat last part is where most \"agents\" fall apart.\n\nA single-turn LLM call, a sentiment classifier, a chatbot that answers one question and forgets everything: none of those are agents.\n\nThey use a model, but they don't let the model drive.\n\nTwo things separate a real agent from an LLM feature:\n\nHere is the loop in its simplest form:\n\nIf the model is the thing choosing which arrow to follow, you have an agent.\n\nIf you hardcoded the arrows, you have a workflow with an LLM bolted on.\n\nBoth are fine.\n\nThey are just different tools.\n\nAgents are not free.\n\nThey are slower, harder to test, and harder to reason about than a plain script.\n\nSo the first real skill is knowing when *not* to build one.\n\nReach for an agent when traditional rule-based automation starts to crack.\n\nThree signals show up again and again:\n\nThe fraud example makes the difference concrete.\n\nA rules engine is a checklist: it flags a transaction when preset thresholds trip.\n\nAn agent behaves more like a seasoned investigator.\n\nIt weighs context, spots patterns that no single rule covers, and catches suspicious activity even when nothing technically broke a rule.\n\nA quick gut check before you commit:\n\nIf your problem lives on the left side of that tree, write the script.\n\nYou will thank yourself later.\n\nStrip away the frameworks and every agent comes down to three parts:\n\nIn code, that is genuinely all it is. Here is the shape of it:\n\n```\nweather_agent = Agent(\n    name=\"Weather agent\",\n    instructions=\"You help users with questions about the weather.\",\n    tools=[get_weather],\n)\n```\n\nThree fields. A name, a set of instructions, a list of tools.\n\nEverything else in agent design is just making each of those three pieces better.\n\nTools themselves come in three flavors, and it helps to name them:\n\n| Type | What it does | Example |\n|---|---|---|\nData |\nPulls in context the agent needs | Query a database, read a PDF, search the web |\nAction |\nChanges something in the world | Send an email, update a CRM record, file a ticket |\nOrchestration |\nOther agents, used as tools | A research agent, a writing agent |\n\nThat last row is a hint about where this series is going.\n\nAn agent can be a tool for another agent, which is how you build bigger systems without one giant prompt trying to do everything.\n\nYou now have the vocabulary: a definition, a test for when an agent is worth it, and the three parts that make one up.\n\nIn part 2 we get into orchestration.\n\nOne agent or many? When does splitting things up actually help, and when does it just add moving parts? We will cover the run loop, the manager pattern, and handoffs, with diagrams for each.\n\nDisclaimer: This article was written by me; AI was used to fix grammar and improve readability.\n\nAI agents write code fast. They also silently remove logic, change behavior, and introduce bugs — without telling you. You often find out in production.\n\ngit-lrc fixes this. It hooks into git commit and reviews every diff before it lands. 60-second setup. Completely free.\n\nAny feedback or contributors are welcome! It's online, source-available, and ready for anyone to use.\n\n⭐ Star it on GitHub:\n\n| [🇩🇰 Dansk](https://github.com/HexmosTech/git-lrc/readme/README.da.md) | [🇪🇸 Español](https://github.com/HexmosTech/git-lrc/readme/README.es.md) | [🇮🇷 Farsi](https://github.com/HexmosTech/git-lrc/readme/README.fa.md) | [🇫🇮 Suomi](https://github.com/HexmosTech/git-lrc/readme/README.fi.md) | [🇯🇵 日本語](https://github.com/HexmosTech/git-lrc/readme/README.ja.md) | [🇳🇴 Norsk](https://github.com/HexmosTech/git-lrc/readme/README.nn.md) | [🇵🇹 Português](https://github.com/HexmosTech/git-lrc/readme/README.pt.md) | [🇷🇺 Русский](https://github.com/HexmosTech/git-lrc/readme/README.ru.md) | [🇦🇱 Shqip](https://github.com/HexmosTech/git-lrc/readme/README.sq.md) | [🇨🇳 中文](https://github.com/HexmosTech/git-lrc/readme/README.zh.md) | [🇮🇳 हिन्दी](https://github.com/HexmosTech/git-lrc/readme/README.hi.md) |\n\nGenAI today is a **race car without brakes**. It accelerates fast -- you describe something, and large blocks of code appear instantly. But AI agents *silently break things*: they remove logic, relax constraints, introduce expensive cloud calls, leak credentials, and change behavior -- without telling you. You often find out in production.\n\n** git-lrc is your braking system.** It hooks into\n\n`git commit`\n\nand runs an AI review on every diff In short, git-lrc helps **Prevent Outages, Breaches, and Technical Debt Before They Happen**\n\n**At a glance:** [10 risk categories](https://github.com/HexmosTech/git-lrc#what-git-lrc-checks-for) · [100+ failure patterns tracked](https://github.com/HexmosTech/git-lrc#what-git-lrc-checks-for) · every commit…", "url": "https://wpnews.pro/news/so-what-is-an-agent", "canonical_source": "https://dev.to/lovestaco/so-what-is-an-agent-4763", "published_at": "2026-06-24 17:36:09+00:00", "updated_at": "2026-06-24 17:39:26.253376+00:00", "lang": "en", "topics": ["artificial-intelligence", "ai-agents", "large-language-models", "developer-tools"], "entities": ["Maneshwar", "git-lrc", "OpenAI"], "alternates": {"html": "https://wpnews.pro/news/so-what-is-an-agent", "markdown": "https://wpnews.pro/news/so-what-is-an-agent.md", "text": "https://wpnews.pro/news/so-what-is-an-agent.txt", "jsonld": "https://wpnews.pro/news/so-what-is-an-agent.jsonld"}}