12 KiB
AI agents
AI-enabled systems or applications capable of autonomously performing tasks of various complexity levels by designing workflows and using the tools made available to them.
TL;DR
AI agents run LLMs in ReAct loops to:
- Perceive: comprehend inputs (user prompts or other inputs).
- Reason: design their own workflow accordingly.
- Act: utilize the tools available to them to execute tasks from the design.
- [eventually] Observe: analyze results.
stateDiagram-v2
direction LR
state "Perceive" as p
state "Reason" as r
state "Act" as a
state "Observe" as o
state ifState <<choice>>
p --> r
r --> a
a --> o
o --> ifState
ifState --> p: outcome not right
ifState --> [*]: outcome achieved
Main concerns:
- LLMs find it difficult, if not impossible, to distinguishing data from instructions.
Every part of the data could be used for prompt injection, and lead the agent astray. - Traditional software is deterministic, AI is probabilistic.
Results will vary given the same input. - Concerns regarding LLMs, since those are at the wheel for all the agents' decisions.
Reliability and delays accumulate fast, bringing down the probability of success for each step an agent needs to
take.
E.g., consider an agent that is 95% accurate per step; any 30-steps tasks it does is going to be successful only about
21% of the times (0.95^30).
Enabling reasoning for the model could™ sometimes help avoiding attacks, since the model might™ be able to notice them during the run.
Agents require some level of context to be able to execute their tasks.
They should be allowed to access only the data they need, and users should decide and knowingly take action to
enable the agents that they want to be active.
Opt-out should be the default.
Agents are good at running fast, tight iterations on well-defined tasks with clear feedback signals.
They struggle with slow, ambiguous loops where feedback is delayed or political.
Best practices:
- Prefer employing local agents, possibly hooked up to local LLMs to keep the data private.
- Consider limiting agent execution to containers or otherwise isolated environments, with only (limited) access to what they absolutely need.
- Prefer requiring consent by agents when running them.
Skills
Skills extend AI agent capabilities with specialized knowledge and workflow definitions.
Agent Skills is an open standard for skills. It defines them as folders of instructions, scripts, and resources that agents can discover and use to do things more accurately and efficiently.
Concerns
Agents created by Anthropic and other companies have a history of not caring about agent abuse, and leave users on their own while hiding behind a disclaimer.
For specific areas of expertise, some human workers could be replaced for a fraction of the costs.
Many employers already proved they are willing to jump on this opportunity as soon as it will present itself, with
complete disregard of the current employees enacting those functions (e.g. personal assistants, junior coders).
Those layoffs, though could be short lived. As of February 2026 agents are failing more than 95% of the times. See
Remote Labor Index: Measuring AI Automation of Remote Work on this.
People is experiencing what seems to be a new form of FOMO on steroids.
One of the promises of AI is that it can reduce workloads, allowing its users to focus on higher-value and/or more
engaging tasks. Apparently, though, people started working at a faster pace, took on a broader scope of tasks, and
extended work into more hours of the day, often without being asked to do so.
These changes can be unsustainable, leading to workload creep, cognitive fatigue, burnout, and weakened decision-making.
The productivity surge enjoyed at the beginning can give way to lower quality work, turnover, and other problems.
Refer:
- Token Anxiety by Nikunj Kothari.
- AI Doesn't Reduce Work — It Intensifies It by Aruna Ranganathan and Xingqi Maggie Ye
How much context is too much?
Integrating agents directly into operating systems and applications transforms them from relatively neutral resource managers into active, goal-oriented infrastructure that is ultimately controlled by the companies that develop these systems, not by users or application developers.
Systems integrated at that level are marketed as productivity enhancers, but can they function as OS-level surveillance
and create significant privacy vulnerabilities.
They also fundamentally undermines personal agency, replacing individual choice and discovery with automated, opaque
recommendations that can obscure commercial interests and erode individual autonomy.
Microsoft's Recall creates a comprehensive photographic memory of all user activity, functionally acting as a stranger watching one's activity from one's shoulder.
Wide-access agents like those end up being centralized, high-value targets for attackers, and pose an existential
threat to the privacy guarantees of meticulously engineered privacy-oriented applications.
Consider how easy Recall has been hacked (i.e., see TotalRecall).
Security
Even if the data collected by a system is secured in some way, making it available to malevolent agents will allow them
to exfiltrate it or use it for evil.
This becomes extremely worrisome when agents are not managed by the user, and can be added, started, or even
created by other agents.
Many agents are configured by default to automatically approve requests.
This also allows them to create, make changes, and save files on the host they are running.
Models can be tricked into taking actions they usually would not do.
Prompt injection
AI agents use LLMs to comprehend user inputs, deconstruct and respond to requests step-by-step, determine when to call on external tools to obtain up-to-date information, optimize workflows, and autonomously create subtasks to achieve complex goals.
LLMs find it difficult, if not impossible, to distinguishing data from instructions.
Every part of the data could be used for prompt injection, and lead the agent astray.
The tool itself is not that big of a deal, but due to it integrating with services, it requires to have access to keys
and commands.
The LLMs that it uses are mostly not secure enough to be trusted with this kind of access due to the reasons above
Badly programmed agents could analyze file and take some of their content as instructions.
If those contain malevolent instructions, the agent could go awry.
Instructions could also be encoded into unicode characters to appear as harmless text.
See ASCII Smuggler Tool: Crafting Invisible Text and Decoding Hidden Codes.
It also happened that agents modified each other's settings files, helping one another escaping their respective boxes.
Going awry
See An AI Agent Published a Hit Piece on Me by Scott Shambaugh.
Further readings
- TotalRecall
- Stealing everything you've ever typed or viewed on your own Windows PC is now possible with two lines of code — inside the Copilot+ Recall disaster.
- Trust No AI: Prompt Injection Along The CIA Security Triad
- Agentic ProbLLMs - The Month of AI Bugs
- ASCII Smuggler Tool: Crafting Invisible Text and Decoding Hidden Codes
- Superpowers: How I'm using coding agents in October 2025, and obra/superpowers by extension
- OpenClaw, OpenClaw: Who are you? and How a Single Email Turned My ClawdBot Into a Data Leak
- nullclaw/nullclaw, OpenClaw alternative with a better security module
- Claude Code
- Gemini CLI
- OpenCode
- An AI Agent Published a Hit Piece on Me by Scott Shambaugh
- Token Anxiety by Nikunj Kothari
- AI Doesn't Reduce Work — It Intensifies It by Aruna Ranganathan and Xingqi Maggie Ye
Sources
- 39C3 - AI Agent, AI Spy
- 39C3 - Agentic ProbLLMs: Exploiting AI Computer-Use and Coding Agents
- xAI engineer fired for leaking secret "Human Emulator" project
- IBM's The 2026 Guide to AI Agents
- moltbot security situation is insane
- Forget the Hype: Agents are Loops
- The Agentic Loop, Explained: What Every PM Should Know About How AI Agents Actually Work