After spending the past couple of months looking at hundreds of tech docs from n8n, Google, Gumloop, and the rest, I tallied up 75 capabilities you’d expect an agent development tool to offer.But there are so many more things you can, need, or should do to agents
July 10, 2026 ∙ 5 minutes read
After spending the past couple of months looking at hundreds of tech docs from n8n, Google, Gumloop, and the rest, I tallied up 75 capabilities you’d expect an agent development tool to offer.
But there are so many more things you can, need, or should do to agents that weren’t easy or fair to be included in the report, so I’m sharing some of these here.
Agents have clearly slipped between the cracks of human and non-human identities, which is problematic because there is no way to keep track of agents, their actions, and their owners. If Agent X decides to go on a data deletion spree, identity would be the thing that can help you identify where it lives and who created the monster.
But nobody solved identity yet, and if they claimed to do so, it’s by retrofitting existing techniques to agents, which doesn’t really work (note that Auth is in a better place than Identity, but auth is just a subset of identity).
Let’s assume you run agents in n8n. There’s no way to formally define the identity of an agent such that you give it a name badge, some policies, and monitor its activities within the wider environment it works in. You can integrate it with IdPs that support agents, but still need to engineer your way through it.
This resource details how it onboards an n8n agent to Microsoft’s Entra Agent ID. While it's behind a paywall, it says you need:
The best option for running this natively as of today is using Google Gemini Enterprise Agent Platform, which is clearly the hyperscaler portfolio advantage. Agent Identity provides a strongly attested, cryptographic identity for each agent that is based on the SPIFFE standard. With Agent Identity, agents can securely authenticate to MCP servers, cloud resources, endpoints, and other agents, acting either on its own behalf or on behalf of an end user. Agent Identity uses the agent's own credential and Agent Identity auth manager. Auth manager can create and manage auth providers, which are the specific configurations used to acquire, manage, and secure API keys, OAuth client IDs, OAuth client secrets, and delegated end-user OAuth tokens.
But even Google’s approach (which is one of the most advanced ones at the moment) you can find some critiques, like their usage of SPIFFE. “While SPIFFE can technically provide agent identities, current Kubernetes implementations treat all replicas as identical—a fundamental mismatch with agents’ non-deterministic, context-dependent behavior that creates compliance and attribution gaps”.
Agent Reliable ExecutionLLMs generate the code, agents execute it. And just as a server hiccups and you need to turn it off and on again, agents can hiccup too. All enterprises have been feeling this pain, but I see little to no systematic (or dare I say deterministic) approach to ensure agents execute reliably. There is a selection of tools that are tackling this problem, but adoption is slow.
The simplest thing that can execute agent code can be the Python interpreter. You should expect an agent development tool to do more than straight Python, which would be:
We’ve briefly covered code execution and sandboxes in the report, so let’s look at the other two:
Agent execution durability - Agents may hit a rate limit from the LLM provider, have a request time out, or a self-hosted agent can run out of memory.
Execution durability can help recover from this sort of incidents by:
Concurrency - Agents and the underlying hosting environment compete for memory, CPU, and network calls. When agents share the same infrastructure (i.e. they don’t have isolation), one resource-intensive session degrades every other session. Effective concurrency management requires kernel-level quota enforcement, real-time scheduling across heterogeneous workloads, and backpressure mechanisms that prevent bursts of agent invocations from cascading into downstream failures.
To support concurrency at the infrastructure layer, you can enforce per-session resource limits at the kernel level via cgroups, maintain real-time cluster state for scheduling decisions, and isolate sessions through microVM or gVisor boundaries that prevent noisy neighbor bleed between agents.
At the execution layer, you can enforce concurrency limits on workflow execution and worker capacity, preventing too many agent tasks from running simultaneously against a rate-limited LLM or external API. This is backpressure at the workflow level, not resource isolation at the compute level.
Other concurrency controls include job queues, such as limiting how many instances of a step or function run in parallel. This is useful for preventing LLM rate limit exhaustion but does not address underlying resource contention between sessions.
Intent analysisLLMs drift by design, and simply saying “pls don’t drift” or spinning up an orchestrator agent and asking it “pls don’t drift” won’t help.
You will undoubtedly end up with agents not completing the assigned task, doing something else, reporting complete on an incomplete job, or just hallucinating results.You need to monitor behavior drift to determine whether an agent’s logic remains adequate for its scope and request. This would entail continuously scanning conversations and the code level execution to see which libraries it wants to invoke, what the called functions would actually achieve, and what the LLM is doing with the operating system. It tracks the reasoning field in the response and the tool call field in the response to understand every delegation of logic and why it does it.
And while there’s a lot of work here in security to prevent against prompt injections and confused deputy problems, there is very little work for preventing non-malicious drift.
You can choose between LLM-based and non-LLM-based intent analysis.
LLM-based are easy to implement and all-purpose. The downside is that the LLM judges inherit the same problems they try to solve. Regardless, some of these include:
Non-LLM-based intent analysis is harder to implement and requires upfront thinking, a challenge in a vibe-coding society. It includes:
In our second iteration of the report, we evaluated tools against 75 capabilities, ranging from code execution and sandboxes to authentication and killswitches. Some features are heavily commoditized, while others are clear differentiators.
| # | Наименование новости | Тональность | Информативность | Дата публикации |
|---|---|---|---|---|
| 1 | AI Agent Governance: Securing Autonomous Agents in Production | 0 | 10.41 | 24-07-2026 |
| 2 | The Agentic Insider: Why AI Tech Stacks Are the Ultimate Insider Threat | 0 | 5.76 | 15-07-2026 |
| 3 | The evolution from APIs to AI agents | 0 | 5 | 02-07-2026 |
| 4 | How to Build an AI Agent with Function Calling in Node.js Using Google Gemini | 0 | 7.06 | 24-07-2026 |
| 5 | The New Agency Stack: How Dev Shops Use Claude, Cursor, and Copilot in Production | 0 | 8.46 | 24-07-2026 |
| 6 | AI Agents Are Wasting Your Tokens, Here’s How to Fix Long Document Pipelines | -2 | 6 | 29-06-2026 |
| 7 | 0 | 11.11 | 27-07-2026 | |
| 8 | Настройка AI-агентов для ускорения бизнес процессов компании | 0 | 7 | 03-07-2026 |
| 9 | The foundational elements of AI architecture that IT leaders need to scale | 0 | 7 | 07-07-2026 |